Class: TencentCloud::Ess::V20201111::DescribeFlowComponentsRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::DescribeFlowComponentsRequest
- Defined in:
- lib/v20201111/models.rb
Overview
DescribeFlowComponents请求参数结构体
Instance Attribute Summary collapse
-
#Agent ⇒ Object
点击查看FlowId在控制台中的位置 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。.
-
#FlowId ⇒ Object
点击查看FlowId在控制台中的位置 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。.
-
#Operator ⇒ Object
点击查看FlowId在控制台中的位置 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(operator = nil, flowid = nil, agent = nil) ⇒ DescribeFlowComponentsRequest
constructor
A new instance of DescribeFlowComponentsRequest.
Constructor Details
#initialize(operator = nil, flowid = nil, agent = nil) ⇒ DescribeFlowComponentsRequest
Returns a new instance of DescribeFlowComponentsRequest.
10344 10345 10346 10347 10348 |
# File 'lib/v20201111/models.rb', line 10344 def initialize(operator=nil, flowid=nil, agent=nil) @Operator = operator @FlowId = flowid @Agent = agent end |
Instance Attribute Details
#Agent ⇒ Object
点击查看FlowId在控制台中的位置 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
10342 10343 10344 |
# File 'lib/v20201111/models.rb', line 10342 def Agent @Agent end |
#FlowId ⇒ Object
点击查看FlowId在控制台中的位置 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
10342 10343 10344 |
# File 'lib/v20201111/models.rb', line 10342 def FlowId @FlowId end |
#Operator ⇒ Object
点击查看FlowId在控制台中的位置 在集团企业代理子企业操作的场景中,需设置此参数。在此情境下,ProxyOrganizationId(子企业的组织ID)为必填项。
10342 10343 10344 |
# File 'lib/v20201111/models.rb', line 10342 def Operator @Operator end |
Instance Method Details
#deserialize(params) ⇒ Object
10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 |
# File 'lib/v20201111/models.rb', line 10350 def deserialize(params) unless params['Operator'].nil? @Operator = UserInfo.new @Operator.deserialize(params['Operator']) end @FlowId = params['FlowId'] unless params['Agent'].nil? @Agent = Agent.new @Agent.deserialize(params['Agent']) end end |