tencentcloud-sdk-tcbr 3.0.1116 → 3.0.1131
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 +68 -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: a3bb1f828b6c6fcae0d2b720c5ede457c8cf1c40
|
4
|
+
data.tar.gz: fb111afdd9d2b226cd28203bf61a1e28f586a4fc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce10aad52603ee43e84ad368151a359e57115c2543978e1e507f4cf64d894f1158f567890f9ee69919f5cccc091be70373b8fe6bbcecb8e81d6e66c5b04a8a63
|
7
|
+
data.tar.gz: 711869a8819fb5d8286bea0d0538c421909edea91456c4f122a00ff9c2ff88c0201a68ee1e3f16c4c7a633d70aa7262ab40f474057dd756780e910332b87e546
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1131
|
data/lib/v20220217/models.rb
CHANGED
@@ -622,10 +622,12 @@ module TencentCloud
|
|
622
622
|
# @type TimerScale: Array
|
623
623
|
# @param VpcConf: 配置内网访问时网络信息
|
624
624
|
# @type VpcConf: :class:`Tencentcloud::Tcbr.v20220217.models.VpcConf`
|
625
|
+
# @param VolumesConf: 存储配置信息
|
626
|
+
# @type VolumesConf: Array
|
625
627
|
|
626
|
-
attr_accessor :Key, :Value, :IntValue, :BoolValue, :FloatValue, :ArrayValue, :PolicyDetails, :TimerScale, :VpcConf
|
628
|
+
attr_accessor :Key, :Value, :IntValue, :BoolValue, :FloatValue, :ArrayValue, :PolicyDetails, :TimerScale, :VpcConf, :VolumesConf
|
627
629
|
|
628
|
-
def initialize(key=nil, value=nil, intvalue=nil, boolvalue=nil, floatvalue=nil, arrayvalue=nil, policydetails=nil, timerscale=nil, vpcconf=nil)
|
630
|
+
def initialize(key=nil, value=nil, intvalue=nil, boolvalue=nil, floatvalue=nil, arrayvalue=nil, policydetails=nil, timerscale=nil, vpcconf=nil, volumesconf=nil)
|
629
631
|
@Key = key
|
630
632
|
@Value = value
|
631
633
|
@IntValue = intvalue
|
@@ -635,6 +637,7 @@ module TencentCloud
|
|
635
637
|
@PolicyDetails = policydetails
|
636
638
|
@TimerScale = timerscale
|
637
639
|
@VpcConf = vpcconf
|
640
|
+
@VolumesConf = volumesconf
|
638
641
|
end
|
639
642
|
|
640
643
|
def deserialize(params)
|
@@ -664,6 +667,14 @@ module TencentCloud
|
|
664
667
|
@VpcConf = VpcConf.new
|
665
668
|
@VpcConf.deserialize(params['VpcConf'])
|
666
669
|
end
|
670
|
+
unless params['VolumesConf'].nil?
|
671
|
+
@VolumesConf = []
|
672
|
+
params['VolumesConf'].each do |i|
|
673
|
+
volumeconf_tmp = VolumeConf.new
|
674
|
+
volumeconf_tmp.deserialize(i)
|
675
|
+
@VolumesConf << volumeconf_tmp
|
676
|
+
end
|
677
|
+
end
|
667
678
|
end
|
668
679
|
end
|
669
680
|
|
@@ -687,10 +698,12 @@ module TencentCloud
|
|
687
698
|
# @type EnvType: String
|
688
699
|
# @param SubnetIds: 子网id
|
689
700
|
# @type SubnetIds: String
|
701
|
+
# @param Recycle: 回收标志,为空则表示正常,recycle表示已回收
|
702
|
+
# @type Recycle: String
|
690
703
|
|
691
|
-
attr_accessor :EnvId, :PackageType, :VpcId, :CreateTime, :Alias, :Status, :Region, :EnvType, :SubnetIds
|
704
|
+
attr_accessor :EnvId, :PackageType, :VpcId, :CreateTime, :Alias, :Status, :Region, :EnvType, :SubnetIds, :Recycle
|
692
705
|
|
693
|
-
def initialize(envid=nil, packagetype=nil, vpcid=nil, createtime=nil, _alias=nil, status=nil, region=nil, envtype=nil, subnetids=nil)
|
706
|
+
def initialize(envid=nil, packagetype=nil, vpcid=nil, createtime=nil, _alias=nil, status=nil, region=nil, envtype=nil, subnetids=nil, recycle=nil)
|
694
707
|
@EnvId = envid
|
695
708
|
@PackageType = packagetype
|
696
709
|
@VpcId = vpcid
|
@@ -700,6 +713,7 @@ module TencentCloud
|
|
700
713
|
@Region = region
|
701
714
|
@EnvType = envtype
|
702
715
|
@SubnetIds = subnetids
|
716
|
+
@Recycle = recycle
|
703
717
|
end
|
704
718
|
|
705
719
|
def deserialize(params)
|
@@ -712,6 +726,7 @@ module TencentCloud
|
|
712
726
|
@Region = params['Region']
|
713
727
|
@EnvType = params['EnvType']
|
714
728
|
@SubnetIds = params['SubnetIds']
|
729
|
+
@Recycle = params['Recycle']
|
715
730
|
end
|
716
731
|
end
|
717
732
|
|
@@ -1179,10 +1194,12 @@ module TencentCloud
|
|
1179
1194
|
# @type SessionAffinity: String
|
1180
1195
|
# @param VpcConf: Vpc 配置参数
|
1181
1196
|
# @type VpcConf: :class:`Tencentcloud::Tcbr.v20220217.models.VpcConf`
|
1197
|
+
# @param VolumesConf: 存储配置信息
|
1198
|
+
# @type VolumesConf: Array
|
1182
1199
|
|
1183
|
-
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
|
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
|
1184
1201
|
|
1185
|
-
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)
|
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)
|
1186
1203
|
@EnvId = envid
|
1187
1204
|
@ServerName = servername
|
1188
1205
|
@OpenAccessTypes = openaccesstypes
|
@@ -1212,6 +1229,7 @@ module TencentCloud
|
|
1212
1229
|
@Cmd = cmd
|
1213
1230
|
@SessionAffinity = sessionaffinity
|
1214
1231
|
@VpcConf = vpcconf
|
1232
|
+
@VolumesConf = volumesconf
|
1215
1233
|
end
|
1216
1234
|
|
1217
1235
|
def deserialize(params)
|
@@ -1261,6 +1279,14 @@ module TencentCloud
|
|
1261
1279
|
@VpcConf = VpcConf.new
|
1262
1280
|
@VpcConf.deserialize(params['VpcConf'])
|
1263
1281
|
end
|
1282
|
+
unless params['VolumesConf'].nil?
|
1283
|
+
@VolumesConf = []
|
1284
|
+
params['VolumesConf'].each do |i|
|
1285
|
+
volumeconf_tmp = VolumeConf.new
|
1286
|
+
volumeconf_tmp.deserialize(i)
|
1287
|
+
@VolumesConf << volumeconf_tmp
|
1288
|
+
end
|
1289
|
+
end
|
1264
1290
|
end
|
1265
1291
|
end
|
1266
1292
|
|
@@ -1663,6 +1689,42 @@ module TencentCloud
|
|
1663
1689
|
end
|
1664
1690
|
end
|
1665
1691
|
|
1692
|
+
# 存储配置
|
1693
|
+
class VolumeConf < TencentCloud::Common::AbstractModel
|
1694
|
+
# @param Type: 存储类型
|
1695
|
+
# @type Type: String
|
1696
|
+
# @param BucketName: 对象存储桶名称
|
1697
|
+
# @type BucketName: String
|
1698
|
+
# @param Endpoint: 存储连接地址
|
1699
|
+
# @type Endpoint: String
|
1700
|
+
# @param KeyID: 存储连接用户密码
|
1701
|
+
# @type KeyID: String
|
1702
|
+
# @param DstPath: 存储挂载目的目录
|
1703
|
+
# @type DstPath: String
|
1704
|
+
# @param SrcPath: 存储挂载源目录
|
1705
|
+
# @type SrcPath: String
|
1706
|
+
|
1707
|
+
attr_accessor :Type, :BucketName, :Endpoint, :KeyID, :DstPath, :SrcPath
|
1708
|
+
|
1709
|
+
def initialize(type=nil, bucketname=nil, endpoint=nil, keyid=nil, dstpath=nil, srcpath=nil)
|
1710
|
+
@Type = type
|
1711
|
+
@BucketName = bucketname
|
1712
|
+
@Endpoint = endpoint
|
1713
|
+
@KeyID = keyid
|
1714
|
+
@DstPath = dstpath
|
1715
|
+
@SrcPath = srcpath
|
1716
|
+
end
|
1717
|
+
|
1718
|
+
def deserialize(params)
|
1719
|
+
@Type = params['Type']
|
1720
|
+
@BucketName = params['BucketName']
|
1721
|
+
@Endpoint = params['Endpoint']
|
1722
|
+
@KeyID = params['KeyID']
|
1723
|
+
@DstPath = params['DstPath']
|
1724
|
+
@SrcPath = params['SrcPath']
|
1725
|
+
end
|
1726
|
+
end
|
1727
|
+
|
1666
1728
|
# 云托管服务 Vpc 配置
|
1667
1729
|
class VpcConf < TencentCloud::Common::AbstractModel
|
1668
1730
|
# @param VpcId: vpc id
|
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.1131
|
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-08-
|
11
|
+
date: 2025-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|