Class: TencentCloud::Iecp::V20210914::DescribeEdgeNodePodContainersResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Iecp::V20210914::DescribeEdgeNodePodContainersResponse
- Defined in:
- lib/v20210914/models.rb
Overview
DescribeEdgeNodePodContainers返回参数结构体
Instance Attribute Summary collapse
-
#ContainerSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(containerset = nil, requestid = nil) ⇒ DescribeEdgeNodePodContainersResponse
constructor
A new instance of DescribeEdgeNodePodContainersResponse.
Constructor Details
#initialize(containerset = nil, requestid = nil) ⇒ DescribeEdgeNodePodContainersResponse
1942 1943 1944 1945 |
# File 'lib/v20210914/models.rb', line 1942 def initialize(containerset=nil, requestid=nil) @ContainerSet = containerset @RequestId = requestid end |
Instance Attribute Details
#ContainerSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1940 1941 1942 |
# File 'lib/v20210914/models.rb', line 1940 def ContainerSet @ContainerSet end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。
1940 1941 1942 |
# File 'lib/v20210914/models.rb', line 1940 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 |
# File 'lib/v20210914/models.rb', line 1947 def deserialize(params) unless params['ContainerSet'].nil? @ContainerSet = [] params['ContainerSet'].each do |i| edgenodepodcontainerinfo_tmp = EdgeNodePodContainerInfo.new edgenodepodcontainerinfo_tmp.deserialize(i) @ContainerSet << edgenodepodcontainerinfo_tmp end end @RequestId = params['RequestId'] end |