tencentcloud-sdk-tcbr 3.0.1056 → 3.0.1058
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 +61 -2
- 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: 189590f6ce69c989bbcc1b2be827618670ab09e0
|
4
|
+
data.tar.gz: 474576943a691ce6240ca27b34ccd30b8d9db2c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: dfb44f07f6172dc74946ca3c01ba7fd40ed975bd966404dcdc45d2570318b9d27faab504640ba041bc19c9d92d775dde030c3bb3414ec244f0f1402b2dfa46f6
|
7
|
+
data.tar.gz: fcd51c0ea6d7ef7e94c9c16ee8fb8c7c6242dbea78d1ee5a48598ed28884e905c0439ed0503550a07b153c4d76b6aba3a8c328cd74ec3cd49fc2cd57eb4da1df
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1058
|
data/lib/v20220217/models.rb
CHANGED
@@ -1063,10 +1063,16 @@ module TencentCloud
|
|
1063
1063
|
# @type InternalAccess: String
|
1064
1064
|
# @param InternalDomain: 内网域名
|
1065
1065
|
# @type InternalDomain: String
|
1066
|
+
# @param OperationMode: 运行模式
|
1067
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1068
|
+
# @type OperationMode: String
|
1069
|
+
# @param TimerScale: 定时扩缩容配置
|
1070
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1071
|
+
# @type TimerScale: Array
|
1066
1072
|
|
1067
|
-
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
|
1073
|
+
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
|
1068
1074
|
|
1069
|
-
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)
|
1075
|
+
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)
|
1070
1076
|
@EnvId = envid
|
1071
1077
|
@ServerName = servername
|
1072
1078
|
@OpenAccessTypes = openaccesstypes
|
@@ -1090,6 +1096,8 @@ module TencentCloud
|
|
1090
1096
|
@Tag = tag
|
1091
1097
|
@InternalAccess = internalaccess
|
1092
1098
|
@InternalDomain = internaldomain
|
1099
|
+
@OperationMode = operationmode
|
1100
|
+
@TimerScale = timerscale
|
1093
1101
|
end
|
1094
1102
|
|
1095
1103
|
def deserialize(params)
|
@@ -1123,6 +1131,15 @@ module TencentCloud
|
|
1123
1131
|
@Tag = params['Tag']
|
1124
1132
|
@InternalAccess = params['InternalAccess']
|
1125
1133
|
@InternalDomain = params['InternalDomain']
|
1134
|
+
@OperationMode = params['OperationMode']
|
1135
|
+
unless params['TimerScale'].nil?
|
1136
|
+
@TimerScale = []
|
1137
|
+
params['TimerScale'].each do |i|
|
1138
|
+
timerscale_tmp = TimerScale.new
|
1139
|
+
timerscale_tmp.deserialize(i)
|
1140
|
+
@TimerScale << timerscale_tmp
|
1141
|
+
end
|
1142
|
+
end
|
1126
1143
|
end
|
1127
1144
|
end
|
1128
1145
|
|
@@ -1377,6 +1394,48 @@ module TencentCloud
|
|
1377
1394
|
end
|
1378
1395
|
end
|
1379
1396
|
|
1397
|
+
# 定时扩缩容配置
|
1398
|
+
class TimerScale < TencentCloud::Common::AbstractModel
|
1399
|
+
# @param CycleType: 循环类型
|
1400
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1401
|
+
# @type CycleType: String
|
1402
|
+
# @param StartDate: 循环起始
|
1403
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1404
|
+
# @type StartDate: String
|
1405
|
+
# @param EndDate: 循环结束
|
1406
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1407
|
+
# @type EndDate: String
|
1408
|
+
# @param StartTime: 起始时间
|
1409
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1410
|
+
# @type StartTime: String
|
1411
|
+
# @param EndTime: 结束时间
|
1412
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1413
|
+
# @type EndTime: String
|
1414
|
+
# @param ReplicaNum: 副本个数
|
1415
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1416
|
+
# @type ReplicaNum: Integer
|
1417
|
+
|
1418
|
+
attr_accessor :CycleType, :StartDate, :EndDate, :StartTime, :EndTime, :ReplicaNum
|
1419
|
+
|
1420
|
+
def initialize(cycletype=nil, startdate=nil, enddate=nil, starttime=nil, endtime=nil, replicanum=nil)
|
1421
|
+
@CycleType = cycletype
|
1422
|
+
@StartDate = startdate
|
1423
|
+
@EndDate = enddate
|
1424
|
+
@StartTime = starttime
|
1425
|
+
@EndTime = endtime
|
1426
|
+
@ReplicaNum = replicanum
|
1427
|
+
end
|
1428
|
+
|
1429
|
+
def deserialize(params)
|
1430
|
+
@CycleType = params['CycleType']
|
1431
|
+
@StartDate = params['StartDate']
|
1432
|
+
@EndDate = params['EndDate']
|
1433
|
+
@StartTime = params['StartTime']
|
1434
|
+
@EndTime = params['EndTime']
|
1435
|
+
@ReplicaNum = params['ReplicaNum']
|
1436
|
+
end
|
1437
|
+
end
|
1438
|
+
|
1380
1439
|
# UpdateCloudRunServer请求参数结构体
|
1381
1440
|
class UpdateCloudRunServerRequest < TencentCloud::Common::AbstractModel
|
1382
1441
|
# @param EnvId: 环境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.1058
|
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-05-
|
11
|
+
date: 2025-05-13 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|