tencentcloud-sdk-tcb 3.0.1022 → 3.0.1024
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/v20180608/client.rb +24 -24
- data/lib/v20180608/models.rb +44 -156
- 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: 53295c4f878e30c3b855a87fa2b197e4ba725ed6
|
4
|
+
data.tar.gz: 1bf69a22386fcea0f0e412bbec09e2aba3c7b44d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a480c674e0aaffcec8371031a308b6d40d68c0d1d3d43c186342eb38b017166518bda74d7b772dfa7916f8ac8e4f40ace681b7ae6e0be0ae40c443639354b213
|
7
|
+
data.tar.gz: fef565c181dfcf203ff1250445e1fbf50a58694280e55aac600530bd8b8a94e53a56cdb24fc1305667efc29509cdd1927725691e0c7088ac952a1cf7c3abea28
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1024
|
data/lib/v20180608/client.rb
CHANGED
@@ -461,30 +461,6 @@ module TencentCloud
|
|
461
461
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
462
462
|
end
|
463
463
|
|
464
|
-
# 查询活动信息
|
465
|
-
|
466
|
-
# @param request: Request instance for DescribeActivityInfo.
|
467
|
-
# @type request: :class:`Tencentcloud::tcb::V20180608::DescribeActivityInfoRequest`
|
468
|
-
# @rtype: :class:`Tencentcloud::tcb::V20180608::DescribeActivityInfoResponse`
|
469
|
-
def DescribeActivityInfo(request)
|
470
|
-
body = send_request('DescribeActivityInfo', request.serialize)
|
471
|
-
response = JSON.parse(body)
|
472
|
-
if response['Response'].key?('Error') == false
|
473
|
-
model = DescribeActivityInfoResponse.new
|
474
|
-
model.deserialize(response['Response'])
|
475
|
-
model
|
476
|
-
else
|
477
|
-
code = response['Response']['Error']['Code']
|
478
|
-
message = response['Response']['Error']['Message']
|
479
|
-
reqid = response['Response']['RequestId']
|
480
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
481
|
-
end
|
482
|
-
rescue TencentCloud::Common::TencentCloudSDKException => e
|
483
|
-
raise e
|
484
|
-
rescue StandardError => e
|
485
|
-
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
486
|
-
end
|
487
|
-
|
488
464
|
# 查询活动记录信息
|
489
465
|
|
490
466
|
# @param request: Request instance for DescribeActivityRecord.
|
@@ -1761,6 +1737,30 @@ module TencentCloud
|
|
1761
1737
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1762
1738
|
end
|
1763
1739
|
|
1740
|
+
# 修改登录配置
|
1741
|
+
|
1742
|
+
# @param request: Request instance for EditAuthConfig.
|
1743
|
+
# @type request: :class:`Tencentcloud::tcb::V20180608::EditAuthConfigRequest`
|
1744
|
+
# @rtype: :class:`Tencentcloud::tcb::V20180608::EditAuthConfigResponse`
|
1745
|
+
def EditAuthConfig(request)
|
1746
|
+
body = send_request('EditAuthConfig', request.serialize)
|
1747
|
+
response = JSON.parse(body)
|
1748
|
+
if response['Response'].key?('Error') == false
|
1749
|
+
model = EditAuthConfigResponse.new
|
1750
|
+
model.deserialize(response['Response'])
|
1751
|
+
model
|
1752
|
+
else
|
1753
|
+
code = response['Response']['Error']['Code']
|
1754
|
+
message = response['Response']['Error']['Message']
|
1755
|
+
reqid = response['Response']['RequestId']
|
1756
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1757
|
+
end
|
1758
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1759
|
+
raise e
|
1760
|
+
rescue StandardError => e
|
1761
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1762
|
+
end
|
1763
|
+
|
1764
1764
|
# 创建云应用服务
|
1765
1765
|
|
1766
1766
|
# @param request: Request instance for EstablishCloudBaseRunServer.
|
data/lib/v20180608/models.rb
CHANGED
@@ -17,42 +17,6 @@
|
|
17
17
|
module TencentCloud
|
18
18
|
module Tcb
|
19
19
|
module V20180608
|
20
|
-
# 活动信息
|
21
|
-
class ActivityInfoItem < TencentCloud::Common::AbstractModel
|
22
|
-
# @param ActivityId: 活动id
|
23
|
-
# @type ActivityId: Integer
|
24
|
-
# @param CreateTime: 记录插入时间
|
25
|
-
# @type CreateTime: String
|
26
|
-
# @param UpdateTime: 记录最后一次变更时间
|
27
|
-
# @type UpdateTime: String
|
28
|
-
# @param StartTime: 活动开始时间
|
29
|
-
# @type StartTime: String
|
30
|
-
# @param ExpireTime: 活动结束时间
|
31
|
-
# @type ExpireTime: String
|
32
|
-
# @param Tag: 自定义备注信息
|
33
|
-
# @type Tag: String
|
34
|
-
|
35
|
-
attr_accessor :ActivityId, :CreateTime, :UpdateTime, :StartTime, :ExpireTime, :Tag
|
36
|
-
|
37
|
-
def initialize(activityid=nil, createtime=nil, updatetime=nil, starttime=nil, expiretime=nil, tag=nil)
|
38
|
-
@ActivityId = activityid
|
39
|
-
@CreateTime = createtime
|
40
|
-
@UpdateTime = updatetime
|
41
|
-
@StartTime = starttime
|
42
|
-
@ExpireTime = expiretime
|
43
|
-
@Tag = tag
|
44
|
-
end
|
45
|
-
|
46
|
-
def deserialize(params)
|
47
|
-
@ActivityId = params['ActivityId']
|
48
|
-
@CreateTime = params['CreateTime']
|
49
|
-
@UpdateTime = params['UpdateTime']
|
50
|
-
@StartTime = params['StartTime']
|
51
|
-
@ExpireTime = params['ExpireTime']
|
52
|
-
@Tag = params['Tag']
|
53
|
-
end
|
54
|
-
end
|
55
|
-
|
56
20
|
# 活动详情
|
57
21
|
class ActivityRecordItem < TencentCloud::Common::AbstractModel
|
58
22
|
# @param Uin: 用户uin
|
@@ -289,7 +253,6 @@ module TencentCloud
|
|
289
253
|
# @param RepoLanguage: 仓库语言
|
290
254
|
# @type RepoLanguage: String
|
291
255
|
# @param Branch: 分支名称
|
292
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
293
256
|
# @type Branch: String
|
294
257
|
|
295
258
|
attr_accessor :Repo, :RepoType, :RepoLanguage, :Branch
|
@@ -594,13 +557,10 @@ module TencentCloud
|
|
594
557
|
# emptydir 数据卷详细信息
|
595
558
|
class CloudBaseRunEmptyDirVolumeSource < TencentCloud::Common::AbstractModel
|
596
559
|
# @param EnableEmptyDirVolume: 启用emptydir数据卷
|
597
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
598
560
|
# @type EnableEmptyDirVolume: Boolean
|
599
561
|
# @param Medium: "","Memory","HugePages"
|
600
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
601
562
|
# @type Medium: String
|
602
563
|
# @param SizeLimit: emptydir数据卷大小
|
603
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
604
564
|
# @type SizeLimit: String
|
605
565
|
|
606
566
|
attr_accessor :EnableEmptyDirVolume, :Medium, :SizeLimit
|
@@ -896,7 +856,6 @@ module TencentCloud
|
|
896
856
|
# 主机路径挂载参数
|
897
857
|
class CloudBaseRunServiceVolumeHostPath < TencentCloud::Common::AbstractModel
|
898
858
|
# @param Path: 主机路径
|
899
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
900
859
|
# @type Path: String
|
901
860
|
|
902
861
|
attr_accessor :Path
|
@@ -945,31 +904,22 @@ module TencentCloud
|
|
945
904
|
# CloudBaseRun 的 Side 描述定义
|
946
905
|
class CloudBaseRunSideSpec < TencentCloud::Common::AbstractModel
|
947
906
|
# @param ContainerImage: 容器镜像
|
948
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
949
907
|
# @type ContainerImage: String
|
950
908
|
# @param ContainerPort: 容器端口
|
951
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
952
909
|
# @type ContainerPort: Integer
|
953
910
|
# @param ContainerName: 容器的名称
|
954
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
955
911
|
# @type ContainerName: String
|
956
912
|
# @param EnvVar: kv的json字符串
|
957
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
958
913
|
# @type EnvVar: String
|
959
914
|
# @param InitialDelaySeconds: InitialDelaySeconds 延迟多长时间启动健康检查
|
960
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
961
915
|
# @type InitialDelaySeconds: Integer
|
962
916
|
# @param Cpu: CPU大小
|
963
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
964
917
|
# @type Cpu: Integer
|
965
918
|
# @param Mem: 内存大小(单位:M)
|
966
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
967
919
|
# @type Mem: Integer
|
968
920
|
# @param Security: 安全特性
|
969
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
970
921
|
# @type Security: :class:`Tencentcloud::Tcb.v20180608.models.CloudBaseSecurityContext`
|
971
922
|
# @param VolumeMountInfos: 挂载信息
|
972
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
973
923
|
# @type VolumeMountInfos: Array
|
974
924
|
|
975
925
|
attr_accessor :ContainerImage, :ContainerPort, :ContainerName, :EnvVar, :InitialDelaySeconds, :Cpu, :Mem, :Security, :VolumeMountInfos
|
@@ -1012,19 +962,14 @@ module TencentCloud
|
|
1012
962
|
# 版本流量占比
|
1013
963
|
class CloudBaseRunVersionFlowItem < TencentCloud::Common::AbstractModel
|
1014
964
|
# @param VersionName: 版本名称
|
1015
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1016
965
|
# @type VersionName: String
|
1017
966
|
# @param FlowRatio: 流量占比
|
1018
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1019
967
|
# @type FlowRatio: Integer
|
1020
968
|
# @param UrlParam: 流量参数键值对(URL参数/HEADERS参数)
|
1021
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1022
969
|
# @type UrlParam: :class:`Tencentcloud::Tcb.v20180608.models.ObjectKV`
|
1023
970
|
# @param Priority: 优先级
|
1024
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1025
971
|
# @type Priority: Integer
|
1026
972
|
# @param IsDefaultPriority: 是否是默认兜底版本
|
1027
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1028
973
|
# @type IsDefaultPriority: Boolean
|
1029
974
|
|
1030
975
|
attr_accessor :VersionName, :FlowRatio, :UrlParam, :Priority, :IsDefaultPriority
|
@@ -1056,12 +1001,10 @@ module TencentCloud
|
|
1056
1001
|
# @param PodId: pod name
|
1057
1002
|
# @type PodId: String
|
1058
1003
|
# @param PodIp: pod ip
|
1059
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1060
1004
|
# @type PodIp: String
|
1061
1005
|
# @param Status: 状态
|
1062
1006
|
# @type Status: String
|
1063
1007
|
# @param CreateTime: 创建时间
|
1064
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1065
1008
|
# @type CreateTime: String
|
1066
1009
|
|
1067
1010
|
attr_accessor :Webshell, :PodId, :PodIp, :Status, :CreateTime
|
@@ -1086,19 +1029,15 @@ module TencentCloud
|
|
1086
1029
|
# cfs挂载点
|
1087
1030
|
class CloudBaseRunVolumeMount < TencentCloud::Common::AbstractModel
|
1088
1031
|
# @param Name: 资源名
|
1089
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1090
1032
|
# @type Name: String
|
1091
1033
|
# @param MountPath: 挂载路径
|
1092
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1093
1034
|
# @type MountPath: String
|
1094
1035
|
# @param ReadOnly: 是否只读
|
1095
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1096
1036
|
# @type ReadOnly: Boolean
|
1097
1037
|
# @param NfsVolumes: Nfs挂载信息
|
1098
1038
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1099
1039
|
# @type NfsVolumes: Array
|
1100
1040
|
# @param MountPropagation: 挂载配置
|
1101
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1102
1041
|
# @type MountPropagation: String
|
1103
1042
|
|
1104
1043
|
attr_accessor :Name, :MountPath, :ReadOnly, :NfsVolumes, :MountPropagation
|
@@ -1130,13 +1069,10 @@ module TencentCloud
|
|
1130
1069
|
# vpc信息
|
1131
1070
|
class CloudBaseRunVpcInfo < TencentCloud::Common::AbstractModel
|
1132
1071
|
# @param VpcId: vpc的id
|
1133
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1134
1072
|
# @type VpcId: String
|
1135
1073
|
# @param SubnetIds: 子网id
|
1136
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1137
1074
|
# @type SubnetIds: Array
|
1138
1075
|
# @param CreateType: 创建类型(0=继承; 1=新建; 2=指定)
|
1139
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1140
1076
|
# @type CreateType: Integer
|
1141
1077
|
|
1142
1078
|
attr_accessor :VpcId, :SubnetIds, :CreateType
|
@@ -1157,25 +1093,18 @@ module TencentCloud
|
|
1157
1093
|
# 子网信息
|
1158
1094
|
class CloudBaseRunVpcSubnet < TencentCloud::Common::AbstractModel
|
1159
1095
|
# @param Id: 子网id
|
1160
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1161
1096
|
# @type Id: String
|
1162
1097
|
# @param Cidr: 子网的ipv4
|
1163
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1164
1098
|
# @type Cidr: String
|
1165
1099
|
# @param Zone: 可用区
|
1166
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1167
1100
|
# @type Zone: String
|
1168
1101
|
# @param Type: 类型
|
1169
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1170
1102
|
# @type Type: String
|
1171
1103
|
# @param Target: subnet类型
|
1172
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1173
1104
|
# @type Target: String
|
1174
1105
|
# @param Region: 地域
|
1175
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1176
1106
|
# @type Region: String
|
1177
1107
|
# @param Name: 名字
|
1178
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1179
1108
|
# @type Name: String
|
1180
1109
|
|
1181
1110
|
attr_accessor :Id, :Cidr, :Zone, :Type, :Target, :Region, :Name
|
@@ -1202,10 +1131,8 @@ module TencentCloud
|
|
1202
1131
|
end
|
1203
1132
|
|
1204
1133
|
# cloudrun安全特性
|
1205
|
-
|
1206
1134
|
class CloudBaseSecurityContext < TencentCloud::Common::AbstractModel
|
1207
1135
|
# @param Capabilities: 安全特性
|
1208
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1209
1136
|
# @type Capabilities: :class:`Tencentcloud::Tcb.v20180608.models.CloudBaseCapabilities`
|
1210
1137
|
|
1211
1138
|
attr_accessor :Capabilities
|
@@ -1225,91 +1152,62 @@ module TencentCloud
|
|
1225
1152
|
# CloudRunServiceSimpleVersionSnapshot 信息
|
1226
1153
|
class CloudRunServiceSimpleVersionSnapshot < TencentCloud::Common::AbstractModel
|
1227
1154
|
# @param VersionName: 版本名
|
1228
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1229
1155
|
# @type VersionName: String
|
1230
1156
|
# @param Remark: 版本备注
|
1231
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1232
1157
|
# @type Remark: String
|
1233
1158
|
# @param Cpu: cpu规格
|
1234
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1235
1159
|
# @type Cpu: Float
|
1236
1160
|
# @param Mem: 内存规格
|
1237
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1238
1161
|
# @type Mem: Float
|
1239
1162
|
# @param MinNum: 最小副本数
|
1240
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1241
1163
|
# @type MinNum: Integer
|
1242
1164
|
# @param MaxNum: 最大副本数
|
1243
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1244
1165
|
# @type MaxNum: Integer
|
1245
1166
|
# @param ImageUrl: 镜像url
|
1246
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1247
1167
|
# @type ImageUrl: String
|
1248
1168
|
# @param PolicyType: 扩容策略
|
1249
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1250
1169
|
# @type PolicyType: String
|
1251
1170
|
# @param PolicyThreshold: 策略阈值
|
1252
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1253
1171
|
# @type PolicyThreshold: Integer
|
1254
1172
|
# @param EnvParams: 环境参数
|
1255
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1256
1173
|
# @type EnvParams: String
|
1257
1174
|
# @param ContainerPort: 容器端口
|
1258
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1259
1175
|
# @type ContainerPort: Integer
|
1260
1176
|
# @param CreateTime: 创建时间
|
1261
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1262
1177
|
# @type CreateTime: String
|
1263
1178
|
# @param UpdateTime: 更新时间
|
1264
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1265
1179
|
# @type UpdateTime: String
|
1266
1180
|
# @param UploadType: 更新类型
|
1267
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1268
1181
|
# @type UploadType: String
|
1269
1182
|
# @param DockerfilePath: dockerfile路径
|
1270
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1271
1183
|
# @type DockerfilePath: String
|
1272
1184
|
# @param BuildDir: 构建路径
|
1273
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1274
1185
|
# @type BuildDir: String
|
1275
1186
|
# @param RepoType: repo类型
|
1276
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1277
1187
|
# @type RepoType: String
|
1278
1188
|
# @param Repo: 仓库
|
1279
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1280
1189
|
# @type Repo: String
|
1281
1190
|
# @param Branch: 分支
|
1282
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1283
1191
|
# @type Branch: String
|
1284
1192
|
# @param EnvId: 环境id
|
1285
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1286
1193
|
# @type EnvId: String
|
1287
1194
|
# @param ServerName: 服务名
|
1288
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1289
1195
|
# @type ServerName: String
|
1290
1196
|
# @param PackageName: package名字
|
1291
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1292
1197
|
# @type PackageName: String
|
1293
1198
|
# @param PackageVersion: package版本
|
1294
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1295
1199
|
# @type PackageVersion: String
|
1296
1200
|
# @param CustomLogs: 自定义log路径
|
1297
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1298
1201
|
# @type CustomLogs: String
|
1299
1202
|
# @param InitialDelaySeconds: 延时健康检查时间
|
1300
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1301
1203
|
# @type InitialDelaySeconds: Integer
|
1302
1204
|
# @param SnapshotName: snapshot名
|
1303
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1304
1205
|
# @type SnapshotName: String
|
1305
1206
|
# @param ImageInfo: 镜像信息
|
1306
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1307
1207
|
# @type ImageInfo: :class:`Tencentcloud::Tcb.v20180608.models.CloudBaseRunImageInfo`
|
1308
1208
|
# @param CodeDetail: 代码仓库信息
|
1309
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1310
1209
|
# @type CodeDetail: :class:`Tencentcloud::Tcb.v20180608.models.CloudBaseCodeRepoDetail`
|
1311
1210
|
# @param Status: 状态
|
1312
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1313
1211
|
# @type Status: String
|
1314
1212
|
|
1315
1213
|
attr_accessor :VersionName, :Remark, :Cpu, :Mem, :MinNum, :MaxNum, :ImageUrl, :PolicyType, :PolicyThreshold, :EnvParams, :ContainerPort, :CreateTime, :UpdateTime, :UploadType, :DockerfilePath, :BuildDir, :RepoType, :Repo, :Branch, :EnvId, :ServerName, :PackageName, :PackageVersion, :CustomLogs, :InitialDelaySeconds, :SnapshotName, :ImageInfo, :CodeDetail, :Status
|
@@ -1388,22 +1286,16 @@ module TencentCloud
|
|
1388
1286
|
# 服务的volume
|
1389
1287
|
class CloudRunServiceVolume < TencentCloud::Common::AbstractModel
|
1390
1288
|
# @param Name: 名称
|
1391
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1392
1289
|
# @type Name: String
|
1393
1290
|
# @param NFS: NFS的挂载方式
|
1394
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1395
1291
|
# @type NFS: :class:`Tencentcloud::Tcb.v20180608.models.CloudBaseRunNfsVolumeSource`
|
1396
1292
|
# @param SecretName: secret名称
|
1397
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1398
1293
|
# @type SecretName: String
|
1399
1294
|
# @param EnableEmptyDirVolume: 是否开启临时目录逐步废弃,请使用 EmptyDir
|
1400
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1401
1295
|
# @type EnableEmptyDirVolume: Boolean
|
1402
1296
|
# @param EmptyDir: emptydir数据卷详细信息
|
1403
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1404
1297
|
# @type EmptyDir: :class:`Tencentcloud::Tcb.v20180608.models.CloudBaseRunEmptyDirVolumeSource`
|
1405
1298
|
# @param HostPath: 主机路径挂载信息
|
1406
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
1407
1299
|
# @type HostPath: :class:`Tencentcloud::Tcb.v20180608.models.CloudBaseRunServiceVolumeHostPath`
|
1408
1300
|
|
1409
1301
|
attr_accessor :Name, :NFS, :SecretName, :EnableEmptyDirVolume, :EmptyDir, :HostPath
|
@@ -2698,49 +2590,6 @@ module TencentCloud
|
|
2698
2590
|
end
|
2699
2591
|
end
|
2700
2592
|
|
2701
|
-
# DescribeActivityInfo请求参数结构体
|
2702
|
-
class DescribeActivityInfoRequest < TencentCloud::Common::AbstractModel
|
2703
|
-
# @param ActivityIdList: 活动id列表
|
2704
|
-
# @type ActivityIdList: Array
|
2705
|
-
|
2706
|
-
attr_accessor :ActivityIdList
|
2707
|
-
|
2708
|
-
def initialize(activityidlist=nil)
|
2709
|
-
@ActivityIdList = activityidlist
|
2710
|
-
end
|
2711
|
-
|
2712
|
-
def deserialize(params)
|
2713
|
-
@ActivityIdList = params['ActivityIdList']
|
2714
|
-
end
|
2715
|
-
end
|
2716
|
-
|
2717
|
-
# DescribeActivityInfo返回参数结构体
|
2718
|
-
class DescribeActivityInfoResponse < TencentCloud::Common::AbstractModel
|
2719
|
-
# @param ActivityInfoList: 活动详情
|
2720
|
-
# @type ActivityInfoList: Array
|
2721
|
-
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2722
|
-
# @type RequestId: String
|
2723
|
-
|
2724
|
-
attr_accessor :ActivityInfoList, :RequestId
|
2725
|
-
|
2726
|
-
def initialize(activityinfolist=nil, requestid=nil)
|
2727
|
-
@ActivityInfoList = activityinfolist
|
2728
|
-
@RequestId = requestid
|
2729
|
-
end
|
2730
|
-
|
2731
|
-
def deserialize(params)
|
2732
|
-
unless params['ActivityInfoList'].nil?
|
2733
|
-
@ActivityInfoList = []
|
2734
|
-
params['ActivityInfoList'].each do |i|
|
2735
|
-
activityinfoitem_tmp = ActivityInfoItem.new
|
2736
|
-
activityinfoitem_tmp.deserialize(i)
|
2737
|
-
@ActivityInfoList << activityinfoitem_tmp
|
2738
|
-
end
|
2739
|
-
end
|
2740
|
-
@RequestId = params['RequestId']
|
2741
|
-
end
|
2742
|
-
end
|
2743
|
-
|
2744
2593
|
# DescribeActivityRecord请求参数结构体
|
2745
2594
|
class DescribeActivityRecordRequest < TencentCloud::Common::AbstractModel
|
2746
2595
|
# @param ChannelToken: 渠道加密token
|
@@ -6215,6 +6064,50 @@ module TencentCloud
|
|
6215
6064
|
end
|
6216
6065
|
end
|
6217
6066
|
|
6067
|
+
# EditAuthConfig请求参数结构体
|
6068
|
+
class EditAuthConfigRequest < TencentCloud::Common::AbstractModel
|
6069
|
+
# @param EnvId: 环境id
|
6070
|
+
# @type EnvId: String
|
6071
|
+
# @param PhoneNumberLogin: 手机号登录配置 "TRUE", "FALSE", "LOGIN_ONLY"
|
6072
|
+
# @type PhoneNumberLogin: String
|
6073
|
+
# @param AnonymousLogin: 匿名登录配置 "TRUE", "FALSE"
|
6074
|
+
# @type AnonymousLogin: String
|
6075
|
+
# @param UsernameLogin: 用户名密码登录配置 "TRUE", "FALSE"
|
6076
|
+
# @type UsernameLogin: String
|
6077
|
+
|
6078
|
+
attr_accessor :EnvId, :PhoneNumberLogin, :AnonymousLogin, :UsernameLogin
|
6079
|
+
|
6080
|
+
def initialize(envid=nil, phonenumberlogin=nil, anonymouslogin=nil, usernamelogin=nil)
|
6081
|
+
@EnvId = envid
|
6082
|
+
@PhoneNumberLogin = phonenumberlogin
|
6083
|
+
@AnonymousLogin = anonymouslogin
|
6084
|
+
@UsernameLogin = usernamelogin
|
6085
|
+
end
|
6086
|
+
|
6087
|
+
def deserialize(params)
|
6088
|
+
@EnvId = params['EnvId']
|
6089
|
+
@PhoneNumberLogin = params['PhoneNumberLogin']
|
6090
|
+
@AnonymousLogin = params['AnonymousLogin']
|
6091
|
+
@UsernameLogin = params['UsernameLogin']
|
6092
|
+
end
|
6093
|
+
end
|
6094
|
+
|
6095
|
+
# EditAuthConfig返回参数结构体
|
6096
|
+
class EditAuthConfigResponse < TencentCloud::Common::AbstractModel
|
6097
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
6098
|
+
# @type RequestId: String
|
6099
|
+
|
6100
|
+
attr_accessor :RequestId
|
6101
|
+
|
6102
|
+
def initialize(requestid=nil)
|
6103
|
+
@RequestId = requestid
|
6104
|
+
end
|
6105
|
+
|
6106
|
+
def deserialize(params)
|
6107
|
+
@RequestId = params['RequestId']
|
6108
|
+
end
|
6109
|
+
end
|
6110
|
+
|
6218
6111
|
# 终端用户信息
|
6219
6112
|
class EndUserInfo < TencentCloud::Common::AbstractModel
|
6220
6113
|
# @param UUId: 用户唯一ID
|
@@ -7043,10 +6936,8 @@ module TencentCloud
|
|
7043
6936
|
# 扩缩容策略
|
7044
6937
|
class HpaPolicy < TencentCloud::Common::AbstractModel
|
7045
6938
|
# @param PolicyType: 策略类型
|
7046
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
7047
6939
|
# @type PolicyType: String
|
7048
6940
|
# @param PolicyThreshold: 策略阈值
|
7049
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
7050
6941
|
# @type PolicyThreshold: Integer
|
7051
6942
|
|
7052
6943
|
attr_accessor :PolicyType, :PolicyThreshold
|
@@ -8400,13 +8291,10 @@ module TencentCloud
|
|
8400
8291
|
# tke集群信息
|
8401
8292
|
class TkeClusterInfo < TencentCloud::Common::AbstractModel
|
8402
8293
|
# @param ClusterId: 集群ID
|
8403
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8404
8294
|
# @type ClusterId: String
|
8405
8295
|
# @param VpcId: 集群的vpcId
|
8406
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8407
8296
|
# @type VpcId: String
|
8408
8297
|
# @param VersionClbSubnetId: 版本内网CLB所在子网Id
|
8409
|
-
# 注意:此字段可能返回 null,表示取不到有效值。
|
8410
8298
|
# @type VersionClbSubnetId: String
|
8411
8299
|
|
8412
8300
|
attr_accessor :ClusterId, :VpcId, :VersionClbSubnetId
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-tcb
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.1024
|
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-03-
|
11
|
+
date: 2025-03-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|