Class: TencentCloud::Gaap::V20180529::DeleteProxyGroupRequest

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

Overview

DeleteProxyGroup请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(groupid = nil, force = nil) ⇒ DeleteProxyGroupRequest



2030
2031
2032
2033
# File 'lib/v20180529/models.rb', line 2030

def initialize(groupid=nil, force=nil)
  @GroupId = groupid
  @Force = force
end

Instance Attribute Details

#ForceObject

0,不强制删除,1,强制删除。默认为0,当通道组中存在通道或通道组中存在监听器/规则绑定了源站时,且Force为0时,该操作会返回失败。



2028
2029
2030
# File 'lib/v20180529/models.rb', line 2028

def Force
  @Force
end

#GroupIdObject

0,不强制删除,1,强制删除。默认为0,当通道组中存在通道或通道组中存在监听器/规则绑定了源站时,且Force为0时,该操作会返回失败。



2028
2029
2030
# File 'lib/v20180529/models.rb', line 2028

def GroupId
  @GroupId
end

Instance Method Details

#deserialize(params) ⇒ Object



2035
2036
2037
2038
# File 'lib/v20180529/models.rb', line 2035

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