Class: TencentCloud::Kms::V20190118::CreateKeyResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Kms::V20190118::CreateKeyResponse
- Defined in:
- lib/v20190118/models.rb
Overview
CreateKey返回参数结构体
Instance Attribute Summary collapse
- #Alias ⇒ Object
- #CreateTime ⇒ Object
- #Description ⇒ Object
- #HsmClusterId ⇒ Object
- #KeyId ⇒ Object
- #KeyState ⇒ Object
- #KeyUsage ⇒ Object
- #RequestId ⇒ Object
- #TagCode ⇒ Object
- #TagMsg ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(keyid = nil, _alias = nil, createtime = nil, description = nil, keystate = nil, keyusage = nil, tagcode = nil, tagmsg = nil, hsmclusterid = nil, requestid = nil) ⇒ CreateKeyResponse
constructor
A new instance of CreateKeyResponse.
Constructor Details
#initialize(keyid = nil, _alias = nil, createtime = nil, description = nil, keystate = nil, keyusage = nil, tagcode = nil, tagmsg = nil, hsmclusterid = nil, requestid = nil) ⇒ CreateKeyResponse
Returns a new instance of CreateKeyResponse.
376 377 378 379 380 381 382 383 384 385 386 387 |
# File 'lib/v20190118/models.rb', line 376 def initialize(keyid=nil, _alias=nil, createtime=nil, description=nil, keystate=nil, keyusage=nil, tagcode=nil, tagmsg=nil, hsmclusterid=nil, requestid=nil) @KeyId = keyid @Alias = _alias @CreateTime = createtime @Description = description @KeyState = keystate @KeyUsage = keyusage @TagCode = tagcode @TagMsg = tagmsg @HsmClusterId = hsmclusterid @RequestId = requestid end |
Instance Attribute Details
#Alias ⇒ Object
374 375 376 |
# File 'lib/v20190118/models.rb', line 374 def Alias @Alias end |
#CreateTime ⇒ Object
374 375 376 |
# File 'lib/v20190118/models.rb', line 374 def CreateTime @CreateTime end |
#Description ⇒ Object
374 375 376 |
# File 'lib/v20190118/models.rb', line 374 def Description @Description end |
#HsmClusterId ⇒ Object
374 375 376 |
# File 'lib/v20190118/models.rb', line 374 def HsmClusterId @HsmClusterId end |
#KeyId ⇒ Object
374 375 376 |
# File 'lib/v20190118/models.rb', line 374 def KeyId @KeyId end |
#KeyState ⇒ Object
374 375 376 |
# File 'lib/v20190118/models.rb', line 374 def KeyState @KeyState end |
#KeyUsage ⇒ Object
374 375 376 |
# File 'lib/v20190118/models.rb', line 374 def KeyUsage @KeyUsage end |
#RequestId ⇒ Object
374 375 376 |
# File 'lib/v20190118/models.rb', line 374 def RequestId @RequestId end |
#TagCode ⇒ Object
374 375 376 |
# File 'lib/v20190118/models.rb', line 374 def TagCode @TagCode end |
#TagMsg ⇒ Object
374 375 376 |
# File 'lib/v20190118/models.rb', line 374 def TagMsg @TagMsg end |
Instance Method Details
#deserialize(params) ⇒ Object
389 390 391 392 393 394 395 396 397 398 399 400 |
# File 'lib/v20190118/models.rb', line 389 def deserialize(params) @KeyId = params['KeyId'] @Alias = params['Alias'] @CreateTime = params['CreateTime'] @Description = params['Description'] @KeyState = params['KeyState'] @KeyUsage = params['KeyUsage'] @TagCode = params['TagCode'] @TagMsg = params['TagMsg'] @HsmClusterId = params['HsmClusterId'] @RequestId = params['RequestId'] end |