tencentcloud-sdk-lighthouse 3.0.672 → 3.0.674

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200324/models.rb +20 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9aa4169ca247ae2c5bee579680ed993b2d4ba9ec
4
- data.tar.gz: 3e7b1a5fcaf4c7abc99126aff9e2f4cf2849ad60
3
+ metadata.gz: 2aed12588a53c5aeb2e4fa5d4ddf88374fe862ae
4
+ data.tar.gz: 5a2501ef5513b425a249bc3a480fdd3110fde89a
5
5
  SHA512:
6
- metadata.gz: c548031bb736a8d30b6a176bb378afe12e499b68788f071c31ea327ed891f7326c5d7c7d69cad8b74420016492459d1db4a8da6503af02792c340f8b6303cb07
7
- data.tar.gz: f8413bf23c0f4f9c7057977ddd7dc05b32dc40334c0a215add598cf529d48d2b2a4cd0aaf124ffdaaf9761e473a4c46381e538174a11931b6aba8851e1a6e634
6
+ metadata.gz: abd498a2a990e883649f11ff6bbf2ffbed73848e5cc53904b21296651364fc7655662e3d75df9beadc3880cdfa5af92eda1517a8346c5ab3dd677b85ff3167db
7
+ data.tar.gz: 984f1c91f961f4fe99933a9d9f7c42f1444b03852607a0f045583d2b3b7fbf9c2a0854f4ee7dba03bae09de8451df69c6ad14e49e4347ab2bc33f99ba1b2cbab
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.672
1
+ 3.0.674
@@ -976,7 +976,8 @@ module TencentCloud
976
976
  # @type InstanceName: String
977
977
  # @param InstanceCount: 购买实例数量。包年包月实例取值范围:[1,30]。默认取值:1。指定购买实例的数量不能超过用户所能购买的剩余配额数量
978
978
  # @type InstanceCount: Integer
979
- # @param Zones: 可用区列表。默认为随机可用区
979
+ # @param Zones: 可用区列表。
980
+ # 不填此参数,表示为随机可用区。
980
981
  # @type Zones: Array
981
982
  # @param DryRun: 是否只预检此次请求。
982
983
  # true:发送检查请求,不会创建实例。检查项包括是否填写了必需参数,请求格式,业务限制和库存。
@@ -986,7 +987,7 @@ module TencentCloud
986
987
  # @type DryRun: Boolean
987
988
  # @param ClientToken: 用于保证请求幂等性的字符串。该字符串由客户生成,需保证不同请求之间唯一,最大值不超过64个ASCII字符。若不指定该参数,则无法保证请求的幂等性。
988
989
  # @type ClientToken: String
989
- # @param LoginConfiguration: 实例登录密码信息配置。本字段目前仅支持WINDOWS实例进行密码设置。默认缺失情况下代表用户选择实例创建后设置登录密码。
990
+ # @param LoginConfiguration: 实例登录密码信息配置。默认缺失情况下代表用户选择实例创建后设置登录密码。
990
991
  # @type LoginConfiguration: :class:`Tencentcloud::Lighthouse.v20200324.models.LoginConfiguration`
991
992
  # @param Containers: 要创建的容器配置列表。
992
993
  # @type Containers: Array
@@ -994,10 +995,16 @@ module TencentCloud
994
995
  # @type AutoVoucher: Boolean
995
996
  # @param FirewallTemplateId: 防火墙模版ID。若不指定该参数,则使用默认防火墙策略。
996
997
  # @type FirewallTemplateId: String
998
+ # @param Tags: 标签键和标签值。
999
+ # 如果指定多个标签,则会为指定资源同时创建并绑定该多个标签。
1000
+ # 同一个资源上的同一个标签键只能对应一个标签值。如果您尝试添加已有标签键,则对应的标签值会更新为新值。
1001
+ # 如果标签不存在会为您自动创建标签。
1002
+ # 数组最多支持10个元素。
1003
+ # @type Tags: Array
997
1004
 
998
- attr_accessor :BundleId, :BlueprintId, :InstanceChargePrepaid, :InstanceName, :InstanceCount, :Zones, :DryRun, :ClientToken, :LoginConfiguration, :Containers, :AutoVoucher, :FirewallTemplateId
1005
+ attr_accessor :BundleId, :BlueprintId, :InstanceChargePrepaid, :InstanceName, :InstanceCount, :Zones, :DryRun, :ClientToken, :LoginConfiguration, :Containers, :AutoVoucher, :FirewallTemplateId, :Tags
999
1006
 
1000
- def initialize(bundleid=nil, blueprintid=nil, instancechargeprepaid=nil, instancename=nil, instancecount=nil, zones=nil, dryrun=nil, clienttoken=nil, loginconfiguration=nil, containers=nil, autovoucher=nil, firewalltemplateid=nil)
1007
+ def initialize(bundleid=nil, blueprintid=nil, instancechargeprepaid=nil, instancename=nil, instancecount=nil, zones=nil, dryrun=nil, clienttoken=nil, loginconfiguration=nil, containers=nil, autovoucher=nil, firewalltemplateid=nil, tags=nil)
1001
1008
  @BundleId = bundleid
1002
1009
  @BlueprintId = blueprintid
1003
1010
  @InstanceChargePrepaid = instancechargeprepaid
@@ -1010,6 +1017,7 @@ module TencentCloud
1010
1017
  @Containers = containers
1011
1018
  @AutoVoucher = autovoucher
1012
1019
  @FirewallTemplateId = firewalltemplateid
1020
+ @Tags = tags
1013
1021
  end
1014
1022
 
1015
1023
  def deserialize(params)
@@ -1038,6 +1046,14 @@ module TencentCloud
1038
1046
  end
1039
1047
  @AutoVoucher = params['AutoVoucher']
1040
1048
  @FirewallTemplateId = params['FirewallTemplateId']
1049
+ unless params['Tags'].nil?
1050
+ @Tags = []
1051
+ params['Tags'].each do |i|
1052
+ tag_tmp = Tag.new
1053
+ tag_tmp.deserialize(i)
1054
+ @Tags << tag_tmp
1055
+ end
1056
+ end
1041
1057
  end
1042
1058
  end
1043
1059
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-lighthouse
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.672
4
+ version: 3.0.674
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-10-09 00:00:00.000000000 Z
11
+ date: 2023-10-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common