tencentcloud-sdk-thpc 3.0.442 → 3.0.444

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 2ace2becd1b6574f7f511f5774dad2d1c1001211
4
- data.tar.gz: f5b978d84fddda0c331ea675b4a0e739132712e2
3
+ metadata.gz: aa4537f9715757694c4379d1105a36c9f949d1af
4
+ data.tar.gz: e43aa7814900f93363b9b4560bac02cb9efbf366
5
5
  SHA512:
6
- metadata.gz: 37ab4a6e365ff22e48078b76e59cc649a99874cec4d9150e4c4bafed4d86111cd370b205f91abf1c9802b67fd202173834c870c9088fb4fe28dd8543f964181a
7
- data.tar.gz: a2facd83c270379e5e1c31846162380140f46a249a97d8eea8a331eb283854c88d0b88caec571f18e6cab191a15f1d0e1668474bda0d9fd566abf8a8802086d4
6
+ metadata.gz: ff2c3c7441c38012b60edb0117ba300d04e46bb0380ff7fbc15922b8e3b560dce66585f351a09d8c2dd556944717d055edb1ce0150192d10926044f7f827a388
7
+ data.tar.gz: bb59853246bca8ca92199d2036d474e9b502a6ed803ffaf1f1f5770cd0eacbc1a551ba3456e528d3a60bd1a0c79363b154595fa341d83df3ac146a2b14526a41
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.442
1
+ 3.0.444
@@ -427,7 +427,7 @@ module TencentCloud
427
427
  # @type ComputeNode: :class:`Tencentcloud::Thpc.v20220401.models.ComputeNode`
428
428
  # @param ComputeNodeCount: 指定计算节点的数量。默认取值:0。
429
429
  # @type ComputeNodeCount: Integer
430
- # @param SchedulerType: 调度器类型。<br><li>SGE:SGE调度器。<br><li>SLURM:SLURM调度器。
430
+ # @param SchedulerType: 调度器类型。默认取值:SLURM。<br><li>SGE:SGE调度器。<br><li>SLURM:SLURM调度器。
431
431
  # @type SchedulerType: String
432
432
  # @param ImageId: 指定有效的[镜像](https://cloud.tencent.com/document/product/213/4940)ID,格式形如`img-xxx`。目前仅支持公有镜像。
433
433
  # @type ImageId: String
@@ -445,7 +445,7 @@ module TencentCloud
445
445
  # 如果检查通过,则返回RequestId.
446
446
  # false(默认):发送正常请求,通过检查后直接创建实例
447
447
  # @type DryRun: Boolean
448
- # @param AccountType: 域名字服务类型。默认值:NIS
448
+ # @param AccountType: 域名字服务类型。默认取值:NIS
449
449
  # <li>NIS:NIS域名字服务。
450
450
  # @type AccountType: String
451
451
  # @param ClusterName: 集群显示名称。
@@ -458,10 +458,12 @@ module TencentCloud
458
458
  # @type LoginNodeCount: Integer
459
459
  # @param Tags: 创建集群时同时绑定的标签对说明。
460
460
  # @type Tags: Array
461
+ # @param AutoScalingType: 弹性伸缩类型。<br><li>AS:集群自动扩缩容由[弹性伸缩](https://cloud.tencent.com/document/product/377/3154)产品实现。<br><li>THPC_AS:集群自动扩缩容由THPC产品内部实现。
462
+ # @type AutoScalingType: String
461
463
 
462
- attr_accessor :Placement, :ManagerNode, :ManagerNodeCount, :ComputeNode, :ComputeNodeCount, :SchedulerType, :ImageId, :VirtualPrivateCloud, :LoginSettings, :SecurityGroupIds, :ClientToken, :DryRun, :AccountType, :ClusterName, :StorageOption, :LoginNode, :LoginNodeCount, :Tags
464
+ attr_accessor :Placement, :ManagerNode, :ManagerNodeCount, :ComputeNode, :ComputeNodeCount, :SchedulerType, :ImageId, :VirtualPrivateCloud, :LoginSettings, :SecurityGroupIds, :ClientToken, :DryRun, :AccountType, :ClusterName, :StorageOption, :LoginNode, :LoginNodeCount, :Tags, :AutoScalingType
463
465
 
464
- def initialize(placement=nil, managernode=nil, managernodecount=nil, computenode=nil, computenodecount=nil, schedulertype=nil, imageid=nil, virtualprivatecloud=nil, loginsettings=nil, securitygroupids=nil, clienttoken=nil, dryrun=nil, accounttype=nil, clustername=nil, storageoption=nil, loginnode=nil, loginnodecount=nil, tags=nil)
466
+ def initialize(placement=nil, managernode=nil, managernodecount=nil, computenode=nil, computenodecount=nil, schedulertype=nil, imageid=nil, virtualprivatecloud=nil, loginsettings=nil, securitygroupids=nil, clienttoken=nil, dryrun=nil, accounttype=nil, clustername=nil, storageoption=nil, loginnode=nil, loginnodecount=nil, tags=nil, autoscalingtype=nil)
465
467
  @Placement = placement
466
468
  @ManagerNode = managernode
467
469
  @ManagerNodeCount = managernodecount
@@ -480,6 +482,7 @@ module TencentCloud
480
482
  @LoginNode = loginnode
481
483
  @LoginNodeCount = loginnodecount
482
484
  @Tags = tags
485
+ @AutoScalingType = autoscalingtype
483
486
  end
484
487
 
485
488
  def deserialize(params)
@@ -529,6 +532,7 @@ module TencentCloud
529
532
  @Tags << tag_tmp
530
533
  end
531
534
  end
535
+ @AutoScalingType = params['AutoScalingType']
532
536
  end
533
537
  end
534
538
 
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.442
4
+ version: 3.0.444
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-11-01 00:00:00.000000000 Z
11
+ date: 2022-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -34,10 +34,10 @@ extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
36
  - lib/tencentcloud-sdk-thpc.rb
37
- - lib/v20211109/models.rb
38
- - lib/v20211109/client.rb
39
37
  - lib/v20220401/models.rb
40
38
  - lib/v20220401/client.rb
39
+ - lib/v20211109/models.rb
40
+ - lib/v20211109/client.rb
41
41
  - lib/VERSION
42
42
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
43
43
  licenses: