tencentcloud-sdk-cdwdoris 3.0.1002 → 3.0.1003
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20211228/models.rb +7 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d6999cdef643b68255185d6d9601d0ff0df8fea1
|
4
|
+
data.tar.gz: 000accff578eaa5448ef65d2fa1c302c0a5569be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d75f2179c6d10b359425f8823b5cf8e6ecd3ac64efb770af5466a597da6d0aeec21ab69bc17a076323652ac763117e36b18b2c38f2d35191bdf89efdf9a4e786
|
7
|
+
data.tar.gz: 13d4aea5930f169120fa88ef7e2c4960d9bb7bf7a8ed646ba2f9a8e0bf398b538e1a46c4a0bfb2541734e6acbea73ed0a8d9f374d177f6833a7d50e1d42abd7c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1003
|
data/lib/v20211228/models.rb
CHANGED
@@ -1640,19 +1640,22 @@ module TencentCloud
|
|
1640
1640
|
# @type ConfigType: Integer
|
1641
1641
|
# @param FileName: 模糊搜索关键字文件
|
1642
1642
|
# @type FileName: String
|
1643
|
-
# @param ClusterConfigType: 0集群维度 1节点维度
|
1643
|
+
# @param ClusterConfigType: 0集群维度 1节点维度 2启动脚本 3计算组维度
|
1644
1644
|
# @type ClusterConfigType: Integer
|
1645
1645
|
# @param IPAddress: eth0的ip地址
|
1646
1646
|
# @type IPAddress: String
|
1647
|
+
# @param ComputeGroupId: 计算组id
|
1648
|
+
# @type ComputeGroupId: String
|
1647
1649
|
|
1648
|
-
attr_accessor :InstanceId, :ConfigType, :FileName, :ClusterConfigType, :IPAddress
|
1650
|
+
attr_accessor :InstanceId, :ConfigType, :FileName, :ClusterConfigType, :IPAddress, :ComputeGroupId
|
1649
1651
|
|
1650
|
-
def initialize(instanceid=nil, configtype=nil, filename=nil, clusterconfigtype=nil, ipaddress=nil)
|
1652
|
+
def initialize(instanceid=nil, configtype=nil, filename=nil, clusterconfigtype=nil, ipaddress=nil, computegroupid=nil)
|
1651
1653
|
@InstanceId = instanceid
|
1652
1654
|
@ConfigType = configtype
|
1653
1655
|
@FileName = filename
|
1654
1656
|
@ClusterConfigType = clusterconfigtype
|
1655
1657
|
@IPAddress = ipaddress
|
1658
|
+
@ComputeGroupId = computegroupid
|
1656
1659
|
end
|
1657
1660
|
|
1658
1661
|
def deserialize(params)
|
@@ -1661,6 +1664,7 @@ module TencentCloud
|
|
1661
1664
|
@FileName = params['FileName']
|
1662
1665
|
@ClusterConfigType = params['ClusterConfigType']
|
1663
1666
|
@IPAddress = params['IPAddress']
|
1667
|
+
@ComputeGroupId = params['ComputeGroupId']
|
1664
1668
|
end
|
1665
1669
|
end
|
1666
1670
|
|