@alicloud/cloudapi20160714 2.2.13 → 2.2.14

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/dist/client.d.ts CHANGED
@@ -752,6 +752,7 @@ export declare class CreateInstanceRequest extends $tea.Model {
752
752
  instanceName?: string;
753
753
  instanceSpec?: string;
754
754
  pricingCycle?: string;
755
+ tag?: CreateInstanceRequestTag[];
755
756
  token?: string;
756
757
  zoneId?: string;
757
758
  static names(): {
@@ -767,6 +768,7 @@ export declare class CreateInstanceRequest extends $tea.Model {
767
768
  export declare class CreateInstanceResponseBody extends $tea.Model {
768
769
  instanceId?: string;
769
770
  requestId?: string;
771
+ tagStatus?: boolean;
770
772
  static names(): {
771
773
  [key: string]: string;
772
774
  };
@@ -2991,6 +2993,7 @@ export declare class DescribeApisRequest extends $tea.Model {
2991
2993
  pageNumber?: number;
2992
2994
  pageSize?: number;
2993
2995
  securityToken?: string;
2996
+ stageName?: string;
2994
2997
  tag?: DescribeApisRequestTag[];
2995
2998
  unDeployed?: boolean;
2996
2999
  visibility?: string;
@@ -4112,6 +4115,50 @@ export declare class DescribeHistoryApisResponse extends $tea.Model {
4112
4115
  [key: string]: any;
4113
4116
  });
4114
4117
  }
4118
+ export declare class DescribeImportOASTaskRequest extends $tea.Model {
4119
+ operationId?: string;
4120
+ securityToken?: string;
4121
+ static names(): {
4122
+ [key: string]: string;
4123
+ };
4124
+ static types(): {
4125
+ [key: string]: any;
4126
+ };
4127
+ constructor(map?: {
4128
+ [key: string]: any;
4129
+ });
4130
+ }
4131
+ export declare class DescribeImportOASTaskResponseBody extends $tea.Model {
4132
+ apiResults?: DescribeImportOASTaskResponseBodyApiResults;
4133
+ modelResults?: DescribeImportOASTaskResponseBodyModelResults;
4134
+ requestId?: string;
4135
+ taskStatus?: string;
4136
+ static names(): {
4137
+ [key: string]: string;
4138
+ };
4139
+ static types(): {
4140
+ [key: string]: any;
4141
+ };
4142
+ constructor(map?: {
4143
+ [key: string]: any;
4144
+ });
4145
+ }
4146
+ export declare class DescribeImportOASTaskResponse extends $tea.Model {
4147
+ headers: {
4148
+ [key: string]: string;
4149
+ };
4150
+ statusCode: number;
4151
+ body: DescribeImportOASTaskResponseBody;
4152
+ static names(): {
4153
+ [key: string]: string;
4154
+ };
4155
+ static types(): {
4156
+ [key: string]: any;
4157
+ };
4158
+ constructor(map?: {
4159
+ [key: string]: any;
4160
+ });
4161
+ }
4115
4162
  export declare class DescribeInstancesRequest extends $tea.Model {
4116
4163
  enableTagAuthorization?: boolean;
4117
4164
  instanceId?: string;
@@ -7860,6 +7907,19 @@ export declare class CreateAppRequestTag extends $tea.Model {
7860
7907
  [key: string]: any;
7861
7908
  });
7862
7909
  }
7910
+ export declare class CreateInstanceRequestTag extends $tea.Model {
7911
+ key?: string;
7912
+ value?: string;
7913
+ static names(): {
7914
+ [key: string]: string;
7915
+ };
7916
+ static types(): {
7917
+ [key: string]: any;
7918
+ };
7919
+ constructor(map?: {
7920
+ [key: string]: any;
7921
+ });
7922
+ }
7863
7923
  export declare class CreateIpControlRequestIpControlPolicys extends $tea.Model {
7864
7924
  appId?: string;
7865
7925
  cidrIp?: string;
@@ -9367,12 +9427,39 @@ export declare class DescribeApisRequestTag extends $tea.Model {
9367
9427
  [key: string]: any;
9368
9428
  });
9369
9429
  }
9430
+ export declare class DescribeApisResponseBodyApiSummarysApiSummaryDeployedInfosDeployedInfo extends $tea.Model {
9431
+ deployedStatus?: string;
9432
+ effectiveVersion?: string;
9433
+ stageName?: string;
9434
+ static names(): {
9435
+ [key: string]: string;
9436
+ };
9437
+ static types(): {
9438
+ [key: string]: any;
9439
+ };
9440
+ constructor(map?: {
9441
+ [key: string]: any;
9442
+ });
9443
+ }
9444
+ export declare class DescribeApisResponseBodyApiSummarysApiSummaryDeployedInfos extends $tea.Model {
9445
+ deployedInfo?: DescribeApisResponseBodyApiSummarysApiSummaryDeployedInfosDeployedInfo[];
9446
+ static names(): {
9447
+ [key: string]: string;
9448
+ };
9449
+ static types(): {
9450
+ [key: string]: any;
9451
+ };
9452
+ constructor(map?: {
9453
+ [key: string]: any;
9454
+ });
9455
+ }
9370
9456
  export declare class DescribeApisResponseBodyApiSummarysApiSummary extends $tea.Model {
9371
9457
  apiId?: string;
9372
9458
  apiMethod?: string;
9373
9459
  apiName?: string;
9374
9460
  apiPath?: string;
9375
9461
  createdTime?: string;
9462
+ deployedInfos?: DescribeApisResponseBodyApiSummarysApiSummaryDeployedInfos;
9376
9463
  description?: string;
9377
9464
  groupId?: string;
9378
9465
  groupName?: string;
@@ -10424,6 +10511,65 @@ export declare class DescribeHistoryApisResponseBodyApiHisItems extends $tea.Mod
10424
10511
  [key: string]: any;
10425
10512
  });
10426
10513
  }
10514
+ export declare class DescribeImportOASTaskResponseBodyApiResultsApiResult extends $tea.Model {
10515
+ apiId?: string;
10516
+ apiName?: string;
10517
+ description?: string;
10518
+ errorMessage?: string;
10519
+ groupId?: string;
10520
+ method?: string;
10521
+ path?: string;
10522
+ updateStatus?: string;
10523
+ static names(): {
10524
+ [key: string]: string;
10525
+ };
10526
+ static types(): {
10527
+ [key: string]: any;
10528
+ };
10529
+ constructor(map?: {
10530
+ [key: string]: any;
10531
+ });
10532
+ }
10533
+ export declare class DescribeImportOASTaskResponseBodyApiResults extends $tea.Model {
10534
+ apiResult?: DescribeImportOASTaskResponseBodyApiResultsApiResult[];
10535
+ static names(): {
10536
+ [key: string]: string;
10537
+ };
10538
+ static types(): {
10539
+ [key: string]: any;
10540
+ };
10541
+ constructor(map?: {
10542
+ [key: string]: any;
10543
+ });
10544
+ }
10545
+ export declare class DescribeImportOASTaskResponseBodyModelResultsModelResult extends $tea.Model {
10546
+ errorMessage?: string;
10547
+ groupId?: string;
10548
+ modelId?: string;
10549
+ modelName?: string;
10550
+ updateStatus?: string;
10551
+ static names(): {
10552
+ [key: string]: string;
10553
+ };
10554
+ static types(): {
10555
+ [key: string]: any;
10556
+ };
10557
+ constructor(map?: {
10558
+ [key: string]: any;
10559
+ });
10560
+ }
10561
+ export declare class DescribeImportOASTaskResponseBodyModelResults extends $tea.Model {
10562
+ modelResult?: DescribeImportOASTaskResponseBodyModelResultsModelResult[];
10563
+ static names(): {
10564
+ [key: string]: string;
10565
+ };
10566
+ static types(): {
10567
+ [key: string]: any;
10568
+ };
10569
+ constructor(map?: {
10570
+ [key: string]: any;
10571
+ });
10572
+ }
10427
10573
  export declare class DescribeInstancesRequestTag extends $tea.Model {
10428
10574
  key?: string;
10429
10575
  value?: string;
@@ -11777,15 +11923,83 @@ export default class Client extends OpenApi {
11777
11923
  getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
11778
11924
  [key: string]: string;
11779
11925
  }, endpoint: string): string;
11926
+ /**
11927
+ * Unpublishes a specified API from a specified runtime environment.
11928
+ *
11929
+ * @param request AbolishApiRequest
11930
+ * @param runtime runtime options for this request RuntimeOptions
11931
+ * @return AbolishApiResponse
11932
+ */
11780
11933
  abolishApiWithOptions(request: AbolishApiRequest, runtime: $Util.RuntimeOptions): Promise<AbolishApiResponse>;
11934
+ /**
11935
+ * Unpublishes a specified API from a specified runtime environment.
11936
+ *
11937
+ * @param request AbolishApiRequest
11938
+ * @return AbolishApiResponse
11939
+ */
11781
11940
  abolishApi(request: AbolishApiRequest): Promise<AbolishApiResponse>;
11782
11941
  addAccessControlListEntryWithOptions(request: AddAccessControlListEntryRequest, runtime: $Util.RuntimeOptions): Promise<AddAccessControlListEntryResponse>;
11783
11942
  addAccessControlListEntry(request: AddAccessControlListEntryRequest): Promise<AddAccessControlListEntryResponse>;
11943
+ /**
11944
+ * When you call this operation, note that:
11945
+ * * This operation is intended for API providers.
11946
+ * * An added policy immediately takes effect on all APIs that are bound to the access control list (ACL).
11947
+ * * A maximum of 100 policies can be added to an ACL.
11948
+ *
11949
+ * @param request AddIpControlPolicyItemRequest
11950
+ * @param runtime runtime options for this request RuntimeOptions
11951
+ * @return AddIpControlPolicyItemResponse
11952
+ */
11784
11953
  addIpControlPolicyItemWithOptions(request: AddIpControlPolicyItemRequest, runtime: $Util.RuntimeOptions): Promise<AddIpControlPolicyItemResponse>;
11954
+ /**
11955
+ * When you call this operation, note that:
11956
+ * * This operation is intended for API providers.
11957
+ * * An added policy immediately takes effect on all APIs that are bound to the access control list (ACL).
11958
+ * * A maximum of 100 policies can be added to an ACL.
11959
+ *
11960
+ * @param request AddIpControlPolicyItemRequest
11961
+ * @return AddIpControlPolicyItemResponse
11962
+ */
11785
11963
  addIpControlPolicyItem(request: AddIpControlPolicyItemRequest): Promise<AddIpControlPolicyItemResponse>;
11964
+ /**
11965
+ * * This API is intended for API providers.
11966
+ * * If the input SpecialKey already exists, the previous configuration is overwritten. Use caution when calling this operation.
11967
+ * * Special throttling policies must be added to an existing throttling policy, and can take effect on all the APIs to which the throttling policy is bound.
11968
+ *
11969
+ * @param request AddTrafficSpecialControlRequest
11970
+ * @param runtime runtime options for this request RuntimeOptions
11971
+ * @return AddTrafficSpecialControlResponse
11972
+ */
11786
11973
  addTrafficSpecialControlWithOptions(request: AddTrafficSpecialControlRequest, runtime: $Util.RuntimeOptions): Promise<AddTrafficSpecialControlResponse>;
11974
+ /**
11975
+ * * This API is intended for API providers.
11976
+ * * If the input SpecialKey already exists, the previous configuration is overwritten. Use caution when calling this operation.
11977
+ * * Special throttling policies must be added to an existing throttling policy, and can take effect on all the APIs to which the throttling policy is bound.
11978
+ *
11979
+ * @param request AddTrafficSpecialControlRequest
11980
+ * @return AddTrafficSpecialControlResponse
11981
+ */
11787
11982
  addTrafficSpecialControl(request: AddTrafficSpecialControlRequest): Promise<AddTrafficSpecialControlResponse>;
11983
+ /**
11984
+ * * This operation is intended for API providers.
11985
+ * * You can only bind plug-ins to published APIs.
11986
+ * * The plug-in takes effect immediately after it is bound to an API.
11987
+ * * If you bind a different plug-in to an API, this plug-in takes effect immediately.
11988
+ *
11989
+ * @param request AttachPluginRequest
11990
+ * @param runtime runtime options for this request RuntimeOptions
11991
+ * @return AttachPluginResponse
11992
+ */
11788
11993
  attachPluginWithOptions(request: AttachPluginRequest, runtime: $Util.RuntimeOptions): Promise<AttachPluginResponse>;
11994
+ /**
11995
+ * * This operation is intended for API providers.
11996
+ * * You can only bind plug-ins to published APIs.
11997
+ * * The plug-in takes effect immediately after it is bound to an API.
11998
+ * * If you bind a different plug-in to an API, this plug-in takes effect immediately.
11999
+ *
12000
+ * @param request AttachPluginRequest
12001
+ * @return AttachPluginResponse
12002
+ */
11789
12003
  attachPlugin(request: AttachPluginRequest): Promise<AttachPluginResponse>;
11790
12004
  batchAbolishApisWithOptions(request: BatchAbolishApisRequest, runtime: $Util.RuntimeOptions): Promise<BatchAbolishApisResponse>;
11791
12005
  batchAbolishApis(request: BatchAbolishApisRequest): Promise<BatchAbolishApisResponse>;
