tencentcloud-sdk-tcbr 3.0.1123 → 3.0.1140
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/v20220217/models.rb +45 -6
- 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: 4affead22ef60c5ff8c12d4e5bf784d2ae6e0022
|
4
|
+
data.tar.gz: 30cb99197fc16e18c9e3beabccf01753e4d2a1aa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 909eb1fddf40e45c261e86055805eb7e5d2e72d3dc34f0994b068de6929999a01afa18b7510e9e3290af31b08e8e09da791573459be53e8adfbe581fb8761e9e
|
7
|
+
data.tar.gz: 002ad6dcd387b43b3af4a0d4e22a74edcf841675e0e08b51330e7c5d45e803b6a2f6c8bb26f56723992c41319847c9a74006f6333c6427d679078562be84ba3d
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1140
|
data/lib/v20220217/models.rb
CHANGED
@@ -167,15 +167,18 @@ module TencentCloud
|
|
167
167
|
# @type ServerConfig: :class:`Tencentcloud::Tcbr.v20220217.models.ServerBaseConfig`
|
168
168
|
# @param Items: 服务配置信息
|
169
169
|
# @type Items: Array
|
170
|
+
# @param VpcInfo: vpc 信息
|
171
|
+
# @type VpcInfo: :class:`Tencentcloud::Tcbr.v20220217.models.CreateVpcInfo`
|
170
172
|
|
171
|
-
attr_accessor :EnvId, :ServerName, :DeployInfo, :ServerConfig, :Items
|
173
|
+
attr_accessor :EnvId, :ServerName, :DeployInfo, :ServerConfig, :Items, :VpcInfo
|
172
174
|
|
173
|
-
def initialize(envid=nil, servername=nil, deployinfo=nil, serverconfig=nil, items=nil)
|
175
|
+
def initialize(envid=nil, servername=nil, deployinfo=nil, serverconfig=nil, items=nil, vpcinfo=nil)
|
174
176
|
@EnvId = envid
|
175
177
|
@ServerName = servername
|
176
178
|
@DeployInfo = deployinfo
|
177
179
|
@ServerConfig = serverconfig
|
178
180
|
@Items = items
|
181
|
+
@VpcInfo = vpcinfo
|
179
182
|
end
|
180
183
|
|
181
184
|
def deserialize(params)
|
@@ -197,6 +200,10 @@ module TencentCloud
|
|
197
200
|
@Items << diffconfigitem_tmp
|
198
201
|
end
|
199
202
|
end
|
203
|
+
unless params['VpcInfo'].nil?
|
204
|
+
@VpcInfo = CreateVpcInfo.new
|
205
|
+
@VpcInfo.deserialize(params['VpcInfo'])
|
206
|
+
end
|
200
207
|
end
|
201
208
|
end
|
202
209
|
|
@@ -220,6 +227,30 @@ module TencentCloud
|
|
220
227
|
end
|
221
228
|
end
|
222
229
|
|
230
|
+
# 创建 vpc 信息
|
231
|
+
class CreateVpcInfo < TencentCloud::Common::AbstractModel
|
232
|
+
# @param VpcId: vpc id
|
233
|
+
# @type VpcId: String
|
234
|
+
# @param CreateType: 1 新建 2 指定
|
235
|
+
# @type CreateType: Integer
|
236
|
+
# @param SubnetIds: 子网ID列表
|
237
|
+
# @type SubnetIds: Array
|
238
|
+
|
239
|
+
attr_accessor :VpcId, :CreateType, :SubnetIds
|
240
|
+
|
241
|
+
def initialize(vpcid=nil, createtype=nil, subnetids=nil)
|
242
|
+
@VpcId = vpcid
|
243
|
+
@CreateType = createtype
|
244
|
+
@SubnetIds = subnetids
|
245
|
+
end
|
246
|
+
|
247
|
+
def deserialize(params)
|
248
|
+
@VpcId = params['VpcId']
|
249
|
+
@CreateType = params['CreateType']
|
250
|
+
@SubnetIds = params['SubnetIds']
|
251
|
+
end
|
252
|
+
end
|
253
|
+
|
223
254
|
# 数据库资源信息
|
224
255
|
class DatabasesInfo < TencentCloud::Common::AbstractModel
|
225
256
|
# @param InstanceId: 数据库唯一标识
|
@@ -426,15 +457,18 @@ module TencentCloud
|
|
426
457
|
# @type ServerName: String
|
427
458
|
# @param ServerType: 服务类型:function | container
|
428
459
|
# @type ServerType: String
|
460
|
+
# @param VpcId: vpcId
|
461
|
+
# @type VpcId: String
|
429
462
|
|
430
|
-
attr_accessor :EnvId, :PageSize, :PageNum, :ServerName, :ServerType
|
463
|
+
attr_accessor :EnvId, :PageSize, :PageNum, :ServerName, :ServerType, :VpcId
|
431
464
|
|
432
|
-
def initialize(envid=nil, pagesize=nil, pagenum=nil, servername=nil, servertype=nil)
|
465
|
+
def initialize(envid=nil, pagesize=nil, pagenum=nil, servername=nil, servertype=nil, vpcid=nil)
|
433
466
|
@EnvId = envid
|
434
467
|
@PageSize = pagesize
|
435
468
|
@PageNum = pagenum
|
436
469
|
@ServerName = servername
|
437
470
|
@ServerType = servertype
|
471
|
+
@VpcId = vpcid
|
438
472
|
end
|
439
473
|
|
440
474
|
def deserialize(params)
|
@@ -443,6 +477,7 @@ module TencentCloud
|
|
443
477
|
@PageNum = params['PageNum']
|
444
478
|
@ServerName = params['ServerName']
|
445
479
|
@ServerType = params['ServerType']
|
480
|
+
@VpcId = params['VpcId']
|
446
481
|
end
|
447
482
|
end
|
448
483
|
|
@@ -698,10 +733,12 @@ module TencentCloud
|
|
698
733
|
# @type EnvType: String
|
699
734
|
# @param SubnetIds: 子网id
|
700
735
|
# @type SubnetIds: String
|
736
|
+
# @param Recycle: 回收标志,为空则表示正常,recycle表示已回收
|
737
|
+
# @type Recycle: String
|
701
738
|
|
702
|
-
attr_accessor :EnvId, :PackageType, :VpcId, :CreateTime, :Alias, :Status, :Region, :EnvType, :SubnetIds
|
739
|
+
attr_accessor :EnvId, :PackageType, :VpcId, :CreateTime, :Alias, :Status, :Region, :EnvType, :SubnetIds, :Recycle
|
703
740
|
|
704
|
-
def initialize(envid=nil, packagetype=nil, vpcid=nil, createtime=nil, _alias=nil, status=nil, region=nil, envtype=nil, subnetids=nil)
|
741
|
+
def initialize(envid=nil, packagetype=nil, vpcid=nil, createtime=nil, _alias=nil, status=nil, region=nil, envtype=nil, subnetids=nil, recycle=nil)
|
705
742
|
@EnvId = envid
|
706
743
|
@PackageType = packagetype
|
707
744
|
@VpcId = vpcid
|
@@ -711,6 +748,7 @@ module TencentCloud
|
|
711
748
|
@Region = region
|
712
749
|
@EnvType = envtype
|
713
750
|
@SubnetIds = subnetids
|
751
|
+
@Recycle = recycle
|
714
752
|
end
|
715
753
|
|
716
754
|
def deserialize(params)
|
@@ -723,6 +761,7 @@ module TencentCloud
|
|
723
761
|
@Region = params['Region']
|
724
762
|
@EnvType = params['EnvType']
|
725
763
|
@SubnetIds = params['SubnetIds']
|
764
|
+
@Recycle = params['Recycle']
|
726
765
|
end
|
727
766
|
end
|
728
767
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tcbr
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1140
|
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-
|
11
|
+
date: 2025-09-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|