tencentcloud-sdk-nodejs-tem 4.0.258 → 4.0.262

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.
@@ -29,6 +29,27 @@ export interface RestartApplicationPodResponse {
29
29
  */
30
30
  RequestId?: string;
31
31
  }
32
+ /**
33
+ * DeleteApplication请求参数结构体
34
+ */
35
+ export interface DeleteApplicationRequest {
36
+ /**
37
+ * 服务Id
38
+ */
39
+ ApplicationId: string;
40
+ /**
41
+ * 环境ID
42
+ */
43
+ EnvironmentId: string;
44
+ /**
45
+ * 来源渠道
46
+ */
47
+ SourceChannel?: number;
48
+ /**
49
+ * 当服务没有任何运行版本时,是否删除此服务
50
+ */
51
+ DeleteApplicationIfNoRunningVersion?: boolean;
52
+ }
32
53
  /**
33
54
  * CreateResource请求参数结构体
34
55
  */
@@ -63,6 +84,36 @@ export interface ResumeDeployApplicationResponse {
63
84
  */
64
85
  RequestId?: string;
65
86
  }
87
+ /**
88
+ * RestartApplication返回参数结构体
89
+ */
90
+ export interface RestartApplicationResponse {
91
+ /**
92
+ * 返回结果
93
+ */
94
+ Result: boolean;
95
+ /**
96
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
97
+ */
98
+ RequestId?: string;
99
+ }
100
+ /**
101
+ * StopApplication请求参数结构体
102
+ */
103
+ export interface StopApplicationRequest {
104
+ /**
105
+ * 服务id
106
+ */
107
+ ApplicationId: string;
108
+ /**
109
+ * 来源渠道
110
+ */
111
+ SourceChannel?: number;
112
+ /**
113
+ * 环境ID
114
+ */
115
+ EnvironmentId?: string;
116
+ }
66
117
  /**
67
118
  * 健康检查配置
68
119
  */
@@ -1133,22 +1184,42 @@ export interface CronHorizontalAutoscaler {
1133
1184
  Priority?: number;
1134
1185
  }
1135
1186
  /**
1136
- * 存储卷配置
1187
+ * RollingUpdateApplicationByVersion返回参数结构体
1137
1188
  */
1138
- export interface StorageConf {
1189
+ export interface RollingUpdateApplicationByVersionResponse {
1139
1190
  /**
1140
- * 存储卷名称
1191
+ * 版本ID
1141
1192
  */
1142
- StorageVolName: string;
1193
+ Result: string;
1143
1194
  /**
1144
- * 存储卷路径
1195
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1145
1196
  */
1146
- StorageVolPath: string;
1197
+ RequestId?: string;
1198
+ }
1199
+ /**
1200
+ * RollingUpdateApplicationByVersion请求参数结构体
1201
+ */
1202
+ export interface RollingUpdateApplicationByVersionRequest {
1147
1203
  /**
1148
- * 存储卷IP
1149
- 注意:此字段可能返回 null,表示取不到有效值。
1150
- */
1151
- StorageVolIp?: string;
1204
+ * 应用ID
1205
+ */
1206
+ ApplicationId: string;
1207
+ /**
1208
+ * 环境ID
1209
+ */
1210
+ EnvironmentId: string;
1211
+ /**
1212
+ * 更新版本,IMAGE 部署为 tag 值;JAR/WAR 部署 为 Version
1213
+ */
1214
+ DeployVersion: string;
1215
+ /**
1216
+ * JAR/WAR 包名,仅 JAR/WAR 部署时必填
1217
+ */
1218
+ PackageName?: string;
1219
+ /**
1220
+ * 请求来源平台,含 IntelliJ,Coding
1221
+ */
1222
+ From?: string;
1152
1223
  }
1153
1224
  /**
1154
1225
  * 应用实例
@@ -1272,17 +1343,17 @@ export interface ModifyApplicationInfoResponse {
1272
1343
  RequestId?: string;
1273
1344
  }
1274
1345
  /**
1275
- * RevertDeployApplication请求参数结构体
1346
+ * DeleteApplication返回参数结构体
1276
1347
  */
1277
- export interface RevertDeployApplicationRequest {
1348
+ export interface DeleteApplicationResponse {
1278
1349
  /**
1279
- * 需要回滚的服务id
1350
+ * 返回结果
1280
1351
  */
1281
- ApplicationId?: string;
1352
+ Result: boolean;
1282
1353
  /**
1283
- * 需要回滚的服务所在环境id
1354
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1284
1355
  */
1285
- EnvironmentId?: string;
1356
+ RequestId?: string;
1286
1357
  }
1287
1358
  /**
1288
1359
  * Ingress Rule Path 配置
@@ -1332,6 +1403,23 @@ export interface NamespacePage {
1332
1403
  */
1333
1404
  Pages: number;
1334
1405
  }
1406
+ /**
1407
+ * RestartApplication请求参数结构体
1408
+ */
1409
+ export interface RestartApplicationRequest {
1410
+ /**
1411
+ * 服务id
1412
+ */
1413
+ ApplicationId: string;
1414
+ /**
1415
+ * 来源渠道
1416
+ */
1417
+ SourceChannel?: number;
1418
+ /**
1419
+ * 环境ID
1420
+ */
1421
+ EnvironmentId?: string;
1422
+ }
1335
1423
  /**
1336
1424
  * CreateApplication返回参数结构体
1337
1425
  */
@@ -1366,6 +1454,19 @@ export interface HorizontalAutoscaler {
1366
1454
  */
1367
1455
  Threshold: number;
1368
1456
  }
1457
+ /**
1458
+ * RevertDeployApplication请求参数结构体
1459
+ */
1460
+ export interface RevertDeployApplicationRequest {
1461
+ /**
1462
+ * 需要回滚的服务id
1463
+ */
1464
+ ApplicationId?: string;
1465
+ /**
1466
+ * 需要回滚的服务所在环境id
1467
+ */
1468
+ EnvironmentId?: string;
1469
+ }
1369
1470
  /**
1370
1471
  * 数据卷挂载信息
1371
1472
  */
@@ -1522,6 +1623,19 @@ export interface DescribeEnvironmentsRequest {
1522
1623
  */
1523
1624
  SourceChannel?: number;
1524
1625
  }
1626
+ /**
1627
+ * StopApplication返回参数结构体
1628
+ */
1629
+ export interface StopApplicationResponse {
1630
+ /**
1631
+ * 返回结果
1632
+ */
1633
+ Result: boolean;
1634
+ /**
1635
+ * 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
1636
+ */
1637
+ RequestId?: string;
1638
+ }
1525
1639
  /**
1526
1640
  * eks service info
1527
1641
  */
@@ -1624,6 +1738,24 @@ export interface DeployApplicationResponse {
1624
1738
  */
1625
1739
  RequestId?: string;
1626
1740
  }
1741
+ /**
1742
+ * 存储卷配置
1743
+ */
1744
+ export interface StorageConf {
1745
+ /**
1746
+ * 存储卷名称
1747
+ */
1748
+ StorageVolName: string;
1749
+ /**
1750
+ * 存储卷路径
1751
+ */
1752
+ StorageVolPath: string;
1753
+ /**
1754
+ * 存储卷IP
1755
+ 注意:此字段可能返回 null,表示取不到有效值。
1756
+ */
1757
+ StorageVolIp?: string;
1758
+ }
1627
1759
  /**
1628
1760
  * CreateEnvironment请求参数结构体
1629
1761
  */