Class: TencentCloud::Ssl::V20191205::TSEInstanceList
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ssl::V20191205::TSEInstanceList
- Defined in:
- lib/v20191205/models.rb
Overview
TSE实例详情 - 异步关联云资源数据结构
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(instancelist = nil, totalcount = nil, region = nil, error = nil) ⇒ TSEInstanceList
constructor
A new instance of TSEInstanceList.
Constructor Details
#initialize(instancelist = nil, totalcount = nil, region = nil, error = nil) ⇒ TSEInstanceList
Returns a new instance of TSEInstanceList.
7750 7751 7752 7753 7754 7755 |
# File 'lib/v20191205/models.rb', line 7750 def initialize(instancelist=nil, totalcount=nil, region=nil, error=nil) @InstanceList = instancelist @TotalCount = totalcount @Region = region @Error = error end |
Instance Attribute Details
#Error ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7748 7749 7750 |
# File 'lib/v20191205/models.rb', line 7748 def Error @Error end |
#InstanceList ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7748 7749 7750 |
# File 'lib/v20191205/models.rb', line 7748 def InstanceList @InstanceList end |
#Region ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7748 7749 7750 |
# File 'lib/v20191205/models.rb', line 7748 def Region @Region end |
#TotalCount ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
7748 7749 7750 |
# File 'lib/v20191205/models.rb', line 7748 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 |
# File 'lib/v20191205/models.rb', line 7757 def deserialize(params) unless params['InstanceList'].nil? @InstanceList = [] params['InstanceList'].each do |i| tseinstancedetail_tmp = TSEInstanceDetail.new tseinstancedetail_tmp.deserialize(i) @InstanceList << tseinstancedetail_tmp end end @TotalCount = params['TotalCount'] @Region = params['Region'] @Error = params['Error'] end |