@@ -11793,13 +12007,93 @@ export default class Client extends OpenApi {
11793
12007
  batchDeployApis(request: BatchDeployApisRequest): Promise<BatchDeployApisResponse>;
11794
12008
  createAccessControlListWithOptions(request: CreateAccessControlListRequest, runtime: $Util.RuntimeOptions): Promise<CreateAccessControlListResponse>;
11795
12009
  createAccessControlList(request: CreateAccessControlListRequest): Promise<CreateAccessControlListResponse>;
12010
+ /**
12011
+ * * This operation is intended for API providers.
12012
+ * * The name of each API within the same group must be unique.
12013
+ * * Each request path within the same group must be unique.
12014
+ * * The QPS limit on this operation is 50 per user.
12015
+ *
12016
+ * @param request CreateApiRequest
12017
+ * @param runtime runtime options for this request RuntimeOptions
12018
+ * @return CreateApiResponse
12019
+ */
11796
12020
  createApiWithOptions(request: CreateApiRequest, runtime: $Util.RuntimeOptions): Promise<CreateApiResponse>;
12021
+ /**
12022
+ * * This operation is intended for API providers.
12023
+ * * The name of each API within the same group must be unique.
12024
+ * * Each request path within the same group must be unique.
12025
+ * * The QPS limit on this operation is 50 per user.
12026
+ *
12027
+ * @param request CreateApiRequest
12028
+ * @return CreateApiResponse
12029
+ */
11797
12030
  createApi(request: CreateApiRequest): Promise<CreateApiResponse>;
12031
+ /**
12032
+ * You can call this operation to create an API group. You must create an API group before you create an API. An API group is a basic attribute of an API.
12033
+ * * This operation is intended for API providers.
12034
+ * * Each user can create a maximum of 100 API groups in a region.
12035
+ * * A second-level domain name is automatically allocated to the API group for testing purposes.
12036
+ * * An API group has a region attribute. After you create an API and select a group for the API, the region is also selected. We recommend that you select the same region to which your backend services belong to reduce network latency.
12037
+ * * After you create an API group, you can bind a custom domain name to the group.
12038
+ * * The QPS limit on this operation is 50 per user.
12039
+ *
12040
+ * @param request CreateApiGroupRequest
12041
+ * @param runtime runtime options for this request RuntimeOptions
12042
+ * @return CreateApiGroupResponse
12043
+ */
11798
12044
  createApiGroupWithOptions(request: CreateApiGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateApiGroupResponse>;
12045
+ /**
12046
+ * You can call this operation to create an API group. You must create an API group before you create an API. An API group is a basic attribute of an API.
12047
+ * * This operation is intended for API providers.
12048
+ * * Each user can create a maximum of 100 API groups in a region.
12049
+ * * A second-level domain name is automatically allocated to the API group for testing purposes.
12050
+ * * An API group has a region attribute. After you create an API and select a group for the API, the region is also selected. We recommend that you select the same region to which your backend services belong to reduce network latency.
12051
+ * * After you create an API group, you can bind a custom domain name to the group.
12052
+ * * The QPS limit on this operation is 50 per user.
12053
+ *
12054
+ * @param request CreateApiGroupRequest
12055
+ * @return CreateApiGroupResponse
12056
+ */
11799
12057
  createApiGroup(request: CreateApiGroupRequest): Promise<CreateApiGroupResponse>;
12058
+ /**
12059
+ * * This operation is intended for API providers.
12060
+ *
12061
+ * @param request CreateApiStageVariableRequest
12062
+ * @param runtime runtime options for this request RuntimeOptions
12063
+ * @return CreateApiStageVariableResponse
12064
+ */
11800
12065
  createApiStageVariableWithOptions(request: CreateApiStageVariableRequest, runtime: $Util.RuntimeOptions): Promise<CreateApiStageVariableResponse>;
12066
+ /**
12067
+ * * This operation is intended for API providers.
12068
+ *
12069
+ * @param request CreateApiStageVariableRequest
12070
+ * @return CreateApiStageVariableResponse
12071
+ */
11801
12072
  createApiStageVariable(request: CreateApiStageVariableRequest): Promise<CreateApiStageVariableResponse>;
12073
+ /**
12074
+ * * This operation is intended for API callers.
12075
+ * * Each application has a key-secret pair which is used for identity verification when calling an API.
12076
+ * * An application must be authorized to call an API.
12077
+ * * Each application has only one key-secret pair which can be reset if it is leaked.
12078
+ * * A maximum of 1,000 applications can be created for each Apsara Stack tenant account.
12079
+ * * The QPS limit on this operation is 50 per user.
12080
+ *
12081
+ * @param request CreateAppRequest
12082
+ * @param runtime runtime options for this request RuntimeOptions
12083
+ * @return CreateAppResponse
12084
+ */
11802
12085
  createAppWithOptions(request: CreateAppRequest, runtime: $Util.RuntimeOptions): Promise<CreateAppResponse>;
12086
+ /**
12087
+ * * This operation is intended for API callers.
12088
+ * * Each application has a key-secret pair which is used for identity verification when calling an API.
12089
+ * * An application must be authorized to call an API.
12090
+ * * Each application has only one key-secret pair which can be reset if it is leaked.
12091
+ * * A maximum of 1,000 applications can be created for each Apsara Stack tenant account.
12092
+ * * The QPS limit on this operation is 50 per user.
12093
+ *
12094
+ * @param request CreateAppRequest
12095
+ * @return CreateAppResponse
12096
+ */
11803
12097
  createApp(request: CreateAppRequest): Promise<CreateAppResponse>;
11804
12098
  createBackendWithOptions(request: CreateBackendRequest, runtime: $Util.RuntimeOptions): Promise<CreateBackendResponse>;
11805
12099
  createBackend(request: CreateBackendRequest): Promise<CreateBackendResponse>;
@@ -11813,31 +12107,188 @@ export default class Client extends OpenApi {
11813
12107
  createInstance(request: CreateInstanceRequest): Promise<CreateInstanceResponse>;
11814
12108
  createIntranetDomainWithOptions(request: CreateIntranetDomainRequest, runtime: $Util.RuntimeOptions): Promise<CreateIntranetDomainResponse>;
11815
12109
  createIntranetDomain(request: CreateIntranetDomainRequest): Promise<CreateIntranetDomainResponse>;
12110
+ /**
12111
+ * * This operation is intended for API providers.
12112
+ * * An ACL must be bound to an API to take effect. After an ACL is bound to an API, the ACL takes effect on the API immediately.
12113
+ * * You can add policies to an ACL when you create the ACL.
12114
+ * * If an ACL does not have any policy, the ACL is ineffective.
12115
+ *
12116
+ * @param request CreateIpControlRequest
12117
+ * @param runtime runtime options for this request RuntimeOptions
12118
+ * @return CreateIpControlResponse
12119
+ */
11816
12120
  createIpControlWithOptions(request: CreateIpControlRequest, runtime: $Util.RuntimeOptions): Promise<CreateIpControlResponse>;
12121
+ /**
12122
+ * * This operation is intended for API providers.
12123
+ * * An ACL must be bound to an API to take effect. After an ACL is bound to an API, the ACL takes effect on the API immediately.
12124
+ * * You can add policies to an ACL when you create the ACL.
12125
+ * * If an ACL does not have any policy, the ACL is ineffective.
12126
+ *
12127
+ * @param request CreateIpControlRequest
12128
+ * @return CreateIpControlResponse
12129
+ */
11817
12130
  createIpControl(request: CreateIpControlRequest): Promise<CreateIpControlResponse>;
11818
12131
  createLogConfigWithOptions(request: CreateLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<CreateLogConfigResponse>;
11819
12132
  createLogConfig(request: CreateLogConfigRequest): Promise<CreateLogConfigResponse>;
12133
+ /**
12134
+ * * For more information about the model definition, see [JSON Schema Draft 4](https://tools.ietf.org/html/draft-zyp-json-schema-04?spm=a2c4g.11186623.2.10.2e977ff7p4BpQd).
12135
+ * * JSON Schema supports only element attributes of the Object type.
12136
+ *
12137
+ * @param request CreateModelRequest
12138
+ * @param runtime runtime options for this request RuntimeOptions
12139
+ * @return CreateModelResponse
12140
+ */
11820
12141
  createModelWithOptions(request: CreateModelRequest, runtime: $Util.RuntimeOptions): Promise<CreateModelResponse>;
12142
+ /**
12143
+ * * For more information about the model definition, see [JSON Schema Draft 4](https://tools.ietf.org/html/draft-zyp-json-schema-04?spm=a2c4g.11186623.2.10.2e977ff7p4BpQd).
12144
+ * * JSON Schema supports only element attributes of the Object type.
12145
+ *
12146
+ * @param request CreateModelRequest
12147
+ * @return CreateModelResponse
12148
+ */
11821
12149
  createModel(request: CreateModelRequest): Promise<CreateModelResponse>;
11822
12150
  createMonitorGroupWithOptions(request: CreateMonitorGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateMonitorGroupResponse>;
11823
12151
  createMonitorGroup(request: CreateMonitorGroupRequest): Promise<CreateMonitorGroupResponse>;
12152
+ /**
12153
+ * * This operation is intended for API providers.
12154
+ * * The number of plug-ins of the same type that each user can create is limited. Different limits apply to different plug-in types.
12155
+ * * The plug-in definitions for advanced features are restricted.
12156
+ * * Plug-ins must be bound to APIs to take effect. After a plug-in is bound, it takes effect on that API immediately.
12157
+ *
12158
+ * @param request CreatePluginRequest
12159
+ * @param runtime runtime options for this request RuntimeOptions
12160
+ * @return CreatePluginResponse
12161
+ */
11824
12162
  createPluginWithOptions(request: CreatePluginRequest, runtime: $Util.RuntimeOptions): Promise<CreatePluginResponse>;
12163
+ /**
12164
+ * * This operation is intended for API providers.
12165
+ * * The number of plug-ins of the same type that each user can create is limited. Different limits apply to different plug-in types.
12166
+ * * The plug-in definitions for advanced features are restricted.
12167
+ * * Plug-ins must be bound to APIs to take effect. After a plug-in is bound, it takes effect on that API immediately.
12168
+ *
12169
+ * @param request CreatePluginRequest
12170
+ * @return CreatePluginResponse
12171
+ */
11825
12172
  createPlugin(request: CreatePluginRequest): Promise<CreatePluginResponse>;
12173
+ /**
12174
+ * * This API is intended for API providers.
12175
+ * * The API operation only creates a key policy. You must call the binding operation to bind the key to an API.
12176
+ * * After the key is bound to the API, requests sent from API Gateway to the backend service contain signature strings. You can specify whether your backend service verifies these signature strings.
12177
+ * * The QPS limit on this operation is 50 per user.
12178
+ *
12179
+ * @param request CreateSignatureRequest
12180
+ * @param runtime runtime options for this request RuntimeOptions
12181
+ * @return CreateSignatureResponse
12182
+ */
11826
12183
  createSignatureWithOptions(request: CreateSignatureRequest, runtime: $Util.RuntimeOptions): Promise<CreateSignatureResponse>;
12184
+ /**
12185
+ * * This API is intended for API providers.
12186
+ * * The API operation only creates a key policy. You must call the binding operation to bind the key to an API.
12187
+ * * After the key is bound to the API, requests sent from API Gateway to the backend service contain signature strings. You can specify whether your backend service verifies these signature strings.
12188
+ * * The QPS limit on this operation is 50 per user.
12189
+ *
12190
+ * @param request CreateSignatureRequest
12191
+ * @return CreateSignatureResponse
12192
+ */
11827
12193
  createSignature(request: CreateSignatureRequest): Promise<CreateSignatureResponse>;
12194
+ /**
12195
+ * * This API is intended for API providers.
12196
+ * * Throttling policies must be bound to APIs to take effect. After a policy is bound to an API, it goes into effect on that API immediately.
12197
+ * * The QPS limit on this operation is 50 per user.
12198
+ *
12199
+ * @param request CreateTrafficControlRequest
12200
+ * @param runtime runtime options for this request RuntimeOptions
12201
+ * @return CreateTrafficControlResponse
12202
+ */
11828
12203
  createTrafficControlWithOptions(request: CreateTrafficControlRequest, runtime: $Util.RuntimeOptions): Promise<CreateTrafficControlResponse>;
12204
+ /**
12205
+ * * This API is intended for API providers.
12206
+ * * Throttling policies must be bound to APIs to take effect. After a policy is bound to an API, it goes into effect on that API immediately.
12207
+ * * The QPS limit on this operation is 50 per user.
12208
+ *
12209
+ * @param request CreateTrafficControlRequest
12210
+ * @return CreateTrafficControlResponse
12211
+ */
11829
12212
  createTrafficControl(request: CreateTrafficControlRequest): Promise<CreateTrafficControlResponse>;
11830
12213
  deleteAccessControlListWithOptions(request: DeleteAccessControlListRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAccessControlListResponse>;
11831
12214
  deleteAccessControlList(request: DeleteAccessControlListRequest): Promise<DeleteAccessControlListResponse>;
12215
+ /**
12216
+ * * This API is intended for API providers.
12217
+ *
12218
+ * @param request DeleteAllTrafficSpecialControlRequest
12219
+ * @param runtime runtime options for this request RuntimeOptions
12220
+ * @return DeleteAllTrafficSpecialControlResponse
12221
+ */
11832
12222
  deleteAllTrafficSpecialControlWithOptions(request: DeleteAllTrafficSpecialControlRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAllTrafficSpecialControlResponse>;
12223
+ /**
12224
+ * * This API is intended for API providers.
12225
+ *
12226
+ * @param request DeleteAllTrafficSpecialControlRequest
12227
+ * @return DeleteAllTrafficSpecialControlResponse
12228
+ */
11833
12229
  deleteAllTrafficSpecialControl(request: DeleteAllTrafficSpecialControlRequest): Promise<DeleteAllTrafficSpecialControlResponse>;
12230
+ /**
12231
+ * * This operation is intended for API providers and cannot be undone after it is complete.
12232
+ * * An API that is running in the runtime environment must be unpublished before you can delete the API.****
12233
+ * * The QPS limit on this operation is 50 per user.
12234
+ *
12235
+ * @param request DeleteApiRequest
12236
+ * @param runtime runtime options for this request RuntimeOptions
12237
+ * @return DeleteApiResponse
12238
+ */
11834
12239
  deleteApiWithOptions(request: DeleteApiRequest, runtime: $Util.RuntimeOptions): Promise<DeleteApiResponse>;
12240
+ /**
12241
+ * * This operation is intended for API providers and cannot be undone after it is complete.
12242
+ * * An API that is running in the runtime environment must be unpublished before you can delete the API.****
12243
+ * * The QPS limit on this operation is 50 per user.
12244
+ *
12245
+ * @param request DeleteApiRequest
12246
+ * @return DeleteApiResponse
12247
+ */
11835
12248
  deleteApi(request: DeleteApiRequest): Promise<DeleteApiResponse>;
12249
+ /**
12250
+ * * This operation is intended for API providers.
12251
+ * * An API group that contains APIs cannot be deleted. To delete the API group, you must first delete its APIs.
12252
+ * * After an API group is deleted, the second-level domain name bound to the API group is automatically invalidated.
12253
+ * * If the specified API group does not exist, a success response is returned.
12254
+ * * The QPS limit on this operation is 50 per user.
12255
+ *
12256
+ * @param request DeleteApiGroupRequest
12257
+ * @param runtime runtime options for this request RuntimeOptions
12258
+ * @return DeleteApiGroupResponse
12259
+ */
11836
12260
  deleteApiGroupWithOptions(request: DeleteApiGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteApiGroupResponse>;
12261
+ /**
12262
+ * * This operation is intended for API providers.
12263
+ * * An API group that contains APIs cannot be deleted. To delete the API group, you must first delete its APIs.
12264
+ * * After an API group is deleted, the second-level domain name bound to the API group is automatically invalidated.
12265
+ * * If the specified API group does not exist, a success response is returned.
12266
+ * * The QPS limit on this operation is 50 per user.
12267
+ *
12268
+ * @param request DeleteApiGroupRequest
12269
+ * @return DeleteApiGroupResponse
12270
+ */
11837
12271
  deleteApiGroup(request: DeleteApiGroupRequest): Promise<DeleteApiGroupResponse>;
11838
12272
  deleteApiStageVariableWithOptions(request: DeleteApiStageVariableRequest, runtime: $Util.RuntimeOptions): Promise<DeleteApiStageVariableResponse>;
11839
12273
  deleteApiStageVariable(request: DeleteApiStageVariableRequest): Promise<DeleteApiStageVariableResponse>;
12274
+ /**
12275
+ * * This operation is intended for API callers.
12276
+ * * After an application is deleted, the application and its API authorization cannot be restored.
12277
+ * * The QPS limit on this operation is 50 per user.
12278
+ *
12279
+ * @param request DeleteAppRequest
12280
+ * @param runtime runtime options for this request RuntimeOptions
12281
+ * @return DeleteAppResponse
12282
+ */
11840
12283
  deleteAppWithOptions(request: DeleteAppRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAppResponse>;
12284
+ /**
12285
+ * * This operation is intended for API callers.
12286
+ * * After an application is deleted, the application and its API authorization cannot be restored.
12287
+ * * The QPS limit on this operation is 50 per user.
12288
+ *
12289
+ * @param request DeleteAppRequest
12290
+ * @return DeleteAppResponse
12291
+ */
11841
12292
  deleteApp(request: DeleteAppRequest): Promise<DeleteAppResponse>;
11842
12293
  deleteBackendWithOptions(request: DeleteBackendRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBackendResponse>;
11843
12294
  deleteBackend(request: DeleteBackendRequest): Promise<DeleteBackendResponse>;
@@ -11847,13 +12298,47 @@ export default class Client extends OpenApi {
11847
12298
  deleteDataset(request: DeleteDatasetRequest): Promise<DeleteDatasetResponse>;
11848
12299
  deleteDatasetItemWithOptions(request: DeleteDatasetItemRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDatasetItemResponse>;
11849
12300
  deleteDatasetItem(request: DeleteDatasetItemRequest): Promise<DeleteDatasetItemResponse>;
12301
+ /**
12302
+ * * This operation is intended for API providers.
12303
+ * * If the specified domain name does not exist, a successful response will still appear.
12304
+ * * Unbinding a domain name from an API group will affect access to the APIs in the group. Exercise caution when using this operation.
12305
+ *
12306
+ * @param request DeleteDomainRequest
12307
+ * @param runtime runtime options for this request RuntimeOptions
12308
+ * @return DeleteDomainResponse
12309
+ */
11850
12310
  deleteDomainWithOptions(request: DeleteDomainRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDomainResponse>;
12311
+ /**
12312
+ * * This operation is intended for API providers.
12313
+ * * If the specified domain name does not exist, a successful response will still appear.
12314
+ * * Unbinding a domain name from an API group will affect access to the APIs in the group. Exercise caution when using this operation.
12315
+ *
12316
+ * @param request DeleteDomainRequest
12317
+ * @return DeleteDomainResponse
12318
+ */
11851
12319
  deleteDomain(request: DeleteDomainRequest): Promise<DeleteDomainResponse>;
11852
12320
  deleteDomainCertificateWithOptions(request: DeleteDomainCertificateRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDomainCertificateResponse>;
11853
12321
  deleteDomainCertificate(request: DeleteDomainCertificateRequest): Promise<DeleteDomainCertificateResponse>;
11854
12322
  deleteInstanceWithOptions(request: DeleteInstanceRequest, runtime: $Util.RuntimeOptions): Promise<DeleteInstanceResponse>;
11855
12323
  deleteInstance(request: DeleteInstanceRequest): Promise<DeleteInstanceResponse>;
12324
+ /**
12325
+ * * This operation is intended for API providers.
12326
+ * * If the ACL is bound to an API, you must unbind the ACL from the API before you can delete the ACL. Otherwise, an error is returned.
12327
+ * * If you call this operation on an ACL that does not exist, a success message is returned.
12328
+ *
12329
+ * @param request DeleteIpControlRequest
12330
+ * @param runtime runtime options for this request RuntimeOptions
12331
+ * @return DeleteIpControlResponse
12332
+ */
11856
12333
  deleteIpControlWithOptions(request: DeleteIpControlRequest, runtime: $Util.RuntimeOptions): Promise<DeleteIpControlResponse>;
12334
+ /**
12335
+ * * This operation is intended for API providers.
12336
+ * * If the ACL is bound to an API, you must unbind the ACL from the API before you can delete the ACL. Otherwise, an error is returned.
12337
+ * * If you call this operation on an ACL that does not exist, a success message is returned.
12338
+ *
12339
+ * @param request DeleteIpControlRequest
12340
+ * @return DeleteIpControlResponse
12341
+ */
11857
12342
  deleteIpControl(request: DeleteIpControlRequest): Promise<DeleteIpControlResponse>;
11858
12343
  deleteLogConfigWithOptions(request: DeleteLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<DeleteLogConfigResponse>;
11859
12344
  deleteLogConfig(request: DeleteLogConfigRequest): Promise<DeleteLogConfigResponse>;
@@ -11861,15 +12346,98 @@ export default class Client extends OpenApi {
11861
12346
  deleteModel(request: DeleteModelRequest): Promise<DeleteModelResponse>;
11862
12347
  deleteMonitorGroupWithOptions(request: DeleteMonitorGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteMonitorGroupResponse>;
11863
12348
  deleteMonitorGroup(request: DeleteMonitorGroupRequest): Promise<DeleteMonitorGroupResponse>;
12349
+ /**
12350
+ * * This operation is intended for API providers.
12351
+ * * You must first unbind the plug-in from the API. Otherwise, an error is reported when you delete the plug-in.
12352
+ *
12353
+ * @param request DeletePluginRequest
12354
+ * @param runtime runtime options for this request RuntimeOptions
12355
+ * @return DeletePluginResponse
12356
+ */
11864
12357
  deletePluginWithOptions(request: DeletePluginRequest, runtime: $Util.RuntimeOptions): Promise<DeletePluginResponse>;
12358
+ /**
12359
+ * * This operation is intended for API providers.
12360
+ * * You must first unbind the plug-in from the API. Otherwise, an error is reported when you delete the plug-in.
12361
+ *
12362
+ * @param request DeletePluginRequest
12363
+ * @return DeletePluginResponse
12364
+ */
11865
12365
  deletePlugin(request: DeletePluginRequest): Promise<DeletePluginResponse>;
12366
+ /**
12367
+ * * This API is intended for API providers.
12368
+ * * This API operation deletes an existing backend signature key.
12369
+ * * You cannot delete a key that is bound to an API. To delete the key, you must unbind it first.
12370
+ * * The QPS limit on this operation is 50 per user.
12371
+ *
12372
+ * @param request DeleteSignatureRequest
12373
+ * @param runtime runtime options for this request RuntimeOptions
12374
+ * @return DeleteSignatureResponse
12375
+ */
11866
12376
  deleteSignatureWithOptions(request: DeleteSignatureRequest, runtime: $Util.RuntimeOptions): Promise<DeleteSignatureResponse>;
12377
+ /**
12378
+ * * This API is intended for API providers.
12379
+ * * This API operation deletes an existing backend signature key.
12380
+ * * You cannot delete a key that is bound to an API. To delete the key, you must unbind it first.
12381
+ * * The QPS limit on this operation is 50 per user.
12382
+ *
12383
+ * @param request DeleteSignatureRequest
12384
+ * @return DeleteSignatureResponse
12385
+ */
11867
12386
  deleteSignature(request: DeleteSignatureRequest): Promise<DeleteSignatureResponse>;
12387
+ /**
12388
+ * * This API is intended for API providers.
12389
+ * * If the throttling policy you want to delete is bound to APIs, you need to unbind the policy first. Otherwise, an error is reported when you delete the policy.
12390
+ * * The QPS limit on this operation is 50 per user.
12391
+ *
12392
+ * @param request DeleteTrafficControlRequest
12393
+ * @param runtime runtime options for this request RuntimeOptions
12394
+ * @return DeleteTrafficControlResponse
12395
+ */
11868
12396
  deleteTrafficControlWithOptions(request: DeleteTrafficControlRequest, runtime: $Util.RuntimeOptions): Promise<DeleteTrafficControlResponse>;
12397
+ /**
12398
+ * * This API is intended for API providers.
12399
+ * * If the throttling policy you want to delete is bound to APIs, you need to unbind the policy first. Otherwise, an error is reported when you delete the policy.
12400
+ * * The QPS limit on this operation is 50 per user.
12401
+ *
12402
+ * @param request DeleteTrafficControlRequest
12403
+ * @return DeleteTrafficControlResponse
12404
+ */
11869
12405
  deleteTrafficControl(request: DeleteTrafficControlRequest): Promise<DeleteTrafficControlResponse>;
12406
+ /**
12407
+ * * This API is intended for API providers.
12408
+ * * You can obtain the input parameters required in this operation by calling other APIs.
12409
+ *
12410
+ * @param request DeleteTrafficSpecialControlRequest
12411
+ * @param runtime runtime options for this request RuntimeOptions
12412
+ * @return DeleteTrafficSpecialControlResponse
12413
+ */
11870
12414
  deleteTrafficSpecialControlWithOptions(request: DeleteTrafficSpecialControlRequest, runtime: $Util.RuntimeOptions): Promise<DeleteTrafficSpecialControlResponse>;
12415
+ /**
12416
+ * * This API is intended for API providers.
12417
+ * * You can obtain the input parameters required in this operation by calling other APIs.
12418
+ *
12419
+ * @param request DeleteTrafficSpecialControlRequest
12420
+ * @return DeleteTrafficSpecialControlResponse
12421
+ */
11871
12422
  deleteTrafficSpecialControl(request: DeleteTrafficSpecialControlRequest): Promise<DeleteTrafficSpecialControlResponse>;
12423
+ /**
12424
+ * * This operation is intended for API providers. Only the API that you have defined and published to a runtime environment can be called.
12425
+ * * An API is published to a cluster in less than 5 seconds.
12426
+ * * The QPS limit on this operation is 50 per user.
12427
+ *
12428
+ * @param request DeployApiRequest
12429
+ * @param runtime runtime options for this request RuntimeOptions
12430
+ * @return DeployApiResponse
12431
+ */
11872
12432
  deployApiWithOptions(request: DeployApiRequest, runtime: $Util.RuntimeOptions): Promise<DeployApiResponse>;
12433
+ /**
12434
+ * * This operation is intended for API providers. Only the API that you have defined and published to a runtime environment can be called.
12435
+ * * An API is published to a cluster in less than 5 seconds.
12436
+ * * The QPS limit on this operation is 50 per user.
12437
+ *
12438
+ * @param request DeployApiRequest
12439
+ * @return DeployApiResponse
12440
+ */
11873
12441
  deployApi(request: DeployApiRequest): Promise<DeployApiResponse>;
11874
12442
  describeAbolishApiTaskWithOptions(request: DescribeAbolishApiTaskRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAbolishApiTaskResponse>;
11875
12443
  describeAbolishApiTask(request: DescribeAbolishApiTaskRequest): Promise<DescribeAbolishApiTaskResponse>;
@@ -11877,57 +12445,366 @@ export default class Client extends OpenApi {
11877
12445
  describeAccessControlListAttribute(request: DescribeAccessControlListAttributeRequest): Promise<DescribeAccessControlListAttributeResponse>;
11878
12446
  describeAccessControlListsWithOptions(request: DescribeAccessControlListsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccessControlListsResponse>;
11879
12447
  describeAccessControlLists(request: DescribeAccessControlListsRequest): Promise<DescribeAccessControlListsResponse>;
12448
+ /**
12449
+ * * This operation is intended for API providers.
12450
+ *
12451
+ * @param request DescribeApiRequest
12452
+ * @param runtime runtime options for this request RuntimeOptions
12453
+ * @return DescribeApiResponse
12454
+ */
11880
12455
  describeApiWithOptions(request: DescribeApiRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiResponse>;
12456
+ /**
12457
+ * * This operation is intended for API providers.
12458
+ *
12459
+ * @param request DescribeApiRequest
12460
+ * @return DescribeApiResponse
12461
+ */
11881
12462
  describeApi(request: DescribeApiRequest): Promise<DescribeApiResponse>;
12463
+ /**
12464
+ * * For API callers, they can only query documentation of a public API or an authorized private API that has been published to a runtime environment.****************
12465
+ * * When you call this operation as an API caller, the service information, parameter definitions, and other details of the API you specify are returned.
12466
+ * * When you call this operation as an API provider, the definition of the specified API in the specified runtime environment is returned. The returned definition takes effect in the runtime environment, and may be different from the definition of the API you modify.
12467
+ * * The API callers must be authenticated before they can query the documentation of a specified API. This requires the API provider to ensure that the API to be queried by the API caller is a public one or that the application that provides the API to be queried is authorized.
12468
+ *
12469
+ * @param request DescribeApiDocRequest
12470
+ * @param runtime runtime options for this request RuntimeOptions
12471
+ * @return DescribeApiDocResponse
12472
+ */
11882
12473
  describeApiDocWithOptions(request: DescribeApiDocRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiDocResponse>;
12474
+ /**
12475
+ * * For API callers, they can only query documentation of a public API or an authorized private API that has been published to a runtime environment.****************
12476
+ * * When you call this operation as an API caller, the service information, parameter definitions, and other details of the API you specify are returned.
12477
+ * * When you call this operation as an API provider, the definition of the specified API in the specified runtime environment is returned. The returned definition takes effect in the runtime environment, and may be different from the definition of the API you modify.
12478
+ * * The API callers must be authenticated before they can query the documentation of a specified API. This requires the API provider to ensure that the API to be queried by the API caller is a public one or that the application that provides the API to be queried is authorized.
12479
+ *
12480
+ * @param request DescribeApiDocRequest
12481
+ * @return DescribeApiDocResponse
12482
+ */
11883
12483
  describeApiDoc(request: DescribeApiDocRequest): Promise<DescribeApiDocResponse>;
12484
+ /**
12485
+ * * This operation is intended for API providers.
12486
+ *
12487
+ * @param request DescribeApiGroupRequest
12488
+ * @param runtime runtime options for this request RuntimeOptions
12489
+ * @return DescribeApiGroupResponse
12490
+ */
11884
12491
  describeApiGroupWithOptions(request: DescribeApiGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiGroupResponse>;
12492
+ /**
12493
+ * * This operation is intended for API providers.
12494
+ *
12495
+ * @param request DescribeApiGroupRequest
12496
+ * @return DescribeApiGroupResponse
12497
+ */
11885
12498
  describeApiGroup(request: DescribeApiGroupRequest): Promise<DescribeApiGroupResponse>;
11886
12499
  describeApiGroupVpcWhitelistWithOptions(request: DescribeApiGroupVpcWhitelistRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiGroupVpcWhitelistResponse>;
11887
12500
  describeApiGroupVpcWhitelist(request: DescribeApiGroupVpcWhitelistRequest): Promise<DescribeApiGroupVpcWhitelistResponse>;
12501
+ /**
12502
+ * * This operation is intended for API providers.
12503
+ *
12504
+ * @param request DescribeApiGroupsRequest
12505
+ * @param runtime runtime options for this request RuntimeOptions
12506
+ * @return DescribeApiGroupsResponse
12507
+ */
11888
12508
  describeApiGroupsWithOptions(request: DescribeApiGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiGroupsResponse>;
12509
+ /**
12510
+ * * This operation is intended for API providers.
12511
+ *
12512
+ * @param request DescribeApiGroupsRequest
12513
+ * @return DescribeApiGroupsResponse
12514
+ */
11889
12515
  describeApiGroups(request: DescribeApiGroupsRequest): Promise<DescribeApiGroupsResponse>;
12516
+ /**
12517
+ * * This operation is intended for API providers. Only APIs which have been published have a historical version record.
12518
+ * * This operation allows you to obtain the API historical versions which can be used to call other APIs.
12519
+ *
12520
+ * @param request DescribeApiHistoriesRequest
12521
+ * @param runtime runtime options for this request RuntimeOptions
12522
+ * @return DescribeApiHistoriesResponse
12523
+ */
11890
12524
  describeApiHistoriesWithOptions(request: DescribeApiHistoriesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiHistoriesResponse>;
12525
+ /**
12526
+ * * This operation is intended for API providers. Only APIs which have been published have a historical version record.
12527
+ * * This operation allows you to obtain the API historical versions which can be used to call other APIs.
12528
+ *
12529
+ * @param request DescribeApiHistoriesRequest
12530
+ * @return DescribeApiHistoriesResponse
12531
+ */
11891
12532
  describeApiHistories(request: DescribeApiHistoriesRequest): Promise<DescribeApiHistoriesResponse>;
12533
+ /**
12534
+ * * This API is intended for API providers.
12535
+ * * API Gateway records the time and definition of an API every time the API is published. You can use the version number obtained from other operations to query definition details at a certain publication.
12536
+ *
12537
+ * @param request DescribeApiHistoryRequest
12538
+ * @param runtime runtime options for this request RuntimeOptions
12539
+ * @return DescribeApiHistoryResponse
12540
+ */
11892
12541
  describeApiHistoryWithOptions(request: DescribeApiHistoryRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiHistoryResponse>;
12542
+ /**
12543
+ * * This API is intended for API providers.
12544
+ * * API Gateway records the time and definition of an API every time the API is published. You can use the version number obtained from other operations to query definition details at a certain publication.
12545
+ *
12546
+ * @param request DescribeApiHistoryRequest
12547
+ * @return DescribeApiHistoryResponse
12548
+ */
11893
12549
  describeApiHistory(request: DescribeApiHistoryRequest): Promise<DescribeApiHistoryResponse>;
12550
+ /**
12551
+ * * This operation is intended for API callers.
12552
+ * * If an optional parameter is not specified, all results are returned on separate pages.
12553
+ * ·
12554
+ *
12555
+ * @param request DescribeApiIpControlsRequest
12556
+ * @param runtime runtime options for this request RuntimeOptions
12557
+ * @return DescribeApiIpControlsResponse
12558
+ */
11894
12559
  describeApiIpControlsWithOptions(request: DescribeApiIpControlsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiIpControlsResponse>;
12560
+ /**
12561
+ * * This operation is intended for API callers.
12562
+ * * If an optional parameter is not specified, all results are returned on separate pages.
12563
+ * ·
12564
+ *
12565
+ * @param request DescribeApiIpControlsRequest
12566
+ * @return DescribeApiIpControlsResponse
12567
+ */
11895
12568
  describeApiIpControls(request: DescribeApiIpControlsRequest): Promise<DescribeApiIpControlsResponse>;
12569
+ /**
12570
+ * You can call this operation to query the latency metrics in milliseconds for a specified API.
12571
+ * * This API is intended for API providers.
12572
+ * * Only statistics for API calls made in the release environment are collected by default.
12573
+ *
12574
+ * @param request DescribeApiLatencyDataRequest
12575
+ * @param runtime runtime options for this request RuntimeOptions
12576
+ * @return DescribeApiLatencyDataResponse
12577
+ */
11896
12578
  describeApiLatencyDataWithOptions(request: DescribeApiLatencyDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiLatencyDataResponse>;
12579
+ /**
12580
+ * You can call this operation to query the latency metrics in milliseconds for a specified API.
12581
+ * * This API is intended for API providers.
12582
+ * * Only statistics for API calls made in the release environment are collected by default.
12583
+ *
12584
+ * @param request DescribeApiLatencyDataRequest
12585
+ * @return DescribeApiLatencyDataResponse
12586
+ */
11897
12587
  describeApiLatencyData(request: DescribeApiLatencyDataRequest): Promise<DescribeApiLatencyDataResponse>;
11898
12588
  describeApiMarketAttributesWithOptions(request: DescribeApiMarketAttributesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiMarketAttributesResponse>;
11899
12589
  describeApiMarketAttributes(request: DescribeApiMarketAttributesRequest): Promise<DescribeApiMarketAttributesResponse>;
12590
+ /**
12591
+ * * This API is intended for API providers.
12592
+ * * Only statistics for API calls made in the release environment are collected by default.
12593
+ *
12594
+ * @param request DescribeApiQpsDataRequest
12595
+ * @param runtime runtime options for this request RuntimeOptions
12596
+ * @return DescribeApiQpsDataResponse
12597
+ */
11900
12598
  describeApiQpsDataWithOptions(request: DescribeApiQpsDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiQpsDataResponse>;
12599
+ /**
12600
+ * * This API is intended for API providers.
12601
+ * * Only statistics for API calls made in the release environment are collected by default.
12602
+ *
12603
+ * @param request DescribeApiQpsDataRequest
12604
+ * @return DescribeApiQpsDataResponse
12605
+ */
11901
12606
  describeApiQpsData(request: DescribeApiQpsDataRequest): Promise<DescribeApiQpsDataResponse>;
12607
+ /**
12608
+ * Queries the backend signature keys that are bound to the APIs of a specified API group in a specified environment.
12609
+ *
12610
+ * @param request DescribeApiSignaturesRequest
12611
+ * @param runtime runtime options for this request RuntimeOptions
12612
+ * @return DescribeApiSignaturesResponse
12613
+ */
11902
12614
  describeApiSignaturesWithOptions(request: DescribeApiSignaturesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiSignaturesResponse>;
12615
+ /**
12616
+ * Queries the backend signature keys that are bound to the APIs of a specified API group in a specified environment.
12617
+ *
12618
+ * @param request DescribeApiSignaturesRequest
12619
+ * @return DescribeApiSignaturesResponse
12620
+ */
11903
12621
  describeApiSignatures(request: DescribeApiSignaturesRequest): Promise<DescribeApiSignaturesResponse>;
12622
+ /**
12623
+ * Queries the throttling policies bound to all members of an API group in a specified environment.
12624
+ *
12625
+ * @param request DescribeApiTrafficControlsRequest
12626
+ * @param runtime runtime options for this request RuntimeOptions
12627
+ * @return DescribeApiTrafficControlsResponse
12628
+ */
11904
12629
  describeApiTrafficControlsWithOptions(request: DescribeApiTrafficControlsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiTrafficControlsResponse>;
12630
+ /**
12631
+ * Queries the throttling policies bound to all members of an API group in a specified environment.
12632
+ *
12633
+ * @param request DescribeApiTrafficControlsRequest
12634
+ * @return DescribeApiTrafficControlsResponse
12635
+ */
11905
12636
  describeApiTrafficControls(request: DescribeApiTrafficControlsRequest): Promise<DescribeApiTrafficControlsResponse>;
12637
+ /**
12638
+ * * This API is intended for API providers.
12639
+ * * Only statistics for API calls made in the release environment are collected by default.
12640
+ *
12641
+ * @param request DescribeApiTrafficDataRequest
12642
+ * @param runtime runtime options for this request RuntimeOptions
12643
+ * @return DescribeApiTrafficDataResponse
12644
+ */
11906
12645
  describeApiTrafficDataWithOptions(request: DescribeApiTrafficDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiTrafficDataResponse>;
12646
+ /**
12647
+ * * This API is intended for API providers.
12648
+ * * Only statistics for API calls made in the release environment are collected by default.
12649
+ *
12650
+ * @param request DescribeApiTrafficDataRequest
12651
+ * @return DescribeApiTrafficDataResponse
12652
+ */
11907
12653
  describeApiTrafficData(request: DescribeApiTrafficDataRequest): Promise<DescribeApiTrafficDataResponse>;
12654
+ /**
12655
+ * * This API is intended for API providers.
12656
+ * * The list of all APIs that belong to the definition and their brief information are returned.
12657
+ * * This API returns the most recently edited API definitions. These may be different from the definitions of those APIs currently published to the runtime environment.
12658
+ *
12659
+ * @param request DescribeApisRequest
12660
+ * @param runtime runtime options for this request RuntimeOptions
12661
+ * @return DescribeApisResponse
12662
+ */
11908
12663
  describeApisWithOptions(request: DescribeApisRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApisResponse>;
12664
+ /**
12665
+ * * This API is intended for API providers.
12666
+ * * The list of all APIs that belong to the definition and their brief information are returned.
12667
+ * * This API returns the most recently edited API definitions. These may be different from the definitions of those APIs currently published to the runtime environment.
12668
+ *
12669
+ * @param request DescribeApisRequest
12670
+ * @return DescribeApisResponse
12671
+ */
11909
12672
  describeApis(request: DescribeApisRequest): Promise<DescribeApisResponse>;
11910
12673
  describeApisByAppWithOptions(request: DescribeApisByAppRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApisByAppResponse>;
11911
12674
  describeApisByApp(request: DescribeApisByAppRequest): Promise<DescribeApisByAppResponse>;
11912
12675
  describeApisByBackendWithOptions(request: DescribeApisByBackendRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApisByBackendResponse>;
11913
12676
  describeApisByBackend(request: DescribeApisByBackendRequest): Promise<DescribeApisByBackendResponse>;
12677
+ /**
12678
+ * * This API is intended for API providers.
12679
+ * * You can specify PageNumber to obtain the result on the specified page.
12680
+ *
12681
+ * @param request DescribeApisByIpControlRequest
12682
+ * @param runtime runtime options for this request RuntimeOptions
12683
+ * @return DescribeApisByIpControlResponse
12684
+ */
11914
12685
  describeApisByIpControlWithOptions(request: DescribeApisByIpControlRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApisByIpControlResponse>;
12686
+ /**
12687
+ * * This API is intended for API providers.
12688
+ * * You can specify PageNumber to obtain the result on the specified page.
12689
+ *
12690
+ * @param request DescribeApisByIpControlRequest
12691
+ * @return DescribeApisByIpControlResponse
12692
+ */
11915
12693
  describeApisByIpControl(request: DescribeApisByIpControlRequest): Promise<DescribeApisByIpControlResponse>;
12694
+ /**
12695
+ * Queries the APIs to which a specified backend signature key is bound.
12696
+ *
12697
+ * @param request DescribeApisBySignatureRequest
12698
+ * @param runtime runtime options for this request RuntimeOptions
12699
+ * @return DescribeApisBySignatureResponse
12700
+ */
11916
12701
  describeApisBySignatureWithOptions(request: DescribeApisBySignatureRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApisBySignatureResponse>;
12702
+ /**
12703
+ * Queries the APIs to which a specified backend signature key is bound.
12704
+ *
12705
+ * @param request DescribeApisBySignatureRequest
12706
+ * @return DescribeApisBySignatureResponse
12707
+ */
11917
12708
  describeApisBySignature(request: DescribeApisBySignatureRequest): Promise<DescribeApisBySignatureResponse>;
12709
+ /**
12710
+ * * This API is intended for API providers.
12711
+ * * You can specify PageNumber to obtain the result on the specified page.
12712
+ *
12713
+ * @param request DescribeApisByTrafficControlRequest
12714
+ * @param runtime runtime options for this request RuntimeOptions
12715
+ * @return DescribeApisByTrafficControlResponse
12716
+ */
11918
12717
  describeApisByTrafficControlWithOptions(request: DescribeApisByTrafficControlRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApisByTrafficControlResponse>;
12718
+ /**
12719
+ * * This API is intended for API providers.
12720
+ * * You can specify PageNumber to obtain the result on the specified page.
12721
+ *
12722
+ * @param request DescribeApisByTrafficControlRequest
12723
+ * @return DescribeApisByTrafficControlResponse
12724
+ */
11919
12725
  describeApisByTrafficControl(request: DescribeApisByTrafficControlRequest): Promise<DescribeApisByTrafficControlResponse>;
11920
12726
  describeAppWithOptions(request: DescribeAppRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAppResponse>;
11921
12727
  describeApp(request: DescribeAppRequest): Promise<DescribeAppResponse>;
12728
+ /**
12729
+ * * This operation is intended for API callers.
12730
+ * * AppId is optional.
12731
+ *
12732
+ * @param request DescribeAppAttributesRequest
12733
+ * @param runtime runtime options for this request RuntimeOptions
12734
+ * @return DescribeAppAttributesResponse
12735
+ */
11922
12736
  describeAppAttributesWithOptions(request: DescribeAppAttributesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAppAttributesResponse>;
12737
+ /**
12738
+ * * This operation is intended for API callers.
12739
+ * * AppId is optional.
12740
+ *
12741
+ * @param request DescribeAppAttributesRequest
12742
+ * @return DescribeAppAttributesResponse
12743
+ */
11923
12744
  describeAppAttributes(request: DescribeAppAttributesRequest): Promise<DescribeAppAttributesResponse>;
12745
+ /**
12746
+ * * This operation is intended for API callers.
12747
+ *
12748
+ * @param request DescribeAppSecurityRequest
12749
+ * @param runtime runtime options for this request RuntimeOptions
12750
+ * @return DescribeAppSecurityResponse
12751
+ */
11924
12752
  describeAppSecurityWithOptions(request: DescribeAppSecurityRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAppSecurityResponse>;
12753
+ /**
12754
+ * * This operation is intended for API callers.
12755
+ *
12756
+ * @param request DescribeAppSecurityRequest
12757
+ * @return DescribeAppSecurityResponse
12758
+ */
11925
12759
  describeAppSecurity(request: DescribeAppSecurityRequest): Promise<DescribeAppSecurityResponse>;
12760
+ /**
12761
+ * Queries the apps. App information is returned only to the app owner.
12762
+ *
12763
+ * @param request DescribeAppsRequest
12764
+ * @param runtime runtime options for this request RuntimeOptions
12765
+ * @return DescribeAppsResponse
12766
+ */
11926
12767
  describeAppsWithOptions(request: DescribeAppsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAppsResponse>;
12768
+ /**
12769
+ * Queries the apps. App information is returned only to the app owner.
12770
+ *
12771
+ * @param request DescribeAppsRequest
12772
+ * @return DescribeAppsResponse
12773
+ */
11927
12774
  describeApps(request: DescribeAppsRequest): Promise<DescribeAppsResponse>;
12775
+ /**
12776
+ * * This operation is intended for API callers.
12777
+ * * The specified application can call all APIs included in the responses.
12778
+ *
12779
+ * @param request DescribeAuthorizedApisRequest
12780
+ * @param runtime runtime options for this request RuntimeOptions
12781
+ * @return DescribeAuthorizedApisResponse
12782
+ */
11928
12783
  describeAuthorizedApisWithOptions(request: DescribeAuthorizedApisRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAuthorizedApisResponse>;
12784
+ /**
12785
+ * * This operation is intended for API callers.
12786
+ * * The specified application can call all APIs included in the responses.
12787
+ *
12788
+ * @param request DescribeAuthorizedApisRequest
12789
+ * @return DescribeAuthorizedApisResponse
12790
+ */
11929
12791
  describeAuthorizedApis(request: DescribeAuthorizedApisRequest): Promise<DescribeAuthorizedApisResponse>;
12792
+ /**
12793
+ * * This operation is intended for API providers.
12794
+ * * All applications included in the responses have access to the specified API.
12795
+ *
12796
+ * @param request DescribeAuthorizedAppsRequest
12797
+ * @param runtime runtime options for this request RuntimeOptions
12798
+ * @return DescribeAuthorizedAppsResponse
12799
+ */
11930
12800
  describeAuthorizedAppsWithOptions(request: DescribeAuthorizedAppsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAuthorizedAppsResponse>;
12801
+ /**
12802
+ * * This operation is intended for API providers.
12803
+ * * All applications included in the responses have access to the specified API.
12804
+ *
12805
+ * @param request DescribeAuthorizedAppsRequest
12806
+ * @return DescribeAuthorizedAppsResponse
12807
+ */
11931
12808
  describeAuthorizedApps(request: DescribeAuthorizedAppsRequest): Promise<DescribeAuthorizedAppsResponse>;
11932
12809
  describeBackendInfoWithOptions(request: DescribeBackendInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackendInfoResponse>;
11933
12810
  describeBackendInfo(request: DescribeBackendInfoRequest): Promise<DescribeBackendInfoResponse>;
@@ -11945,23 +12822,98 @@ export default class Client extends OpenApi {
11945
12822
  describeDeployApiTask(request: DescribeDeployApiTaskRequest): Promise<DescribeDeployApiTaskResponse>;
11946
12823
  describeDeployedApiWithOptions(request: DescribeDeployedApiRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDeployedApiResponse>;
11947
12824
  describeDeployedApi(request: DescribeDeployedApiRequest): Promise<DescribeDeployedApiResponse>;
12825
+ /**
12826
+ * * This API is intended for API providers.
12827
+ *
12828
+ * @param request DescribeDeployedApisRequest
12829
+ * @param runtime runtime options for this request RuntimeOptions
12830
+ * @return DescribeDeployedApisResponse
12831
+ */
11948
12832
  describeDeployedApisWithOptions(request: DescribeDeployedApisRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDeployedApisResponse>;
12833
+ /**
12834
+ * * This API is intended for API providers.
12835
+ *
12836
+ * @param request DescribeDeployedApisRequest
12837
+ * @return DescribeDeployedApisResponse
12838
+ */
11949
12839
  describeDeployedApis(request: DescribeDeployedApisRequest): Promise<DescribeDeployedApisResponse>;
12840
+ /**
12841
+ * Queries details about a bound custom domain name, including the automatically assigned second-level domain name, custom domain name, and SSL certificate.
12842
+ *
12843
+ * @param request DescribeDomainRequest
12844
+ * @param runtime runtime options for this request RuntimeOptions
12845
+ * @return DescribeDomainResponse
12846
+ */
11950
12847
  describeDomainWithOptions(request: DescribeDomainRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDomainResponse>;
12848
+ /**
12849
+ * Queries details about a bound custom domain name, including the automatically assigned second-level domain name, custom domain name, and SSL certificate.
12850
+ *
12851
+ * @param request DescribeDomainRequest
12852
+ * @return DescribeDomainResponse
12853
+ */
11951
12854
  describeDomain(request: DescribeDomainRequest): Promise<DescribeDomainResponse>;
11952
12855
  describeHistoryApisWithOptions(request: DescribeHistoryApisRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHistoryApisResponse>;
11953
12856
  describeHistoryApis(request: DescribeHistoryApisRequest): Promise<DescribeHistoryApisResponse>;
12857
+ describeImportOASTaskWithOptions(request: DescribeImportOASTaskRequest, runtime: $Util.RuntimeOptions): Promise<DescribeImportOASTaskResponse>;
12858
+ describeImportOASTask(request: DescribeImportOASTaskRequest): Promise<DescribeImportOASTaskResponse>;
11954
12859
  describeInstancesWithOptions(request: DescribeInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstancesResponse>;
11955
12860
  describeInstances(request: DescribeInstancesRequest): Promise<DescribeInstancesResponse>;
12861
+ /**
12862
+ * * This operation is intended for API providers.
12863
+ * * You can filter the query results by policy ID.
12864
+ *
12865
+ * @param request DescribeIpControlPolicyItemsRequest
12866
+ * @param runtime runtime options for this request RuntimeOptions
12867
+ * @return DescribeIpControlPolicyItemsResponse
12868
+ */
11956
12869
  describeIpControlPolicyItemsWithOptions(request: DescribeIpControlPolicyItemsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeIpControlPolicyItemsResponse>;
12870
+ /**
12871
+ * * This operation is intended for API providers.
12872
+ * * You can filter the query results by policy ID.
12873
+ *
12874
+ * @param request DescribeIpControlPolicyItemsRequest
12875
+ * @return DescribeIpControlPolicyItemsResponse
12876
+ */
11957
12877
  describeIpControlPolicyItems(request: DescribeIpControlPolicyItemsRequest): Promise<DescribeIpControlPolicyItemsResponse>;
12878
+ /**
12879
+ * * This operation is intended for API providers.
12880
+ * * This operation is used to query the ACLs in a Region. Region is a system parameter.
12881
+ * * You can filter the query results by ACL ID, name, or type.
12882
+ * * This operation cannot be used to query specific policies. If you want to query specific policies, use the [DescribeIpControlPolicyItems](https://help.aliyun.com/document_detail/65532.html?spm=a2c4g.11186623.2.14.615b13acrFZFaH) operation.
12883
+ *
12884
+ * @param request DescribeIpControlsRequest
12885
+ * @param runtime runtime options for this request RuntimeOptions
12886
+ * @return DescribeIpControlsResponse
12887
+ */
11958
12888
  describeIpControlsWithOptions(request: DescribeIpControlsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeIpControlsResponse>;
12889
+ /**
12890
+ * * This operation is intended for API providers.
12891
+ * * This operation is used to query the ACLs in a Region. Region is a system parameter.
12892
+ * * You can filter the query results by ACL ID, name, or type.
12893
+ * * This operation cannot be used to query specific policies. If you want to query specific policies, use the [DescribeIpControlPolicyItems](https://help.aliyun.com/document_detail/65532.html?spm=a2c4g.11186623.2.14.615b13acrFZFaH) operation.
12894
+ *
12895
+ * @param request DescribeIpControlsRequest
12896
+ * @return DescribeIpControlsResponse
12897
+ */
11959
12898
  describeIpControls(request: DescribeIpControlsRequest): Promise<DescribeIpControlsResponse>;
11960
12899
  describeLogConfigWithOptions(request: DescribeLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLogConfigResponse>;
11961
12900
  describeLogConfig(request: DescribeLogConfigRequest): Promise<DescribeLogConfigResponse>;
11962
12901
  describeMarketRemainsQuotaWithOptions(request: DescribeMarketRemainsQuotaRequest, runtime: $Util.RuntimeOptions): Promise<DescribeMarketRemainsQuotaResponse>;
11963
12902
  describeMarketRemainsQuota(request: DescribeMarketRemainsQuotaRequest): Promise<DescribeMarketRemainsQuotaResponse>;
12903
+ /**
12904
+ * * Fuzzy queries are supported.
12905
+ *
12906
+ * @param request DescribeModelsRequest
12907
+ * @param runtime runtime options for this request RuntimeOptions
12908
+ * @return DescribeModelsResponse
12909
+ */
11964
12910
  describeModelsWithOptions(request: DescribeModelsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeModelsResponse>;
12911
+ /**
12912
+ * * Fuzzy queries are supported.
12913
+ *
12914
+ * @param request DescribeModelsRequest
12915
+ * @return DescribeModelsResponse
12916
+ */
11965
12917
  describeModels(request: DescribeModelsRequest): Promise<DescribeModelsResponse>;
11966
12918
  describePluginApisWithOptions(request: DescribePluginApisRequest, runtime: $Util.RuntimeOptions): Promise<DescribePluginApisResponse>;
11967
12919
  describePluginApis(request: DescribePluginApisRequest): Promise<DescribePluginApisResponse>;
@@ -11969,9 +12921,43 @@ export default class Client extends OpenApi {
11969
12921
  describePluginSchemas(request: DescribePluginSchemasRequest): Promise<DescribePluginSchemasResponse>;
11970
12922
  describePluginTemplatesWithOptions(request: DescribePluginTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<DescribePluginTemplatesResponse>;
11971
12923
  describePluginTemplates(request: DescribePluginTemplatesRequest): Promise<DescribePluginTemplatesResponse>;
12924
+ /**
12925
+ * * This operation supports pagination.
12926
+ * * This operation allows you to query plug-ins by business type.
12927
+ * * This operation allows you to query plug-ins by ID.
12928
+ * * This operation allows you to query plug-ins by name.
12929
+ *
12930
+ * @param request DescribePluginsRequest
12931
+ * @param runtime runtime options for this request RuntimeOptions
12932
+ * @return DescribePluginsResponse
12933
+ */
11972
12934
  describePluginsWithOptions(request: DescribePluginsRequest, runtime: $Util.RuntimeOptions): Promise<DescribePluginsResponse>;
12935
+ /**
12936
+ * * This operation supports pagination.
12937
+ * * This operation allows you to query plug-ins by business type.
12938
+ * * This operation allows you to query plug-ins by ID.
12939
+ * * This operation allows you to query plug-ins by name.
12940
+ *
12941
+ * @param request DescribePluginsRequest
12942
+ * @return DescribePluginsResponse
12943
+ */
11973
12944
  describePlugins(request: DescribePluginsRequest): Promise<DescribePluginsResponse>;
12945
+ /**
12946
+ * * This API is intended for API providers.
12947
+ * * This operation supports pagination.
12948
+ *
12949
+ * @param request DescribePluginsByApiRequest
12950
+ * @param runtime runtime options for this request RuntimeOptions
12951
+ * @return DescribePluginsByApiResponse
12952
+ */
11974
12953
  describePluginsByApiWithOptions(request: DescribePluginsByApiRequest, runtime: $Util.RuntimeOptions): Promise<DescribePluginsByApiResponse>;
12954
+ /**
12955
+ * * This API is intended for API providers.
12956
+ * * This operation supports pagination.
12957
+ *
12958
+ * @param request DescribePluginsByApiRequest
12959
+ * @return DescribePluginsByApiResponse
12960
+ */
11975
12961
  describePluginsByApi(request: DescribePluginsByApiRequest): Promise<DescribePluginsByApiResponse>;
11976
12962
  describePurchasedApiGroupWithOptions(request: DescribePurchasedApiGroupRequest, runtime: $Util.RuntimeOptions): Promise<DescribePurchasedApiGroupResponse>;
11977
12963
  describePurchasedApiGroup(request: DescribePurchasedApiGroupRequest): Promise<DescribePurchasedApiGroupResponse>;
@@ -11979,17 +12965,103 @@ export default class Client extends OpenApi {
11979
12965
  describePurchasedApiGroups(request: DescribePurchasedApiGroupsRequest): Promise<DescribePurchasedApiGroupsResponse>;
11980
12966
  describePurchasedApisWithOptions(request: DescribePurchasedApisRequest, runtime: $Util.RuntimeOptions): Promise<DescribePurchasedApisResponse>;
11981
12967
  describePurchasedApis(request: DescribePurchasedApisRequest): Promise<DescribePurchasedApisResponse>;
12968
+ /**
12969
+ * This operation queries regions in which API Gateway is available.
12970
+ * * This operation is intended for API providers and callers.
12971
+ *
12972
+ * @param request DescribeRegionsRequest
12973
+ * @param runtime runtime options for this request RuntimeOptions
12974
+ * @return DescribeRegionsResponse
12975
+ */
11982
12976
  describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
12977
+ /**
12978
+ * This operation queries regions in which API Gateway is available.
12979
+ * * This operation is intended for API providers and callers.
12980
+ *
12981
+ * @param request DescribeRegionsRequest
12982
+ * @return DescribeRegionsResponse
12983
+ */
11983
12984
  describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
12985
+ /**
12986
+ * Queries backend signature keys.
12987
+ *
12988
+ * @param request DescribeSignaturesRequest
12989
+ * @param runtime runtime options for this request RuntimeOptions
12990
+ * @return DescribeSignaturesResponse
12991
+ */
11984
12992
  describeSignaturesWithOptions(request: DescribeSignaturesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSignaturesResponse>;
12993
+ /**
12994
+ * Queries backend signature keys.
12995
+ *
12996
+ * @param request DescribeSignaturesRequest
12997
+ * @return DescribeSignaturesResponse
12998
+ */
11985
12999
  describeSignatures(request: DescribeSignaturesRequest): Promise<DescribeSignaturesResponse>;
13000
+ /**
13001
+ * Queries the backend signature keys that are bound to a specified API.
13002
+ *
13003
+ * @param request DescribeSignaturesByApiRequest
13004
+ * @param runtime runtime options for this request RuntimeOptions
13005
+ * @return DescribeSignaturesByApiResponse
13006
+ */
11986
13007
  describeSignaturesByApiWithOptions(request: DescribeSignaturesByApiRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSignaturesByApiResponse>;
13008
+ /**
13009
+ * Queries the backend signature keys that are bound to a specified API.
13010
+ *
13011
+ * @param request DescribeSignaturesByApiRequest
13012
+ * @return DescribeSignaturesByApiResponse
13013
+ */
11987
13014
  describeSignaturesByApi(request: DescribeSignaturesByApiRequest): Promise<DescribeSignaturesByApiResponse>;
13015
+ /**
13016
+ * * This API is intended for API callers.
13017
+ * * The response of this API contains the system parameters that are optional in API definitions.
13018
+ *
13019
+ * @param request DescribeSystemParametersRequest
13020
+ * @param runtime runtime options for this request RuntimeOptions
13021
+ * @return DescribeSystemParametersResponse
13022
+ */
11988
13023
  describeSystemParametersWithOptions(request: DescribeSystemParametersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSystemParametersResponse>;
13024
+ /**
13025
+ * * This API is intended for API callers.
13026
+ * * The response of this API contains the system parameters that are optional in API definitions.
13027
+ *
13028
+ * @param request DescribeSystemParametersRequest
13029
+ * @return DescribeSystemParametersResponse
13030
+ */
11989
13031
  describeSystemParameters(request: DescribeSystemParametersRequest): Promise<DescribeSystemParametersResponse>;
13032
+ /**
13033
+ * * This API is intended for API providers.
13034
+ * * This API can be used to query all existing throttling policies (including special throttling policies) and their details.
13035
+ * * You can specify query conditions. For example, you can query the throttling policies bound to a specified API or in a specified environment.
13036
+ *
13037
+ * @param request DescribeTrafficControlsRequest
13038
+ * @param runtime runtime options for this request RuntimeOptions
13039
+ * @return DescribeTrafficControlsResponse
13040
+ */
11990
13041
  describeTrafficControlsWithOptions(request: DescribeTrafficControlsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTrafficControlsResponse>;
13042
+ /**
13043
+ * * This API is intended for API providers.
13044
+ * * This API can be used to query all existing throttling policies (including special throttling policies) and their details.
13045
+ * * You can specify query conditions. For example, you can query the throttling policies bound to a specified API or in a specified environment.
13046
+ *
13047
+ * @param request DescribeTrafficControlsRequest
13048
+ * @return DescribeTrafficControlsResponse
13049
+ */
11991
13050
  describeTrafficControls(request: DescribeTrafficControlsRequest): Promise<DescribeTrafficControlsResponse>;
13051
+ /**
13052
+ * * This API is intended for API providers.
13053
+ *
13054
+ * @param request DescribeTrafficControlsByApiRequest
13055
+ * @param runtime runtime options for this request RuntimeOptions
13056
+ * @return DescribeTrafficControlsByApiResponse
13057
+ */
11992
13058
  describeTrafficControlsByApiWithOptions(request: DescribeTrafficControlsByApiRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTrafficControlsByApiResponse>;
13059
+ /**
13060
+ * * This API is intended for API providers.
13061
+ *
13062
+ * @param request DescribeTrafficControlsByApiRequest
13063
+ * @return DescribeTrafficControlsByApiResponse
13064
+ */
11993
13065
  describeTrafficControlsByApi(request: DescribeTrafficControlsByApiRequest): Promise<DescribeTrafficControlsByApiResponse>;
11994
13066
  describeUpdateBackendTaskWithOptions(request: DescribeUpdateBackendTaskRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUpdateBackendTaskResponse>;
11995
13067
  describeUpdateBackendTask(request: DescribeUpdateBackendTaskRequest): Promise<DescribeUpdateBackendTaskResponse>;
@@ -12009,19 +13081,108 @@ export default class Client extends OpenApi {
12009
13081
  enableInstanceAccessControl(request: EnableInstanceAccessControlRequest): Promise<EnableInstanceAccessControlResponse>;
12010
13082
  importOASWithOptions(request: ImportOASRequest, runtime: $Util.RuntimeOptions): Promise<ImportOASResponse>;
12011
13083
  importOAS(request: ImportOASRequest): Promise<ImportOASResponse>;
13084
+ /**
13085
+ * * Alibaba Cloud supports extensions based on Swagger 2.0.
13086
+ * * Alibaba Cloud supports Swagger configuration files in JSON and YAML formats.
13087
+ *
13088
+ * @param tmpReq ImportSwaggerRequest
13089
+ * @param runtime runtime options for this request RuntimeOptions
13090
+ * @return ImportSwaggerResponse
13091
+ */
12012
13092
  importSwaggerWithOptions(tmpReq: ImportSwaggerRequest, runtime: $Util.RuntimeOptions): Promise<ImportSwaggerResponse>;
13093
+ /**
13094
+ * * Alibaba Cloud supports extensions based on Swagger 2.0.
13095
+ * * Alibaba Cloud supports Swagger configuration files in JSON and YAML formats.
13096
+ *
13097
+ * @param request ImportSwaggerRequest
13098
+ * @return ImportSwaggerResponse
13099
+ */
12013
13100
  importSwagger(request: ImportSwaggerRequest): Promise<ImportSwaggerResponse>;
13101
+ /**
13102
+ * * The Tag.N.Key and Tag.N.Value parameters constitute a key-value pair.
13103
+ * * ResourceId.N must meet all the key-value pairs that are entered. If you enter multiple key-value pairs, resources that contain the specified key-value pairs are returned.
13104
+ * * This operation is used to query resource tags based on conditions. If no relationship matches the conditions, an empty list is returned.
13105
+ * * You can query both user tags and visible system tags.
13106
+ * * In addition to the required parameters, you can also specify ResourceId.N to query the visible resource tags of a specified resource in a region.
13107
+ * * You can also specify Tag.N.Key to query the visible keys of a specified key in a region.
13108
+ * * At least one of ResourceId.N, Tag.N.Key, and Tag.N.Value exists.
13109
+ * * You can query tags of the same type or different types in a single operation.
13110
+ * * You can query all your user tags and visible system tags.
13111
+ *
13112
+ * @param request ListTagResourcesRequest
13113
+ * @param runtime runtime options for this request RuntimeOptions
13114
+ * @return ListTagResourcesResponse
13115
+ */
12014
13116
  listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse>;
13117
+ /**
13118
+ * * The Tag.N.Key and Tag.N.Value parameters constitute a key-value pair.
13119
+ * * ResourceId.N must meet all the key-value pairs that are entered. If you enter multiple key-value pairs, resources that contain the specified key-value pairs are returned.
13120
+ * * This operation is used to query resource tags based on conditions. If no relationship matches the conditions, an empty list is returned.
13121
+ * * You can query both user tags and visible system tags.
13122
+ * * In addition to the required parameters, you can also specify ResourceId.N to query the visible resource tags of a specified resource in a region.
13123
+ * * You can also specify Tag.N.Key to query the visible keys of a specified key in a region.
13124
+ * * At least one of ResourceId.N, Tag.N.Key, and Tag.N.Value exists.
13125
+ * * You can query tags of the same type or different types in a single operation.
13126
+ * * You can query all your user tags and visible system tags.
13127
+ *
13128
+ * @param request ListTagResourcesRequest
13129
+ * @return ListTagResourcesResponse
13130
+ */
12015
13131
  listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse>;
13132
+ /**
13133
+ * Modifies the definition of an API.
13134
+ *
13135
+ * @param request ModifyApiRequest
13136
+ * @param runtime runtime options for this request RuntimeOptions
13137
+ * @return ModifyApiResponse
13138
+ */
12016
13139
  modifyApiWithOptions(request: ModifyApiRequest, runtime: $Util.RuntimeOptions): Promise<ModifyApiResponse>;
13140
+ /**
13141
+ * Modifies the definition of an API.
13142
+ *
13143
+ * @param request ModifyApiRequest
13144
+ * @return ModifyApiResponse
13145
+ */
12017
13146
  modifyApi(request: ModifyApiRequest): Promise<ModifyApiResponse>;
12018
13147
  modifyApiConfigurationWithOptions(request: ModifyApiConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<ModifyApiConfigurationResponse>;
12019
13148
  modifyApiConfiguration(request: ModifyApiConfigurationRequest): Promise<ModifyApiConfigurationResponse>;
13149
+ /**
13150
+ * * This operation is intended for API providers.
13151
+ * * The QPS limit on this operation is 50 per user.
13152
+ *
13153
+ * @param request ModifyApiGroupRequest
13154
+ * @param runtime runtime options for this request RuntimeOptions
13155
+ * @return ModifyApiGroupResponse
13156
+ */
12020
13157
  modifyApiGroupWithOptions(request: ModifyApiGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyApiGroupResponse>;
13158
+ /**
13159
+ * * This operation is intended for API providers.
13160
+ * * The QPS limit on this operation is 50 per user.
13161
+ *
13162
+ * @param request ModifyApiGroupRequest
13163
+ * @return ModifyApiGroupResponse
13164
+ */
12021
13165
  modifyApiGroup(request: ModifyApiGroupRequest): Promise<ModifyApiGroupResponse>;
12022
13166
  modifyApiGroupVpcWhitelistWithOptions(request: ModifyApiGroupVpcWhitelistRequest, runtime: $Util.RuntimeOptions): Promise<ModifyApiGroupVpcWhitelistResponse>;
12023
13167
  modifyApiGroupVpcWhitelist(request: ModifyApiGroupVpcWhitelistRequest): Promise<ModifyApiGroupVpcWhitelistResponse>;
13168
+ /**
13169
+ * * This operation is intended for API callers.
13170
+ * * AppName or Description can be modified. If these parameters are not specified, no modifications are made and the operation will directly return a successful response.********
13171
+ * * The QPS limit on this operation is 50 per user.
13172
+ *
13173
+ * @param request ModifyAppRequest
13174
+ * @param runtime runtime options for this request RuntimeOptions
13175
+ * @return ModifyAppResponse
13176
+ */
12024
13177
  modifyAppWithOptions(request: ModifyAppRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAppResponse>;
13178
+ /**
13179
+ * * This operation is intended for API callers.
13180
+ * * AppName or Description can be modified. If these parameters are not specified, no modifications are made and the operation will directly return a successful response.********
13181
+ * * The QPS limit on this operation is 50 per user.
13182
+ *
13183
+ * @param request ModifyAppRequest
13184
+ * @return ModifyAppResponse
13185
+ */
12025
13186
  modifyApp(request: ModifyAppRequest): Promise<ModifyAppResponse>;
12026
13187
  modifyBackendWithOptions(request: ModifyBackendRequest, runtime: $Util.RuntimeOptions): Promise<ModifyBackendResponse>;
12027
13188
  modifyBackend(request: ModifyBackendRequest): Promise<ModifyBackendResponse>;
@@ -12033,19 +13194,102 @@ export default class Client extends OpenApi {
12033
13194
  modifyDatasetItem(request: ModifyDatasetItemRequest): Promise<ModifyDatasetItemResponse>;
12034
13195
  modifyInstanceSpecWithOptions(request: ModifyInstanceSpecRequest, runtime: $Util.RuntimeOptions): Promise<ModifyInstanceSpecResponse>;
12035
13196
  modifyInstanceSpec(request: ModifyInstanceSpecRequest): Promise<ModifyInstanceSpecResponse>;
13197
+ /**
13198
+ * * This operation is intended for API providers.
13199
+ * * This operation allows you to modify only the name and description of an ACL. You cannot modify the type of the ACL.
13200
+ *
13201
+ * @param request ModifyIpControlRequest
13202
+ * @param runtime runtime options for this request RuntimeOptions
13203
+ * @return ModifyIpControlResponse
13204
+ */
12036
13205
  modifyIpControlWithOptions(request: ModifyIpControlRequest, runtime: $Util.RuntimeOptions): Promise<ModifyIpControlResponse>;
13206
+ /**
13207
+ * * This operation is intended for API providers.
13208
+ * * This operation allows you to modify only the name and description of an ACL. You cannot modify the type of the ACL.
13209
+ *
13210
+ * @param request ModifyIpControlRequest
13211
+ * @return ModifyIpControlResponse
13212
+ */
12037
13213
  modifyIpControl(request: ModifyIpControlRequest): Promise<ModifyIpControlResponse>;
13214
+ /**
13215
+ * * This operation is intended for API providers.
13216
+ * * The modification immediately takes effect on all the APIs that are bound to the policy.
13217
+ * * This operation causes a full modification of the content of a policy.
13218
+ *
13219
+ * @param request ModifyIpControlPolicyItemRequest
13220
+ * @param runtime runtime options for this request RuntimeOptions
13221
+ * @return ModifyIpControlPolicyItemResponse
13222
+ */
12038
13223
  modifyIpControlPolicyItemWithOptions(request: ModifyIpControlPolicyItemRequest, runtime: $Util.RuntimeOptions): Promise<ModifyIpControlPolicyItemResponse>;
13224
+ /**
13225
+ * * This operation is intended for API providers.
13226
+ * * The modification immediately takes effect on all the APIs that are bound to the policy.
13227
+ * * This operation causes a full modification of the content of a policy.
13228
+ *
13229
+ * @param request ModifyIpControlPolicyItemRequest
13230
+ * @return ModifyIpControlPolicyItemResponse
13231
+ */
12039
13232
  modifyIpControlPolicyItem(request: ModifyIpControlPolicyItemRequest): Promise<ModifyIpControlPolicyItemResponse>;
12040
13233
  modifyLogConfigWithOptions(request: ModifyLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<ModifyLogConfigResponse>;
12041
13234
  modifyLogConfig(request: ModifyLogConfigRequest): Promise<ModifyLogConfigResponse>;
12042
13235
  modifyModelWithOptions(request: ModifyModelRequest, runtime: $Util.RuntimeOptions): Promise<ModifyModelResponse>;
12043
13236
  modifyModel(request: ModifyModelRequest): Promise<ModifyModelResponse>;
13237
+ /**
13238
+ * * This operation is intended for API providers.
13239
+ * * The name of the plug-in must be unique.
13240
+ *
13241
+ * @param request ModifyPluginRequest
13242
+ * @param runtime runtime options for this request RuntimeOptions
13243
+ * @return ModifyPluginResponse
13244
+ */
12044
13245
  modifyPluginWithOptions(request: ModifyPluginRequest, runtime: $Util.RuntimeOptions): Promise<ModifyPluginResponse>;
13246
+ /**
13247
+ * * This operation is intended for API providers.
13248
+ * * The name of the plug-in must be unique.
13249
+ *
13250
+ * @param request ModifyPluginRequest
13251
+ * @return ModifyPluginResponse
13252
+ */
12045
13253
  modifyPlugin(request: ModifyPluginRequest): Promise<ModifyPluginResponse>;
13254
+ /**
13255
+ * * This API is intended for API providers.
13256
+ * * This API operation modifies the name, Key value, and Secret value of an existing signature key.
13257
+ * * Note that the modification takes effect immediately. If the key has been bound to an API, you must adjust the backend signature verification based on the new key accordingly.
13258
+ * * The QPS limit on this operation is 50 per user.
13259
+ *
13260
+ * @param request ModifySignatureRequest
13261
+ * @param runtime runtime options for this request RuntimeOptions
13262
+ * @return ModifySignatureResponse
13263
+ */
12046
13264
  modifySignatureWithOptions(request: ModifySignatureRequest, runtime: $Util.RuntimeOptions): Promise<ModifySignatureResponse>;
13265
+ /**
13266
+ * * This API is intended for API providers.
13267
+ * * This API operation modifies the name, Key value, and Secret value of an existing signature key.
13268
+ * * Note that the modification takes effect immediately. If the key has been bound to an API, you must adjust the backend signature verification based on the new key accordingly.
13269
+ * * The QPS limit on this operation is 50 per user.
13270
+ *
13271
+ * @param request ModifySignatureRequest
13272
+ * @return ModifySignatureResponse
13273
+ */
12047
13274
  modifySignature(request: ModifySignatureRequest): Promise<ModifySignatureResponse>;
13275
+ /**
13276
+ * * This API is intended for API providers.
13277
+ * * The modifications take effect on the bound APIs instantly.
13278
+ * * The QPS limit on this operation is 50 per user.
13279
+ *
13280
+ * @param request ModifyTrafficControlRequest
13281
+ * @param runtime runtime options for this request RuntimeOptions
13282
+ * @return ModifyTrafficControlResponse
13283
+ */
12048
13284
  modifyTrafficControlWithOptions(request: ModifyTrafficControlRequest, runtime: $Util.RuntimeOptions): Promise<ModifyTrafficControlResponse>;
13285
+ /**
13286
+ * * This API is intended for API providers.
13287
+ * * The modifications take effect on the bound APIs instantly.
13288
+ * * The QPS limit on this operation is 50 per user.
13289
+ *
13290
+ * @param request ModifyTrafficControlRequest
13291
+ * @return ModifyTrafficControlResponse
13292
+ */
12049
13293
  modifyTrafficControl(request: ModifyTrafficControlRequest): Promise<ModifyTrafficControlResponse>;
12050
13294
  modifyVpcAccessAndUpdateApisWithOptions(request: ModifyVpcAccessAndUpdateApisRequest, runtime: $Util.RuntimeOptions): Promise<ModifyVpcAccessAndUpdateApisResponse>;
12051
13295
  modifyVpcAccessAndUpdateApis(request: ModifyVpcAccessAndUpdateApisRequest): Promise<ModifyVpcAccessAndUpdateApisResponse>;
@@ -12053,29 +13297,162 @@ export default class Client extends OpenApi {
12053
13297
  openApiGatewayService(): Promise<OpenApiGatewayServiceResponse>;
12054
13298
  queryRequestLogsWithOptions(request: QueryRequestLogsRequest, runtime: $Util.RuntimeOptions): Promise<QueryRequestLogsResponse>;
12055
13299
  queryRequestLogs(request: QueryRequestLogsRequest): Promise<QueryRequestLogsResponse>;
13300
+ /**
13301
+ * Reactivates a custom domain name whose validity status is Abnormal.
13302
+ *
13303
+ * @param request ReactivateDomainRequest
13304
+ * @param runtime runtime options for this request RuntimeOptions
13305
+ * @return ReactivateDomainResponse
13306
+ */
12056
13307
  reactivateDomainWithOptions(request: ReactivateDomainRequest, runtime: $Util.RuntimeOptions): Promise<ReactivateDomainResponse>;
13308
+ /**
13309
+ * Reactivates a custom domain name whose validity status is Abnormal.
13310
+ *
13311
+ * @param request ReactivateDomainRequest
13312
+ * @return ReactivateDomainResponse
13313
+ */
12057
13314
  reactivateDomain(request: ReactivateDomainRequest): Promise<ReactivateDomainResponse>;
12058
13315
  removeAccessControlListEntryWithOptions(request: RemoveAccessControlListEntryRequest, runtime: $Util.RuntimeOptions): Promise<RemoveAccessControlListEntryResponse>;
12059
13316
  removeAccessControlListEntry(request: RemoveAccessControlListEntryRequest): Promise<RemoveAccessControlListEntryResponse>;
13317
+ /**
13318
+ * * This operation is intended for API providers and callers.
13319
+ * * Before you revoke access permissions, check by whom the permissions were granted. API providers can only revoke permissions granted by a Provider, and API callers can only revoke permissions granted by a Consumer.
13320
+ *
13321
+ * @param request RemoveApisAuthoritiesRequest
13322
+ * @param runtime runtime options for this request RuntimeOptions
13323
+ * @return RemoveApisAuthoritiesResponse
13324
+ */
12060
13325
  removeApisAuthoritiesWithOptions(request: RemoveApisAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<RemoveApisAuthoritiesResponse>;
13326
+ /**
13327
+ * * This operation is intended for API providers and callers.
13328
+ * * Before you revoke access permissions, check by whom the permissions were granted. API providers can only revoke permissions granted by a Provider, and API callers can only revoke permissions granted by a Consumer.
13329
+ *
13330
+ * @param request RemoveApisAuthoritiesRequest
13331
+ * @return RemoveApisAuthoritiesResponse
13332
+ */
12061
13333
  removeApisAuthorities(request: RemoveApisAuthoritiesRequest): Promise<RemoveApisAuthoritiesResponse>;
13334
+ /**
13335
+ * * This operation is intended for API providers and callers.
13336
+ * * Before you revoke access permissions, check by whom the permissions were granted. API providers can only revoke permissions granted by a Provider, and API callers can only revoke permissions granted by a Consumer.
13337
+ *
13338
+ * @param request RemoveAppsAuthoritiesRequest
13339
+ * @param runtime runtime options for this request RuntimeOptions
13340
+ * @return RemoveAppsAuthoritiesResponse
13341
+ */
12062
13342
  removeAppsAuthoritiesWithOptions(request: RemoveAppsAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<RemoveAppsAuthoritiesResponse>;
13343
+ /**
13344
+ * * This operation is intended for API providers and callers.
13345
+ * * Before you revoke access permissions, check by whom the permissions were granted. API providers can only revoke permissions granted by a Provider, and API callers can only revoke permissions granted by a Consumer.
13346
+ *
13347
+ * @param request RemoveAppsAuthoritiesRequest
13348
+ * @return RemoveAppsAuthoritiesResponse
13349
+ */
12063
13350
  removeAppsAuthorities(request: RemoveAppsAuthoritiesRequest): Promise<RemoveAppsAuthoritiesResponse>;
13351
+ /**
13352
+ * * This API is intended for API providers.
13353
+ * * The unbinding takes effect immediately. After the API is unbound from the ACL, the corresponding environment does not have any IP address access control in place for the API.
13354
+ *
13355
+ * @param request RemoveIpControlApisRequest
13356
+ * @param runtime runtime options for this request RuntimeOptions
13357
+ * @return RemoveIpControlApisResponse
13358
+ */
12064
13359
  removeIpControlApisWithOptions(request: RemoveIpControlApisRequest, runtime: $Util.RuntimeOptions): Promise<RemoveIpControlApisResponse>;
13360
+ /**
13361
+ * * This API is intended for API providers.
13362
+ * * The unbinding takes effect immediately. After the API is unbound from the ACL, the corresponding environment does not have any IP address access control in place for the API.
13363
+ *
13364
+ * @param request RemoveIpControlApisRequest
13365
+ * @return RemoveIpControlApisResponse
13366
+ */
12065
13367
  removeIpControlApis(request: RemoveIpControlApisRequest): Promise<RemoveIpControlApisResponse>;
13368
+ /**
13369
+ * * This operation is intended for API providers.
13370
+ *
13371
+ * @param request RemoveIpControlPolicyItemRequest
13372
+ * @param runtime runtime options for this request RuntimeOptions
13373
+ * @return RemoveIpControlPolicyItemResponse
13374
+ */
12066
13375
  removeIpControlPolicyItemWithOptions(request: RemoveIpControlPolicyItemRequest, runtime: $Util.RuntimeOptions): Promise<RemoveIpControlPolicyItemResponse>;
13376
+ /**
13377
+ * * This operation is intended for API providers.
13378
+ *
13379
+ * @param request RemoveIpControlPolicyItemRequest
13380
+ * @return RemoveIpControlPolicyItemResponse
13381
+ */
12067
13382
  removeIpControlPolicyItem(request: RemoveIpControlPolicyItemRequest): Promise<RemoveIpControlPolicyItemResponse>;
13383
+ /**
13384
+ * Unbinds a backend signature key from APIs.
13385
+ *
13386
+ * @param request RemoveSignatureApisRequest
13387
+ * @param runtime runtime options for this request RuntimeOptions
13388
+ * @return RemoveSignatureApisResponse
13389
+ */
12068
13390
  removeSignatureApisWithOptions(request: RemoveSignatureApisRequest, runtime: $Util.RuntimeOptions): Promise<RemoveSignatureApisResponse>;
13391
+ /**
13392
+ * Unbinds a backend signature key from APIs.
13393
+ *
13394
+ * @param request RemoveSignatureApisRequest
13395
+ * @return RemoveSignatureApisResponse
13396
+ */
12069
13397
  removeSignatureApis(request: RemoveSignatureApisRequest): Promise<RemoveSignatureApisResponse>;
13398
+ /**
13399
+ * * This API is intended for API providers.
13400
+ * * This API allows you to unbind a specified throttling policy from up to 100 APIs at a time.
13401
+ *
13402
+ * @param request RemoveTrafficControlApisRequest
13403
+ * @param runtime runtime options for this request RuntimeOptions
13404
+ * @return RemoveTrafficControlApisResponse
13405
+ */
12070
13406
  removeTrafficControlApisWithOptions(request: RemoveTrafficControlApisRequest, runtime: $Util.RuntimeOptions): Promise<RemoveTrafficControlApisResponse>;
13407
+ /**
13408
+ * * This API is intended for API providers.
13409
+ * * This API allows you to unbind a specified throttling policy from up to 100 APIs at a time.
13410
+ *
13411
+ * @param request RemoveTrafficControlApisRequest
13412
+ * @return RemoveTrafficControlApisResponse
13413
+ */
12071
13414
  removeTrafficControlApis(request: RemoveTrafficControlApisRequest): Promise<RemoveTrafficControlApisResponse>;
13415
+ /**
13416
+ * * This API is intended for API providers.
13417
+ * * Revokes the permissions of API Gateway to access your VPC instance.
13418
+ * > Deleting an authorization affects the associated API. Before you delete the authorization, make sure that it is not used by the API.
13419
+ *
13420
+ * @param request RemoveVpcAccessRequest
13421
+ * @param runtime runtime options for this request RuntimeOptions
13422
+ * @return RemoveVpcAccessResponse
13423
+ */
12072
13424
  removeVpcAccessWithOptions(request: RemoveVpcAccessRequest, runtime: $Util.RuntimeOptions): Promise<RemoveVpcAccessResponse>;
13425
+ /**
13426
+ * * This API is intended for API providers.
13427
+ * * Revokes the permissions of API Gateway to access your VPC instance.
13428
+ * > Deleting an authorization affects the associated API. Before you delete the authorization, make sure that it is not used by the API.
13429
+ *
13430
+ * @param request RemoveVpcAccessRequest
13431
+ * @return RemoveVpcAccessResponse
13432
+ */
12073
13433
  removeVpcAccess(request: RemoveVpcAccessRequest): Promise<RemoveVpcAccessResponse>;
12074
13434
  removeVpcAccessAndAbolishApisWithOptions(request: RemoveVpcAccessAndAbolishApisRequest, runtime: $Util.RuntimeOptions): Promise<RemoveVpcAccessAndAbolishApisResponse>;
12075
13435
  removeVpcAccessAndAbolishApis(request: RemoveVpcAccessAndAbolishApisRequest): Promise<RemoveVpcAccessAndAbolishApisResponse>;
12076
13436
  resetAppCodeWithOptions(request: ResetAppCodeRequest, runtime: $Util.RuntimeOptions): Promise<ResetAppCodeResponse>;
12077
13437
  resetAppCode(request: ResetAppCodeRequest): Promise<ResetAppCodeResponse>;
13438
+ /**
13439
+ * * This operation is intended for API callers.
13440
+ * * A new secret is automatically generated after you have called this operation. This secret cannot be customized.
13441
+ * * The results returned by this operation do not contain the application secret. You can obtain the secret by calling DescribeAppSecurity.
13442
+ *
13443
+ * @param request ResetAppSecretRequest
13444
+ * @param runtime runtime options for this request RuntimeOptions
13445
+ * @return ResetAppSecretResponse
13446
+ */
12078
13447
  resetAppSecretWithOptions(request: ResetAppSecretRequest, runtime: $Util.RuntimeOptions): Promise<ResetAppSecretResponse>;
13448
+ /**
13449
+ * * This operation is intended for API callers.
13450
+ * * A new secret is automatically generated after you have called this operation. This secret cannot be customized.
13451
+ * * The results returned by this operation do not contain the application secret. You can obtain the secret by calling DescribeAppSecurity.
13452
+ *
13453
+ * @param request ResetAppSecretRequest
13454
+ * @return ResetAppSecretResponse
13455
+ */
12079
13456
  resetAppSecret(request: ResetAppSecretRequest): Promise<ResetAppSecretResponse>;
12080
13457
  sdkGenerateByAppWithOptions(request: SdkGenerateByAppRequest, runtime: $Util.RuntimeOptions): Promise<SdkGenerateByAppResponse>;
12081
13458
  sdkGenerateByApp(request: SdkGenerateByAppRequest): Promise<SdkGenerateByAppResponse>;
@@ -12085,30 +13462,202 @@ export default class Client extends OpenApi {
12085
13462
  sdkGenerateByGroup(request: SdkGenerateByGroupRequest): Promise<SdkGenerateByGroupResponse>;
12086
13463
  setAccessControlListAttributeWithOptions(request: SetAccessControlListAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetAccessControlListAttributeResponse>;
12087
13464
  setAccessControlListAttribute(request: SetAccessControlListAttributeRequest): Promise<SetAccessControlListAttributeResponse>;
13465
+ /**
13466
+ * * This operation is intended for API providers and callers.
13467
+ * * API providers can authorize any apps to call their APIs.
13468
+ * * API callers can authorize their own apps to call the APIs that they have purchased.
13469
+ *
13470
+ * @param request SetApisAuthoritiesRequest
13471
+ * @param runtime runtime options for this request RuntimeOptions
13472
+ * @return SetApisAuthoritiesResponse
13473
+ */
12088
13474
  setApisAuthoritiesWithOptions(request: SetApisAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<SetApisAuthoritiesResponse>;
13475
+ /**
13476
+ * * This operation is intended for API providers and callers.
13477
+ * * API providers can authorize any apps to call their APIs.
13478
+ * * API callers can authorize their own apps to call the APIs that they have purchased.
13479
+ *
13480
+ * @param request SetApisAuthoritiesRequest
13481
+ * @return SetApisAuthoritiesResponse
13482
+ */
12089
13483
  setApisAuthorities(request: SetApisAuthoritiesRequest): Promise<SetApisAuthoritiesResponse>;
13484
+ /**
13485
+ * * This operation is intended for API providers and callers.
13486
+ * * API providers can authorize any apps to call their APIs.
13487
+ * * API callers can authorize their own apps to call the APIs that they have purchased.
13488
+ *
13489
+ * @param request SetAppsAuthoritiesRequest
13490
+ * @param runtime runtime options for this request RuntimeOptions
13491
+ * @return SetAppsAuthoritiesResponse
13492
+ */
12090
13493
  setAppsAuthoritiesWithOptions(request: SetAppsAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<SetAppsAuthoritiesResponse>;
13494
+ /**
13495
+ * * This operation is intended for API providers and callers.
13496
+ * * API providers can authorize any apps to call their APIs.
13497
+ * * API callers can authorize their own apps to call the APIs that they have purchased.
13498
+ *
13499
+ * @param request SetAppsAuthoritiesRequest
13500
+ * @return SetAppsAuthoritiesResponse
13501
+ */
12091
13502
  setAppsAuthorities(request: SetAppsAuthoritiesRequest): Promise<SetAppsAuthoritiesResponse>;
12092
13503
  setDomainWithOptions(request: SetDomainRequest, runtime: $Util.RuntimeOptions): Promise<SetDomainResponse>;
12093
13504
  setDomain(request: SetDomainRequest): Promise<SetDomainResponse>;
13505
+ /**
13506
+ * * This operation is intended for API providers.
13507
+ * * The SSL certificate must match the custom domain name.
13508
+ * * After the SSL certificate is bound, HTTPS-based API services become available.
13509
+ *
13510
+ * @param request SetDomainCertificateRequest
13511
+ * @param runtime runtime options for this request RuntimeOptions
13512
+ * @return SetDomainCertificateResponse
13513
+ */
12094
13514
  setDomainCertificateWithOptions(request: SetDomainCertificateRequest, runtime: $Util.RuntimeOptions): Promise<SetDomainCertificateResponse>;
13515
+ /**
13516
+ * * This operation is intended for API providers.
13517
+ * * The SSL certificate must match the custom domain name.
13518
+ * * After the SSL certificate is bound, HTTPS-based API services become available.
13519
+ *
13520
+ * @param request SetDomainCertificateRequest
13521
+ * @return SetDomainCertificateResponse
13522
+ */
12095
13523
  setDomainCertificate(request: SetDomainCertificateRequest): Promise<SetDomainCertificateResponse>;
12096
13524
  setDomainWebSocketStatusWithOptions(request: SetDomainWebSocketStatusRequest, runtime: $Util.RuntimeOptions): Promise<SetDomainWebSocketStatusResponse>;
12097
13525
  setDomainWebSocketStatus(request: SetDomainWebSocketStatusRequest): Promise<SetDomainWebSocketStatusResponse>;
13526
+ /**
13527
+ * * This operation is intended for API callers.
13528
+ * * A maximum of 100 APIs can be bound at a time.
13529
+ *
13530
+ * @param request SetIpControlApisRequest
13531
+ * @param runtime runtime options for this request RuntimeOptions
13532
+ * @return SetIpControlApisResponse
13533
+ */
12098
13534
  setIpControlApisWithOptions(request: SetIpControlApisRequest, runtime: $Util.RuntimeOptions): Promise<SetIpControlApisResponse>;
13535
+ /**
13536
+ * * This operation is intended for API callers.
13537
+ * * A maximum of 100 APIs can be bound at a time.
13538
+ *
13539
+ * @param request SetIpControlApisRequest
13540
+ * @return SetIpControlApisResponse
13541
+ */
12099
13542
  setIpControlApis(request: SetIpControlApisRequest): Promise<SetIpControlApisResponse>;
13543
+ /**
13544
+ * Binds a signature key to APIs.
13545
+ *
13546
+ * @param request SetSignatureApisRequest
13547
+ * @param runtime runtime options for this request RuntimeOptions
13548
+ * @return SetSignatureApisResponse
13549
+ */
12100
13550
  setSignatureApisWithOptions(request: SetSignatureApisRequest, runtime: $Util.RuntimeOptions): Promise<SetSignatureApisResponse>;
13551
+ /**
13552
+ * Binds a signature key to APIs.
13553
+ *
13554
+ * @param request SetSignatureApisRequest
13555
+ * @return SetSignatureApisResponse
13556
+ */
12101
13557
  setSignatureApis(request: SetSignatureApisRequest): Promise<SetSignatureApisResponse>;
13558
+ /**
13559
+ * * This API is intended for API providers.
13560
+ * * This API allows you to bind a specific throttling policy to up to 100 APIs at a time.
13561
+ *
13562
+ * @param request SetTrafficControlApisRequest
13563
+ * @param runtime runtime options for this request RuntimeOptions
13564
+ * @return SetTrafficControlApisResponse
13565
+ */
12102
13566
  setTrafficControlApisWithOptions(request: SetTrafficControlApisRequest, runtime: $Util.RuntimeOptions): Promise<SetTrafficControlApisResponse>;
13567
+ /**
13568
+ * * This API is intended for API providers.
13569
+ * * This API allows you to bind a specific throttling policy to up to 100 APIs at a time.
13570
+ *
13571
+ * @param request SetTrafficControlApisRequest
13572
+ * @return SetTrafficControlApisResponse
13573
+ */
12103
13574
  setTrafficControlApis(request: SetTrafficControlApisRequest): Promise<SetTrafficControlApisResponse>;
13575
+ /**
13576
+ * * This operation is intended for API providers.
13577
+ * * This operation is used to authorize API Gateway to access your VPC instance.
13578
+ *
13579
+ * @param request SetVpcAccessRequest
13580
+ * @param runtime runtime options for this request RuntimeOptions
13581
+ * @return SetVpcAccessResponse
13582
+ */
12104
13583
  setVpcAccessWithOptions(request: SetVpcAccessRequest, runtime: $Util.RuntimeOptions): Promise<SetVpcAccessResponse>;
13584
+ /**
13585
+ * * This operation is intended for API providers.
13586
+ * * This operation is used to authorize API Gateway to access your VPC instance.
13587
+ *
13588
+ * @param request SetVpcAccessRequest
13589
+ * @return SetVpcAccessResponse
13590
+ */
12105
13591
  setVpcAccess(request: SetVpcAccessRequest): Promise<SetVpcAccessResponse>;
12106
13592
  setWildcardDomainPatternsWithOptions(request: SetWildcardDomainPatternsRequest, runtime: $Util.RuntimeOptions): Promise<SetWildcardDomainPatternsResponse>;
12107
13593
  setWildcardDomainPatterns(request: SetWildcardDomainPatternsRequest): Promise<SetWildcardDomainPatternsResponse>;
13594
+ /**
13595
+ * * This API is intended for API providers.
13596
+ * * The historical version can be obtained through the DescribeHistoryApis API.****
13597
+ * * Only APIs that have been published more than once have historical versions to switch to.
13598
+ * * This operation can only be performed on running APIs. Use caution when performing this operation because the operation cannot be undone after it has been completed and takes effect within 5 seconds.
13599
+ * * The switch operation is in essence a publish operation, and the reason for this operation must be provided.
13600
+ *
13601
+ * @param request SwitchApiRequest
13602
+ * @param runtime runtime options for this request RuntimeOptions
13603
+ * @return SwitchApiResponse
13604
+ */
12108
13605
  switchApiWithOptions(request: SwitchApiRequest, runtime: $Util.RuntimeOptions): Promise<SwitchApiResponse>;
13606
+ /**
13607
+ * * This API is intended for API providers.
13608
+ * * The historical version can be obtained through the DescribeHistoryApis API.****
13609
+ * * Only APIs that have been published more than once have historical versions to switch to.
13610
+ * * This operation can only be performed on running APIs. Use caution when performing this operation because the operation cannot be undone after it has been completed and takes effect within 5 seconds.
13611
+ * * The switch operation is in essence a publish operation, and the reason for this operation must be provided.
13612
+ *
13613
+ * @param request SwitchApiRequest
13614
+ * @return SwitchApiResponse
13615
+ */
12109
13616
  switchApi(request: SwitchApiRequest): Promise<SwitchApiResponse>;
13617
+ /**
13618
+ * * All tags (key-value pairs) are applied to all resources of a specified ResourceId, with each resource specified as ResourceId.N.
13619
+ * * Tag.N is a resource tag consisting of a key-value pair: Tag.N.Key and Tag.N.Value.
13620
+ * * If you call this operation to tag multiple resources simultaneously, either all or none of the resources will be tagged.
13621
+ * * If you specify Tag.1.Value in addition to required parameters, you must also specify Tag.1.Key. Otherwise, an InvalidParameter.TagKey error is reported. A tag that has a value must have the corresponding key, but the key can be an empty string.
13622
+ * * If a tag with the same key has been bound to a resource, the new tag will overwrite the existing one.
13623
+ *
13624
+ * @param request TagResourcesRequest
13625
+ * @param runtime runtime options for this request RuntimeOptions
13626
+ * @return TagResourcesResponse
13627
+ */
12110
13628
  tagResourcesWithOptions(request: TagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse>;
13629
+ /**
13630
+ * * All tags (key-value pairs) are applied to all resources of a specified ResourceId, with each resource specified as ResourceId.N.
13631
+ * * Tag.N is a resource tag consisting of a key-value pair: Tag.N.Key and Tag.N.Value.
13632
+ * * If you call this operation to tag multiple resources simultaneously, either all or none of the resources will be tagged.
13633
+ * * If you specify Tag.1.Value in addition to required parameters, you must also specify Tag.1.Key. Otherwise, an InvalidParameter.TagKey error is reported. A tag that has a value must have the corresponding key, but the key can be an empty string.
13634
+ * * If a tag with the same key has been bound to a resource, the new tag will overwrite the existing one.
13635
+ *
13636
+ * @param request TagResourcesRequest
13637
+ * @return TagResourcesResponse
13638
+ */
12111
13639
  tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse>;
13640
+ /**
13641
+ * * If you call this operation to untag multiple resources simultaneously, either all or none of the resources will be untagged.
13642
+ * * If you specify resource IDs without specifying tag keys and set the All parameter to true, all tags bound to the specified resources will be deleted. If a resource does not have any tags, the request is not processed but a success is returned.
13643
+ * * If you specify resource IDs without specifying tag keys and set the All parameter to false, the request is not processed but a success is returned.
13644
+ * * When tag keys are specified, the All parameter is invalid.
13645
+ * * When multiple resources and key-value pairs are specified, the specified tags bound to the resources are deleted.
13646
+ *
13647
+ * @param request UntagResourcesRequest
13648
+ * @param runtime runtime options for this request RuntimeOptions
13649
+ * @return UntagResourcesResponse
13650
+ */
12112
13651
  untagResourcesWithOptions(request: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse>;
13652
+ /**
13653
+ * * If you call this operation to untag multiple resources simultaneously, either all or none of the resources will be untagged.
13654
+ * * If you specify resource IDs without specifying tag keys and set the All parameter to true, all tags bound to the specified resources will be deleted. If a resource does not have any tags, the request is not processed but a success is returned.
13655
+ * * If you specify resource IDs without specifying tag keys and set the All parameter to false, the request is not processed but a success is returned.
13656
+ * * When tag keys are specified, the All parameter is invalid.
13657
+ * * When multiple resources and key-value pairs are specified, the specified tags bound to the resources are deleted.
13658
+ *
13659
+ * @param request UntagResourcesRequest
13660
+ * @return UntagResourcesResponse
13661
+ */
12113
13662
  untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
12114
13663
  }