Class: TencentCloud::Tdmq::V20200217::DeleteRocketMQGroupRequest

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20200217/models.rb

Overview

DeleteRocketMQGroup请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(clusterid = nil, namespaceid = nil, groupid = nil) ⇒ DeleteRocketMQGroupRequest

Returns a new instance of DeleteRocketMQGroupRequest.



3038
3039
3040
3041
3042
# File 'lib/v20200217/models.rb', line 3038

def initialize(clusterid=nil, namespaceid=nil, groupid=nil)
  @ClusterId = clusterid
  @NamespaceId = namespaceid
  @GroupId = groupid
end

Instance Attribute Details

#ClusterIdObject

Parameters:

  • ClusterId:

    集群ID

  • NamespaceId:

    命名空间名称

  • GroupId:

    消费组名称



3036
3037
3038
# File 'lib/v20200217/models.rb', line 3036

def ClusterId
  @ClusterId
end

#GroupIdObject

Parameters:

  • ClusterId:

    集群ID

  • NamespaceId:

    命名空间名称

  • GroupId:

    消费组名称



3036
3037
3038
# File 'lib/v20200217/models.rb', line 3036

def GroupId
  @GroupId
end

#NamespaceIdObject

Parameters:

  • ClusterId:

    集群ID

  • NamespaceId:

    命名空间名称

  • GroupId:

    消费组名称



3036
3037
3038
# File 'lib/v20200217/models.rb', line 3036

def NamespaceId
  @NamespaceId
end

Instance Method Details

#deserialize(params) ⇒ Object



3044
3045
3046
3047
3048
# File 'lib/v20200217/models.rb', line 3044

def deserialize(params)
  @ClusterId = params['ClusterId']
  @NamespaceId = params['NamespaceId']
  @GroupId = params['GroupId']
end