Class: TencentCloud::Kms::V20190118::DescribeWhiteBoxServiceStatusResponse

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

Overview

DescribeWhiteBoxServiceStatus返回参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(serviceenabled = nil, requestid = nil) ⇒ DescribeWhiteBoxServiceStatusResponse

Returns a new instance of DescribeWhiteBoxServiceStatusResponse.



1071
1072
1073
1074
# File 'lib/v20190118/models.rb', line 1071

def initialize(serviceenabled=nil, requestid=nil)
  @ServiceEnabled = serviceenabled
  @RequestId = requestid
end

Instance Attribute Details

#RequestIdObject

Parameters:

  • ServiceEnabled:

    用户的白盒密钥服务是否可用

  • RequestId:

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



1069
1070
1071
# File 'lib/v20190118/models.rb', line 1069

def RequestId
  @RequestId
end

#ServiceEnabledObject

Parameters:

  • ServiceEnabled:

    用户的白盒密钥服务是否可用

  • RequestId:

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



1069
1070
1071
# File 'lib/v20190118/models.rb', line 1069

def ServiceEnabled
  @ServiceEnabled
end

Instance Method Details

#deserialize(params) ⇒ Object



1076
1077
1078
1079
# File 'lib/v20190118/models.rb', line 1076

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