tencentcloud-sdk-nodejs 4.1.279 → 4.1.281
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.
- package/es/common/sdk_version.js +1 -1
- package/es/services/cdb/v20170320/cdb_client.js +3 -0
- package/es/services/dbbrain/v20210527/dbbrain_client.js +6 -0
- package/es/services/dbdc/v20201029/dbdc_client.js +31 -4
- package/es/services/monitor/v20180724/monitor_client.js +3 -0
- package/es/services/tcb/v20180608/tcb_client.js +30 -9
- package/es/services/teo/v20220901/teo_client.js +3 -0
- package/es/services/trtc/v20190722/trtc_client.js +9 -15
- package/package.json +1 -1
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/alb/v20251030/alb_models.d.ts +7 -26
- package/tencentcloud/services/cdb/v20170320/cdb_client.d.ts +5 -1
- package/tencentcloud/services/cdb/v20170320/cdb_client.js +6 -0
- package/tencentcloud/services/cdb/v20170320/cdb_models.d.ts +26 -0
- package/tencentcloud/services/cfw/v20190904/cfw_models.d.ts +1 -1
- package/tencentcloud/services/cvm/v20170312/cvm_models.d.ts +32 -43
- package/tencentcloud/services/cwp/v20180228/cwp_models.d.ts +11 -11
- package/tencentcloud/services/cynosdb/v20190107/cynosdb_models.d.ts +7 -3
- package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.d.ts +9 -1
- package/tencentcloud/services/dbbrain/v20210527/dbbrain_client.js +12 -0
- package/tencentcloud/services/dbbrain/v20210527/dbbrain_models.d.ts +214 -54
- package/tencentcloud/services/dbdc/v20201029/dbdc_client.d.ts +41 -5
- package/tencentcloud/services/dbdc/v20201029/dbdc_client.js +60 -6
- package/tencentcloud/services/dbdc/v20201029/dbdc_models.d.ts +1335 -891
- package/tencentcloud/services/dlc/v20210125/dlc_client.d.ts +1 -1
- package/tencentcloud/services/dlc/v20210125/dlc_models.d.ts +122 -1
- package/tencentcloud/services/ioa/v20220601/ioa_models.d.ts +25 -17
- package/tencentcloud/services/kms/v20190118/kms_models.d.ts +40 -24
- package/tencentcloud/services/lkeap/v20240522/lkeap_client.d.ts +3 -1
- package/tencentcloud/services/lkeap/v20240522/lkeap_client.js +3 -1
- package/tencentcloud/services/monitor/v20180724/monitor_client.d.ts +5 -1
- package/tencentcloud/services/monitor/v20180724/monitor_client.js +6 -0
- package/tencentcloud/services/monitor/v20180724/monitor_models.d.ts +128 -67
- package/tencentcloud/services/mps/v20190612/mps_models.d.ts +1 -1
- package/tencentcloud/services/redis/v20180412/redis_models.d.ts +7 -4
- package/tencentcloud/services/rum/v20210622/rum_models.d.ts +6 -6
- package/tencentcloud/services/ssl/v20191205/ssl_models.d.ts +39 -19
- package/tencentcloud/services/tcb/v20180608/tcb_client.d.ts +42 -14
- package/tencentcloud/services/tcb/v20180608/tcb_client.js +60 -18
- package/tencentcloud/services/tcb/v20180608/tcb_models.d.ts +722 -141
- package/tencentcloud/services/teo/v20220901/teo_client.d.ts +5 -1
- package/tencentcloud/services/teo/v20220901/teo_client.js +6 -0
- package/tencentcloud/services/teo/v20220901/teo_models.d.ts +83 -12
- package/tencentcloud/services/trtc/v20190722/trtc_client.d.ts +16 -25
- package/tencentcloud/services/trtc/v20190722/trtc_client.js +20 -33
- package/tencentcloud/services/trtc/v20190722/trtc_models.d.ts +150 -265
- package/tencentcloud/services/tsf/v20180326/tsf_models.d.ts +11 -11
- package/tencentcloud/services/vod/v20180717/vod_models.d.ts +6 -2
|
@@ -195,6 +195,48 @@ export interface CheckTcbServiceResponse {
|
|
|
195
195
|
*/
|
|
196
196
|
RequestId?: string;
|
|
197
197
|
}
|
|
198
|
+
/**
|
|
199
|
+
* DeleteCloudAppVersion返回参数结构体
|
|
200
|
+
*/
|
|
201
|
+
export interface DeleteCloudAppVersionResponse {
|
|
202
|
+
/**
|
|
203
|
+
* 是否删除成功
|
|
204
|
+
*/
|
|
205
|
+
Result?: boolean;
|
|
206
|
+
/**
|
|
207
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
208
|
+
*/
|
|
209
|
+
RequestId?: string;
|
|
210
|
+
}
|
|
211
|
+
/**
|
|
212
|
+
* DescribeCloudAppCosInfo请求参数结构体
|
|
213
|
+
*/
|
|
214
|
+
export interface DescribeCloudAppCosInfoRequest {
|
|
215
|
+
/**
|
|
216
|
+
* 环境id
|
|
217
|
+
*/
|
|
218
|
+
EnvId: string;
|
|
219
|
+
/**
|
|
220
|
+
* 服务名
|
|
221
|
+
*/
|
|
222
|
+
ServiceName: string;
|
|
223
|
+
/**
|
|
224
|
+
* 部署类型
|
|
225
|
+
*/
|
|
226
|
+
DeployType: string;
|
|
227
|
+
/**
|
|
228
|
+
* 时间戳
|
|
229
|
+
*/
|
|
230
|
+
UnixTimestamp?: string;
|
|
231
|
+
/**
|
|
232
|
+
* 文件后缀
|
|
233
|
+
*/
|
|
234
|
+
Suffix?: string;
|
|
235
|
+
/**
|
|
236
|
+
* 是否需要下载
|
|
237
|
+
*/
|
|
238
|
+
NeedDownload?: boolean;
|
|
239
|
+
}
|
|
198
240
|
/**
|
|
199
241
|
* migration 执行计划
|
|
200
242
|
*/
|
|
@@ -532,13 +574,42 @@ export interface SMSProviderTemplateConfig {
|
|
|
532
574
|
TemplateExtendParam?: Array<SMSTemplateParams>;
|
|
533
575
|
}
|
|
534
576
|
/**
|
|
535
|
-
*
|
|
577
|
+
* 服务版本信息
|
|
536
578
|
*/
|
|
537
|
-
export interface
|
|
579
|
+
export interface CloudAppVersionItem {
|
|
538
580
|
/**
|
|
539
|
-
*
|
|
581
|
+
* <p>版本名</p>
|
|
540
582
|
*/
|
|
541
|
-
|
|
583
|
+
VersionName?: string;
|
|
584
|
+
/**
|
|
585
|
+
* <p>构建方式</p>
|
|
586
|
+
*/
|
|
587
|
+
BuildType?: string;
|
|
588
|
+
/**
|
|
589
|
+
* <p>构建Id</p>
|
|
590
|
+
*/
|
|
591
|
+
BuildId?: string;
|
|
592
|
+
/**
|
|
593
|
+
* <p>构建状态</p>
|
|
594
|
+
*/
|
|
595
|
+
Status?: string;
|
|
596
|
+
/**
|
|
597
|
+
* <p>框架名</p>
|
|
598
|
+
*/
|
|
599
|
+
Framework?: string;
|
|
600
|
+
/**
|
|
601
|
+
* <p>构建配置</p>
|
|
602
|
+
*/
|
|
603
|
+
StaticConfig?: StaticConfig;
|
|
604
|
+
/**
|
|
605
|
+
* <p>构建时间</p>
|
|
606
|
+
*/
|
|
607
|
+
BuildTime?: string;
|
|
608
|
+
/**
|
|
609
|
+
* <p>构建步骤</p>
|
|
610
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
611
|
+
*/
|
|
612
|
+
Steps?: Array<BuildStepStatus>;
|
|
542
613
|
}
|
|
543
614
|
/**
|
|
544
615
|
* CreateVmInstance请求参数结构体
|
|
@@ -673,6 +744,19 @@ export interface DescribeCloudBaseBuildServiceResponse {
|
|
|
673
744
|
*/
|
|
674
745
|
RequestId?: string;
|
|
675
746
|
}
|
|
747
|
+
/**
|
|
748
|
+
* 构建步骤
|
|
749
|
+
*/
|
|
750
|
+
export interface BuildStep {
|
|
751
|
+
/**
|
|
752
|
+
* <p>步骤名(建议 kebab-case,如 build-image),出现在 DescribeCloudAppVersion.Steps[].Name</p>
|
|
753
|
+
*/
|
|
754
|
+
Name?: string;
|
|
755
|
+
/**
|
|
756
|
+
* <p>shell 脚本,支持单行或多行</p>
|
|
757
|
+
*/
|
|
758
|
+
Command?: string;
|
|
759
|
+
}
|
|
676
760
|
/**
|
|
677
761
|
* 查询HTTP访问服务输出路由信息
|
|
678
762
|
*/
|
|
@@ -726,6 +810,63 @@ export interface HTTPServiceRoute {
|
|
|
726
810
|
*/
|
|
727
811
|
UpdateTime?: string;
|
|
728
812
|
}
|
|
813
|
+
/**
|
|
814
|
+
* 三方认证入参映射。如果您的对接方不标准,则可以使用这个参数。默认情况下,该参数可以为空。比如:github,google,apple 接入,这些参数为空,但是国内的腾讯,新浪等则需要配置该参数。原因主要是:腾讯等公司在实现oauth时,未能完全遵循oauth标准。
|
|
815
|
+
*/
|
|
816
|
+
export interface ProviderRequestParametersMap {
|
|
817
|
+
/**
|
|
818
|
+
* OAuth 标准协议中的 client_id。不同第三方平台的字段名称可能不同,例如微信平台对应 appid、新浪微博对应 app_id。
|
|
819
|
+
*/
|
|
820
|
+
ClientId?: string;
|
|
821
|
+
/**
|
|
822
|
+
* OAuth 标准协议中的 client_secret,用于身份认证源的密钥鉴权。请妥善保管,避免泄露。
|
|
823
|
+
*/
|
|
824
|
+
ClientSecret?: string;
|
|
825
|
+
/**
|
|
826
|
+
* OAuth 标准协议中的 redirect_uri,即授权回调地址。用户完成第三方认证后将重定向至该地址。
|
|
827
|
+
*/
|
|
828
|
+
RedirectUri?: string;
|
|
829
|
+
/**
|
|
830
|
+
* 身份源注册用户时自动绑定的角色 ID。配置后,通过该身份源注册的新用户将自动关联指定角色。
|
|
831
|
+
*/
|
|
832
|
+
RegisterUserRoleId?: string;
|
|
833
|
+
/**
|
|
834
|
+
* 身份源注册用户时是否自动授予许可证。取值范围:
|
|
835
|
+
TRUE:自动授权许可证
|
|
836
|
+
FALSE:不自动授权(默认值)
|
|
837
|
+
*/
|
|
838
|
+
RegisterUserAutoLicense?: string;
|
|
839
|
+
/**
|
|
840
|
+
* OAuth 获取 Token 时认证信息的请求位置。取值范围:
|
|
841
|
+
URL:将认证信息放在请求 URL 参数中
|
|
842
|
+
Headers:将认证信息放在请求 Header 中
|
|
843
|
+
Body:将认证信息放在请求 Body 中
|
|
844
|
+
*/
|
|
845
|
+
AuthPosition?: string;
|
|
846
|
+
/**
|
|
847
|
+
* OAuth 授权模式匹配的参数字段名。用于指定获取 Token 请求中 grant_type 参数对应的字段名称。
|
|
848
|
+
*/
|
|
849
|
+
GrantType?: string;
|
|
850
|
+
/**
|
|
851
|
+
* OAuth 授权模式类型。用于指定 grant_type 的值,例如 client_credentials 表示客户端凭证模式。
|
|
852
|
+
*/
|
|
853
|
+
ClientCredentials?: string;
|
|
854
|
+
/**
|
|
855
|
+
* OAuth 返回中 access_token 的映射字段名。若第三方平台返回的 Token 字段名不是标准的 access_token,可通过此字段指定实际字段名。
|
|
856
|
+
*/
|
|
857
|
+
AccessToken?: string;
|
|
858
|
+
/**
|
|
859
|
+
* OAuth 返回中 Token 有效期的映射字段名。若第三方平台返回的有效期字段名不是标准的 expires_in,可通过此字段指定实际字段名。
|
|
860
|
+
*/
|
|
861
|
+
ExpiresIn?: string;
|
|
862
|
+
/**
|
|
863
|
+
* 身份源注册用户时的用户类型。取值范围:
|
|
864
|
+
externalUser:外部用户
|
|
865
|
+
internalUser:内部用户
|
|
866
|
+
默认值为 externalUser。
|
|
867
|
+
*/
|
|
868
|
+
RegisterUserType?: string;
|
|
869
|
+
}
|
|
729
870
|
/**
|
|
730
871
|
* DescribeMySQLTaskStatus请求参数结构体
|
|
731
872
|
*/
|
|
@@ -743,6 +884,23 @@ export interface DescribeMySQLTaskStatusRequest {
|
|
|
743
884
|
*/
|
|
744
885
|
TaskName?: string;
|
|
745
886
|
}
|
|
887
|
+
/**
|
|
888
|
+
* 构建命令
|
|
889
|
+
*/
|
|
890
|
+
export interface BuildCommands {
|
|
891
|
+
/**
|
|
892
|
+
* <p>平台生成默认 install step 时执行</p>
|
|
893
|
+
*/
|
|
894
|
+
InstallCmd?: string;
|
|
895
|
+
/**
|
|
896
|
+
* <p>平台生成默认build step 时执行</p>
|
|
897
|
+
*/
|
|
898
|
+
BuildCmd?: string;
|
|
899
|
+
/**
|
|
900
|
+
* <p>平台生成默认deploy step 时执行</p>
|
|
901
|
+
*/
|
|
902
|
+
DeployCmd?: string;
|
|
903
|
+
}
|
|
746
904
|
/**
|
|
747
905
|
* 封禁配置
|
|
748
906
|
*/
|
|
@@ -1230,111 +1388,107 @@ export interface UnbindStorageSourceResponse {
|
|
|
1230
1388
|
RequestId?: string;
|
|
1231
1389
|
}
|
|
1232
1390
|
/**
|
|
1233
|
-
*
|
|
1391
|
+
* DescribeCloudAppInfo请求参数结构体
|
|
1234
1392
|
*/
|
|
1235
|
-
export
|
|
1236
|
-
|
|
1237
|
-
|
|
1238
|
-
|
|
1239
|
-
|
|
1393
|
+
export type DescribeCloudAppInfoRequest = null;
|
|
1394
|
+
/**
|
|
1395
|
+
* ModifyLoginConfig请求参数结构体
|
|
1396
|
+
*/
|
|
1397
|
+
export interface ModifyLoginConfigRequest {
|
|
1240
1398
|
/**
|
|
1241
|
-
*
|
|
1399
|
+
* 环境 ID,用于指定需要修改登录策略的云开发环境。
|
|
1242
1400
|
*/
|
|
1243
|
-
|
|
1401
|
+
EnvId: string;
|
|
1244
1402
|
/**
|
|
1245
|
-
*
|
|
1403
|
+
* 手机号短信登录开关。设置为 true 开启手机号短信登录,允许用户使用手机号和短信验证码进行登录和注册;设置为 false 关闭手机号短信登录。
|
|
1246
1404
|
*/
|
|
1247
|
-
|
|
1405
|
+
PhoneNumberLogin: boolean;
|
|
1248
1406
|
/**
|
|
1249
|
-
*
|
|
1407
|
+
* 邮箱登录开关。设置为 true 开启邮箱登录,允许用户使用邮箱和密码进行登录和注册;设置为 false 关闭邮箱登录。
|
|
1250
1408
|
*/
|
|
1251
|
-
|
|
1409
|
+
EmailLogin: boolean;
|
|
1252
1410
|
/**
|
|
1253
|
-
*
|
|
1411
|
+
* 用户名密码登录开关。设置为 true 开启用户名密码登录,允许用户使用用户名和密码进行登录和注册;设置为 false 关闭用户名密码登录。
|
|
1254
1412
|
*/
|
|
1255
|
-
|
|
1413
|
+
UserNameLogin: boolean;
|
|
1256
1414
|
/**
|
|
1257
|
-
*
|
|
1415
|
+
* 匿名登录开关。设置为 true 开启匿名登录,允许用户无需注册即可以匿名身份访问应用;设置为 false 关闭匿名登录。
|
|
1258
1416
|
*/
|
|
1259
|
-
|
|
1417
|
+
AnonymousLogin: boolean;
|
|
1260
1418
|
/**
|
|
1261
|
-
*
|
|
1419
|
+
* 短信验证码发送配置,用于设置短信验证码的发送通道类型和日发送限额。不传则不修改当前配置。
|
|
1262
1420
|
*/
|
|
1263
|
-
|
|
1421
|
+
SmsVerificationConfig?: VerificationConfig;
|
|
1264
1422
|
/**
|
|
1265
|
-
*
|
|
1423
|
+
* MFA 多因子认证登录配置,用于设置多因子认证开关及验证方式(短信、邮箱、TOTP、强制绑定手机号)。不传则不修改当前配置。
|
|
1266
1424
|
*/
|
|
1267
|
-
|
|
1425
|
+
MfaConfig?: MFALoginConfig;
|
|
1268
1426
|
/**
|
|
1269
|
-
*
|
|
1427
|
+
* 密码更新策略配置,用于设置首次登录强制修改密码和定期强制修改密码策略。不传则不修改当前配置。
|
|
1270
1428
|
*/
|
|
1271
|
-
|
|
1429
|
+
PwdUpdateStrategy?: PasswordUpdateLoginConfig;
|
|
1430
|
+
}
|
|
1431
|
+
/**
|
|
1432
|
+
* DeleteCloudApp返回参数结构体
|
|
1433
|
+
*/
|
|
1434
|
+
export interface DeleteCloudAppResponse {
|
|
1272
1435
|
/**
|
|
1273
|
-
*
|
|
1436
|
+
* 是否删除成功
|
|
1274
1437
|
*/
|
|
1275
|
-
|
|
1438
|
+
Result?: boolean;
|
|
1276
1439
|
/**
|
|
1277
1440
|
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1278
1441
|
*/
|
|
1279
1442
|
RequestId?: string;
|
|
1280
1443
|
}
|
|
1281
1444
|
/**
|
|
1282
|
-
*
|
|
1445
|
+
* DescribePGUserMigration返回参数结构体
|
|
1283
1446
|
*/
|
|
1284
|
-
export interface
|
|
1447
|
+
export interface DescribePGUserMigrationResponse {
|
|
1285
1448
|
/**
|
|
1286
|
-
*
|
|
1449
|
+
* <p>版本号</p><p>参数格式:纯数字,14位时间格式</p>
|
|
1287
1450
|
*/
|
|
1288
|
-
|
|
1451
|
+
Version?: string;
|
|
1289
1452
|
/**
|
|
1290
|
-
*
|
|
1453
|
+
* <p>版本名</p><p>参数格式:只允许小写字母和下划线</p>
|
|
1291
1454
|
*/
|
|
1292
|
-
|
|
1455
|
+
Name?: string;
|
|
1293
1456
|
/**
|
|
1294
|
-
*
|
|
1457
|
+
* <p>要执行的migration sql 语句</p>
|
|
1295
1458
|
*/
|
|
1296
|
-
|
|
1459
|
+
Query?: string;
|
|
1297
1460
|
/**
|
|
1298
|
-
*
|
|
1461
|
+
* <p>回滚的sql 语句</p><p>deprecated</p>
|
|
1299
1462
|
*/
|
|
1300
|
-
|
|
1463
|
+
Rollback?: string;
|
|
1301
1464
|
/**
|
|
1302
|
-
*
|
|
1465
|
+
* <p>migration query 语句的checksum值,由服务端自动生成,同版本 checksum 不一致会拒绝执行</p><p>deprecated</p>
|
|
1303
1466
|
*/
|
|
1304
|
-
|
|
1467
|
+
Checksum?: string;
|
|
1305
1468
|
/**
|
|
1306
|
-
*
|
|
1469
|
+
* <p>用于标记调用来源</p><p>deprecated</p>
|
|
1307
1470
|
*/
|
|
1308
|
-
|
|
1471
|
+
Source?: string;
|
|
1309
1472
|
/**
|
|
1310
|
-
*
|
|
1473
|
+
* <p>用于标记该条migration由谁创建,目前默认调用的用户uin</p><p>deprecated</p>
|
|
1311
1474
|
*/
|
|
1312
|
-
|
|
1475
|
+
CreatedBy?: string;
|
|
1313
1476
|
/**
|
|
1314
|
-
*
|
|
1477
|
+
* <p>该migration创建时间</p><p>deprecated</p>
|
|
1315
1478
|
*/
|
|
1316
|
-
|
|
1317
|
-
}
|
|
1318
|
-
/**
|
|
1319
|
-
* ModifyDatabaseACL请求参数结构体
|
|
1320
|
-
*/
|
|
1321
|
-
export interface ModifyDatabaseACLRequest {
|
|
1479
|
+
CreatedAt?: string;
|
|
1322
1480
|
/**
|
|
1323
|
-
*
|
|
1481
|
+
* <p>该migration应用时间</p><p>deprecated</p>
|
|
1324
1482
|
*/
|
|
1325
|
-
|
|
1483
|
+
AppliedAt?: string;
|
|
1326
1484
|
/**
|
|
1327
|
-
*
|
|
1485
|
+
* <p>该migration执行耗时</p><p>单位:毫秒</p><p>deprecated</p>
|
|
1328
1486
|
*/
|
|
1329
|
-
|
|
1487
|
+
DurationMs?: number;
|
|
1330
1488
|
/**
|
|
1331
|
-
*
|
|
1332
|
-
<li> READONLY:所有用户可读,仅创建者和管理员可写</li>
|
|
1333
|
-
<li> PRIVATE:仅创建者及管理员可读写</li>
|
|
1334
|
-
<li> ADMINWRITE:所有用户可读,仅管理员可写</li>
|
|
1335
|
-
<li> ADMINONLY:仅管理员可读写</li>
|
|
1489
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
1336
1490
|
*/
|
|
1337
|
-
|
|
1491
|
+
RequestId?: string;
|
|
1338
1492
|
}
|
|
1339
1493
|
/**
|
|
1340
1494
|
* DescribeCloudBaseRunServerVersion返回参数结构体
|
|
@@ -1586,6 +1740,71 @@ export interface DescribeHostingDomainTaskRequest {
|
|
|
1586
1740
|
*/
|
|
1587
1741
|
EnvId: string;
|
|
1588
1742
|
}
|
|
1743
|
+
/**
|
|
1744
|
+
* 云应用静态托管配置
|
|
1745
|
+
*/
|
|
1746
|
+
export interface StaticConfig {
|
|
1747
|
+
/**
|
|
1748
|
+
* 框架类型:vue、react、nextjs 等
|
|
1749
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1750
|
+
*/
|
|
1751
|
+
Framework?: string;
|
|
1752
|
+
/**
|
|
1753
|
+
* Node.js 版本,默认 20
|
|
1754
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1755
|
+
*/
|
|
1756
|
+
NodeJsVersion?: string;
|
|
1757
|
+
/**
|
|
1758
|
+
* 访问路径
|
|
1759
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1760
|
+
*/
|
|
1761
|
+
AppPath?: string;
|
|
1762
|
+
/**
|
|
1763
|
+
* 构建目录
|
|
1764
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1765
|
+
*/
|
|
1766
|
+
BuildPath?: string;
|
|
1767
|
+
/**
|
|
1768
|
+
* ZIP 文件地址(BuildType=ZIP/TEMPLATE 时使用)
|
|
1769
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1770
|
+
*/
|
|
1771
|
+
ZipFileUrl?: string;
|
|
1772
|
+
/**
|
|
1773
|
+
* COS 时间戳
|
|
1774
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1775
|
+
*/
|
|
1776
|
+
CosTimestamp?: string;
|
|
1777
|
+
/**
|
|
1778
|
+
* COS 文件后缀
|
|
1779
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1780
|
+
*/
|
|
1781
|
+
CosSuffix?: string;
|
|
1782
|
+
/**
|
|
1783
|
+
* 代码源平台:github、gitlab、gitee
|
|
1784
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1785
|
+
*/
|
|
1786
|
+
CodeSource?: string;
|
|
1787
|
+
/**
|
|
1788
|
+
* 代码仓库
|
|
1789
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1790
|
+
*/
|
|
1791
|
+
CodeRepo?: string;
|
|
1792
|
+
/**
|
|
1793
|
+
* 代码分支
|
|
1794
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1795
|
+
*/
|
|
1796
|
+
CodeBranch?: string;
|
|
1797
|
+
/**
|
|
1798
|
+
* 构建参数 JSON 字符串
|
|
1799
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1800
|
+
*/
|
|
1801
|
+
StaticCmd?: StaticCmd;
|
|
1802
|
+
/**
|
|
1803
|
+
* 构建环境变量 JSON 字符串
|
|
1804
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1805
|
+
*/
|
|
1806
|
+
StaticEnv?: StaticEnvironment;
|
|
1807
|
+
}
|
|
1589
1808
|
/**
|
|
1590
1809
|
* 邮箱登录配置
|
|
1591
1810
|
*/
|
|
@@ -1604,6 +1823,23 @@ export interface EmailProviderConfig {
|
|
|
1604
1823
|
*/
|
|
1605
1824
|
TemplateConfig?: EmailTemplateConfig;
|
|
1606
1825
|
}
|
|
1826
|
+
/**
|
|
1827
|
+
* DestroyEnv请求参数结构体
|
|
1828
|
+
*/
|
|
1829
|
+
export interface DestroyEnvRequest {
|
|
1830
|
+
/**
|
|
1831
|
+
* 环境Id
|
|
1832
|
+
*/
|
|
1833
|
+
EnvId: string;
|
|
1834
|
+
/**
|
|
1835
|
+
* 针对预付费 删除隔离中的环境时要传true 正常环境直接跳过隔离期删除
|
|
1836
|
+
*/
|
|
1837
|
+
IsForce?: boolean;
|
|
1838
|
+
/**
|
|
1839
|
+
* 是否绕过资源检查,资源包等额外资源,默认为false,如果为true,则不检查资源是否有数据,直接删除。
|
|
1840
|
+
*/
|
|
1841
|
+
BypassCheck?: boolean;
|
|
1842
|
+
}
|
|
1607
1843
|
/**
|
|
1608
1844
|
* 查询用户返回结果
|
|
1609
1845
|
*/
|
|
@@ -1727,25 +1963,49 @@ export interface CreateMySQLResult {
|
|
|
1727
1963
|
TaskId?: string;
|
|
1728
1964
|
}
|
|
1729
1965
|
/**
|
|
1730
|
-
*
|
|
1966
|
+
* CreateCloudApp请求参数结构体
|
|
1731
1967
|
*/
|
|
1732
|
-
export interface
|
|
1968
|
+
export interface CreateCloudAppRequest {
|
|
1733
1969
|
/**
|
|
1734
|
-
*
|
|
1970
|
+
* <p>环境ID</p>
|
|
1735
1971
|
*/
|
|
1736
|
-
|
|
1972
|
+
EnvId: string;
|
|
1737
1973
|
/**
|
|
1738
|
-
*
|
|
1974
|
+
* <p>服务名</p>
|
|
1739
1975
|
*/
|
|
1740
|
-
|
|
1976
|
+
ServiceName: string;
|
|
1741
1977
|
/**
|
|
1742
|
-
*
|
|
1978
|
+
* <p>部署类型</p>
|
|
1743
1979
|
*/
|
|
1744
|
-
|
|
1980
|
+
DeployType: string;
|
|
1745
1981
|
/**
|
|
1746
|
-
*
|
|
1982
|
+
* <p>构建类型</p>
|
|
1747
1983
|
*/
|
|
1748
|
-
|
|
1984
|
+
BuildType?: string;
|
|
1985
|
+
/**
|
|
1986
|
+
* <p>静态应用创建配置信息</p>
|
|
1987
|
+
*/
|
|
1988
|
+
StaticConfig?: StaticConfig;
|
|
1989
|
+
/**
|
|
1990
|
+
* <p>源码定义</p>
|
|
1991
|
+
*/
|
|
1992
|
+
Source?: BuildSource;
|
|
1993
|
+
/**
|
|
1994
|
+
* <p>Commands 与 CustomSteps 至少填一个</p>
|
|
1995
|
+
*/
|
|
1996
|
+
Commands?: BuildCommands;
|
|
1997
|
+
/**
|
|
1998
|
+
* <p>Commands 与 CustomSteps 至少填一个,docker 镜像构建场景强烈建议用 CustomSteps</p>
|
|
1999
|
+
*/
|
|
2000
|
+
Env?: Array<Variable>;
|
|
2001
|
+
/**
|
|
2002
|
+
* <p>非敏感环境变量,构建容器中以 $KEY 引用</p>
|
|
2003
|
+
*/
|
|
2004
|
+
CustomSteps?: Array<BuildStep>;
|
|
2005
|
+
/**
|
|
2006
|
+
* <p>敏感凭证(AES 加密落库),构建容器中以 $SECRET_NAME 引用</p>
|
|
2007
|
+
*/
|
|
2008
|
+
Secrets?: Array<BuildSecret>;
|
|
1749
2009
|
}
|
|
1750
2010
|
/**
|
|
1751
2011
|
* 身份认证源协议连接配置。包含 OAuth 2.0 / OIDC 协议端点(授权端点、令牌端点、用户信息端点、JWKS 端点等)、客户端凭证(ClientId、ClientSecret)、SAML 元数据、请求与响应参数的字段映射等配置信息。OIDC 类型的认证源字段定义参考 https://openid.net/specs/openid-connect-discovery-1_0.html 规范。
|
|
@@ -2069,61 +2329,17 @@ export interface DescribeCreditsUsageRequest {
|
|
|
2069
2329
|
EnvId: string;
|
|
2070
2330
|
}
|
|
2071
2331
|
/**
|
|
2072
|
-
*
|
|
2332
|
+
* 云开发路由限频策略
|
|
2073
2333
|
*/
|
|
2074
|
-
export interface
|
|
2075
|
-
/**
|
|
2076
|
-
* OAuth 标准协议中的 client_id。不同第三方平台的字段名称可能不同,例如微信平台对应 appid、新浪微博对应 app_id。
|
|
2077
|
-
*/
|
|
2078
|
-
ClientId?: string;
|
|
2079
|
-
/**
|
|
2080
|
-
* OAuth 标准协议中的 client_secret,用于身份认证源的密钥鉴权。请妥善保管,避免泄露。
|
|
2081
|
-
*/
|
|
2082
|
-
ClientSecret?: string;
|
|
2083
|
-
/**
|
|
2084
|
-
* OAuth 标准协议中的 redirect_uri,即授权回调地址。用户完成第三方认证后将重定向至该地址。
|
|
2085
|
-
*/
|
|
2086
|
-
RedirectUri?: string;
|
|
2087
|
-
/**
|
|
2088
|
-
* 身份源注册用户时自动绑定的角色 ID。配置后,通过该身份源注册的新用户将自动关联指定角色。
|
|
2089
|
-
*/
|
|
2090
|
-
RegisterUserRoleId?: string;
|
|
2091
|
-
/**
|
|
2092
|
-
* 身份源注册用户时是否自动授予许可证。取值范围:
|
|
2093
|
-
TRUE:自动授权许可证
|
|
2094
|
-
FALSE:不自动授权(默认值)
|
|
2095
|
-
*/
|
|
2096
|
-
RegisterUserAutoLicense?: string;
|
|
2097
|
-
/**
|
|
2098
|
-
* OAuth 获取 Token 时认证信息的请求位置。取值范围:
|
|
2099
|
-
URL:将认证信息放在请求 URL 参数中
|
|
2100
|
-
Headers:将认证信息放在请求 Header 中
|
|
2101
|
-
Body:将认证信息放在请求 Body 中
|
|
2102
|
-
*/
|
|
2103
|
-
AuthPosition?: string;
|
|
2104
|
-
/**
|
|
2105
|
-
* OAuth 授权模式匹配的参数字段名。用于指定获取 Token 请求中 grant_type 参数对应的字段名称。
|
|
2106
|
-
*/
|
|
2107
|
-
GrantType?: string;
|
|
2108
|
-
/**
|
|
2109
|
-
* OAuth 授权模式类型。用于指定 grant_type 的值,例如 client_credentials 表示客户端凭证模式。
|
|
2110
|
-
*/
|
|
2111
|
-
ClientCredentials?: string;
|
|
2112
|
-
/**
|
|
2113
|
-
* OAuth 返回中 access_token 的映射字段名。若第三方平台返回的 Token 字段名不是标准的 access_token,可通过此字段指定实际字段名。
|
|
2114
|
-
*/
|
|
2115
|
-
AccessToken?: string;
|
|
2334
|
+
export interface HTTPServiceRouteQPSPolicy {
|
|
2116
2335
|
/**
|
|
2117
|
-
*
|
|
2336
|
+
* QPS值,每秒请求次数
|
|
2118
2337
|
*/
|
|
2119
|
-
|
|
2338
|
+
QPSTotal?: number;
|
|
2120
2339
|
/**
|
|
2121
|
-
*
|
|
2122
|
-
externalUser:外部用户
|
|
2123
|
-
internalUser:内部用户
|
|
2124
|
-
默认值为 externalUser。
|
|
2340
|
+
* 客户端限频配置
|
|
2125
2341
|
*/
|
|
2126
|
-
|
|
2342
|
+
QPSPerClient?: HTTPServiceQPSPerClient;
|
|
2127
2343
|
}
|
|
2128
2344
|
/**
|
|
2129
2345
|
* CreateUser返回参数结构体
|
|
@@ -2255,6 +2471,23 @@ export interface DescribeMySQLClusterDetailRequest {
|
|
|
2255
2471
|
*/
|
|
2256
2472
|
EnvId: string;
|
|
2257
2473
|
}
|
|
2474
|
+
/**
|
|
2475
|
+
* DescribeCloudAppVersionList返回参数结构体
|
|
2476
|
+
*/
|
|
2477
|
+
export interface DescribeCloudAppVersionListResponse {
|
|
2478
|
+
/**
|
|
2479
|
+
* <p>版本列表</p>
|
|
2480
|
+
*/
|
|
2481
|
+
VersionList?: Array<CloudAppVersionItem>;
|
|
2482
|
+
/**
|
|
2483
|
+
* <p>总数</p>
|
|
2484
|
+
*/
|
|
2485
|
+
Total?: number;
|
|
2486
|
+
/**
|
|
2487
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
2488
|
+
*/
|
|
2489
|
+
RequestId?: string;
|
|
2490
|
+
}
|
|
2258
2491
|
/**
|
|
2259
2492
|
* CreateStaticStore请求参数结构体
|
|
2260
2493
|
*/
|
|
@@ -2322,6 +2555,27 @@ export interface CreateAuthDomainResponse {
|
|
|
2322
2555
|
*/
|
|
2323
2556
|
RequestId?: string;
|
|
2324
2557
|
}
|
|
2558
|
+
/**
|
|
2559
|
+
* ModifyDatabaseACL请求参数结构体
|
|
2560
|
+
*/
|
|
2561
|
+
export interface ModifyDatabaseACLRequest {
|
|
2562
|
+
/**
|
|
2563
|
+
* 环境ID
|
|
2564
|
+
*/
|
|
2565
|
+
EnvId: string;
|
|
2566
|
+
/**
|
|
2567
|
+
* 集合名称
|
|
2568
|
+
*/
|
|
2569
|
+
CollectionName: string;
|
|
2570
|
+
/**
|
|
2571
|
+
* 权限标签。包含以下取值:
|
|
2572
|
+
<li> READONLY:所有用户可读,仅创建者和管理员可写</li>
|
|
2573
|
+
<li> PRIVATE:仅创建者及管理员可读写</li>
|
|
2574
|
+
<li> ADMINWRITE:所有用户可读,仅管理员可写</li>
|
|
2575
|
+
<li> ADMINONLY:仅管理员可读写</li>
|
|
2576
|
+
*/
|
|
2577
|
+
AclTag: string;
|
|
2578
|
+
}
|
|
2325
2579
|
/**
|
|
2326
2580
|
* DeleteApiKey返回参数结构体
|
|
2327
2581
|
*/
|
|
@@ -2627,6 +2881,15 @@ export interface ListPGUserMigrationsRequest {
|
|
|
2627
2881
|
*/
|
|
2628
2882
|
Offset?: number;
|
|
2629
2883
|
}
|
|
2884
|
+
/**
|
|
2885
|
+
* HTTP访问服务路径重写配置
|
|
2886
|
+
*/
|
|
2887
|
+
export interface HTTPServicePathRewrite {
|
|
2888
|
+
/**
|
|
2889
|
+
* 路径前缀重写。StaticStorePrefix、Prefix只能填一个
|
|
2890
|
+
*/
|
|
2891
|
+
Prefix?: string;
|
|
2892
|
+
}
|
|
2630
2893
|
/**
|
|
2631
2894
|
* ModifyEnvPlan返回参数结构体
|
|
2632
2895
|
*/
|
|
@@ -2780,17 +3043,34 @@ export interface LogObject {
|
|
|
2780
3043
|
*/
|
|
2781
3044
|
Timestamp?: string;
|
|
2782
3045
|
/**
|
|
2783
|
-
* 日志内容
|
|
3046
|
+
* 日志内容
|
|
3047
|
+
*/
|
|
3048
|
+
Content?: string;
|
|
3049
|
+
/**
|
|
3050
|
+
* 采集路径
|
|
3051
|
+
*/
|
|
3052
|
+
FileName?: string;
|
|
3053
|
+
/**
|
|
3054
|
+
* 日志来源设备
|
|
3055
|
+
*/
|
|
3056
|
+
Source?: string;
|
|
3057
|
+
}
|
|
3058
|
+
/**
|
|
3059
|
+
* 静态托管的执行命令
|
|
3060
|
+
*/
|
|
3061
|
+
export interface StaticCmd {
|
|
3062
|
+
/**
|
|
3063
|
+
* 构建命令
|
|
2784
3064
|
*/
|
|
2785
|
-
|
|
3065
|
+
BuildCmd?: string;
|
|
2786
3066
|
/**
|
|
2787
|
-
*
|
|
3067
|
+
* 安装命令
|
|
2788
3068
|
*/
|
|
2789
|
-
|
|
3069
|
+
InstallCmd?: string;
|
|
2790
3070
|
/**
|
|
2791
|
-
*
|
|
3071
|
+
* 部署命令
|
|
2792
3072
|
*/
|
|
2793
|
-
|
|
3073
|
+
DeployCmd?: string;
|
|
2794
3074
|
}
|
|
2795
3075
|
/**
|
|
2796
3076
|
* DestroyStaticStore返回参数结构体
|
|
@@ -3200,21 +3480,41 @@ export interface EnvInfo {
|
|
|
3200
3480
|
PostgreSQL?: Array<PostgreSQLInfo>;
|
|
3201
3481
|
}
|
|
3202
3482
|
/**
|
|
3203
|
-
*
|
|
3483
|
+
* DescribeCloudAppVersion返回参数结构体
|
|
3204
3484
|
*/
|
|
3205
|
-
export interface
|
|
3485
|
+
export interface DescribeCloudAppVersionResponse {
|
|
3206
3486
|
/**
|
|
3207
|
-
*
|
|
3487
|
+
* <p>构建类型</p>
|
|
3208
3488
|
*/
|
|
3209
|
-
|
|
3489
|
+
BuildType?: string;
|
|
3210
3490
|
/**
|
|
3211
|
-
*
|
|
3491
|
+
* <p>构建Id</p>
|
|
3212
3492
|
*/
|
|
3213
|
-
|
|
3493
|
+
BuildId?: string;
|
|
3214
3494
|
/**
|
|
3215
|
-
*
|
|
3495
|
+
* <p>构建状态</p>
|
|
3216
3496
|
*/
|
|
3217
|
-
|
|
3497
|
+
Status?: string;
|
|
3498
|
+
/**
|
|
3499
|
+
* <p>框架</p>
|
|
3500
|
+
*/
|
|
3501
|
+
Framework?: string;
|
|
3502
|
+
/**
|
|
3503
|
+
* <p>静态托管配置信息</p>
|
|
3504
|
+
*/
|
|
3505
|
+
StaticConfig?: StaticConfig;
|
|
3506
|
+
/**
|
|
3507
|
+
* <p>构建时间</p>
|
|
3508
|
+
*/
|
|
3509
|
+
BuildTime?: string;
|
|
3510
|
+
/**
|
|
3511
|
+
* <p>[]BuildStepStatus 的 JSON 序列化</p>
|
|
3512
|
+
*/
|
|
3513
|
+
Steps?: Array<BuildStepStatus>;
|
|
3514
|
+
/**
|
|
3515
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
3516
|
+
*/
|
|
3517
|
+
RequestId?: string;
|
|
3218
3518
|
}
|
|
3219
3519
|
/**
|
|
3220
3520
|
* DestroyEnv返回参数结构体
|
|
@@ -3471,6 +3771,23 @@ export interface DescribeCreateMySQLResult {
|
|
|
3471
3771
|
*/
|
|
3472
3772
|
FreezeStatus?: boolean;
|
|
3473
3773
|
}
|
|
3774
|
+
/**
|
|
3775
|
+
* DeleteCloudApp请求参数结构体
|
|
3776
|
+
*/
|
|
3777
|
+
export interface DeleteCloudAppRequest {
|
|
3778
|
+
/**
|
|
3779
|
+
* 环境ID
|
|
3780
|
+
*/
|
|
3781
|
+
EnvId: string;
|
|
3782
|
+
/**
|
|
3783
|
+
* 部署类型
|
|
3784
|
+
*/
|
|
3785
|
+
DeployType: string;
|
|
3786
|
+
/**
|
|
3787
|
+
* 服务名
|
|
3788
|
+
*/
|
|
3789
|
+
ServiceName: string;
|
|
3790
|
+
}
|
|
3474
3791
|
/**
|
|
3475
3792
|
* ModifyResourcePermission返回参数结构体
|
|
3476
3793
|
*/
|
|
@@ -3484,6 +3801,23 @@ export interface ModifyResourcePermissionResponse {
|
|
|
3484
3801
|
*/
|
|
3485
3802
|
RequestId?: string;
|
|
3486
3803
|
}
|
|
3804
|
+
/**
|
|
3805
|
+
* 步骤构建执行状态
|
|
3806
|
+
*/
|
|
3807
|
+
export interface BuildStepStatus {
|
|
3808
|
+
/**
|
|
3809
|
+
* <p>构建步骤名称</p>
|
|
3810
|
+
*/
|
|
3811
|
+
Name?: string;
|
|
3812
|
+
/**
|
|
3813
|
+
* <p>构建状态</p>
|
|
3814
|
+
*/
|
|
3815
|
+
Status?: string;
|
|
3816
|
+
/**
|
|
3817
|
+
* <p>构建耗时</p>
|
|
3818
|
+
*/
|
|
3819
|
+
Duration?: string;
|
|
3820
|
+
}
|
|
3487
3821
|
/**
|
|
3488
3822
|
* DescribeCreateMySQLResult返回参数结构体
|
|
3489
3823
|
*/
|
|
@@ -4058,6 +4392,27 @@ export interface StaticStorageInfo {
|
|
|
4058
4392
|
*/
|
|
4059
4393
|
ExternalStorage?: ExternalStorage;
|
|
4060
4394
|
}
|
|
4395
|
+
/**
|
|
4396
|
+
* DescribeHTTPServiceRoute返回参数结构体
|
|
4397
|
+
*/
|
|
4398
|
+
export interface DescribeHTTPServiceRouteResponse {
|
|
4399
|
+
/**
|
|
4400
|
+
* 域名路由信息列表
|
|
4401
|
+
*/
|
|
4402
|
+
Domains?: Array<HTTPServiceDomain>;
|
|
4403
|
+
/**
|
|
4404
|
+
* 自定义接入的源站域名(HTTPService接入层域名)
|
|
4405
|
+
*/
|
|
4406
|
+
OriginDomain?: string;
|
|
4407
|
+
/**
|
|
4408
|
+
* 域名总数,分页查询使用总数判断是否已经拉取到所有数据
|
|
4409
|
+
*/
|
|
4410
|
+
TotalCount?: number;
|
|
4411
|
+
/**
|
|
4412
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4413
|
+
*/
|
|
4414
|
+
RequestId?: string;
|
|
4415
|
+
}
|
|
4061
4416
|
/**
|
|
4062
4417
|
* CreateTable返回参数结构体
|
|
4063
4418
|
*/
|
|
@@ -4272,6 +4627,19 @@ export interface HTTPServiceDomain {
|
|
|
4272
4627
|
*/
|
|
4273
4628
|
UpdateTime?: string;
|
|
4274
4629
|
}
|
|
4630
|
+
/**
|
|
4631
|
+
* 构建密钥
|
|
4632
|
+
*/
|
|
4633
|
+
export interface BuildSecret {
|
|
4634
|
+
/**
|
|
4635
|
+
* <p>标准化为 DNS Label 风格;构建时注入为 $SECRET_<NAME>(同时也提供原大写形式 $SECRET_<NAME_UPPERCASE>)</p>
|
|
4636
|
+
*/
|
|
4637
|
+
Name?: string;
|
|
4638
|
+
/**
|
|
4639
|
+
* <p>平台 AES 加密落库;DescribeVersion 永不回显明文</p>
|
|
4640
|
+
*/
|
|
4641
|
+
Value?: string;
|
|
4642
|
+
}
|
|
4275
4643
|
/**
|
|
4276
4644
|
* 描述键值对过滤器,用于条件过滤查询。例如过滤ID、名称、状态等
|
|
4277
4645
|
*/
|
|
@@ -4324,17 +4692,25 @@ export interface PasswordUpdateLoginConfig {
|
|
|
4324
4692
|
PeriodType?: string;
|
|
4325
4693
|
}
|
|
4326
4694
|
/**
|
|
4327
|
-
*
|
|
4695
|
+
* CreateCloudApp返回参数结构体
|
|
4328
4696
|
*/
|
|
4329
|
-
export interface
|
|
4697
|
+
export interface CreateCloudAppResponse {
|
|
4330
4698
|
/**
|
|
4331
|
-
*
|
|
4699
|
+
* <p>构建Id</p>
|
|
4332
4700
|
*/
|
|
4333
|
-
|
|
4701
|
+
BuildId?: string;
|
|
4334
4702
|
/**
|
|
4335
|
-
*
|
|
4703
|
+
* <p>版本名称</p>
|
|
4336
4704
|
*/
|
|
4337
|
-
|
|
4705
|
+
VersionName?: string;
|
|
4706
|
+
/**
|
|
4707
|
+
* <p>服务名称</p>
|
|
4708
|
+
*/
|
|
4709
|
+
ServiceName?: string;
|
|
4710
|
+
/**
|
|
4711
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
4712
|
+
*/
|
|
4713
|
+
RequestId?: string;
|
|
4338
4714
|
}
|
|
4339
4715
|
/**
|
|
4340
4716
|
* PostgreSQL资源信息结构体
|
|
@@ -4877,6 +5253,19 @@ export interface ResourcePermission {
|
|
|
4877
5253
|
*/
|
|
4878
5254
|
SecurityRule?: string;
|
|
4879
5255
|
}
|
|
5256
|
+
/**
|
|
5257
|
+
* 对象变量
|
|
5258
|
+
*/
|
|
5259
|
+
export interface Variable {
|
|
5260
|
+
/**
|
|
5261
|
+
* 变量的名称
|
|
5262
|
+
*/
|
|
5263
|
+
Key?: string;
|
|
5264
|
+
/**
|
|
5265
|
+
* 变量的值
|
|
5266
|
+
*/
|
|
5267
|
+
Value?: string;
|
|
5268
|
+
}
|
|
4880
5269
|
/**
|
|
4881
5270
|
* ModifyHTTPServiceRoute返回参数结构体
|
|
4882
5271
|
*/
|
|
@@ -5180,6 +5569,56 @@ export interface UpdateTableRequest {
|
|
|
5180
5569
|
*/
|
|
5181
5570
|
MongoConnector?: MongoConnector;
|
|
5182
5571
|
}
|
|
5572
|
+
/**
|
|
5573
|
+
* DescribeCloudAppCosInfo返回参数结构体
|
|
5574
|
+
*/
|
|
5575
|
+
export interface DescribeCloudAppCosInfoResponse {
|
|
5576
|
+
/**
|
|
5577
|
+
* 上传url
|
|
5578
|
+
*/
|
|
5579
|
+
UploadUrl?: string;
|
|
5580
|
+
/**
|
|
5581
|
+
* 上传header
|
|
5582
|
+
*/
|
|
5583
|
+
UploadHeaders?: Array<KVPair>;
|
|
5584
|
+
/**
|
|
5585
|
+
* 下载链接
|
|
5586
|
+
*/
|
|
5587
|
+
DownloadUrl?: string;
|
|
5588
|
+
/**
|
|
5589
|
+
* 下载Httpheader
|
|
5590
|
+
*/
|
|
5591
|
+
DownloadHeaders?: Array<KVPair>;
|
|
5592
|
+
/**
|
|
5593
|
+
* 时间戳
|
|
5594
|
+
*/
|
|
5595
|
+
UnixTimestamp?: string;
|
|
5596
|
+
/**
|
|
5597
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5598
|
+
*/
|
|
5599
|
+
RequestId?: string;
|
|
5600
|
+
}
|
|
5601
|
+
/**
|
|
5602
|
+
* DeleteCloudAppVersion请求参数结构体
|
|
5603
|
+
*/
|
|
5604
|
+
export interface DeleteCloudAppVersionRequest {
|
|
5605
|
+
/**
|
|
5606
|
+
* 环境ID
|
|
5607
|
+
*/
|
|
5608
|
+
EnvId: string;
|
|
5609
|
+
/**
|
|
5610
|
+
* 部署类型
|
|
5611
|
+
*/
|
|
5612
|
+
DeployType: string;
|
|
5613
|
+
/**
|
|
5614
|
+
* 服务名
|
|
5615
|
+
*/
|
|
5616
|
+
ServiceName: string;
|
|
5617
|
+
/**
|
|
5618
|
+
* 版本名
|
|
5619
|
+
*/
|
|
5620
|
+
VersionName: string;
|
|
5621
|
+
}
|
|
5183
5622
|
/**
|
|
5184
5623
|
* DescribeCreditsUsageDetail请求参数结构体
|
|
5185
5624
|
*/
|
|
@@ -5301,6 +5740,51 @@ export interface DescribeClientRequest {
|
|
|
5301
5740
|
*/
|
|
5302
5741
|
Id: string;
|
|
5303
5742
|
}
|
|
5743
|
+
/**
|
|
5744
|
+
* DescribeCloudAppInfo返回参数结构体
|
|
5745
|
+
*/
|
|
5746
|
+
export interface DescribeCloudAppInfoResponse {
|
|
5747
|
+
/**
|
|
5748
|
+
* <p>服务名称</p>
|
|
5749
|
+
*/
|
|
5750
|
+
ServiceName?: string;
|
|
5751
|
+
/**
|
|
5752
|
+
* <p>框架名称</p>
|
|
5753
|
+
*/
|
|
5754
|
+
Framework?: string;
|
|
5755
|
+
/**
|
|
5756
|
+
* <p>域名</p>
|
|
5757
|
+
*/
|
|
5758
|
+
Domain?: string;
|
|
5759
|
+
/**
|
|
5760
|
+
* <p>构建路径</p>
|
|
5761
|
+
*/
|
|
5762
|
+
AppPath?: string;
|
|
5763
|
+
/**
|
|
5764
|
+
* <p>服务创建时间</p>
|
|
5765
|
+
*/
|
|
5766
|
+
CreateTime?: string;
|
|
5767
|
+
/**
|
|
5768
|
+
* <p>最新版本名</p>
|
|
5769
|
+
*/
|
|
5770
|
+
LatestVersionName?: string;
|
|
5771
|
+
/**
|
|
5772
|
+
* <p>最新版本状态</p>
|
|
5773
|
+
*/
|
|
5774
|
+
LatestStatus?: string;
|
|
5775
|
+
/**
|
|
5776
|
+
* <p>最新版本构建时间</p>
|
|
5777
|
+
*/
|
|
5778
|
+
LatestBuildTime?: string;
|
|
5779
|
+
/**
|
|
5780
|
+
* <p>部署类型</p>
|
|
5781
|
+
*/
|
|
5782
|
+
DeployType?: string;
|
|
5783
|
+
/**
|
|
5784
|
+
* 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5785
|
+
*/
|
|
5786
|
+
RequestId?: string;
|
|
5787
|
+
}
|
|
5304
5788
|
/**
|
|
5305
5789
|
* 外部存储。
|
|
5306
5790
|
标识该存储介质,并非由云开发CloudBase创建,而是绑定的其他存储介质。
|
|
@@ -5708,6 +6192,16 @@ export interface PlanInfo {
|
|
|
5708
6192
|
*/
|
|
5709
6193
|
ResourceLimit?: string;
|
|
5710
6194
|
}
|
|
6195
|
+
/**
|
|
6196
|
+
* 静态托管的环境变量参数
|
|
6197
|
+
*/
|
|
6198
|
+
export interface StaticEnvironment {
|
|
6199
|
+
/**
|
|
6200
|
+
* 环境变量数组
|
|
6201
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
6202
|
+
*/
|
|
6203
|
+
Variables?: Array<Variable>;
|
|
6204
|
+
}
|
|
5711
6205
|
/**
|
|
5712
6206
|
* 标签键值对
|
|
5713
6207
|
*/
|
|
@@ -5832,6 +6326,43 @@ export interface MySQLClusterDetail {
|
|
|
5832
6326
|
*/
|
|
5833
6327
|
DbInfo?: ClusterDetail;
|
|
5834
6328
|
}
|
|
6329
|
+
/**
|
|
6330
|
+
* 构建触发的源码来源: git,cos,inline
|
|
6331
|
+
*/
|
|
6332
|
+
export interface BuildSource {
|
|
6333
|
+
/**
|
|
6334
|
+
* <p>源码来源类型,取值:"git" "zip"</p>
|
|
6335
|
+
*/
|
|
6336
|
+
Type?: string;
|
|
6337
|
+
/**
|
|
6338
|
+
* <p>Git 仓库 HTTPS URL;或 COS 下载完整 URL;与 CodeUrlWithAuth / CosTimestamp 之一非空(zip 二阶段上传时可留空)</p>
|
|
6339
|
+
*/
|
|
6340
|
+
Repo?: string;
|
|
6341
|
+
/**
|
|
6342
|
+
* <p>分支 tag commit;Git 默认 main,zip 模式下忽略</p>
|
|
6343
|
+
*/
|
|
6344
|
+
Ref?: string;
|
|
6345
|
+
/**
|
|
6346
|
+
* <p>"git" "github" "gitlab" "gitee" "coding";私有仓必填,平台据此走 OAuth 鉴权</p>
|
|
6347
|
+
*/
|
|
6348
|
+
Channel?: string;
|
|
6349
|
+
/**
|
|
6350
|
+
* <p>是否私有仓;true 时平台自动注入 CodeUrlWithAuth</p>
|
|
6351
|
+
*/
|
|
6352
|
+
IsPrivate?: boolean;
|
|
6353
|
+
/**
|
|
6354
|
+
* <p>调用方显式传入的带鉴权 clone URL 或带签名的 zip 下载直链(优先级最高,会覆盖平台 OAuth / 自动签名)</p>
|
|
6355
|
+
*/
|
|
6356
|
+
CodeUrlWithAuth?: string;
|
|
6357
|
+
/**
|
|
6358
|
+
* <p>仅 Type=zip/cos 时使用。配合 zip 二阶段上传:填 DescribeCloudAppCosInfo 返回的 UnixTimestamp,平台据此自动签名出 ZIP_FILE_URL</p>
|
|
6359
|
+
*/
|
|
6360
|
+
CosTimestamp?: string;
|
|
6361
|
+
/**
|
|
6362
|
+
* <p>仅 Type=zip/cos 时使用。zip 文件后缀,默认 .zip;与 CosTimestamp 配合定位 COS 对象</p>
|
|
6363
|
+
*/
|
|
6364
|
+
CosSuffix?: string;
|
|
6365
|
+
}
|
|
5835
6366
|
/**
|
|
5836
6367
|
* DescribeAuthDomains请求参数结构体
|
|
5837
6368
|
*/
|
|
@@ -5910,6 +6441,31 @@ export interface MessageLocalized {
|
|
|
5910
6441
|
*/
|
|
5911
6442
|
Locale: string;
|
|
5912
6443
|
}
|
|
6444
|
+
/**
|
|
6445
|
+
* DescribeCloudAppVersion请求参数结构体
|
|
6446
|
+
*/
|
|
6447
|
+
export interface DescribeCloudAppVersionRequest {
|
|
6448
|
+
/**
|
|
6449
|
+
* <p>环境ID</p>
|
|
6450
|
+
*/
|
|
6451
|
+
EnvId: string;
|
|
6452
|
+
/**
|
|
6453
|
+
* <p>服务名</p>
|
|
6454
|
+
*/
|
|
6455
|
+
ServiceName: string;
|
|
6456
|
+
/**
|
|
6457
|
+
* <p>部署类型</p>
|
|
6458
|
+
*/
|
|
6459
|
+
DeployType: string;
|
|
6460
|
+
/**
|
|
6461
|
+
* <p>版本名</p>
|
|
6462
|
+
*/
|
|
6463
|
+
VersionName?: string;
|
|
6464
|
+
/**
|
|
6465
|
+
* <p>构建id</p>
|
|
6466
|
+
*/
|
|
6467
|
+
BuildId?: string;
|
|
6468
|
+
}
|
|
5913
6469
|
/**
|
|
5914
6470
|
* 域名归属权验证指引DNS验证信息
|
|
5915
6471
|
*/
|
|
@@ -6385,6 +6941,31 @@ export interface ModifyLoginConfigResponse {
|
|
|
6385
6941
|
*/
|
|
6386
6942
|
RequestId?: string;
|
|
6387
6943
|
}
|
|
6944
|
+
/**
|
|
6945
|
+
* DescribeCloudAppVersionList请求参数结构体
|
|
6946
|
+
*/
|
|
6947
|
+
export interface DescribeCloudAppVersionListRequest {
|
|
6948
|
+
/**
|
|
6949
|
+
* <p>环境ID</p>
|
|
6950
|
+
*/
|
|
6951
|
+
EnvId: string;
|
|
6952
|
+
/**
|
|
6953
|
+
* <p>部署类型</p>
|
|
6954
|
+
*/
|
|
6955
|
+
DeployType: string;
|
|
6956
|
+
/**
|
|
6957
|
+
* <p>服务名</p>
|
|
6958
|
+
*/
|
|
6959
|
+
ServiceName: string;
|
|
6960
|
+
/**
|
|
6961
|
+
* <p>页大小</p>
|
|
6962
|
+
*/
|
|
6963
|
+
PageSize?: number;
|
|
6964
|
+
/**
|
|
6965
|
+
* <p>页号</p>
|
|
6966
|
+
*/
|
|
6967
|
+
PageNo?: number;
|
|
6968
|
+
}
|
|
6388
6969
|
/**
|
|
6389
6970
|
* CreateApiKey请求参数结构体
|
|
6390
6971
|
*/
|