Class: TencentCloud::Organization::V20210331::CreateGroupRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Organization::V20210331::CreateGroupRequest
- Defined in:
- lib/v20210331/models.rb
Overview
CreateGroup请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(zoneid = nil, groupname = nil, description = nil, grouptype = nil) ⇒ CreateGroupRequest
constructor
A new instance of CreateGroupRequest.
Constructor Details
#initialize(zoneid = nil, groupname = nil, description = nil, grouptype = nil) ⇒ CreateGroupRequest
Returns a new instance of CreateGroupRequest.
775 776 777 778 779 780 |
# File 'lib/v20210331/models.rb', line 775 def initialize(zoneid=nil, groupname=nil, description=nil, grouptype=nil) @ZoneId = zoneid @GroupName = groupname @Description = description @GroupType = grouptype end |
Instance Attribute Details
#Description ⇒ Object
773 774 775 |
# File 'lib/v20210331/models.rb', line 773 def Description @Description end |
#GroupName ⇒ Object
773 774 775 |
# File 'lib/v20210331/models.rb', line 773 def GroupName @GroupName end |
#GroupType ⇒ Object
773 774 775 |
# File 'lib/v20210331/models.rb', line 773 def GroupType @GroupType end |
#ZoneId ⇒ Object
773 774 775 |
# File 'lib/v20210331/models.rb', line 773 def ZoneId @ZoneId end |
Instance Method Details
#deserialize(params) ⇒ Object
782 783 784 785 786 787 |
# File 'lib/v20210331/models.rb', line 782 def deserialize(params) @ZoneId = params['ZoneId'] @GroupName = params['GroupName'] @Description = params['Description'] @GroupType = params['GroupType'] end |