tencentcloud-sdk-cdwdoris 3.0.1152 → 3.0.1159
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/v20211228/models.rb +13 -2
- metadata +3 -3
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 93df7719aedb127910616522d2c16266a3c36441
|
4
|
+
data.tar.gz: c0528c0f94738bfcab6615ad975d874e6c0893b4
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 80a2ff76dcefc47da67e1d4a2e595aca84f25a6db5e3eb0a6bf706bca4dbe937a55e240a348a265bd52771f6efd2bf9fb2a8c8cffb62a15c562603d15f000672
|
7
|
+
data.tar.gz: 10e7c087f4f8d79f121a200419a6248c01848d949a9b1cda1e57998b8be22e76237693787fa68ff7184dbd5c84d27e27eb3f31ae7d22a1afedec3e0b0701b9d1
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1159
|
data/lib/v20211228/models.rb
CHANGED
@@ -1764,16 +1764,19 @@ module TencentCloud
|
|
1764
1764
|
# @type ErrorMsg: String
|
1765
1765
|
# @param HasCN: 是否包含CN节点
|
1766
1766
|
# @type HasCN: Boolean
|
1767
|
+
# @param ExistingJarConfList: 实例已经存在的jar包列表
|
1768
|
+
# @type ExistingJarConfList: Array
|
1767
1769
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
1768
1770
|
# @type RequestId: String
|
1769
1771
|
|
1770
|
-
attr_accessor :ClusterConfList, :BuildVersion, :ErrorMsg, :HasCN, :RequestId
|
1772
|
+
attr_accessor :ClusterConfList, :BuildVersion, :ErrorMsg, :HasCN, :ExistingJarConfList, :RequestId
|
1771
1773
|
|
1772
|
-
def initialize(clusterconflist=nil, buildversion=nil, errormsg=nil, hascn=nil, requestid=nil)
|
1774
|
+
def initialize(clusterconflist=nil, buildversion=nil, errormsg=nil, hascn=nil, existingjarconflist=nil, requestid=nil)
|
1773
1775
|
@ClusterConfList = clusterconflist
|
1774
1776
|
@BuildVersion = buildversion
|
1775
1777
|
@ErrorMsg = errormsg
|
1776
1778
|
@HasCN = hascn
|
1779
|
+
@ExistingJarConfList = existingjarconflist
|
1777
1780
|
@RequestId = requestid
|
1778
1781
|
end
|
1779
1782
|
|
@@ -1789,6 +1792,14 @@ module TencentCloud
|
|
1789
1792
|
@BuildVersion = params['BuildVersion']
|
1790
1793
|
@ErrorMsg = params['ErrorMsg']
|
1791
1794
|
@HasCN = params['HasCN']
|
1795
|
+
unless params['ExistingJarConfList'].nil?
|
1796
|
+
@ExistingJarConfList = []
|
1797
|
+
params['ExistingJarConfList'].each do |i|
|
1798
|
+
clusterconfigsinfofromemr_tmp = ClusterConfigsInfoFromEMR.new
|
1799
|
+
clusterconfigsinfofromemr_tmp.deserialize(i)
|
1800
|
+
@ExistingJarConfList << clusterconfigsinfofromemr_tmp
|
1801
|
+
end
|
1802
|
+
end
|
1792
1803
|
@RequestId = params['RequestId']
|
1793
1804
|
end
|
1794
1805
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cdwdoris
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1159
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-10-
|
11
|
+
date: 2025-10-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,8 +33,8 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/v20211228/client.rb
|
37
36
|
- lib/v20211228/models.rb
|
37
|
+
- lib/v20211228/client.rb
|
38
38
|
- lib/tencentcloud-sdk-cdwdoris.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|