tencentcloud-sdk-lighthouse 1.0.235 → 1.0.240
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/v20200324/models.rb +33 -2
- 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: c5b68dba78561d167383cb365e2cd0626431c50b
|
4
|
+
data.tar.gz: 33fbbb7e130e9a0104831ab9bc6b021727a84488
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6d9b485574b017eba984b476f088d71f34b4c53fc98449b52e6f0d318d3547916f8b068910997d6c157a05370c27838c9870534713ab497d030b18059c39f5d1
|
7
|
+
data.tar.gz: ff152ed1d8503e775bf343f892a272432ffbe1f91be5b8a9b9107f0d970694d6de417cbe39c0b967c7968944426fa622b99f1685ca0864c39019fb165dec0bf6
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.0.
|
1
|
+
1.0.240
|
data/lib/v20200324/models.rb
CHANGED
@@ -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.
|
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-
|
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
|