tencentcloud-sdk-lighthouse 1.0.235 → 1.0.240

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200324/models.rb +33 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 0fdd913caf753d151c2c0e7f65d043611741b392
4
- data.tar.gz: 01d20ffdf12b7b5274ced92f91785fdb796de9d2
3
+ metadata.gz: c5b68dba78561d167383cb365e2cd0626431c50b
4
+ data.tar.gz: 33fbbb7e130e9a0104831ab9bc6b021727a84488
5
5
  SHA512:
6
- metadata.gz: 3db4a7d2a237c388d2cc550071e6d7de2a10dba471e9023bc2a8263e02d855ea35ef77fd22336de571650ec29ce9fc8a875a2cd8508dc7e6f6c7beced7a7a64d
7
- data.tar.gz: 4090c4efca9ae24fec301af2bbc57023517ffd9b6a0b7b958dbe791fc08d362e75423499a71b07d51a0cda5605942d130428c3ef03c2d4b7460b278c9e8fff17
6
+ metadata.gz: 6d9b485574b017eba984b476f088d71f34b4c53fc98449b52e6f0d318d3547916f8b068910997d6c157a05370c27838c9870534713ab497d030b18059c39f5d1
7
+ data.tar.gz: ff152ed1d8503e775bf343f892a272432ffbe1f91be5b8a9b9107f0d970694d6de417cbe39c0b967c7968944426fa622b99f1685ca0864c39019fb165dec0bf6
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.235
1
+ 1.0.240
@@ -3210,10 +3210,12 @@ module TencentCloud
3210
3210
  # @type OsName: String
3211
3211
  # @param Zone: 可用区。
3212
3212
  # @type Zone: String
3213
+ # @param Tags: 实例绑定的标签列表。
3214
+ # @type Tags: Array
3213
3215
 
3214
- attr_accessor :InstanceId, :BundleId, :BlueprintId, :CPU, :Memory, :InstanceName, :InstanceChargeType, :SystemDisk, :PrivateAddresses, :PublicAddresses, :InternetAccessible, :RenewFlag, :LoginSettings, :InstanceState, :Uuid, :LatestOperation, :LatestOperationState, :LatestOperationRequestId, :IsolatedTime, :CreatedTime, :ExpiredTime, :PlatformType, :Platform, :OsName, :Zone
3216
+ attr_accessor :InstanceId, :BundleId, :BlueprintId, :CPU, :Memory, :InstanceName, :InstanceChargeType, :SystemDisk, :PrivateAddresses, :PublicAddresses, :InternetAccessible, :RenewFlag, :LoginSettings, :InstanceState, :Uuid, :LatestOperation, :LatestOperationState, :LatestOperationRequestId, :IsolatedTime, :CreatedTime, :ExpiredTime, :PlatformType, :Platform, :OsName, :Zone, :Tags
3215
3217
 
3216
- def initialize(instanceid=nil, bundleid=nil, blueprintid=nil, cpu=nil, memory=nil, instancename=nil, instancechargetype=nil, systemdisk=nil, privateaddresses=nil, publicaddresses=nil, internetaccessible=nil, renewflag=nil, loginsettings=nil, instancestate=nil, uuid=nil, latestoperation=nil, latestoperationstate=nil, latestoperationrequestid=nil, isolatedtime=nil, createdtime=nil, expiredtime=nil, platformtype=nil, platform=nil, osname=nil, zone=nil)
3218
+ def initialize(instanceid=nil, bundleid=nil, blueprintid=nil, cpu=nil, memory=nil, instancename=nil, instancechargetype=nil, systemdisk=nil, privateaddresses=nil, publicaddresses=nil, internetaccessible=nil, renewflag=nil, loginsettings=nil, instancestate=nil, uuid=nil, latestoperation=nil, latestoperationstate=nil, latestoperationrequestid=nil, isolatedtime=nil, createdtime=nil, expiredtime=nil, platformtype=nil, platform=nil, osname=nil, zone=nil, tags=nil)
3217
3219
  @InstanceId = instanceid
3218
3220
  @BundleId = bundleid
3219
3221
  @BlueprintId = blueprintid
@@ -3239,6 +3241,7 @@ module TencentCloud
3239
3241
  @Platform = platform
3240
3242
  @OsName = osname
3241
3243
  @Zone = zone
3244
+ @Tags = tags
3242
3245
  end
3243
3246
 
3244
3247
  def deserialize(params)
@@ -3276,6 +3279,14 @@ module TencentCloud
3276
3279
  @Platform = params['Platform']
3277
3280
  @OsName = params['OsName']
3278
3281
  @Zone = params['Zone']
3282
+ unless params['Tags'].nil?
3283
+ @Tags = []
3284
+ params['Tags'].each do |i|
3285
+ tag_tmp = Tag.new
3286
+ tag_tmp.deserialize(i)
3287
+ @Tags << tag_tmp
3288
+ end
3289
+ end
3279
3290
  end
3280
3291
  end
3281
3292
 
@@ -4386,6 +4397,26 @@ module TencentCloud
4386
4397
  end
4387
4398
  end
4388
4399
 
4400
+ # 标签
4401
+ class Tag < TencentCloud::Common::AbstractModel
4402
+ # @param Key: 标签键
4403
+ # @type Key: String
4404
+ # @param Value: 标签值
4405
+ # @type Value: String
4406
+
4407
+ attr_accessor :Key, :Value
4408
+
4409
+ def initialize(key=nil, value=nil)
4410
+ @Key = key
4411
+ @Value = value
4412
+ end
4413
+
4414
+ def deserialize(params)
4415
+ @Key = params['Key']
4416
+ @Value = params['Value']
4417
+ end
4418
+ end
4419
+
4389
4420
  # TerminateDisks请求参数结构体
4390
4421
  class TerminateDisksRequest < TencentCloud::Common::AbstractModel
4391
4422
  # @param DiskIds: 云硬盘ID列表。
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: 1.0.235
4
+ version: 1.0.240
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-01-05 00:00:00.000000000 Z
11
+ date: 2022-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common