tencentcloud-sdk-tcbr 3.0.1131 → 3.0.1171
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: 94e91a9ba08a2a861086892738c854d8ae350a18
|
|
4
|
+
data.tar.gz: 8920f05e5fd0dd283e2b1596145fd0dbb4cf49a6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a38a079b6f348e893f685a28ffe64fed561d4bab9040c23758e9f6425df0daebb898d0b784e959f6e96f1ac61e9609fdab31aeab5ea1df049a552f3688ea0a54
|
|
7
|
+
data.tar.gz: 6c25f612e6cf7557d21cab8d8d364bf1ddcfdb85d1e41260663e2f472d839323a43c07ff41e793920c7ef35468200021d164c0553eb818b933efd5ee5405debc
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1171
|
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
|
|
|
@@ -1196,10 +1231,12 @@ module TencentCloud
|
|
|
1196
1231
|
# @type VpcConf: :class:`Tencentcloud::Tcbr.v20220217.models.VpcConf`
|
|
1197
1232
|
# @param VolumesConf: 存储配置信息
|
|
1198
1233
|
# @type VolumesConf: Array
|
|
1234
|
+
# @param LinkImageRegistry: 关联镜像密钥
|
|
1235
|
+
# @type LinkImageRegistry: String
|
|
1199
1236
|
|
|
1200
|
-
attr_accessor :EnvId, :ServerName, :OpenAccessTypes, :Cpu, :Mem, :MinNum, :MaxNum, :PolicyDetails, :CustomLogs, :EnvParams, :InitialDelaySeconds, :CreateTime, :Port, :HasDockerfile, :Dockerfile, :BuildDir, :LogType, :LogSetId, :LogTopicId, :LogParseType, :Tag, :InternalAccess, :InternalDomain, :OperationMode, :TimerScale, :EntryPoint, :Cmd, :SessionAffinity, :VpcConf, :VolumesConf
|
|
1237
|
+
attr_accessor :EnvId, :ServerName, :OpenAccessTypes, :Cpu, :Mem, :MinNum, :MaxNum, :PolicyDetails, :CustomLogs, :EnvParams, :InitialDelaySeconds, :CreateTime, :Port, :HasDockerfile, :Dockerfile, :BuildDir, :LogType, :LogSetId, :LogTopicId, :LogParseType, :Tag, :InternalAccess, :InternalDomain, :OperationMode, :TimerScale, :EntryPoint, :Cmd, :SessionAffinity, :VpcConf, :VolumesConf, :LinkImageRegistry
|
|
1201
1238
|
|
|
1202
|
-
def initialize(envid=nil, servername=nil, openaccesstypes=nil, cpu=nil, mem=nil, minnum=nil, maxnum=nil, policydetails=nil, customlogs=nil, envparams=nil, initialdelayseconds=nil, createtime=nil, port=nil, hasdockerfile=nil, dockerfile=nil, builddir=nil, logtype=nil, logsetid=nil, logtopicid=nil, logparsetype=nil, tag=nil, internalaccess=nil, internaldomain=nil, operationmode=nil, timerscale=nil, entrypoint=nil, cmd=nil, sessionaffinity=nil, vpcconf=nil, volumesconf=nil)
|
|
1239
|
+
def initialize(envid=nil, servername=nil, openaccesstypes=nil, cpu=nil, mem=nil, minnum=nil, maxnum=nil, policydetails=nil, customlogs=nil, envparams=nil, initialdelayseconds=nil, createtime=nil, port=nil, hasdockerfile=nil, dockerfile=nil, builddir=nil, logtype=nil, logsetid=nil, logtopicid=nil, logparsetype=nil, tag=nil, internalaccess=nil, internaldomain=nil, operationmode=nil, timerscale=nil, entrypoint=nil, cmd=nil, sessionaffinity=nil, vpcconf=nil, volumesconf=nil, linkimageregistry=nil)
|
|
1203
1240
|
@EnvId = envid
|
|
1204
1241
|
@ServerName = servername
|
|
1205
1242
|
@OpenAccessTypes = openaccesstypes
|
|
@@ -1230,6 +1267,7 @@ module TencentCloud
|
|
|
1230
1267
|
@SessionAffinity = sessionaffinity
|
|
1231
1268
|
@VpcConf = vpcconf
|
|
1232
1269
|
@VolumesConf = volumesconf
|
|
1270
|
+
@LinkImageRegistry = linkimageregistry
|
|
1233
1271
|
end
|
|
1234
1272
|
|
|
1235
1273
|
def deserialize(params)
|
|
@@ -1287,6 +1325,7 @@ module TencentCloud
|
|
|
1287
1325
|
@VolumesConf << volumeconf_tmp
|
|
1288
1326
|
end
|
|
1289
1327
|
end
|
|
1328
|
+
@LinkImageRegistry = params['LinkImageRegistry']
|
|
1290
1329
|
end
|
|
1291
1330
|
end
|
|
1292
1331
|
|
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.1171
|
|
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-11-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|