Class: TencentCloud::Tke::V20180525::DescribeImagesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Tke::V20180525::DescribeImagesResponse
- Defined in:
- lib/v20180525/models.rb
Overview
DescribeImages返回参数结构体
Instance Attribute Summary collapse
-
#ImageInstanceSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, imageinstanceset = nil, requestid = nil) ⇒ DescribeImagesResponse
constructor
A new instance of DescribeImagesResponse.
Constructor Details
#initialize(totalcount = nil, imageinstanceset = nil, requestid = nil) ⇒ DescribeImagesResponse
Returns a new instance of DescribeImagesResponse.
8074 8075 8076 8077 8078 |
# File 'lib/v20180525/models.rb', line 8074 def initialize(totalcount=nil, imageinstanceset=nil, requestid=nil) @TotalCount = totalcount @ImageInstanceSet = imageinstanceset @RequestId = requestid end |
Instance Attribute Details
#ImageInstanceSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
8072 8073 8074 |
# File 'lib/v20180525/models.rb', line 8072 def ImageInstanceSet @ImageInstanceSet end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
8072 8073 8074 |
# File 'lib/v20180525/models.rb', line 8072 def RequestId @RequestId end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
8072 8073 8074 |
# File 'lib/v20180525/models.rb', line 8072 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 |
# File 'lib/v20180525/models.rb', line 8080 def deserialize(params) @TotalCount = params['TotalCount'] unless params['ImageInstanceSet'].nil? @ImageInstanceSet = [] params['ImageInstanceSet'].each do |i| imageinstance_tmp = ImageInstance.new imageinstance_tmp.deserialize(i) @ImageInstanceSet << imageinstance_tmp end end @RequestId = params['RequestId'] end |