tencentcloud-sdk-dlc 3.0.680 → 3.0.681
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210125/models.rb +47 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 96edaf69eeb411a009cc38684833f882dcb00724
|
4
|
+
data.tar.gz: 0a3a6469e65f3850c808c8af7b53ebb82ce586de
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 39422aa80dd000122c3ba935a28d3fc8c9ccaf9910f4dafc247990ea17c68f4d56eca910f074d744676581535db34e5a9fab3c695c34341dc4c40f1815f5ad26
|
7
|
+
data.tar.gz: 1b90bcf101ad12b8a895462ed180098a93cba3e51b9caef3d7b22737aa0177838711f933eacb7b85b8f2c35c1eb09a0de9654e88dfbdff7454c0de541ab1f332
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.681
|
data/lib/v20210125/models.rb
CHANGED
@@ -5035,27 +5035,39 @@ module TencentCloud
|
|
5035
5035
|
|
5036
5036
|
# DescribeLakeFsTaskResult请求参数结构体
|
5037
5037
|
class DescribeLakeFsTaskResultRequest < TencentCloud::Common::AbstractModel
|
5038
|
+
# @param FsPath: 需要访问的任务结果路径
|
5039
|
+
# @type FsPath: String
|
5038
5040
|
|
5041
|
+
attr_accessor :FsPath
|
5039
5042
|
|
5040
|
-
def initialize()
|
5043
|
+
def initialize(fspath=nil)
|
5044
|
+
@FsPath = fspath
|
5041
5045
|
end
|
5042
5046
|
|
5043
5047
|
def deserialize(params)
|
5048
|
+
@FsPath = params['FsPath']
|
5044
5049
|
end
|
5045
5050
|
end
|
5046
5051
|
|
5047
5052
|
# DescribeLakeFsTaskResult返回参数结构体
|
5048
5053
|
class DescribeLakeFsTaskResultResponse < TencentCloud::Common::AbstractModel
|
5054
|
+
# @param AccessToken: 路径的访问实例
|
5055
|
+
# @type AccessToken: :class:`Tencentcloud::Dlc.v20210125.models.LakeFileSystemToken`
|
5049
5056
|
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
5050
5057
|
# @type RequestId: String
|
5051
5058
|
|
5052
|
-
attr_accessor :RequestId
|
5059
|
+
attr_accessor :AccessToken, :RequestId
|
5053
5060
|
|
5054
|
-
def initialize(requestid=nil)
|
5061
|
+
def initialize(accesstoken=nil, requestid=nil)
|
5062
|
+
@AccessToken = accesstoken
|
5055
5063
|
@RequestId = requestid
|
5056
5064
|
end
|
5057
5065
|
|
5058
5066
|
def deserialize(params)
|
5067
|
+
unless params['AccessToken'].nil?
|
5068
|
+
@AccessToken = LakeFileSystemToken.new
|
5069
|
+
@AccessToken.deserialize(params['AccessToken'])
|
5070
|
+
end
|
5059
5071
|
@RequestId = params['RequestId']
|
5060
5072
|
end
|
5061
5073
|
end
|
@@ -7435,6 +7447,38 @@ module TencentCloud
|
|
7435
7447
|
end
|
7436
7448
|
end
|
7437
7449
|
|
7450
|
+
# LakeFileSystem使用的临时token
|
7451
|
+
class LakeFileSystemToken < TencentCloud::Common::AbstractModel
|
7452
|
+
# @param SecretId: Token使用的临时秘钥的ID
|
7453
|
+
# @type SecretId: String
|
7454
|
+
# @param SecretKey: Token使用的临时秘钥
|
7455
|
+
# @type SecretKey: String
|
7456
|
+
# @param Token: Token信息
|
7457
|
+
# @type Token: String
|
7458
|
+
# @param ExpiredTime: 过期时间
|
7459
|
+
# @type ExpiredTime: Integer
|
7460
|
+
# @param IssueTime: 颁布时间
|
7461
|
+
# @type IssueTime: Integer
|
7462
|
+
|
7463
|
+
attr_accessor :SecretId, :SecretKey, :Token, :ExpiredTime, :IssueTime
|
7464
|
+
|
7465
|
+
def initialize(secretid=nil, secretkey=nil, token=nil, expiredtime=nil, issuetime=nil)
|
7466
|
+
@SecretId = secretid
|
7467
|
+
@SecretKey = secretkey
|
7468
|
+
@Token = token
|
7469
|
+
@ExpiredTime = expiredtime
|
7470
|
+
@IssueTime = issuetime
|
7471
|
+
end
|
7472
|
+
|
7473
|
+
def deserialize(params)
|
7474
|
+
@SecretId = params['SecretId']
|
7475
|
+
@SecretKey = params['SecretKey']
|
7476
|
+
@Token = params['Token']
|
7477
|
+
@ExpiredTime = params['ExpiredTime']
|
7478
|
+
@IssueTime = params['IssueTime']
|
7479
|
+
end
|
7480
|
+
end
|
7481
|
+
|
7438
7482
|
# ListTaskJobLogDetail请求参数结构体
|
7439
7483
|
class ListTaskJobLogDetailRequest < TencentCloud::Common::AbstractModel
|
7440
7484
|
# @param TaskId: 列表返回的Id
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-dlc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.681
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-10-
|
11
|
+
date: 2023-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|