tencentcloud-sdk-nodejs 4.0.616 → 4.0.617
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/CHANGELOG.md +49 -0
- package/SERVICE_CHANGELOG.md +62 -365
- package/package.json +1 -1
- package/products.md +3 -3
- package/src/common/sdk_version.ts +1 -1
- package/src/services/apigateway/v20180808/apigateway_client.ts +3 -1
- package/src/services/apigateway/v20180808/apigateway_models.ts +132 -5
- package/src/services/ess/v20201111/ess_client.ts +95 -46
- package/src/services/ess/v20201111/ess_models.ts +234 -34
- package/src/services/essbasic/v20210526/essbasic_models.ts +10 -7
- package/tencentcloud/common/sdk_version.d.ts +1 -1
- package/tencentcloud/common/sdk_version.js +1 -1
- package/tencentcloud/services/apigateway/v20180808/apigateway_client.d.ts +1 -1
- package/tencentcloud/services/apigateway/v20180808/apigateway_models.d.ts +111 -5
- package/tencentcloud/services/ess/v20201111/ess_client.d.ts +37 -21
- package/tencentcloud/services/ess/v20201111/ess_client.js +49 -25
- package/tencentcloud/services/ess/v20201111/ess_models.d.ts +201 -31
- package/tencentcloud/services/essbasic/v20210526/essbasic_models.d.ts +5 -2
- package/test/ess.v20201111.test.js +50 -10
|
@@ -15,6 +15,16 @@
|
|
|
15
15
|
* under the License.
|
|
16
16
|
*/
|
|
17
17
|
|
|
18
|
+
/**
|
|
19
|
+
* ModifyIntegrationDepartment返回参数结构体
|
|
20
|
+
*/
|
|
21
|
+
export interface ModifyIntegrationDepartmentResponse {
|
|
22
|
+
/**
|
|
23
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
24
|
+
*/
|
|
25
|
+
RequestId?: string
|
|
26
|
+
}
|
|
27
|
+
|
|
18
28
|
/**
|
|
19
29
|
* CancelFlow返回参数结构体
|
|
20
30
|
*/
|
|
@@ -157,6 +167,21 @@ true:做透明化处理和颜色增强。
|
|
|
157
167
|
FileId?: string
|
|
158
168
|
}
|
|
159
169
|
|
|
170
|
+
/**
|
|
171
|
+
* DescribeIntegrationDepartments返回参数结构体
|
|
172
|
+
*/
|
|
173
|
+
export interface DescribeIntegrationDepartmentsResponse {
|
|
174
|
+
/**
|
|
175
|
+
* 部门列表
|
|
176
|
+
*/
|
|
177
|
+
Departments?: Array<IntegrationDepartment>
|
|
178
|
+
|
|
179
|
+
/**
|
|
180
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
181
|
+
*/
|
|
182
|
+
RequestId?: string
|
|
183
|
+
}
|
|
184
|
+
|
|
160
185
|
/**
|
|
161
186
|
* 模板中文件的信息结构
|
|
162
187
|
*/
|
|
@@ -401,38 +426,36 @@ export interface CreateIntegrationEmployeesRequest {
|
|
|
401
426
|
}
|
|
402
427
|
|
|
403
428
|
/**
|
|
404
|
-
*
|
|
429
|
+
* DescribeIntegrationRoles请求参数结构体
|
|
405
430
|
*/
|
|
406
|
-
export interface
|
|
407
|
-
/**
|
|
408
|
-
* 资源类型 取值范围doc,docx,html,xls,xlsx之一
|
|
409
|
-
*/
|
|
410
|
-
ResourceType: string
|
|
411
|
-
|
|
431
|
+
export interface DescribeIntegrationRolesRequest {
|
|
412
432
|
/**
|
|
413
|
-
*
|
|
433
|
+
* 操作人信息
|
|
414
434
|
*/
|
|
415
|
-
|
|
435
|
+
Operator: UserInfo
|
|
416
436
|
|
|
417
437
|
/**
|
|
418
|
-
*
|
|
438
|
+
* 返回最大数量,最大为200
|
|
419
439
|
*/
|
|
420
|
-
|
|
440
|
+
Limit: number
|
|
421
441
|
|
|
422
442
|
/**
|
|
423
|
-
*
|
|
443
|
+
* 代理相关应用信息,如集团主企业代子企业操作的场景中ProxyOrganizationId必填
|
|
424
444
|
*/
|
|
425
|
-
|
|
445
|
+
Agent?: Agent
|
|
426
446
|
|
|
427
447
|
/**
|
|
428
|
-
|
|
429
|
-
|
|
430
|
-
|
|
448
|
+
* 查询的关键字段:
|
|
449
|
+
Key:"RoleType",Values:["1"]查询系统角色,Values:["2"]查询自定义角色
|
|
450
|
+
Key:"RoleStatus",Values:["1"]查询启用角色,Values:["2"]查询禁用角色
|
|
451
|
+
Key:"IsGroupRole",Values:["0"],查询非集团角色,Values:["1"]表示查询集团角色
|
|
452
|
+
*/
|
|
453
|
+
Filters?: Array<Filter>
|
|
431
454
|
|
|
432
455
|
/**
|
|
433
|
-
*
|
|
456
|
+
* 偏移量,默认为0,最大为2000
|
|
434
457
|
*/
|
|
435
|
-
|
|
458
|
+
Offset?: number
|
|
436
459
|
}
|
|
437
460
|
|
|
438
461
|
/**
|
|
@@ -528,36 +551,38 @@ export interface AuthorizedUser {
|
|
|
528
551
|
}
|
|
529
552
|
|
|
530
553
|
/**
|
|
531
|
-
*
|
|
554
|
+
* CreateConvertTaskApi请求参数结构体
|
|
532
555
|
*/
|
|
533
|
-
export interface
|
|
556
|
+
export interface CreateConvertTaskApiRequest {
|
|
534
557
|
/**
|
|
535
|
-
*
|
|
558
|
+
* 资源类型 取值范围doc,docx,html,xls,xlsx之一
|
|
536
559
|
*/
|
|
537
|
-
|
|
560
|
+
ResourceType: string
|
|
538
561
|
|
|
539
562
|
/**
|
|
540
|
-
*
|
|
563
|
+
* 资源名称,长度限制为256字符
|
|
541
564
|
*/
|
|
542
|
-
|
|
565
|
+
ResourceName: string
|
|
543
566
|
|
|
544
567
|
/**
|
|
545
|
-
*
|
|
568
|
+
* 资源Id,通过UploadFiles获取
|
|
546
569
|
*/
|
|
547
|
-
|
|
570
|
+
ResourceId: string
|
|
548
571
|
|
|
549
572
|
/**
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
Key:"IsGroupRole",Values:["0"],查询非集团角色,Values:["1"]表示查询集团角色
|
|
554
|
-
*/
|
|
555
|
-
Filters?: Array<Filter>
|
|
573
|
+
* 调用方用户信息,userId 必填
|
|
574
|
+
*/
|
|
575
|
+
Operator?: UserInfo
|
|
556
576
|
|
|
557
577
|
/**
|
|
558
|
-
*
|
|
578
|
+
* 应用号信息
|
|
559
579
|
*/
|
|
560
|
-
|
|
580
|
+
Agent?: Agent
|
|
581
|
+
|
|
582
|
+
/**
|
|
583
|
+
* 暂未开放
|
|
584
|
+
*/
|
|
585
|
+
Organization?: OrganizationInfo
|
|
561
586
|
}
|
|
562
587
|
|
|
563
588
|
/**
|
|
@@ -1161,6 +1186,16 @@ APP:第三方APP或小程序跳转电子签小程序的path。
|
|
|
1161
1186
|
Agent?: Agent
|
|
1162
1187
|
}
|
|
1163
1188
|
|
|
1189
|
+
/**
|
|
1190
|
+
* DeleteIntegrationDepartment返回参数结构体
|
|
1191
|
+
*/
|
|
1192
|
+
export interface DeleteIntegrationDepartmentResponse {
|
|
1193
|
+
/**
|
|
1194
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1195
|
+
*/
|
|
1196
|
+
RequestId?: string
|
|
1197
|
+
}
|
|
1198
|
+
|
|
1164
1199
|
/**
|
|
1165
1200
|
* 自动签开启、签署相关配置
|
|
1166
1201
|
*/
|
|
@@ -1257,6 +1292,46 @@ export interface BindEmployeeUserIdWithClientOpenIdRequest {
|
|
|
1257
1292
|
OpenId: string
|
|
1258
1293
|
}
|
|
1259
1294
|
|
|
1295
|
+
/**
|
|
1296
|
+
* DescribeIntegrationDepartments请求参数结构体
|
|
1297
|
+
*/
|
|
1298
|
+
export interface DescribeIntegrationDepartmentsRequest {
|
|
1299
|
+
/**
|
|
1300
|
+
* 操作人信息,UserId必填且需拥有组织架构管理权限
|
|
1301
|
+
*/
|
|
1302
|
+
Operator: UserInfo
|
|
1303
|
+
|
|
1304
|
+
/**
|
|
1305
|
+
* 查询类型 0-查询单个部门节点 1-单个部门节点及一级子节点部门列表
|
|
1306
|
+
*/
|
|
1307
|
+
QueryType: number
|
|
1308
|
+
|
|
1309
|
+
/**
|
|
1310
|
+
* 部门ID,与DeptOpenId二选一,优先DeptId,都为空时获取根节点数据
|
|
1311
|
+
*/
|
|
1312
|
+
DeptId?: string
|
|
1313
|
+
|
|
1314
|
+
/**
|
|
1315
|
+
* 客户系统部门ID,与DeptId二选一,优先DeptId,都为空时获取根节点数据
|
|
1316
|
+
*/
|
|
1317
|
+
DeptOpenId?: string
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
/**
|
|
1321
|
+
* CreateIntegrationDepartment返回参数结构体
|
|
1322
|
+
*/
|
|
1323
|
+
export interface CreateIntegrationDepartmentResponse {
|
|
1324
|
+
/**
|
|
1325
|
+
* 电子签部门ID
|
|
1326
|
+
*/
|
|
1327
|
+
DeptId?: string
|
|
1328
|
+
|
|
1329
|
+
/**
|
|
1330
|
+
* 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
1331
|
+
*/
|
|
1332
|
+
RequestId?: string
|
|
1333
|
+
}
|
|
1334
|
+
|
|
1260
1335
|
/**
|
|
1261
1336
|
* DeleteSealPolicies返回参数结构体
|
|
1262
1337
|
*/
|
|
@@ -2189,6 +2264,41 @@ export interface DescribeFileUrlsResponse {
|
|
|
2189
2264
|
RequestId?: string
|
|
2190
2265
|
}
|
|
2191
2266
|
|
|
2267
|
+
/**
|
|
2268
|
+
* CreateIntegrationDepartment请求参数结构体
|
|
2269
|
+
*/
|
|
2270
|
+
export interface CreateIntegrationDepartmentRequest {
|
|
2271
|
+
/**
|
|
2272
|
+
* 操作人信息,UserId必填且需拥有组织架构管理权限
|
|
2273
|
+
*/
|
|
2274
|
+
Operator: UserInfo
|
|
2275
|
+
|
|
2276
|
+
/**
|
|
2277
|
+
* 部门名称,不超过50个字符
|
|
2278
|
+
*/
|
|
2279
|
+
DeptName: string
|
|
2280
|
+
|
|
2281
|
+
/**
|
|
2282
|
+
* 电子签父部门ID,与ParentDeptOpenId二选一,优先ParentDeptId,都为空时自动填充至根节点下
|
|
2283
|
+
*/
|
|
2284
|
+
ParentDeptId?: string
|
|
2285
|
+
|
|
2286
|
+
/**
|
|
2287
|
+
* 第三方平台中父部门ID,与ParentDeptId二选一,优先ParentDeptId,都为空时自动填充至根节点下
|
|
2288
|
+
*/
|
|
2289
|
+
ParentDeptOpenId?: string
|
|
2290
|
+
|
|
2291
|
+
/**
|
|
2292
|
+
* 客户系统部门ID,不超过64个字符
|
|
2293
|
+
*/
|
|
2294
|
+
DeptOpenId?: string
|
|
2295
|
+
|
|
2296
|
+
/**
|
|
2297
|
+
* 排序号,1~30000范围内
|
|
2298
|
+
*/
|
|
2299
|
+
OrderNo?: number
|
|
2300
|
+
}
|
|
2301
|
+
|
|
2192
2302
|
/**
|
|
2193
2303
|
* 成员企业信息
|
|
2194
2304
|
*/
|
|
@@ -2974,6 +3084,41 @@ export interface CreateFlowSignReviewResponse {
|
|
|
2974
3084
|
RequestId?: string
|
|
2975
3085
|
}
|
|
2976
3086
|
|
|
3087
|
+
/**
|
|
3088
|
+
* ModifyIntegrationDepartment请求参数结构体
|
|
3089
|
+
*/
|
|
3090
|
+
export interface ModifyIntegrationDepartmentRequest {
|
|
3091
|
+
/**
|
|
3092
|
+
* 操作人信息,UserId必填且需拥有组织架构管理权限
|
|
3093
|
+
*/
|
|
3094
|
+
Operator: UserInfo
|
|
3095
|
+
|
|
3096
|
+
/**
|
|
3097
|
+
* 电子签部门ID
|
|
3098
|
+
*/
|
|
3099
|
+
DeptId: string
|
|
3100
|
+
|
|
3101
|
+
/**
|
|
3102
|
+
* 电子签父部门ID
|
|
3103
|
+
*/
|
|
3104
|
+
ParentDeptId?: string
|
|
3105
|
+
|
|
3106
|
+
/**
|
|
3107
|
+
* 部门名称,不超过50个字符
|
|
3108
|
+
*/
|
|
3109
|
+
DeptName?: string
|
|
3110
|
+
|
|
3111
|
+
/**
|
|
3112
|
+
* 客户系统部门ID,不超过64个字符
|
|
3113
|
+
*/
|
|
3114
|
+
DeptOpenId?: string
|
|
3115
|
+
|
|
3116
|
+
/**
|
|
3117
|
+
* 排序号,1~30000范围内
|
|
3118
|
+
*/
|
|
3119
|
+
OrderNo?: number
|
|
3120
|
+
}
|
|
3121
|
+
|
|
2977
3122
|
/**
|
|
2978
3123
|
* 查询过滤条件
|
|
2979
3124
|
*/
|
|
@@ -3389,6 +3534,26 @@ export interface CancelMultiFlowSignQRCodeRequest {
|
|
|
3389
3534
|
Agent?: Agent
|
|
3390
3535
|
}
|
|
3391
3536
|
|
|
3537
|
+
/**
|
|
3538
|
+
* DeleteIntegrationDepartment请求参数结构体
|
|
3539
|
+
*/
|
|
3540
|
+
export interface DeleteIntegrationDepartmentRequest {
|
|
3541
|
+
/**
|
|
3542
|
+
* 操作人信息,UserId必填且需拥有组织架构管理权限
|
|
3543
|
+
*/
|
|
3544
|
+
Operator: UserInfo
|
|
3545
|
+
|
|
3546
|
+
/**
|
|
3547
|
+
* 电子签中的部门id
|
|
3548
|
+
*/
|
|
3549
|
+
DeptId: string
|
|
3550
|
+
|
|
3551
|
+
/**
|
|
3552
|
+
* 交接部门ID。待删除部门中的合同、印章和模版数据,交接至该部门ID下,未填写交接至公司根部门。
|
|
3553
|
+
*/
|
|
3554
|
+
ReceiveDeptId?: string
|
|
3555
|
+
}
|
|
3556
|
+
|
|
3392
3557
|
/**
|
|
3393
3558
|
* ModifyApplicationCallbackInfo请求参数结构体
|
|
3394
3559
|
*/
|
|
@@ -3913,6 +4078,41 @@ KEYWORD 关键字,使用ComponentId指定关键字
|
|
|
3913
4078
|
KeywordIndexes?: Array<number>
|
|
3914
4079
|
}
|
|
3915
4080
|
|
|
4081
|
+
/**
|
|
4082
|
+
* 部门信息
|
|
4083
|
+
*/
|
|
4084
|
+
export interface IntegrationDepartment {
|
|
4085
|
+
/**
|
|
4086
|
+
* 部门ID
|
|
4087
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4088
|
+
*/
|
|
4089
|
+
DeptId?: string
|
|
4090
|
+
|
|
4091
|
+
/**
|
|
4092
|
+
* 部门名
|
|
4093
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4094
|
+
*/
|
|
4095
|
+
DeptName?: string
|
|
4096
|
+
|
|
4097
|
+
/**
|
|
4098
|
+
* 父部门ID
|
|
4099
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4100
|
+
*/
|
|
4101
|
+
ParentDeptId?: string
|
|
4102
|
+
|
|
4103
|
+
/**
|
|
4104
|
+
* 客户系统部门ID
|
|
4105
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4106
|
+
*/
|
|
4107
|
+
DeptOpenId?: string
|
|
4108
|
+
|
|
4109
|
+
/**
|
|
4110
|
+
* 序列号
|
|
4111
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
4112
|
+
*/
|
|
4113
|
+
OrderNo?: number
|
|
4114
|
+
}
|
|
4115
|
+
|
|
3916
4116
|
/**
|
|
3917
4117
|
* DescribeIntegrationRoles返回参数结构体
|
|
3918
4118
|
*/
|
|
@@ -70,8 +70,9 @@ export interface ChannelDeleteSealPoliciesRequest {
|
|
|
70
70
|
SealId: string
|
|
71
71
|
|
|
72
72
|
/**
|
|
73
|
-
|
|
74
|
-
|
|
73
|
+
* 指定用户ID数组,电子签系统用户ID
|
|
74
|
+
可以填写OpenId,系统会通过组织+渠道+OpenId查询得到UserId进行授权取消。
|
|
75
|
+
*/
|
|
75
76
|
UserIds: Array<string>
|
|
76
77
|
|
|
77
78
|
/**
|
|
@@ -667,8 +668,9 @@ export interface ChannelCreateFlowRemindsRequest {
|
|
|
667
668
|
*/
|
|
668
669
|
export interface ChannelCreateSealPolicyResponse {
|
|
669
670
|
/**
|
|
670
|
-
|
|
671
|
-
|
|
671
|
+
* 最终授权成功的电子签系统用户ID数组。其他的跳过的是已经授权了的。
|
|
672
|
+
请求参数填写OpenId时,返回授权成功的 Openid。
|
|
673
|
+
*/
|
|
672
674
|
UserIds?: Array<string>
|
|
673
675
|
|
|
674
676
|
/**
|
|
@@ -3999,8 +4001,9 @@ export interface ChannelCreateSealPolicyRequest {
|
|
|
3999
4001
|
SealId: string
|
|
4000
4002
|
|
|
4001
4003
|
/**
|
|
4002
|
-
|
|
4003
|
-
|
|
4004
|
+
* 指定待授权的用户ID数组,电子签的用户ID
|
|
4005
|
+
可以填写OpenId,系统会通过组织+渠道+OpenId查询得到UserId进行授权。
|
|
4006
|
+
*/
|
|
4004
4007
|
UserIds: Array<string>
|
|
4005
4008
|
|
|
4006
4009
|
/**
|
|
@@ -4176,7 +4179,7 @@ export interface ChannelCreateBatchCancelFlowUrlResponse {
|
|
|
4176
4179
|
*/
|
|
4177
4180
|
export interface OperateChannelTemplateRequest {
|
|
4178
4181
|
/**
|
|
4179
|
-
* 应用相关信息。 此接口Agent.
|
|
4182
|
+
* 应用相关信息。 此接口Agent.AppId必填。
|
|
4180
4183
|
*/
|
|
4181
4184
|
Agent: Agent
|
|
4182
4185
|
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const sdkVersion = "4.0.
|
|
1
|
+
export declare const sdkVersion = "4.0.617";
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { AbstractClient } from "../../../common/abstract_client";
|
|
2
2
|
import { ClientConfig } from "../../../common/interface";
|
|
3
|
-
import { UnBindSubDomainResponse, UpdateApiKeyRequest, DeleteAPIDocRequest, DescribeAPIDocDetailRequest, ModifyAPIDocResponse, DescribeUsagePlanRequest, DeleteUsagePlanResponse, ImportOpenApiResponse, DisableApiKeyResponse, DescribeApiResponse, UnReleaseServiceRequest, DescribeExclusiveInstancesStatusResponse, ModifySubDomainRequest, DescribeApiAppsStatusRequest, DescribeServiceUsagePlanRequest, DescribeServiceEnvironmentListResponse, DescribeApiAppBindApisStatusRequest, ModifyApiResponse, DescribeUsagePlansStatusRequest, CreateIPStrategyRequest, DescribeUsagePlansStatusResponse, DeleteUpstreamRequest, UnbindApiAppResponse, ModifyUpstreamRequest, DescribeApiUsagePlanResponse, DeleteIPStrategyRequest, DescribeApiAppRequest, DescribePluginResponse, DescribeUpstreamBindApisRequest, DescribePluginsByApiResponse, DescribeExclusiveInstancesResponse, DeleteUsagePlanRequest, DeleteServiceRequest, DescribeApiEnvironmentStrategyRequest, DescribeServiceForApiAppResponse, DeleteApiAppResponse, DescribeServiceResponse, DescribeExclusiveInstancesRequest, BindSubDomainResponse, BindEnvironmentResponse, DescribeExclusiveInstanceDetailResponse, DescribeApiBindApiAppsStatusResponse, DescribeApiForApiAppRequest, ModifyServiceResponse, DisableApiKeyRequest, UnBindIPStrategyResponse, DescribeExclusiveInstanceDetailRequest, ModifyPluginRequest, BindIPStrategyResponse, DescribeApisStatusRequest, DeleteServiceSubDomainMappingRequest, BindApiAppRequest, DescribeIPStrategyResponse, DescribePluginRequest, DetachPluginRequest, CreateApiResponse, DescribeIPStrategyApisStatusRequest, ModifyIPStrategyResponse, ModifyApiEnvironmentStrategyRequest, ModifyUsagePlanResponse, CreateUsagePlanResponse, DeletePluginRequest, DeleteApiKeyResponse, ModifyExclusiveInstanceRequest, DescribeServiceReleaseVersionRequest, DescribeUsagePlanSecretIdsRequest, DescribeLogSearchResponse, ModifyAPIDocRequest, UnBindIPStrategyRequest, DescribeUpstreamsResponse, DescribePluginApisRequest, CreateServiceRequest, DescribeIPStrategysStatusRequest, DemoteServiceUsagePlanResponse, DescribePluginApisResponse, EnableApiKeyResponse, DeleteApiAppRequest, UnReleaseServiceResponse, CreateAPIDocResponse, DescribeServiceRequest, CreateUsagePlanRequest, DescribeUsagePlanSecretIdsResponse, CreatePluginRequest, ModifySubDomainResponse, DescribePluginsRequest, BindSecretIdsRequest, DeleteApiKeyRequest, DescribeIPStrategyApisStatusResponse, ModifyApiAppResponse, UpdateApiAppKeyRequest, DescribeApiKeyResponse, ModifyApiIncrementResponse, ModifyApiRequest, DescribeAllPluginApisResponse, ModifyUsagePlanRequest, ModifyServiceRequest, DescribeAllPluginApisRequest, CreateApiRequest, DescribeServiceEnvironmentStrategyRequest, DescribeUpstreamBindApisResponse, ReleaseServiceRequest, DeleteServiceResponse, DescribeServiceEnvironmentReleaseHistoryResponse, DescribeAPIDocsRequest, DescribePluginsByApiRequest, CreatePluginResponse, ModifyExclusiveInstanceResponse, DescribePluginsResponse, ReleaseServiceResponse, ModifyApiIncrementRequest, GenerateApiDocumentRequest, CreateUpstreamRequest, ModifyServiceEnvironmentStrategyResponse, UpdateApiKeyResponse, DescribeApiBindApiAppsStatusRequest, DescribeApisStatusResponse, DescribeApiKeysStatusRequest, DemoteServiceUsagePlanRequest, BindSecretIdsResponse, DeleteApiRequest, DescribeServiceSubDomainMappingsRequest, DescribeApiAppResponse, DescribeServiceSubDomainMappingsResponse, DescribeApiAppsStatusResponse, DescribeApiKeyRequest, DescribeAPIDocDetailResponse, BindApiAppResponse, DeleteServiceSubDomainMappingResponse, CreateApiKeyResponse, DescribeUpstreamsRequest, ModifyIPStrategyRequest, ModifyPluginResponse, UnBindSecretIdsRequest, CreateUpstreamResponse, ResetAPIDocPasswordRequest, DescribeAPIDocsResponse, DetachPluginResponse, DeletePluginResponse, ModifyServiceEnvironmentStrategyRequest, CreateAPIDocRequest, DescribeApiAppBindApisStatusResponse, DescribeServiceSubDomainsRequest, ModifyApiAppRequest, GenerateApiDocumentResponse, DescribeUsagePlanEnvironmentsResponse, DescribeServiceSubDomainsResponse, AttachPluginRequest,
|
|
3
|
+
import { UnBindSubDomainResponse, UpdateApiKeyRequest, DeleteAPIDocRequest, DescribeAPIDocDetailRequest, ModifyAPIDocResponse, DescribeUsagePlanRequest, DeleteUsagePlanResponse, ImportOpenApiResponse, DisableApiKeyResponse, DescribeApiResponse, DescribeServiceForApiAppRequest, UnReleaseServiceRequest, DescribeExclusiveInstancesStatusResponse, ModifySubDomainRequest, DescribeApiAppsStatusRequest, DescribeServiceUsagePlanRequest, DescribeServiceEnvironmentListResponse, DescribeApiAppBindApisStatusRequest, ModifyApiResponse, DescribeUsagePlansStatusRequest, CreateIPStrategyRequest, DescribeUsagePlansStatusResponse, DeleteUpstreamRequest, UnbindApiAppResponse, ModifyUpstreamRequest, DescribeApiUsagePlanResponse, DeleteIPStrategyRequest, DescribeApiAppRequest, DescribePluginResponse, DescribeUpstreamBindApisRequest, DescribePluginsByApiResponse, DescribeExclusiveInstancesResponse, DeleteUsagePlanRequest, DeleteServiceRequest, DescribeApiEnvironmentStrategyRequest, DescribeServiceForApiAppResponse, DeleteApiAppResponse, DescribeServiceResponse, DescribeExclusiveInstancesRequest, BindSubDomainResponse, BindEnvironmentResponse, DescribeExclusiveInstanceDetailResponse, DescribeApiBindApiAppsStatusResponse, DescribeApiForApiAppRequest, ModifyServiceResponse, DisableApiKeyRequest, UnBindIPStrategyResponse, DescribeExclusiveInstanceDetailRequest, ModifyPluginRequest, BindIPStrategyResponse, DescribeApisStatusRequest, DeleteServiceSubDomainMappingRequest, BindApiAppRequest, DescribeIPStrategyResponse, DescribePluginRequest, DetachPluginRequest, CreateApiResponse, DescribeIPStrategyApisStatusRequest, ModifyIPStrategyResponse, ModifyApiEnvironmentStrategyRequest, ModifyUsagePlanResponse, CreateUsagePlanResponse, DeletePluginRequest, DeleteApiKeyResponse, ModifyExclusiveInstanceRequest, DescribeServiceReleaseVersionRequest, DescribeUsagePlanSecretIdsRequest, DescribeLogSearchResponse, ModifyAPIDocRequest, UnBindIPStrategyRequest, DescribeUpstreamsResponse, DescribePluginApisRequest, CreateServiceRequest, DescribeIPStrategysStatusRequest, DemoteServiceUsagePlanResponse, DescribePluginApisResponse, EnableApiKeyResponse, DeleteApiAppRequest, UnReleaseServiceResponse, CreateAPIDocResponse, DescribeServiceRequest, CreateUsagePlanRequest, DescribeUsagePlanSecretIdsResponse, CreatePluginRequest, ModifySubDomainResponse, DescribePluginsRequest, BindSecretIdsRequest, DeleteApiKeyRequest, DescribeIPStrategyApisStatusResponse, ModifyApiAppResponse, UpdateApiAppKeyRequest, DescribeApiKeyResponse, ModifyApiIncrementResponse, ModifyApiRequest, DescribeAllPluginApisResponse, ModifyUsagePlanRequest, ModifyServiceRequest, DescribeAllPluginApisRequest, CreateApiRequest, DescribeServiceEnvironmentStrategyRequest, DescribeUpstreamBindApisResponse, ReleaseServiceRequest, DeleteServiceResponse, DescribeServiceEnvironmentReleaseHistoryResponse, DescribeAPIDocsRequest, DescribePluginsByApiRequest, CreatePluginResponse, ModifyExclusiveInstanceResponse, DescribePluginsResponse, ReleaseServiceResponse, ModifyApiIncrementRequest, GenerateApiDocumentRequest, CreateUpstreamRequest, ModifyServiceEnvironmentStrategyResponse, UpdateApiKeyResponse, DescribeApiBindApiAppsStatusRequest, DescribeApisStatusResponse, DescribeApiKeysStatusRequest, DemoteServiceUsagePlanRequest, BindSecretIdsResponse, DeleteApiRequest, DescribeServiceSubDomainMappingsRequest, DescribeApiAppResponse, DescribeServiceSubDomainMappingsResponse, DescribeApiAppsStatusResponse, DescribeApiKeyRequest, DescribeAPIDocDetailResponse, BindApiAppResponse, DeleteServiceSubDomainMappingResponse, CreateApiKeyResponse, DescribeUpstreamsRequest, ModifyIPStrategyRequest, ModifyPluginResponse, UnBindSecretIdsRequest, CreateUpstreamResponse, ResetAPIDocPasswordRequest, DescribeAPIDocsResponse, DetachPluginResponse, DeletePluginResponse, ModifyServiceEnvironmentStrategyRequest, CreateAPIDocRequest, DescribeApiAppBindApisStatusResponse, DescribeServiceSubDomainsRequest, ModifyApiAppRequest, GenerateApiDocumentResponse, DescribeUsagePlanEnvironmentsResponse, DescribeServiceSubDomainsResponse, AttachPluginRequest, ModifyApiEnvironmentStrategyResponse, BindSubDomainRequest, CreateIPStrategyResponse, UnBindEnvironmentResponse, DeleteApiResponse, BindIPStrategyRequest, UpdateServiceRequest, BuildAPIDocResponse, DescribeServiceEnvironmentListRequest, DescribeApiEnvironmentStrategyResponse, DescribeApiRequest, DeleteIPStrategyResponse, DescribeUsagePlanResponse, UnBindEnvironmentRequest, AttachPluginResponse, BindEnvironmentRequest, ModifyUpstreamResponse, DescribeIPStrategyRequest, DescribeApiForApiAppResponse, DescribeUsagePlanEnvironmentsRequest, ImportOpenApiRequest, DescribeServiceReleaseVersionResponse, DeleteUpstreamResponse, UpdateServiceResponse, DescribeServiceEnvironmentReleaseHistoryRequest, UnbindApiAppRequest, CreateServiceResponse, DeleteAPIDocResponse, DescribeServiceEnvironmentStrategyResponse, DescribeApiKeysStatusResponse, DescribeLogSearchRequest, BuildAPIDocRequest, DescribeServiceUsagePlanResponse, CreateApiAppResponse, DescribeApiUsagePlanRequest, UnBindSubDomainRequest, DescribeIPStrategysStatusResponse, UpdateApiAppKeyResponse, DescribeExclusiveInstancesStatusRequest, UnBindSecretIdsResponse, CreateApiAppRequest, EnableApiKeyRequest, ResetAPIDocPasswordResponse, DescribeServicesStatusRequest, DescribeServicesStatusResponse, CreateApiKeyRequest } from "./apigateway_models";
|
|
4
4
|
/**
|
|
5
5
|
* apigateway client
|
|
6
6
|
* @class
|
|
@@ -319,6 +319,19 @@ export interface DescribeApiResponse {
|
|
|
319
319
|
*/
|
|
320
320
|
RequestId?: string;
|
|
321
321
|
}
|
|
322
|
+
/**
|
|
323
|
+
* DescribeServiceForApiApp请求参数结构体
|
|
324
|
+
*/
|
|
325
|
+
export interface DescribeServiceForApiAppRequest {
|
|
326
|
+
/**
|
|
327
|
+
* 待查询的服务唯一 ID。
|
|
328
|
+
*/
|
|
329
|
+
ServiceId: string;
|
|
330
|
+
/**
|
|
331
|
+
* 服务所属的地域
|
|
332
|
+
*/
|
|
333
|
+
ApiRegion: string;
|
|
334
|
+
}
|
|
322
335
|
/**
|
|
323
336
|
* UnReleaseService请求参数结构体
|
|
324
337
|
*/
|
|
@@ -3032,6 +3045,10 @@ export interface DescribeApisStatusResultInfo {
|
|
|
3032
3045
|
* 符合条件的 API 接口数量。
|
|
3033
3046
|
*/
|
|
3034
3047
|
TotalCount: number;
|
|
3048
|
+
/**
|
|
3049
|
+
* API 接口列表。
|
|
3050
|
+
*/
|
|
3051
|
+
ApiIdStatusSet: Array<DescribeApisStatusResultApiIdStatusSetInfo>;
|
|
3035
3052
|
}
|
|
3036
3053
|
/**
|
|
3037
3054
|
* DescribeIPStrategyApisStatus返回参数结构体
|
|
@@ -3078,6 +3095,10 @@ export interface UpdateApiAppKeyRequest {
|
|
|
3078
3095
|
*/
|
|
3079
3096
|
ApiAppSecret?: string;
|
|
3080
3097
|
}
|
|
3098
|
+
/**
|
|
3099
|
+
* key-value
|
|
3100
|
+
*/
|
|
3101
|
+
export declare type ApigatewayTags = null;
|
|
3081
3102
|
/**
|
|
3082
3103
|
* 服务自定义域名列表
|
|
3083
3104
|
*/
|
|
@@ -5164,17 +5185,102 @@ export interface AttachPluginRequest {
|
|
|
5164
5185
|
ApiIds: Array<string>;
|
|
5165
5186
|
}
|
|
5166
5187
|
/**
|
|
5167
|
-
*
|
|
5188
|
+
* api状态详情
|
|
5168
5189
|
*/
|
|
5169
|
-
export interface
|
|
5190
|
+
export interface DescribeApisStatusResultApiIdStatusSetInfo {
|
|
5170
5191
|
/**
|
|
5171
|
-
*
|
|
5192
|
+
* 服务唯一ID。
|
|
5172
5193
|
*/
|
|
5173
5194
|
ServiceId: string;
|
|
5174
5195
|
/**
|
|
5175
|
-
*
|
|
5196
|
+
* API唯一ID。
|
|
5176
5197
|
*/
|
|
5177
|
-
|
|
5198
|
+
ApiId: string;
|
|
5199
|
+
/**
|
|
5200
|
+
* 用户自定义的 API 接口描述。
|
|
5201
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5202
|
+
*/
|
|
5203
|
+
ApiDesc: string;
|
|
5204
|
+
/**
|
|
5205
|
+
* 创建时间。按照 ISO8601 标准表示,并且使用 UTC 时间。格式为:YYYY-MM-DDThh:mm:ssZ。
|
|
5206
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5207
|
+
*/
|
|
5208
|
+
CreatedTime: string;
|
|
5209
|
+
/**
|
|
5210
|
+
* 最后修改时间。按照 ISO8601 标准表示,并且使用 UTC 时间。格式为:YYYY-MM-DDThh:mm:ssZ。
|
|
5211
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5212
|
+
*/
|
|
5213
|
+
ModifiedTime: string;
|
|
5214
|
+
/**
|
|
5215
|
+
* API 接口的名称。
|
|
5216
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5217
|
+
*/
|
|
5218
|
+
ApiName: string;
|
|
5219
|
+
/**
|
|
5220
|
+
* VPCID。
|
|
5221
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5222
|
+
*/
|
|
5223
|
+
VpcId: number;
|
|
5224
|
+
/**
|
|
5225
|
+
* VPC唯一ID。
|
|
5226
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5227
|
+
*/
|
|
5228
|
+
UniqVpcId: string;
|
|
5229
|
+
/**
|
|
5230
|
+
* API类型。取值为NORMAL(普通API)和TSF(微服务API)。
|
|
5231
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5232
|
+
*/
|
|
5233
|
+
ApiType: string;
|
|
5234
|
+
/**
|
|
5235
|
+
* API协议。
|
|
5236
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5237
|
+
*/
|
|
5238
|
+
Protocol: string;
|
|
5239
|
+
/**
|
|
5240
|
+
* 是否买后调试。(云市场预留字段)
|
|
5241
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5242
|
+
*/
|
|
5243
|
+
IsDebugAfterCharge: boolean;
|
|
5244
|
+
/**
|
|
5245
|
+
* API 鉴权类型。取值为SECRET(密钥对鉴权)、NONE(免鉴权)、OAUTH、EIAM。
|
|
5246
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5247
|
+
*/
|
|
5248
|
+
AuthType: string;
|
|
5249
|
+
/**
|
|
5250
|
+
* OAUTH API的类型。当AuthType 为 OAUTH时该字段有效, 取值为NORMAL(业务API)和 OAUTH(授权API)。
|
|
5251
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5252
|
+
*/
|
|
5253
|
+
ApiBusinessType: string;
|
|
5254
|
+
/**
|
|
5255
|
+
* 关联的授权API 唯一 ID,当AuthType为OAUTH且ApiBusinessType为NORMAL时生效。标示业务API绑定的oauth2.0授权API唯一ID。
|
|
5256
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5257
|
+
*/
|
|
5258
|
+
AuthRelationApiId: string;
|
|
5259
|
+
/**
|
|
5260
|
+
* OAUTH 配置信息。当AuthType是OAUTH时生效。
|
|
5261
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5262
|
+
*/
|
|
5263
|
+
OauthConfig: OauthConfig;
|
|
5264
|
+
/**
|
|
5265
|
+
* 授权API关联的业务API列表。
|
|
5266
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5267
|
+
*/
|
|
5268
|
+
RelationBuniessApiIds?: Array<string>;
|
|
5269
|
+
/**
|
|
5270
|
+
* API关联的标签信息。
|
|
5271
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5272
|
+
*/
|
|
5273
|
+
Tags: Array<ApigatewayTags>;
|
|
5274
|
+
/**
|
|
5275
|
+
* API 的路径,如 /path。
|
|
5276
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5277
|
+
*/
|
|
5278
|
+
Path: string;
|
|
5279
|
+
/**
|
|
5280
|
+
* API 的请求方法,如 GET。
|
|
5281
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5282
|
+
*/
|
|
5283
|
+
Method: string;
|
|
5178
5284
|
}
|
|
5179
5285
|
/**
|
|
5180
5286
|
* ModifyApiEnvironmentStrategy返回参数结构体
|