tencentcloud-sdk-lighthouse 3.0.1152 → 3.0.1157
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 +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d22bd9f1177f8df0cad2881dedc40057c6e422c3
|
4
|
+
data.tar.gz: 0610f32e45093313e6f6f3490b12addbfa16315b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3962f3fef61da9fc51cf72ce6f957b8618c8be8bb506c5ae2b2791531ebb754ffdbe041c92b4fb1122ee810099a33719f3ba24eadafe2e360ce2966d14809a1e
|
7
|
+
data.tar.gz: ecfb374ae33428457aae46fe1a46432bab08b53f8e18b44f854c078b1ffb2aa77ec601a171bc9c61b83f5dffefe22eb857901fda83ee9d56d434721b0378730d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1157
|
data/lib/v20200324/models.rb
CHANGED
@@ -4193,6 +4193,26 @@ module TencentCloud
|
|
4193
4193
|
end
|
4194
4194
|
end
|
4195
4195
|
|
4196
|
+
# 目标地域镜像信息。
|
4197
|
+
class DestinationRegionBlueprint < TencentCloud::Common::AbstractModel
|
4198
|
+
# @param Region: 目标地域。
|
4199
|
+
# @type Region: String
|
4200
|
+
# @param BlueprintId: 目标地域镜像ID。
|
4201
|
+
# @type BlueprintId: String
|
4202
|
+
|
4203
|
+
attr_accessor :Region, :BlueprintId
|
4204
|
+
|
4205
|
+
def initialize(region=nil, blueprintid=nil)
|
4206
|
+
@Region = region
|
4207
|
+
@BlueprintId = blueprintid
|
4208
|
+
end
|
4209
|
+
|
4210
|
+
def deserialize(params)
|
4211
|
+
@Region = params['Region']
|
4212
|
+
@BlueprintId = params['BlueprintId']
|
4213
|
+
end
|
4214
|
+
end
|
4215
|
+
|
4196
4216
|
# DetachCcn请求参数结构体
|
4197
4217
|
class DetachCcnRequest < TencentCloud::Common::AbstractModel
|
4198
4218
|
# @param CcnId: 云联网实例ID。可通过[DescribeCcnAttachedInstances](https://cloud.tencent.com/document/product/1207/58797)接口返回值中的CcnId获取。
|
@@ -8565,16 +8585,27 @@ module TencentCloud
|
|
8565
8585
|
|
8566
8586
|
# SyncBlueprint返回参数结构体
|
8567
8587
|
class SyncBlueprintResponse < TencentCloud::Common::AbstractModel
|
8588
|
+
# @param DestinationRegionBlueprintSet: 目标地域镜像信息。
|
8589
|
+
# @type DestinationRegionBlueprintSet: Array
|
8568
8590
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
8569
8591
|
# @type RequestId: String
|
8570
8592
|
|
8571
|
-
attr_accessor :RequestId
|
8593
|
+
attr_accessor :DestinationRegionBlueprintSet, :RequestId
|
8572
8594
|
|
8573
|
-
def initialize(requestid=nil)
|
8595
|
+
def initialize(destinationregionblueprintset=nil, requestid=nil)
|
8596
|
+
@DestinationRegionBlueprintSet = destinationregionblueprintset
|
8574
8597
|
@RequestId = requestid
|
8575
8598
|
end
|
8576
8599
|
|
8577
8600
|
def deserialize(params)
|
8601
|
+
unless params['DestinationRegionBlueprintSet'].nil?
|
8602
|
+
@DestinationRegionBlueprintSet = []
|
8603
|
+
params['DestinationRegionBlueprintSet'].each do |i|
|
8604
|
+
destinationregionblueprint_tmp = DestinationRegionBlueprint.new
|
8605
|
+
destinationregionblueprint_tmp.deserialize(i)
|
8606
|
+
@DestinationRegionBlueprintSet << destinationregionblueprint_tmp
|
8607
|
+
end
|
8608
|
+
end
|
8578
8609
|
@RequestId = params['RequestId']
|
8579
8610
|
end
|
8580
8611
|
end
|
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.
|
4
|
+
version: 3.0.1157
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-10-
|
11
|
+
date: 2025-10-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|
@@ -33,9 +33,9 @@ executables: []
|
|
33
33
|
extensions: []
|
34
34
|
extra_rdoc_files: []
|
35
35
|
files:
|
36
|
-
- lib/tencentcloud-sdk-lighthouse.rb
|
37
|
-
- lib/v20200324/client.rb
|
38
36
|
- lib/v20200324/models.rb
|
37
|
+
- lib/v20200324/client.rb
|
38
|
+
- lib/tencentcloud-sdk-lighthouse.rb
|
39
39
|
- lib/VERSION
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
41
41
|
licenses:
|