Class: TencentCloud::Sqlserver::V20180328::DescribeBackupCommandResponse

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20180328/models.rb

Overview

DescribeBackupCommand返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(command = nil, requestid = nil) ⇒ DescribeBackupCommandResponse

Returns a new instance of DescribeBackupCommandResponse.



3408
3409
3410
3411
# File 'lib/v20180328/models.rb', line 3408

def initialize(command=nil, requestid=nil)
  @Command = command
  @RequestId = requestid
end

Instance Attribute Details

#CommandObject

Parameters:

  • Command:

    创建备份命令

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



3406
3407
3408
# File 'lib/v20180328/models.rb', line 3406

def Command
  @Command
end

#RequestIdObject

Parameters:

  • Command:

    创建备份命令

  • RequestId:

    唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。



3406
3407
3408
# File 'lib/v20180328/models.rb', line 3406

def RequestId
  @RequestId
end

Instance Method Details

#deserialize(params) ⇒ Object



3413
3414
3415
3416
# File 'lib/v20180328/models.rb', line 3413

def deserialize(params)
  @Command = params['Command']
  @RequestId = params['RequestId']
end