Class: TencentCloud::Ssl::V20191205::TkeInstanceList
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::TkeInstanceList
- Defined in:
- lib/v20191205/models.rb
Overview
tke实例详情 - 异步关联云资源数据结构
Instance Attribute Summary collapse
-
#Error ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#InstanceList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#Region ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(region = nil, instancelist = nil, totalcount = nil, error = nil) ⇒ TkeInstanceList
constructor
A new instance of TkeInstanceList.
Constructor Details
#initialize(region = nil, instancelist = nil, totalcount = nil, error = nil) ⇒ TkeInstanceList
Returns a new instance of TkeInstanceList.
7941 7942 7943 7944 7945 7946 |
# File 'lib/v20191205/models.rb', line 7941 def initialize(region=nil, instancelist=nil, totalcount=nil, error=nil) @Region = region @InstanceList = instancelist @TotalCount = totalcount @Error = error end |
Instance Attribute Details
#Error ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7939 7940 7941 |
# File 'lib/v20191205/models.rb', line 7939 def Error @Error end |
#InstanceList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7939 7940 7941 |
# File 'lib/v20191205/models.rb', line 7939 def InstanceList @InstanceList end |
#Region ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7939 7940 7941 |
# File 'lib/v20191205/models.rb', line 7939 def Region @Region end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7939 7940 7941 |
# File 'lib/v20191205/models.rb', line 7939 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 |
# File 'lib/v20191205/models.rb', line 7948 def deserialize(params) @Region = params['Region'] unless params['InstanceList'].nil? @InstanceList = [] params['InstanceList'].each do |i| tkeinstancedetail_tmp = TkeInstanceDetail.new tkeinstancedetail_tmp.deserialize(i) @InstanceList << tkeinstancedetail_tmp end end @TotalCount = params['TotalCount'] @Error = params['Error'] end |