Class: TencentCloud::Tdmq::V20200217::CreateRoleResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tdmq::V20200217::CreateRoleResponse
- Defined in:
- lib/v20200217/models.rb
Overview
CreateRole返回参数结构体
Instance Attribute Summary collapse
-
#EnvironmentRoleSets ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Remark ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RoleName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Token ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(rolename = nil, token = nil, remark = nil, environmentrolesets = nil, requestid = nil) ⇒ CreateRoleResponse
constructor
A new instance of CreateRoleResponse.
Constructor Details
#initialize(rolename = nil, token = nil, remark = nil, environmentrolesets = nil, requestid = nil) ⇒ CreateRoleResponse
Returns a new instance of CreateRoleResponse.
2347 2348 2349 2350 2351 2352 2353 |
# File 'lib/v20200217/models.rb', line 2347 def initialize(rolename=nil, token=nil, remark=nil, environmentrolesets=nil, requestid=nil) @RoleName = rolename @Token = token @Remark = remark @EnvironmentRoleSets = environmentrolesets @RequestId = requestid end |
Instance Attribute Details
#EnvironmentRoleSets ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2345 2346 2347 |
# File 'lib/v20200217/models.rb', line 2345 def EnvironmentRoleSets @EnvironmentRoleSets end |
#Remark ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2345 2346 2347 |
# File 'lib/v20200217/models.rb', line 2345 def Remark @Remark end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2345 2346 2347 |
# File 'lib/v20200217/models.rb', line 2345 def RequestId @RequestId end |
#RoleName ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2345 2346 2347 |
# File 'lib/v20200217/models.rb', line 2345 def RoleName @RoleName end |
#Token ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
2345 2346 2347 |
# File 'lib/v20200217/models.rb', line 2345 def Token @Token end |
Instance Method Details
#deserialize(params) ⇒ Object
2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 |
# File 'lib/v20200217/models.rb', line 2355 def deserialize(params) @RoleName = params['RoleName'] @Token = params['Token'] @Remark = params['Remark'] unless params['EnvironmentRoleSets'].nil? @EnvironmentRoleSets = [] params['EnvironmentRoleSets'].each do |i| environmentroleset_tmp = EnvironmentRoleSet.new environmentroleset_tmp.deserialize(i) @EnvironmentRoleSets << environmentroleset_tmp end end @RequestId = params['RequestId'] end |