tencentcloud-sdk-cdwdoris 3.0.1007 → 3.0.1008
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 +12 -4
- 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: 5ac7bea836b92cba11229eb236d6d33ff169712a
|
4
|
+
data.tar.gz: 8abac323e01c71c4c419fbd1e1a5da1aad9c895b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ac3be77567f21135ec672bd44546d0e48f83144ccc6b9bd5c4f3462afdc363102ce7c5505ee313a2223c91f92bd5c713fb6a36b9d974145cf29ef9068de293b8
|
7
|
+
data.tar.gz: e7deea54b7628df29bcf25d1ed5c6496de93be059eff1139298464195daae9aad1044af6600e71d184c475f182b65180ac4049135e6b1dc0a512754f34b1b339
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1008
|
data/lib/v20211228/models.rb
CHANGED
@@ -432,6 +432,8 @@ module TencentCloud
|
|
432
432
|
|
433
433
|
# 集群的配置文件的修改历史
|
434
434
|
class ClusterConfigsHistory < TencentCloud::Common::AbstractModel
|
435
|
+
# @param ComputeGroupId: 计算组id
|
436
|
+
# @type ComputeGroupId: String
|
435
437
|
# @param FileName: 配置文件名称
|
436
438
|
# @type FileName: String
|
437
439
|
# @param NewConfValue: 修改后的配置文件内容,base64编码
|
@@ -445,9 +447,10 @@ module TencentCloud
|
|
445
447
|
# @param UserUin: 修改子账号id
|
446
448
|
# @type UserUin: String
|
447
449
|
|
448
|
-
attr_accessor :FileName, :NewConfValue, :OldConfValue, :Remark, :ModifyTime, :UserUin
|
450
|
+
attr_accessor :ComputeGroupId, :FileName, :NewConfValue, :OldConfValue, :Remark, :ModifyTime, :UserUin
|
449
451
|
|
450
|
-
def initialize(filename=nil, newconfvalue=nil, oldconfvalue=nil, remark=nil, modifytime=nil, useruin=nil)
|
452
|
+
def initialize(computegroupid=nil, filename=nil, newconfvalue=nil, oldconfvalue=nil, remark=nil, modifytime=nil, useruin=nil)
|
453
|
+
@ComputeGroupId = computegroupid
|
451
454
|
@FileName = filename
|
452
455
|
@NewConfValue = newconfvalue
|
453
456
|
@OldConfValue = oldconfvalue
|
@@ -457,6 +460,7 @@ module TencentCloud
|
|
457
460
|
end
|
458
461
|
|
459
462
|
def deserialize(params)
|
463
|
+
@ComputeGroupId = params['ComputeGroupId']
|
460
464
|
@FileName = params['FileName']
|
461
465
|
@NewConfValue = params['NewConfValue']
|
462
466
|
@OldConfValue = params['OldConfValue']
|
@@ -1579,16 +1583,19 @@ module TencentCloud
|
|
1579
1583
|
# @param ConfigFileNames: 需要查询的配置文件名称数组,如果为空则查询全部历史记录。目前支持的配置文件名称有:
|
1580
1584
|
# apache_hdfs_broker.conf、be.conf、fe.conf、core-site.xml、hdfs-site.xml、odbcinst.ini
|
1581
1585
|
# @type ConfigFileNames: Array
|
1586
|
+
# @param ComputeGroupIds: 需要查询的计算组列表
|
1587
|
+
# @type ComputeGroupIds: Array
|
1582
1588
|
|
1583
|
-
attr_accessor :InstanceId, :Offset, :Limit, :StartTime, :EndTime, :ConfigFileNames
|
1589
|
+
attr_accessor :InstanceId, :Offset, :Limit, :StartTime, :EndTime, :ConfigFileNames, :ComputeGroupIds
|
1584
1590
|
|
1585
|
-
def initialize(instanceid=nil, offset=nil, limit=nil, starttime=nil, endtime=nil, configfilenames=nil)
|
1591
|
+
def initialize(instanceid=nil, offset=nil, limit=nil, starttime=nil, endtime=nil, configfilenames=nil, computegroupids=nil)
|
1586
1592
|
@InstanceId = instanceid
|
1587
1593
|
@Offset = offset
|
1588
1594
|
@Limit = limit
|
1589
1595
|
@StartTime = starttime
|
1590
1596
|
@EndTime = endtime
|
1591
1597
|
@ConfigFileNames = configfilenames
|
1598
|
+
@ComputeGroupIds = computegroupids
|
1592
1599
|
end
|
1593
1600
|
|
1594
1601
|
def deserialize(params)
|
@@ -1598,6 +1605,7 @@ module TencentCloud
|
|
1598
1605
|
@StartTime = params['StartTime']
|
1599
1606
|
@EndTime = params['EndTime']
|
1600
1607
|
@ConfigFileNames = params['ConfigFileNames']
|
1608
|
+
@ComputeGroupIds = params['ComputeGroupIds']
|
1601
1609
|
end
|
1602
1610
|
end
|
1603
1611
|
|
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.1008
|
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-02-
|
11
|
+
date: 2025-02-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|