Class: TencentCloud::As::V20180419::RefreshBatch
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::As::V20180419::RefreshBatch
- Defined in:
- lib/v20180419/models.rb
Overview
实例刷新批次信息,包含该批次的刷新状态、实例、起止时间等信息。
Instance Attribute Summary collapse
-
#EndTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RefreshBatchNum ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RefreshBatchRelatedInstanceSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RefreshBatchStatus ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#StartTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(refreshbatchnum = nil, refreshbatchstatus = nil, refreshbatchrelatedinstanceset = nil, starttime = nil, endtime = nil) ⇒ RefreshBatch
constructor
A new instance of RefreshBatch.
Constructor Details
#initialize(refreshbatchnum = nil, refreshbatchstatus = nil, refreshbatchrelatedinstanceset = nil, starttime = nil, endtime = nil) ⇒ RefreshBatch
Returns a new instance of RefreshBatch.
4852 4853 4854 4855 4856 4857 4858 |
# File 'lib/v20180419/models.rb', line 4852 def initialize(refreshbatchnum=nil, refreshbatchstatus=nil, =nil, starttime=nil, endtime=nil) @RefreshBatchNum = refreshbatchnum @RefreshBatchStatus = refreshbatchstatus @RefreshBatchRelatedInstanceSet = @StartTime = starttime @EndTime = endtime end |
Instance Attribute Details
#EndTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4850 4851 4852 |
# File 'lib/v20180419/models.rb', line 4850 def EndTime @EndTime end |
#RefreshBatchNum ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4850 4851 4852 |
# File 'lib/v20180419/models.rb', line 4850 def RefreshBatchNum @RefreshBatchNum end |
#RefreshBatchRelatedInstanceSet ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4850 4851 4852 |
# File 'lib/v20180419/models.rb', line 4850 def RefreshBatchRelatedInstanceSet @RefreshBatchRelatedInstanceSet end |
#RefreshBatchStatus ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4850 4851 4852 |
# File 'lib/v20180419/models.rb', line 4850 def RefreshBatchStatus @RefreshBatchStatus end |
#StartTime ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
4850 4851 4852 |
# File 'lib/v20180419/models.rb', line 4850 def StartTime @StartTime end |
Instance Method Details
#deserialize(params) ⇒ Object
4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 |
# File 'lib/v20180419/models.rb', line 4860 def deserialize(params) @RefreshBatchNum = params['RefreshBatchNum'] @RefreshBatchStatus = params['RefreshBatchStatus'] unless params['RefreshBatchRelatedInstanceSet'].nil? @RefreshBatchRelatedInstanceSet = [] params['RefreshBatchRelatedInstanceSet'].each do |i| = RefreshBatchRelatedInstance.new .deserialize(i) @RefreshBatchRelatedInstanceSet << end end @StartTime = params['StartTime'] @EndTime = params['EndTime'] end |