tencentcloud-sdk-thpc 3.0.503 → 3.0.504
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/v20220401/models.rb +8 -7
- 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: 67f7d07b3244695fc37e057b277e48b888acf1a4
|
4
|
+
data.tar.gz: 676a27f5e12073c001dfee61873ec54eb652ae1c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 77de13c38d179992eec16069e2ffff9959a8f2f48ff77cdedf83e0dd3ce79e70a76db2bae23bd50d973e8ece8c2d5456db29b3afb91977428cb074c5eb3698f0
|
7
|
+
data.tar.gz: fc420dccc7499107c1811d77cea7cedc1420b4e1902772e02bdd2d2f37e76d69cb145a8f9527e5f6c7ddcae2a30d98964f8d84cd0838dab80f69dd851ae3128c
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.504
|
data/lib/v20220401/models.rb
CHANGED
@@ -62,12 +62,12 @@ module TencentCloud
|
|
62
62
|
# @type Placement: :class:`Tencentcloud::Thpc.v20220401.models.Placement`
|
63
63
|
# @param ClusterId: 集群ID。
|
64
64
|
# @type ClusterId: String
|
65
|
-
# @param ImageId: 指定有效的[镜像](https://cloud.tencent.com/document/product/213/4940)ID,格式形如`img-xxx`。目前仅支持公有镜。
|
66
|
-
# @type ImageId: String
|
67
65
|
# @param VirtualPrivateCloud: 私有网络相关信息配置。
|
68
66
|
# @type VirtualPrivateCloud: :class:`Tencentcloud::Thpc.v20220401.models.VirtualPrivateCloud`
|
69
67
|
# @param Count: 添加节点数量。
|
70
68
|
# @type Count: Integer
|
69
|
+
# @param ImageId: 指定有效的[镜像](https://cloud.tencent.com/document/product/213/4940)ID,格式形如`img-xxx`。目前仅支持公有镜像和特定自定义镜像。
|
70
|
+
# @type ImageId: String
|
71
71
|
# @param InstanceChargeType: 节点[计费类型](https://cloud.tencent.com/document/product/213/2180)。<br><li>PREPAID:预付费,即包年包月<br><li>POSTPAID_BY_HOUR:按小时后付费<br><li>SPOTPAID:竞价付费<br>默认值:POSTPAID_BY_HOUR。
|
72
72
|
# @type InstanceChargeType: String
|
73
73
|
# @param InstanceChargePrepaid: 预付费模式,即包年包月相关参数设置。通过该参数可以指定包年包月节点的购买时长、是否设置自动续费等属性。若指定节点的付费模式为预付费则该参数必传。
|
@@ -90,7 +90,8 @@ module TencentCloud
|
|
90
90
|
# @type SecurityGroupIds: Array
|
91
91
|
# @param ClientToken: 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
|
92
92
|
# @type ClientToken: String
|
93
|
-
# @param QueueName:
|
93
|
+
# @param QueueName: 队列名称。不指定则为默认队列。<br><li>SLURM默认队列为:compute。<br>
|
94
|
+
# <li>SGE默认队列为:all.q。<br>
|
94
95
|
# @type QueueName: String
|
95
96
|
# @param NodeRole: 添加节点类型。默认值:Compute<br><li>Compute:计算节点。<br><li>Login:登录节点。
|
96
97
|
# @type NodeRole: String
|
@@ -101,14 +102,14 @@ module TencentCloud
|
|
101
102
|
# false(默认):发送正常请求,通过检查后直接创建实例
|
102
103
|
# @type DryRun: Boolean
|
103
104
|
|
104
|
-
attr_accessor :Placement, :ClusterId, :
|
105
|
+
attr_accessor :Placement, :ClusterId, :VirtualPrivateCloud, :Count, :ImageId, :InstanceChargeType, :InstanceChargePrepaid, :InstanceType, :SystemDisk, :DataDisks, :InternetAccessible, :InstanceName, :LoginSettings, :SecurityGroupIds, :ClientToken, :QueueName, :NodeRole, :DryRun
|
105
106
|
|
106
|
-
def initialize(placement=nil, clusterid=nil,
|
107
|
+
def initialize(placement=nil, clusterid=nil, virtualprivatecloud=nil, count=nil, imageid=nil, instancechargetype=nil, instancechargeprepaid=nil, instancetype=nil, systemdisk=nil, datadisks=nil, internetaccessible=nil, instancename=nil, loginsettings=nil, securitygroupids=nil, clienttoken=nil, queuename=nil, noderole=nil, dryrun=nil)
|
107
108
|
@Placement = placement
|
108
109
|
@ClusterId = clusterid
|
109
|
-
@ImageId = imageid
|
110
110
|
@VirtualPrivateCloud = virtualprivatecloud
|
111
111
|
@Count = count
|
112
|
+
@ImageId = imageid
|
112
113
|
@InstanceChargeType = instancechargetype
|
113
114
|
@InstanceChargePrepaid = instancechargeprepaid
|
114
115
|
@InstanceType = instancetype
|
@@ -130,12 +131,12 @@ module TencentCloud
|
|
130
131
|
@Placement.deserialize(params['Placement'])
|
131
132
|
end
|
132
133
|
@ClusterId = params['ClusterId']
|
133
|
-
@ImageId = params['ImageId']
|
134
134
|
unless params['VirtualPrivateCloud'].nil?
|
135
135
|
@VirtualPrivateCloud = VirtualPrivateCloud.new
|
136
136
|
@VirtualPrivateCloud.deserialize(params['VirtualPrivateCloud'])
|
137
137
|
end
|
138
138
|
@Count = params['Count']
|
139
|
+
@ImageId = params['ImageId']
|
139
140
|
@InstanceChargeType = params['InstanceChargeType']
|
140
141
|
unless params['InstanceChargePrepaid'].nil?
|
141
142
|
@InstanceChargePrepaid = InstanceChargePrepaid.new
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-thpc
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.504
|
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-02-
|
11
|
+
date: 2023-02-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|