Class: TencentCloud::Cdwch::V20200915::DescribeBackUpScheduleResponse
- Inherits:
-
TencentCloud::Common::AbstractModel
- Object
- TencentCloud::Common::AbstractModel
- TencentCloud::Cdwch::V20200915::DescribeBackUpScheduleResponse
- Defined in:
- lib/v20200915/models.rb
Overview
DescribeBackUpSchedule返回参数结构体
Instance Attribute Summary collapse
-
#BackUpContents ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#BackUpOpened ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#BackUpStatus ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#DataStrategy ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#MetaStrategy ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
-
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(backupopened = nil, metastrategy = nil, datastrategy = nil, backupcontents = nil, backupstatus = nil, requestid = nil) ⇒ DescribeBackUpScheduleResponse
constructor
A new instance of DescribeBackUpScheduleResponse.
Constructor Details
#initialize(backupopened = nil, metastrategy = nil, datastrategy = nil, backupcontents = nil, backupstatus = nil, requestid = nil) ⇒ DescribeBackUpScheduleResponse
Returns a new instance of DescribeBackUpScheduleResponse.
462 463 464 465 466 467 468 469 |
# File 'lib/v20200915/models.rb', line 462 def initialize(backupopened=nil, =nil, datastrategy=nil, backupcontents=nil, backupstatus=nil, requestid=nil) @BackUpOpened = backupopened @MetaStrategy = @DataStrategy = datastrategy @BackUpContents = backupcontents @BackUpStatus = backupstatus @RequestId = requestid end |
Instance Attribute Details
#BackUpContents ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
460 461 462 |
# File 'lib/v20200915/models.rb', line 460 def BackUpContents @BackUpContents end |
#BackUpOpened ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
460 461 462 |
# File 'lib/v20200915/models.rb', line 460 def BackUpOpened @BackUpOpened end |
#BackUpStatus ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
460 461 462 |
# File 'lib/v20200915/models.rb', line 460 def BackUpStatus @BackUpStatus end |
#DataStrategy ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
460 461 462 |
# File 'lib/v20200915/models.rb', line 460 def DataStrategy @DataStrategy end |
#MetaStrategy ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
460 461 462 |
# File 'lib/v20200915/models.rb', line 460 def MetaStrategy @MetaStrategy end |
#RequestId ⇒ Object
注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。 注意:此字段可能返回 null,表示取不到有效值。
460 461 462 |
# File 'lib/v20200915/models.rb', line 460 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 |
# File 'lib/v20200915/models.rb', line 471 def deserialize(params) @BackUpOpened = params['BackUpOpened'] unless params['MetaStrategy'].nil? @MetaStrategy = ScheduleStrategy.new @MetaStrategy.deserialize(params['MetaStrategy']) end unless params['DataStrategy'].nil? @DataStrategy = ScheduleStrategy.new @DataStrategy.deserialize(params['DataStrategy']) end unless params['BackUpContents'].nil? @BackUpContents = [] params['BackUpContents'].each do |i| backuptablecontent_tmp = BackupTableContent.new backuptablecontent_tmp.deserialize(i) @BackUpContents << backuptablecontent_tmp end end @BackUpStatus = params['BackUpStatus'] @RequestId = params['RequestId'] end |