tencentcloud-sdk-tcbr 3.0.1087 → 3.0.1092
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 +43 -4
- 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: 8982599e15fba07d2a8bc259a2583f6f4d9f242b
|
4
|
+
data.tar.gz: 58698edbfb13af89ce880c8fb35975b68fc58397
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fe3d42289c25b9e90733438a0ccc29a59d3dee79deb5440c4f512755f51a7329677eee15de3bb3a68544672a6c6645468bd0d6c50d18defae50e37a93128152a
|
7
|
+
data.tar.gz: 7387dd210392a88619be8bba2eeacf043c723e5e5f676d7ec4bae935847165ed6ed768652c845e1af1097e2847fafee373d01c96bd2244f2ec9ca19d26d4df69
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1092
|
data/lib/v20220217/models.rb
CHANGED
@@ -1074,10 +1074,12 @@ module TencentCloud
|
|
1074
1074
|
# @param SessionAffinity: 会话亲和性开关
|
1075
1075
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1076
1076
|
# @type SessionAffinity: String
|
1077
|
+
# @param VpcConf: Vpc 配置参数
|
1078
|
+
# @type VpcConf: :class:`Tencentcloud::Tcbr.v20220217.models.VpcConf`
|
1077
1079
|
|
1078
|
-
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
|
1080
|
+
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
|
1079
1081
|
|
1080
|
-
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)
|
1082
|
+
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)
|
1081
1083
|
@EnvId = envid
|
1082
1084
|
@ServerName = servername
|
1083
1085
|
@OpenAccessTypes = openaccesstypes
|
@@ -1106,6 +1108,7 @@ module TencentCloud
|
|
1106
1108
|
@EntryPoint = entrypoint
|
1107
1109
|
@Cmd = cmd
|
1108
1110
|
@SessionAffinity = sessionaffinity
|
1111
|
+
@VpcConf = vpcconf
|
1109
1112
|
end
|
1110
1113
|
|
1111
1114
|
def deserialize(params)
|
@@ -1151,6 +1154,10 @@ module TencentCloud
|
|
1151
1154
|
@EntryPoint = params['EntryPoint']
|
1152
1155
|
@Cmd = params['Cmd']
|
1153
1156
|
@SessionAffinity = params['SessionAffinity']
|
1157
|
+
unless params['VpcConf'].nil?
|
1158
|
+
@VpcConf = VpcConf.new
|
1159
|
+
@VpcConf.deserialize(params['VpcConf'])
|
1160
|
+
end
|
1154
1161
|
end
|
1155
1162
|
end
|
1156
1163
|
|
@@ -1451,14 +1458,17 @@ module TencentCloud
|
|
1451
1458
|
# @type DeployInfo: :class:`Tencentcloud::Tcbr.v20220217.models.DeployParam`
|
1452
1459
|
# @param ServerConfig: 服务配置信息
|
1453
1460
|
# @type ServerConfig: :class:`Tencentcloud::Tcbr.v20220217.models.ServerBaseConfig`
|
1461
|
+
# @param Business: 业务类型,默认tcr
|
1462
|
+
# @type Business: String
|
1454
1463
|
|
1455
|
-
attr_accessor :EnvId, :ServerName, :DeployInfo, :ServerConfig
|
1464
|
+
attr_accessor :EnvId, :ServerName, :DeployInfo, :ServerConfig, :Business
|
1456
1465
|
|
1457
|
-
def initialize(envid=nil, servername=nil, deployinfo=nil, serverconfig=nil)
|
1466
|
+
def initialize(envid=nil, servername=nil, deployinfo=nil, serverconfig=nil, business=nil)
|
1458
1467
|
@EnvId = envid
|
1459
1468
|
@ServerName = servername
|
1460
1469
|
@DeployInfo = deployinfo
|
1461
1470
|
@ServerConfig = serverconfig
|
1471
|
+
@Business = business
|
1462
1472
|
end
|
1463
1473
|
|
1464
1474
|
def deserialize(params)
|
@@ -1472,6 +1482,7 @@ module TencentCloud
|
|
1472
1482
|
@ServerConfig = ServerBaseConfig.new
|
1473
1483
|
@ServerConfig.deserialize(params['ServerConfig'])
|
1474
1484
|
end
|
1485
|
+
@Business = params['Business']
|
1475
1486
|
end
|
1476
1487
|
end
|
1477
1488
|
|
@@ -1534,6 +1545,34 @@ module TencentCloud
|
|
1534
1545
|
end
|
1535
1546
|
end
|
1536
1547
|
|
1548
|
+
# 云托管服务 Vpc 配置
|
1549
|
+
class VpcConf < TencentCloud::Common::AbstractModel
|
1550
|
+
# @param VpcId: vpc id
|
1551
|
+
# @type VpcId: String
|
1552
|
+
# @param VpcCIDR: vpc 网段
|
1553
|
+
# @type VpcCIDR: String
|
1554
|
+
# @param SubnetId: subnet id
|
1555
|
+
# @type SubnetId: String
|
1556
|
+
# @param SubnetCIDR: subnet 网段
|
1557
|
+
# @type SubnetCIDR: String
|
1558
|
+
|
1559
|
+
attr_accessor :VpcId, :VpcCIDR, :SubnetId, :SubnetCIDR
|
1560
|
+
|
1561
|
+
def initialize(vpcid=nil, vpccidr=nil, subnetid=nil, subnetcidr=nil)
|
1562
|
+
@VpcId = vpcid
|
1563
|
+
@VpcCIDR = vpccidr
|
1564
|
+
@SubnetId = subnetid
|
1565
|
+
@SubnetCIDR = subnetcidr
|
1566
|
+
end
|
1567
|
+
|
1568
|
+
def deserialize(params)
|
1569
|
+
@VpcId = params['VpcId']
|
1570
|
+
@VpcCIDR = params['VpcCIDR']
|
1571
|
+
@SubnetId = params['SubnetId']
|
1572
|
+
@SubnetCIDR = params['SubnetCIDR']
|
1573
|
+
end
|
1574
|
+
end
|
1575
|
+
|
1537
1576
|
end
|
1538
1577
|
end
|
1539
1578
|
end
|
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.1092
|
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-07-03 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|