Class: TencentCloud::Dlc::V20210125::LakeFileSystemToken
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dlc::V20210125::LakeFileSystemToken
- Defined in:
- lib/v20210125/models.rb
Overview
LakeFileSystem使用的临时token
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(secretid = nil, secretkey = nil, token = nil, expiredtime = nil, issuetime = nil) ⇒ LakeFileSystemToken
constructor
A new instance of LakeFileSystemToken.
Constructor Details
#initialize(secretid = nil, secretkey = nil, token = nil, expiredtime = nil, issuetime = nil) ⇒ LakeFileSystemToken
Returns a new instance of LakeFileSystemToken.
11692 11693 11694 11695 11696 11697 11698 |
# File 'lib/v20210125/models.rb', line 11692 def initialize(secretid=nil, secretkey=nil, token=nil, expiredtime=nil, issuetime=nil) @SecretId = secretid @SecretKey = secretkey @Token = token @ExpiredTime = expiredtime @IssueTime = issuetime end |
Instance Attribute Details
#ExpiredTime ⇒ Object
11690 11691 11692 |
# File 'lib/v20210125/models.rb', line 11690 def ExpiredTime @ExpiredTime end |
#IssueTime ⇒ Object
11690 11691 11692 |
# File 'lib/v20210125/models.rb', line 11690 def IssueTime @IssueTime end |
#SecretId ⇒ Object
11690 11691 11692 |
# File 'lib/v20210125/models.rb', line 11690 def SecretId @SecretId end |
#SecretKey ⇒ Object
11690 11691 11692 |
# File 'lib/v20210125/models.rb', line 11690 def SecretKey @SecretKey end |
#Token ⇒ Object
11690 11691 11692 |
# File 'lib/v20210125/models.rb', line 11690 def Token @Token end |
Instance Method Details
#deserialize(params) ⇒ Object
11700 11701 11702 11703 11704 11705 11706 |
# File 'lib/v20210125/models.rb', line 11700 def deserialize(params) @SecretId = params['SecretId'] @SecretKey = params['SecretKey'] @Token = params['Token'] @ExpiredTime = params['ExpiredTime'] @IssueTime = params['IssueTime'] end |