tencentcloud-sdk-tcbr 3.0.1084 → 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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20220217/models.rb +48 -4
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7d20ea05f7abdc79e8df28a068fa93ba0d1444aa
4
- data.tar.gz: 750e899b1f902dfac603d757afbe9af16d078815
3
+ metadata.gz: 8982599e15fba07d2a8bc259a2583f6f4d9f242b
4
+ data.tar.gz: 58698edbfb13af89ce880c8fb35975b68fc58397
5
5
  SHA512:
6
- metadata.gz: 243d72345673b2dcba55bf3d535db8f6746e0d206cf06dc5e66e0c5933a2d0afa0912910cd5667cced850658d2f7e20baa16515744d93a6d85dab7e4ed9f2fe3
7
- data.tar.gz: 1324b4959ea5a78d7f3799caee9f043b1908057d53b9248e517acde2336f70f04b5f8adfc9fc6daedfa471b7f98052dd71cb5ae26df949ad63c0df4ab16c7d5a
6
+ metadata.gz: fe3d42289c25b9e90733438a0ccc29a59d3dee79deb5440c4f512755f51a7329677eee15de3bb3a68544672a6c6645468bd0d6c50d18defae50e37a93128152a
7
+ data.tar.gz: 7387dd210392a88619be8bba2eeacf043c723e5e5f676d7ec4bae935847165ed6ed768652c845e1af1097e2847fafee373d01c96bd2244f2ec9ca19d26d4df69
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1084
1
+ 3.0.1092
@@ -1071,10 +1071,15 @@ module TencentCloud
1071
1071
  # @type EntryPoint: Array
1072
1072
  # @param Cmd: Dockerfile Cmd 参数
1073
1073
  # @type Cmd: Array
1074
+ # @param SessionAffinity: 会话亲和性开关
1075
+ # 注意:此字段可能返回 null,表示取不到有效值。
1076
+ # @type SessionAffinity: String
1077
+ # @param VpcConf: Vpc 配置参数
1078
+ # @type VpcConf: :class:`Tencentcloud::Tcbr.v20220217.models.VpcConf`
1074
1079
 
1075
- 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
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
1076
1081
 
1077
- 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)
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)
1078
1083
  @EnvId = envid
1079
1084
  @ServerName = servername
1080
1085
  @OpenAccessTypes = openaccesstypes
@@ -1102,6 +1107,8 @@ module TencentCloud
1102
1107
  @TimerScale = timerscale
1103
1108
  @EntryPoint = entrypoint
1104
1109
  @Cmd = cmd
1110
+ @SessionAffinity = sessionaffinity
1111
+ @VpcConf = vpcconf
1105
1112
  end
1106
1113
 
1107
1114
  def deserialize(params)
@@ -1146,6 +1153,11 @@ module TencentCloud
1146
1153
  end
1147
1154
  @EntryPoint = params['EntryPoint']
1148
1155
  @Cmd = params['Cmd']
1156
+ @SessionAffinity = params['SessionAffinity']
1157
+ unless params['VpcConf'].nil?
1158
+ @VpcConf = VpcConf.new
1159
+ @VpcConf.deserialize(params['VpcConf'])
1160
+ end
1149
1161
  end
1150
1162
  end
1151
1163
 
@@ -1446,14 +1458,17 @@ module TencentCloud
1446
1458
  # @type DeployInfo: :class:`Tencentcloud::Tcbr.v20220217.models.DeployParam`
1447
1459
  # @param ServerConfig: 服务配置信息
1448
1460
  # @type ServerConfig: :class:`Tencentcloud::Tcbr.v20220217.models.ServerBaseConfig`
1461
+ # @param Business: 业务类型,默认tcr
1462
+ # @type Business: String
1449
1463
 
1450
- attr_accessor :EnvId, :ServerName, :DeployInfo, :ServerConfig
1464
+ attr_accessor :EnvId, :ServerName, :DeployInfo, :ServerConfig, :Business
1451
1465
 
1452
- def initialize(envid=nil, servername=nil, deployinfo=nil, serverconfig=nil)
1466
+ def initialize(envid=nil, servername=nil, deployinfo=nil, serverconfig=nil, business=nil)
1453
1467
  @EnvId = envid
1454
1468
  @ServerName = servername
1455
1469
  @DeployInfo = deployinfo
1456
1470
  @ServerConfig = serverconfig
1471
+ @Business = business
1457
1472
  end
1458
1473
 
1459
1474
  def deserialize(params)
@@ -1467,6 +1482,7 @@ module TencentCloud
1467
1482
  @ServerConfig = ServerBaseConfig.new
1468
1483
  @ServerConfig.deserialize(params['ServerConfig'])
1469
1484
  end
1485
+ @Business = params['Business']
1470
1486
  end
1471
1487
  end
1472
1488
 
@@ -1529,6 +1545,34 @@ module TencentCloud
1529
1545
  end
1530
1546
  end
1531
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
+
1532
1576
  end
1533
1577
  end
1534
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.1084
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-06-18 00:00:00.000000000 Z
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