Class: TencentCloud::Sqlserver::V20180328::DescribeBackupMigrationResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Sqlserver::V20180328::DescribeBackupMigrationResponse
- Defined in:
- lib/v20180328/models.rb
Overview
DescribeBackupMigration返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(totalcount = nil, backupmigrationset = nil, requestid = nil) ⇒ DescribeBackupMigrationResponse
constructor
A new instance of DescribeBackupMigrationResponse.
Constructor Details
#initialize(totalcount = nil, backupmigrationset = nil, requestid = nil) ⇒ DescribeBackupMigrationResponse
Returns a new instance of DescribeBackupMigrationResponse.
3557 3558 3559 3560 3561 |
# File 'lib/v20180328/models.rb', line 3557 def initialize(totalcount=nil, backupmigrationset=nil, requestid=nil) @TotalCount = totalcount @BackupMigrationSet = backupmigrationset @RequestId = requestid end |
Instance Attribute Details
#BackupMigrationSet ⇒ Object
3555 3556 3557 |
# File 'lib/v20180328/models.rb', line 3555 def BackupMigrationSet @BackupMigrationSet end |
#RequestId ⇒ Object
3555 3556 3557 |
# File 'lib/v20180328/models.rb', line 3555 def RequestId @RequestId end |
#TotalCount ⇒ Object
3555 3556 3557 |
# File 'lib/v20180328/models.rb', line 3555 def TotalCount @TotalCount end |
Instance Method Details
#deserialize(params) ⇒ Object
3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 |
# File 'lib/v20180328/models.rb', line 3563 def deserialize(params) @TotalCount = params['TotalCount'] unless params['BackupMigrationSet'].nil? @BackupMigrationSet = [] params['BackupMigrationSet'].each do |i| migration_tmp = Migration.new migration_tmp.deserialize(i) @BackupMigrationSet << migration_tmp end end @RequestId = params['RequestId'] end |