@alicloud/cloudapi20160714 2.2.16 → 2.2.18

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/src/client.ts CHANGED
@@ -13301,11 +13301,13 @@ export class ResetAppCodeResponse extends $tea.Model {
13301
13301
 
13302
13302
  export class ResetAppSecretRequest extends $tea.Model {
13303
13303
  appKey?: string;
13304
+ newAppKey?: string;
13304
13305
  newAppSecret?: string;
13305
13306
  securityToken?: string;
13306
13307
  static names(): { [key: string]: string } {
13307
13308
  return {
13308
13309
  appKey: 'AppKey',
13310
+ newAppKey: 'NewAppKey',
13309
13311
  newAppSecret: 'NewAppSecret',
13310
13312
  securityToken: 'SecurityToken',
13311
13313
  };
@@ -13314,6 +13316,7 @@ export class ResetAppSecretRequest extends $tea.Model {
13314
13316
  static types(): { [key: string]: any } {
13315
13317
  return {
13316
13318
  appKey: 'string',
13319
+ newAppKey: 'string',
13317
13320
  newAppSecret: 'string',
13318
13321
  securityToken: 'string',
13319
13322
  };
@@ -14745,6 +14748,81 @@ export class UntagResourcesResponse extends $tea.Model {
14745
14748
  }
14746
14749
  }
14747
14750
 
14751
+ export class ValidateVpcConnectivityRequest extends $tea.Model {
14752
+ instanceId?: string;
14753
+ securityToken?: string;
14754
+ vpcAccessId?: string;
14755
+ static names(): { [key: string]: string } {
14756
+ return {
14757
+ instanceId: 'InstanceId',
14758
+ securityToken: 'SecurityToken',
14759
+ vpcAccessId: 'VpcAccessId',
14760
+ };
14761
+ }
14762
+
14763
+ static types(): { [key: string]: any } {
14764
+ return {
14765
+ instanceId: 'string',
14766
+ securityToken: 'string',
14767
+ vpcAccessId: 'string',
14768
+ };
14769
+ }
14770
+
14771
+ constructor(map?: { [key: string]: any }) {
14772
+ super(map);
14773
+ }
14774
+ }
14775
+
14776
+ export class ValidateVpcConnectivityResponseBody extends $tea.Model {
14777
+ connected?: boolean;
14778
+ ipType?: string;
14779
+ requestId?: string;
14780
+ static names(): { [key: string]: string } {
14781
+ return {
14782
+ connected: 'Connected',
14783
+ ipType: 'IpType',
14784
+ requestId: 'RequestId',
14785
+ };
14786
+ }
14787
+
14788
+ static types(): { [key: string]: any } {
14789
+ return {
14790
+ connected: 'boolean',
14791
+ ipType: 'string',
14792
+ requestId: 'string',
14793
+ };
14794
+ }
14795
+
14796
+ constructor(map?: { [key: string]: any }) {
14797
+ super(map);
14798
+ }
14799
+ }
14800
+
14801
+ export class ValidateVpcConnectivityResponse extends $tea.Model {
14802
+ headers: { [key: string]: string };
14803
+ statusCode: number;
14804
+ body: ValidateVpcConnectivityResponseBody;
14805
+ static names(): { [key: string]: string } {
14806
+ return {
14807
+ headers: 'headers',
14808
+ statusCode: 'statusCode',
14809
+ body: 'body',
14810
+ };
14811
+ }
14812
+
14813
+ static types(): { [key: string]: any } {
14814
+ return {
14815
+ headers: { 'type': 'map', 'keyType': 'string', 'valueType': 'string' },
14816
+ statusCode: 'number',
14817
+ body: ValidateVpcConnectivityResponseBody,
14818
+ };
14819
+ }
14820
+
14821
+ constructor(map?: { [key: string]: any }) {
14822
+ super(map);
14823
+ }
14824
+ }
14825
+
14748
14826
  export class BatchAbolishApisRequestApi extends $tea.Model {
14749
14827
  apiUid?: string;
14750
14828
  groupId?: string;
@@ -16219,6 +16297,8 @@ export class DescribeApiGroupResponseBodyCustomDomainsDomainItem extends $tea.Mo
16219
16297
  bindStageName?: string;
16220
16298
  certificateId?: string;
16221
16299
  certificateName?: string;
16300
+ certificateValidEnd?: number;
16301
+ certificateValidStart?: number;
16222
16302
  customDomainType?: string;
16223
16303
  domainBindingStatus?: string;
16224
16304
  domainCNAMEStatus?: string;
@@ -16234,6 +16314,8 @@ export class DescribeApiGroupResponseBodyCustomDomainsDomainItem extends $tea.Mo
16234
16314
  bindStageName: 'BindStageName',
16235
16315
  certificateId: 'CertificateId',
16236
16316
  certificateName: 'CertificateName',
16317
+ certificateValidEnd: 'CertificateValidEnd',
16318
+ certificateValidStart: 'CertificateValidStart',
16237
16319
  customDomainType: 'CustomDomainType',
16238
16320
  domainBindingStatus: 'DomainBindingStatus',
16239
16321
  domainCNAMEStatus: 'DomainCNAMEStatus',
@@ -16252,6 +16334,8 @@ export class DescribeApiGroupResponseBodyCustomDomainsDomainItem extends $tea.Mo
16252
16334
  bindStageName: 'string',
16253
16335
  certificateId: 'string',
16254
16336
  certificateName: 'string',
16337
+ certificateValidEnd: 'number',
16338
+ certificateValidStart: 'number',
16255
16339
  customDomainType: 'string',
16256
16340
  domainBindingStatus: 'string',
16257
16341
  domainCNAMEStatus: 'string',
@@ -18637,6 +18721,7 @@ export class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfi
18637
18721
  export class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfig extends $tea.Model {
18638
18722
  eventBridgeConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigEventBridgeConfig;
18639
18723
  functionComputeConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigFunctionComputeConfig;
18724
+ httpTargetHostName?: string;
18640
18725
  mockConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigMockConfig;
18641
18726
  ossConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigOssConfig;
18642
18727
  serviceAddress?: string;
@@ -18646,6 +18731,7 @@ export class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfi
18646
18731
  return {
18647
18732
  eventBridgeConfig: 'EventBridgeConfig',
18648
18733
  functionComputeConfig: 'FunctionComputeConfig',
18734
+ httpTargetHostName: 'HttpTargetHostName',
18649
18735
  mockConfig: 'MockConfig',
18650
18736
  ossConfig: 'OssConfig',
18651
18737
  serviceAddress: 'ServiceAddress',
@@ -18658,6 +18744,7 @@ export class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfi
18658
18744
  return {
18659
18745
  eventBridgeConfig: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigEventBridgeConfig,
18660
18746
  functionComputeConfig: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigFunctionComputeConfig,
18747
+ httpTargetHostName: 'string',
18661
18748
  mockConfig: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigMockConfig,
18662
18749
  ossConfig: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigOssConfig,
18663
18750
  serviceAddress: 'string',
@@ -20406,6 +20493,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceAttribute extends $te
20406
20493
  IPV6AclType?: string;
20407
20494
  instanceChargeType?: string;
20408
20495
  instanceCidrBlock?: string;
20496
+ instanceClusterId?: string;
20409
20497
  instanceId?: string;
20410
20498
  instanceName?: string;
20411
20499
  instanceRpsLimit?: number;
@@ -20446,6 +20534,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceAttribute extends $te
20446
20534
  IPV6AclType: 'IPV6AclType',
20447
20535
  instanceChargeType: 'InstanceChargeType',
20448
20536
  instanceCidrBlock: 'InstanceCidrBlock',
20537
+ instanceClusterId: 'InstanceClusterId',
20449
20538
  instanceId: 'InstanceId',
20450
20539
  instanceName: 'InstanceName',
20451
20540
  instanceRpsLimit: 'InstanceRpsLimit',
@@ -20489,6 +20578,7 @@ export class DescribeInstancesResponseBodyInstancesInstanceAttribute extends $te
20489
20578
  IPV6AclType: 'string',
20490
20579
  instanceChargeType: 'string',
20491
20580
  instanceCidrBlock: 'string',
20581
+ instanceClusterId: 'string',
20492
20582
  instanceId: 'string',
20493
20583
  instanceName: 'string',
20494
20584
  instanceRpsLimit: 'number',
@@ -22876,13 +22966,6 @@ export default class Client extends OpenApi {
22876
22966
  return EndpointUtil.getEndpointRules(productId, regionId, endpointRule, network, suffix);
22877
22967
  }
22878
22968
 
22879
- /**
22880
- * Unpublishes a specified API from a specified runtime environment.
22881
- *
22882
- * @param request AbolishApiRequest
22883
- * @param runtime runtime options for this request RuntimeOptions
22884
- * @return AbolishApiResponse
22885
- */
22886
22969
  async abolishApiWithOptions(request: AbolishApiRequest, runtime: $Util.RuntimeOptions): Promise<AbolishApiResponse> {
22887
22970
  Util.validateModel(request);
22888
22971
  let query = { };
@@ -22919,12 +23002,6 @@ export default class Client extends OpenApi {
22919
23002
  return $tea.cast<AbolishApiResponse>(await this.callApi(params, req, runtime), new AbolishApiResponse({}));
22920
23003
  }
22921
23004
 
22922
- /**
22923
- * Unpublishes a specified API from a specified runtime environment.
22924
- *
22925
- * @param request AbolishApiRequest
22926
- * @return AbolishApiResponse
22927
- */
22928
23005
  async abolishApi(request: AbolishApiRequest): Promise<AbolishApiResponse> {
22929
23006
  let runtime = new $Util.RuntimeOptions({ });
22930
23007
  return await this.abolishApiWithOptions(request, runtime);
@@ -22968,10 +23045,12 @@ export default class Client extends OpenApi {
22968
23045
  }
22969
23046
 
22970
23047
  /**
22971
- * When you call this operation, note that:
22972
- * * This operation is intended for API providers.
22973
- * * An added policy immediately takes effect on all APIs that are bound to the access control list (ACL).
22974
- * * A maximum of 100 policies can be added to an ACL.
23048
+ * The restriction policy on app IDs for a specific policy. You can restrict app IDs only for whitelists. The IpControlType values of whitelists are ALLOW.
23049
+ * * You can add only one app ID restriction policy at a time.
23050
+ * * If this parameter is empty, no restriction is imposed on the app IDs.
23051
+ * * If this parameter is not empty, there is restriction not only on IP addresses, but also on apps.
23052
+ * * Please note that if this parameter is not empty and the security authentication method of the API is No Authentication, all API calls are restricted.
23053
+ * * If this parameter is not empty for a blacklist, API Gateway automatically skips this parameter and sets only restriction on IP addresses. The IpControlType value of a blacklist is REFUSE.
22975
23054
  *
22976
23055
  * @param request AddIpControlPolicyItemRequest
22977
23056
  * @param runtime runtime options for this request RuntimeOptions
@@ -23014,10 +23093,12 @@ export default class Client extends OpenApi {
23014
23093
  }
23015
23094
 
23016
23095
  /**
23017
- * When you call this operation, note that:
23018
- * * This operation is intended for API providers.
23019
- * * An added policy immediately takes effect on all APIs that are bound to the access control list (ACL).
23020
- * * A maximum of 100 policies can be added to an ACL.
23096
+ * The restriction policy on app IDs for a specific policy. You can restrict app IDs only for whitelists. The IpControlType values of whitelists are ALLOW.
23097
+ * * You can add only one app ID restriction policy at a time.
23098
+ * * If this parameter is empty, no restriction is imposed on the app IDs.
23099
+ * * If this parameter is not empty, there is restriction not only on IP addresses, but also on apps.
23100
+ * * Please note that if this parameter is not empty and the security authentication method of the API is No Authentication, all API calls are restricted.
23101
+ * * If this parameter is not empty for a blacklist, API Gateway automatically skips this parameter and sets only restriction on IP addresses. The IpControlType value of a blacklist is REFUSE.
23021
23102
  *
23022
23103
  * @param request AddIpControlPolicyItemRequest
23023
23104
  * @return AddIpControlPolicyItemResponse
@@ -23028,9 +23109,9 @@ export default class Client extends OpenApi {
23028
23109
  }
23029
23110
 
23030
23111
  /**
23031
- * * This API is intended for API providers.
23032
- * * If the input SpecialKey already exists, the previous configuration is overwritten. Use caution when calling this operation.
23033
- * * 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.
23112
+ * The type of the special throttling policy. Valid values:
23113
+ * * **APP**
23114
+ * * **USER**
23034
23115
  *
23035
23116
  * @param request AddTrafficSpecialControlRequest
23036
23117
  * @param runtime runtime options for this request RuntimeOptions
@@ -23077,9 +23158,9 @@ export default class Client extends OpenApi {
23077
23158
  }
23078
23159
 
23079
23160
  /**
23080
- * * This API is intended for API providers.
23081
- * * If the input SpecialKey already exists, the previous configuration is overwritten. Use caution when calling this operation.
23082
- * * 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.
23161
+ * The type of the special throttling policy. Valid values:
23162
+ * * **APP**
23163
+ * * **USER**
23083
23164
  *
23084
23165
  * @param request AddTrafficSpecialControlRequest
23085
23166
  * @return AddTrafficSpecialControlResponse
@@ -23089,16 +23170,6 @@ export default class Client extends OpenApi {
23089
23170
  return await this.addTrafficSpecialControlWithOptions(request, runtime);
23090
23171
  }
23091
23172
 
23092
- /**
23093
- * * This operation is intended for API providers.
23094
- * * You can only bind plug-ins to published APIs.
23095
- * * The plug-in takes effect immediately after it is bound to an API.
23096
- * * If you bind a different plug-in to an API, this plug-in takes effect immediately.
23097
- *
23098
- * @param request AttachPluginRequest
23099
- * @param runtime runtime options for this request RuntimeOptions
23100
- * @return AttachPluginResponse
23101
- */
23102
23173
  async attachPluginWithOptions(request: AttachPluginRequest, runtime: $Util.RuntimeOptions): Promise<AttachPluginResponse> {
23103
23174
  Util.validateModel(request);
23104
23175
  let query = { };
@@ -23143,15 +23214,6 @@ export default class Client extends OpenApi {
23143
23214
  return $tea.cast<AttachPluginResponse>(await this.callApi(params, req, runtime), new AttachPluginResponse({}));
23144
23215
  }
23145
23216
 
23146
- /**
23147
- * * This operation is intended for API providers.
23148
- * * You can only bind plug-ins to published APIs.
23149
- * * The plug-in takes effect immediately after it is bound to an API.
23150
- * * If you bind a different plug-in to an API, this plug-in takes effect immediately.
23151
- *
23152
- * @param request AttachPluginRequest
23153
- * @return AttachPluginResponse
23154
- */
23155
23217
  async attachPlugin(request: AttachPluginRequest): Promise<AttachPluginResponse> {
23156
23218
  let runtime = new $Util.RuntimeOptions({ });
23157
23219
  return await this.attachPluginWithOptions(request, runtime);
@@ -23305,10 +23367,6 @@ export default class Client extends OpenApi {
23305
23367
  query["BackendId"] = request.backendId;
23306
23368
  }
23307
23369
 
23308
- if (!Util.isUnset(request.constantParameters)) {
23309
- query["ConstantParameters"] = request.constantParameters;
23310
- }
23311
-
23312
23370
  if (!Util.isUnset(request.description)) {
23313
23371
  query["Description"] = request.description;
23314
23372
  }
@@ -23317,14 +23375,6 @@ export default class Client extends OpenApi {
23317
23375
  query["DisableInternet"] = request.disableInternet;
23318
23376
  }
23319
23377
 
23320
- if (!Util.isUnset(request.errorCodeSamples)) {
23321
- query["ErrorCodeSamples"] = request.errorCodeSamples;
23322
- }
23323
-
23324
- if (!Util.isUnset(request.failResultSample)) {
23325
- query["FailResultSample"] = request.failResultSample;
23326
- }
23327
-
23328
23378
  if (!Util.isUnset(request.forceNonceCheck)) {
23329
23379
  query["ForceNonceCheck"] = request.forceNonceCheck;
23330
23380
  }
@@ -23341,22 +23391,10 @@ export default class Client extends OpenApi {
23341
23391
  query["RequestConfig"] = request.requestConfig;
23342
23392
  }
23343
23393
 
23344
- if (!Util.isUnset(request.requestParameters)) {
23345
- query["RequestParameters"] = request.requestParameters;
23346
- }
23347
-
23348
23394
  if (!Util.isUnset(request.resultBodyModel)) {
23349
23395
  query["ResultBodyModel"] = request.resultBodyModel;
23350
23396
  }
23351
23397
 
23352
- if (!Util.isUnset(request.resultDescriptions)) {
23353
- query["ResultDescriptions"] = request.resultDescriptions;
23354
- }
23355
-
23356
- if (!Util.isUnset(request.resultSample)) {
23357
- query["ResultSample"] = request.resultSample;
23358
- }
23359
-
23360
23398
  if (!Util.isUnset(request.resultType)) {
23361
23399
  query["ResultType"] = request.resultType;
23362
23400
  }
@@ -23369,28 +23407,54 @@ export default class Client extends OpenApi {
23369
23407
  query["ServiceConfig"] = request.serviceConfig;
23370
23408
  }
23371
23409
 
23372
- if (!Util.isUnset(request.serviceParameters)) {
23373
- query["ServiceParameters"] = request.serviceParameters;
23410
+ if (!Util.isUnset(request.visibility)) {
23411
+ query["Visibility"] = request.visibility;
23374
23412
  }
23375
23413
 
23376
- if (!Util.isUnset(request.serviceParametersMap)) {
23377
- query["ServiceParametersMap"] = request.serviceParametersMap;
23414
+ if (!Util.isUnset(request.webSocketApiType)) {
23415
+ query["WebSocketApiType"] = request.webSocketApiType;
23378
23416
  }
23379
23417
 
23380
- if (!Util.isUnset(request.systemParameters)) {
23381
- query["SystemParameters"] = request.systemParameters;
23418
+ let body : {[key: string ]: any} = { };
23419
+ if (!Util.isUnset(request.constantParameters)) {
23420
+ body["ConstantParameters"] = request.constantParameters;
23382
23421
  }
23383
23422
 
23384
- if (!Util.isUnset(request.visibility)) {
23385
- query["Visibility"] = request.visibility;
23423
+ if (!Util.isUnset(request.errorCodeSamples)) {
23424
+ body["ErrorCodeSamples"] = request.errorCodeSamples;
23386
23425
  }
23387
23426
 
23388
- if (!Util.isUnset(request.webSocketApiType)) {
23389
- query["WebSocketApiType"] = request.webSocketApiType;
23427
+ if (!Util.isUnset(request.failResultSample)) {
23428
+ body["FailResultSample"] = request.failResultSample;
23429
+ }
23430
+
23431
+ if (!Util.isUnset(request.requestParameters)) {
23432
+ body["RequestParameters"] = request.requestParameters;
23433
+ }
23434
+
23435
+ if (!Util.isUnset(request.resultDescriptions)) {
23436
+ body["ResultDescriptions"] = request.resultDescriptions;
23437
+ }
23438
+
23439
+ if (!Util.isUnset(request.resultSample)) {
23440
+ body["ResultSample"] = request.resultSample;
23441
+ }
23442
+
23443
+ if (!Util.isUnset(request.serviceParameters)) {
23444
+ body["ServiceParameters"] = request.serviceParameters;
23445
+ }
23446
+
23447
+ if (!Util.isUnset(request.serviceParametersMap)) {
23448
+ body["ServiceParametersMap"] = request.serviceParametersMap;
23449
+ }
23450
+
23451
+ if (!Util.isUnset(request.systemParameters)) {
23452
+ body["SystemParameters"] = request.systemParameters;
23390
23453
  }
23391
23454
 
23392
23455
  let req = new $OpenApi.OpenApiRequest({
23393
23456
  query: OpenApiUtil.query(query),
23457
+ body: OpenApiUtil.parseToMap(body),
23394
23458
  });
23395
23459
  let params = new $OpenApi.Params({
23396
23460
  action: "CreateApi",
@@ -23420,19 +23484,6 @@ export default class Client extends OpenApi {
23420
23484
  return await this.createApiWithOptions(request, runtime);
23421
23485
  }
23422
23486
 
23423
- /**
23424
- * 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.
23425
- * * This operation is intended for API providers.
23426
- * * Each user can create a maximum of 100 API groups in a region.
23427
- * * A second-level domain name is automatically allocated to the API group for testing purposes.
23428
- * * 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.
23429
- * * After you create an API group, you can bind a custom domain name to the group.
23430
- * * The QPS limit on this operation is 50 per user.
23431
- *
23432
- * @param request CreateApiGroupRequest
23433
- * @param runtime runtime options for this request RuntimeOptions
23434
- * @return CreateApiGroupResponse
23435
- */
23436
23487
  async createApiGroupWithOptions(request: CreateApiGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateApiGroupResponse> {
23437
23488
  Util.validateModel(request);
23438
23489
  let query = { };
@@ -23477,30 +23528,11 @@ export default class Client extends OpenApi {
23477
23528
  return $tea.cast<CreateApiGroupResponse>(await this.callApi(params, req, runtime), new CreateApiGroupResponse({}));
23478
23529
  }
23479
23530
 
23480
- /**
23481
- * 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.
23482
- * * This operation is intended for API providers.
23483
- * * Each user can create a maximum of 100 API groups in a region.
23484
- * * A second-level domain name is automatically allocated to the API group for testing purposes.
23485
- * * 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.
23486
- * * After you create an API group, you can bind a custom domain name to the group.
23487
- * * The QPS limit on this operation is 50 per user.
23488
- *
23489
- * @param request CreateApiGroupRequest
23490
- * @return CreateApiGroupResponse
23491
- */
23492
23531
  async createApiGroup(request: CreateApiGroupRequest): Promise<CreateApiGroupResponse> {
23493
23532
  let runtime = new $Util.RuntimeOptions({ });
23494
23533
  return await this.createApiGroupWithOptions(request, runtime);
23495
23534
  }
23496
23535
 
23497
- /**
23498
- * * This operation is intended for API providers.
23499
- *
23500
- * @param request CreateApiStageVariableRequest
23501
- * @param runtime runtime options for this request RuntimeOptions
23502
- * @return CreateApiStageVariableResponse
23503
- */
23504
23536
  async createApiStageVariableWithOptions(request: CreateApiStageVariableRequest, runtime: $Util.RuntimeOptions): Promise<CreateApiStageVariableResponse> {
23505
23537
  Util.validateModel(request);
23506
23538
  let query = { };
@@ -23549,29 +23581,11 @@ export default class Client extends OpenApi {
23549
23581
  return $tea.cast<CreateApiStageVariableResponse>(await this.callApi(params, req, runtime), new CreateApiStageVariableResponse({}));
23550
23582
  }
23551
23583
 
23552
- /**
23553
- * * This operation is intended for API providers.
23554
- *
23555
- * @param request CreateApiStageVariableRequest
23556
- * @return CreateApiStageVariableResponse
23557
- */
23558
23584
  async createApiStageVariable(request: CreateApiStageVariableRequest): Promise<CreateApiStageVariableResponse> {
23559
23585
  let runtime = new $Util.RuntimeOptions({ });
23560
23586
  return await this.createApiStageVariableWithOptions(request, runtime);
23561
23587
  }
23562
23588
 
23563
- /**
23564
- * * This operation is intended for API callers.
23565
- * * Each application has a key-secret pair which is used for identity verification when calling an API.
23566
- * * An application must be authorized to call an API.
23567
- * * Each application has only one key-secret pair which can be reset if it is leaked.
23568
- * * A maximum of 1,000 applications can be created for each Apsara Stack tenant account.
23569
- * * The QPS limit on this operation is 50 per user.
23570
- *
23571
- * @param request CreateAppRequest
23572
- * @param runtime runtime options for this request RuntimeOptions
23573
- * @return CreateAppResponse
23574
- */
23575
23589
  async createAppWithOptions(request: CreateAppRequest, runtime: $Util.RuntimeOptions): Promise<CreateAppResponse> {
23576
23590
  Util.validateModel(request);
23577
23591
  let query = { };
@@ -23620,17 +23634,6 @@ export default class Client extends OpenApi {
23620
23634
  return $tea.cast<CreateAppResponse>(await this.callApi(params, req, runtime), new CreateAppResponse({}));
23621
23635
  }
23622
23636
 
23623
- /**
23624
- * * This operation is intended for API callers.
23625
- * * Each application has a key-secret pair which is used for identity verification when calling an API.
23626
- * * An application must be authorized to call an API.
23627
- * * Each application has only one key-secret pair which can be reset if it is leaked.
23628
- * * A maximum of 1,000 applications can be created for each Apsara Stack tenant account.
23629
- * * The QPS limit on this operation is 50 per user.
23630
- *
23631
- * @param request CreateAppRequest
23632
- * @return CreateAppResponse
23633
- */
23634
23637
  async createApp(request: CreateAppRequest): Promise<CreateAppResponse> {
23635
23638
  let runtime = new $Util.RuntimeOptions({ });
23636
23639
  return await this.createAppWithOptions(request, runtime);
@@ -23926,16 +23929,6 @@ export default class Client extends OpenApi {
23926
23929
  return await this.createIntranetDomainWithOptions(request, runtime);
23927
23930
  }
23928
23931
 
23929
- /**
23930
- * * This operation is intended for API providers.
23931
- * * 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.
23932
- * * You can add policies to an ACL when you create the ACL.
23933
- * * If an ACL does not have any policy, the ACL is ineffective.
23934
- *
23935
- * @param request CreateIpControlRequest
23936
- * @param runtime runtime options for this request RuntimeOptions
23937
- * @return CreateIpControlResponse
23938
- */
23939
23932
  async createIpControlWithOptions(request: CreateIpControlRequest, runtime: $Util.RuntimeOptions): Promise<CreateIpControlResponse> {
23940
23933
  Util.validateModel(request);
23941
23934
  let query = { };
@@ -23976,15 +23969,6 @@ export default class Client extends OpenApi {
23976
23969
  return $tea.cast<CreateIpControlResponse>(await this.callApi(params, req, runtime), new CreateIpControlResponse({}));
23977
23970
  }
23978
23971
 
23979
- /**
23980
- * * This operation is intended for API providers.
23981
- * * 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.
23982
- * * You can add policies to an ACL when you create the ACL.
23983
- * * If an ACL does not have any policy, the ACL is ineffective.
23984
- *
23985
- * @param request CreateIpControlRequest
23986
- * @return CreateIpControlResponse
23987
- */
23988
23972
  async createIpControl(request: CreateIpControlRequest): Promise<CreateIpControlResponse> {
23989
23973
  let runtime = new $Util.RuntimeOptions({ });
23990
23974
  return await this.createIpControlWithOptions(request, runtime);
@@ -24128,16 +24112,6 @@ export default class Client extends OpenApi {
24128
24112
  return await this.createMonitorGroupWithOptions(request, runtime);
24129
24113
  }
24130
24114
 
24131
- /**
24132
- * * This operation is intended for API providers.
24133
- * * The number of plug-ins of the same type that each user can create is limited. Different limits apply to different plug-in types.
24134
- * * The plug-in definitions for advanced features are restricted.
24135
- * * Plug-ins must be bound to APIs to take effect. After a plug-in is bound, it takes effect on that API immediately.
24136
- *
24137
- * @param request CreatePluginRequest
24138
- * @param runtime runtime options for this request RuntimeOptions
24139
- * @return CreatePluginResponse
24140
- */
24141
24115
  async createPluginWithOptions(request: CreatePluginRequest, runtime: $Util.RuntimeOptions): Promise<CreatePluginResponse> {
24142
24116
  Util.validateModel(request);
24143
24117
  let query = { };
@@ -24182,25 +24156,13 @@ export default class Client extends OpenApi {
24182
24156
  return $tea.cast<CreatePluginResponse>(await this.callApi(params, req, runtime), new CreatePluginResponse({}));
24183
24157
  }
24184
24158
 
24185
- /**
24186
- * * This operation is intended for API providers.
24187
- * * The number of plug-ins of the same type that each user can create is limited. Different limits apply to different plug-in types.
24188
- * * The plug-in definitions for advanced features are restricted.
24189
- * * Plug-ins must be bound to APIs to take effect. After a plug-in is bound, it takes effect on that API immediately.
24190
- *
24191
- * @param request CreatePluginRequest
24192
- * @return CreatePluginResponse
24193
- */
24194
24159
  async createPlugin(request: CreatePluginRequest): Promise<CreatePluginResponse> {
24195
24160
  let runtime = new $Util.RuntimeOptions({ });
24196
24161
  return await this.createPluginWithOptions(request, runtime);
24197
24162
  }
24198
24163
 
24199
24164
  /**
24200
- * * This API is intended for API providers.
24201
- * * The API operation only creates a key policy. You must call the binding operation to bind the key to an API.
24202
- * * 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.
24203
- * * The QPS limit on this operation is 50 per user.
24165
+ * The Key value of the key. The value must be 6 to 20 characters in length and can contain letters, digits, and underscores (\\_). It must start with a letter.
24204
24166
  *
24205
24167
  * @param request CreateSignatureRequest
24206
24168
  * @param runtime runtime options for this request RuntimeOptions
@@ -24243,10 +24205,7 @@ export default class Client extends OpenApi {
24243
24205
  }
24244
24206
 
24245
24207
  /**
24246
- * * This API is intended for API providers.
24247
- * * The API operation only creates a key policy. You must call the binding operation to bind the key to an API.
24248
- * * 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.
24249
- * * The QPS limit on this operation is 50 per user.
24208
+ * The Key value of the key. The value must be 6 to 20 characters in length and can contain letters, digits, and underscores (\\_). It must start with a letter.
24250
24209
  *
24251
24210
  * @param request CreateSignatureRequest
24252
24211
  * @return CreateSignatureResponse
@@ -24257,9 +24216,7 @@ export default class Client extends OpenApi {
24257
24216
  }
24258
24217
 
24259
24218
  /**
24260
- * * This API is intended for API providers.
24261
- * * 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.
24262
- * * The QPS limit on this operation is 50 per user.
24219
+ * ThrottlingTest
24263
24220
  *
24264
24221
  * @param request CreateTrafficControlRequest
24265
24222
  * @param runtime runtime options for this request RuntimeOptions
@@ -24314,9 +24271,7 @@ export default class Client extends OpenApi {
24314
24271
  }
24315
24272
 
24316
24273
  /**
24317
- * * This API is intended for API providers.
24318
- * * 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.
24319
- * * The QPS limit on this operation is 50 per user.
24274
+ * ThrottlingTest
24320
24275
  *
24321
24276
  * @param request CreateTrafficControlRequest
24322
24277
  * @return CreateTrafficControlResponse
@@ -24360,7 +24315,7 @@ export default class Client extends OpenApi {
24360
24315
  }
24361
24316
 
24362
24317
  /**
24363
- * * This API is intended for API providers.
24318
+ * The ID of the request.
24364
24319
  *
24365
24320
  * @param request DeleteAllTrafficSpecialControlRequest
24366
24321
  * @param runtime runtime options for this request RuntimeOptions
@@ -24395,7 +24350,7 @@ export default class Client extends OpenApi {
24395
24350
  }
24396
24351
 
24397
24352
  /**
24398
- * * This API is intended for API providers.
24353
+ * The ID of the request.
24399
24354
  *
24400
24355
  * @param request DeleteAllTrafficSpecialControlRequest
24401
24356
  * @return DeleteAllTrafficSpecialControlResponse
@@ -24405,15 +24360,6 @@ export default class Client extends OpenApi {
24405
24360
  return await this.deleteAllTrafficSpecialControlWithOptions(request, runtime);
24406
24361
  }
24407
24362
 
24408
- /**
24409
- * * This operation is intended for API providers and cannot be undone after it is complete.
24410
- * * An API that is running in the runtime environment must be unpublished before you can delete the API.****
24411
- * * The QPS limit on this operation is 50 per user.
24412
- *
24413
- * @param request DeleteApiRequest
24414
- * @param runtime runtime options for this request RuntimeOptions
24415
- * @return DeleteApiResponse
24416
- */
24417
24363
  async deleteApiWithOptions(request: DeleteApiRequest, runtime: $Util.RuntimeOptions): Promise<DeleteApiResponse> {
24418
24364
  Util.validateModel(request);
24419
24365
  let query = { };
@@ -24446,30 +24392,11 @@ export default class Client extends OpenApi {
24446
24392
  return $tea.cast<DeleteApiResponse>(await this.callApi(params, req, runtime), new DeleteApiResponse({}));
24447
24393
  }
24448
24394
 
24449
- /**
24450
- * * This operation is intended for API providers and cannot be undone after it is complete.
24451
- * * An API that is running in the runtime environment must be unpublished before you can delete the API.****
24452
- * * The QPS limit on this operation is 50 per user.
24453
- *
24454
- * @param request DeleteApiRequest
24455
- * @return DeleteApiResponse
24456
- */
24457
24395
  async deleteApi(request: DeleteApiRequest): Promise<DeleteApiResponse> {
24458
24396
  let runtime = new $Util.RuntimeOptions({ });
24459
24397
  return await this.deleteApiWithOptions(request, runtime);
24460
24398
  }
24461
24399
 
24462
- /**
24463
- * * This operation is intended for API providers.
24464
- * * An API group that contains APIs cannot be deleted. To delete the API group, you must first delete its APIs.
24465
- * * After an API group is deleted, the second-level domain name bound to the API group is automatically invalidated.
24466
- * * If the specified API group does not exist, a success response is returned.
24467
- * * The QPS limit on this operation is 50 per user.
24468
- *
24469
- * @param request DeleteApiGroupRequest
24470
- * @param runtime runtime options for this request RuntimeOptions
24471
- * @return DeleteApiGroupResponse
24472
- */
24473
24400
  async deleteApiGroupWithOptions(request: DeleteApiGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteApiGroupResponse> {
24474
24401
  Util.validateModel(request);
24475
24402
  let query = { };
@@ -24502,16 +24429,6 @@ export default class Client extends OpenApi {
24502
24429
  return $tea.cast<DeleteApiGroupResponse>(await this.callApi(params, req, runtime), new DeleteApiGroupResponse({}));
24503
24430
  }
24504
24431
 
24505
- /**
24506
- * * This operation is intended for API providers.
24507
- * * An API group that contains APIs cannot be deleted. To delete the API group, you must first delete its APIs.
24508
- * * After an API group is deleted, the second-level domain name bound to the API group is automatically invalidated.
24509
- * * If the specified API group does not exist, a success response is returned.
24510
- * * The QPS limit on this operation is 50 per user.
24511
- *
24512
- * @param request DeleteApiGroupRequest
24513
- * @return DeleteApiGroupResponse
24514
- */
24515
24432
  async deleteApiGroup(request: DeleteApiGroupRequest): Promise<DeleteApiGroupResponse> {
24516
24433
  let runtime = new $Util.RuntimeOptions({ });
24517
24434
  return await this.deleteApiGroupWithOptions(request, runtime);
@@ -24558,15 +24475,6 @@ export default class Client extends OpenApi {
24558
24475
  return await this.deleteApiStageVariableWithOptions(request, runtime);
24559
24476
  }
24560
24477
 
24561
- /**
24562
- * * This operation is intended for API callers.
24563
- * * After an application is deleted, the application and its API authorization cannot be restored.
24564
- * * The QPS limit on this operation is 50 per user.
24565
- *
24566
- * @param request DeleteAppRequest
24567
- * @param runtime runtime options for this request RuntimeOptions
24568
- * @return DeleteAppResponse
24569
- */
24570
24478
  async deleteAppWithOptions(request: DeleteAppRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAppResponse> {
24571
24479
  Util.validateModel(request);
24572
24480
  let query = { };
@@ -24599,14 +24507,6 @@ export default class Client extends OpenApi {
24599
24507
  return $tea.cast<DeleteAppResponse>(await this.callApi(params, req, runtime), new DeleteAppResponse({}));
24600
24508
  }
24601
24509
 
24602
- /**
24603
- * * This operation is intended for API callers.
24604
- * * After an application is deleted, the application and its API authorization cannot be restored.
24605
- * * The QPS limit on this operation is 50 per user.
24606
- *
24607
- * @param request DeleteAppRequest
24608
- * @return DeleteAppResponse
24609
- */
24610
24510
  async deleteApp(request: DeleteAppRequest): Promise<DeleteAppResponse> {
24611
24511
  let runtime = new $Util.RuntimeOptions({ });
24612
24512
  return await this.deleteAppWithOptions(request, runtime);
@@ -24757,9 +24657,7 @@ export default class Client extends OpenApi {
24757
24657
  }
24758
24658
 
24759
24659
  /**
24760
- * * This operation is intended for API providers.
24761
- * * If the specified domain name does not exist, a successful response will still appear.
24762
- * * Unbinding a domain name from an API group will affect access to the APIs in the group. Exercise caution when using this operation.
24660
+ * The custom domain name.
24763
24661
  *
24764
24662
  * @param request DeleteDomainRequest
24765
24663
  * @param runtime runtime options for this request RuntimeOptions
@@ -24798,9 +24696,7 @@ export default class Client extends OpenApi {
24798
24696
  }
24799
24697
 
24800
24698
  /**
24801
- * * This operation is intended for API providers.
24802
- * * If the specified domain name does not exist, a successful response will still appear.
24803
- * * Unbinding a domain name from an API group will affect access to the APIs in the group. Exercise caution when using this operation.
24699
+ * The custom domain name.
24804
24700
  *
24805
24701
  * @param request DeleteDomainRequest
24806
24702
  * @return DeleteDomainResponse
@@ -24885,9 +24781,7 @@ export default class Client extends OpenApi {
24885
24781
  }
24886
24782
 
24887
24783
  /**
24888
- * * This operation is intended for API providers.
24889
- * * 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.
24890
- * * If you call this operation on an ACL that does not exist, a success message is returned.
24784
+ * The ID of the request.
24891
24785
  *
24892
24786
  * @param request DeleteIpControlRequest
24893
24787
  * @param runtime runtime options for this request RuntimeOptions
@@ -24922,9 +24816,7 @@ export default class Client extends OpenApi {
24922
24816
  }
24923
24817
 
24924
24818
  /**
24925
- * * This operation is intended for API providers.
24926
- * * 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.
24927
- * * If you call this operation on an ACL that does not exist, a success message is returned.
24819
+ * The ID of the request.
24928
24820
  *
24929
24821
  * @param request DeleteIpControlRequest
24930
24822
  * @return DeleteIpControlResponse
@@ -25037,14 +24929,6 @@ export default class Client extends OpenApi {
25037
24929
  return await this.deleteMonitorGroupWithOptions(request, runtime);
25038
24930
  }
25039
24931
 
25040
- /**
25041
- * * This operation is intended for API providers.
25042
- * * You must first unbind the plug-in from the API. Otherwise, an error is reported when you delete the plug-in.
25043
- *
25044
- * @param request DeletePluginRequest
25045
- * @param runtime runtime options for this request RuntimeOptions
25046
- * @return DeletePluginResponse
25047
- */
25048
24932
  async deletePluginWithOptions(request: DeletePluginRequest, runtime: $Util.RuntimeOptions): Promise<DeletePluginResponse> {
25049
24933
  Util.validateModel(request);
25050
24934
  let query = { };
@@ -25077,23 +24961,13 @@ export default class Client extends OpenApi {
25077
24961
  return $tea.cast<DeletePluginResponse>(await this.callApi(params, req, runtime), new DeletePluginResponse({}));
25078
24962
  }
25079
24963
 
25080
- /**
25081
- * * This operation is intended for API providers.
25082
- * * You must first unbind the plug-in from the API. Otherwise, an error is reported when you delete the plug-in.
25083
- *
25084
- * @param request DeletePluginRequest
25085
- * @return DeletePluginResponse
25086
- */
25087
24964
  async deletePlugin(request: DeletePluginRequest): Promise<DeletePluginResponse> {
25088
24965
  let runtime = new $Util.RuntimeOptions({ });
25089
24966
  return await this.deletePluginWithOptions(request, runtime);
25090
24967
  }
25091
24968
 
25092
24969
  /**
25093
- * * This API is intended for API providers.
25094
- * * This API operation deletes an existing backend signature key.
25095
- * * You cannot delete a key that is bound to an API. To delete the key, you must unbind it first.
25096
- * * The QPS limit on this operation is 50 per user.
24970
+ * The ID of the request.
25097
24971
  *
25098
24972
  * @param request DeleteSignatureRequest
25099
24973
  * @param runtime runtime options for this request RuntimeOptions
@@ -25128,10 +25002,7 @@ export default class Client extends OpenApi {
25128
25002
  }
25129
25003
 
25130
25004
  /**
25131
- * * This API is intended for API providers.
25132
- * * This API operation deletes an existing backend signature key.
25133
- * * You cannot delete a key that is bound to an API. To delete the key, you must unbind it first.
25134
- * * The QPS limit on this operation is 50 per user.
25005
+ * The ID of the request.
25135
25006
  *
25136
25007
  * @param request DeleteSignatureRequest
25137
25008
  * @return DeleteSignatureResponse
@@ -25141,15 +25012,6 @@ export default class Client extends OpenApi {
25141
25012
  return await this.deleteSignatureWithOptions(request, runtime);
25142
25013
  }
25143
25014
 
25144
- /**
25145
- * * This API is intended for API providers.
25146
- * * 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.
25147
- * * The QPS limit on this operation is 50 per user.
25148
- *
25149
- * @param request DeleteTrafficControlRequest
25150
- * @param runtime runtime options for this request RuntimeOptions
25151
- * @return DeleteTrafficControlResponse
25152
- */
25153
25015
  async deleteTrafficControlWithOptions(request: DeleteTrafficControlRequest, runtime: $Util.RuntimeOptions): Promise<DeleteTrafficControlResponse> {
25154
25016
  Util.validateModel(request);
25155
25017
  let query = { };
@@ -25178,22 +25040,15 @@ export default class Client extends OpenApi {
25178
25040
  return $tea.cast<DeleteTrafficControlResponse>(await this.callApi(params, req, runtime), new DeleteTrafficControlResponse({}));
25179
25041
  }
25180
25042
 
25181
- /**
25182
- * * This API is intended for API providers.
25183
- * * 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.
25184
- * * The QPS limit on this operation is 50 per user.
25185
- *
25186
- * @param request DeleteTrafficControlRequest
25187
- * @return DeleteTrafficControlResponse
25188
- */
25189
25043
  async deleteTrafficControl(request: DeleteTrafficControlRequest): Promise<DeleteTrafficControlResponse> {
25190
25044
  let runtime = new $Util.RuntimeOptions({ });
25191
25045
  return await this.deleteTrafficControlWithOptions(request, runtime);
25192
25046
  }
25193
25047
 
25194
25048
  /**
25195
- * * This API is intended for API providers.
25196
- * * You can obtain the input parameters required in this operation by calling other APIs.
25049
+ * The type of the special throttling policy. Valid values:
25050
+ * * **APP**
25051
+ * * **USER**
25197
25052
  *
25198
25053
  * @param request DeleteTrafficSpecialControlRequest
25199
25054
  * @param runtime runtime options for this request RuntimeOptions
@@ -25236,8 +25091,9 @@ export default class Client extends OpenApi {
25236
25091
  }
25237
25092
 
25238
25093
  /**
25239
- * * This API is intended for API providers.
25240
- * * You can obtain the input parameters required in this operation by calling other APIs.
25094
+ * The type of the special throttling policy. Valid values:
25095
+ * * **APP**
25096
+ * * **USER**
25241
25097
  *
25242
25098
  * @param request DeleteTrafficSpecialControlRequest
25243
25099
  * @return DeleteTrafficSpecialControlResponse
@@ -25248,9 +25104,7 @@ export default class Client extends OpenApi {
25248
25104
  }
25249
25105
 
25250
25106
  /**
25251
- * * This operation is intended for API providers. Only the API that you have defined and published to a runtime environment can be called.
25252
- * * An API is published to a cluster in less than 5 seconds.
25253
- * * The QPS limit on this operation is 50 per user.
25107
+ * The ID of the API.
25254
25108
  *
25255
25109
  * @param request DeployApiRequest
25256
25110
  * @param runtime runtime options for this request RuntimeOptions
@@ -25297,9 +25151,7 @@ export default class Client extends OpenApi {
25297
25151
  }
25298
25152
 
25299
25153
  /**
25300
- * * This operation is intended for API providers. Only the API that you have defined and published to a runtime environment can be called.
25301
- * * An API is published to a cluster in less than 5 seconds.
25302
- * * The QPS limit on this operation is 50 per user.
25154
+ * The ID of the API.
25303
25155
  *
25304
25156
  * @param request DeployApiRequest
25305
25157
  * @return DeployApiResponse
@@ -25421,7 +25273,7 @@ export default class Client extends OpenApi {
25421
25273
  }
25422
25274
 
25423
25275
  /**
25424
- * * This operation is intended for API providers.
25276
+ * The ID of the public key.
25425
25277
  *
25426
25278
  * @param request DescribeApiRequest
25427
25279
  * @param runtime runtime options for this request RuntimeOptions
@@ -25460,7 +25312,7 @@ export default class Client extends OpenApi {
25460
25312
  }
25461
25313
 
25462
25314
  /**
25463
- * * This operation is intended for API providers.
25315
+ * The ID of the public key.
25464
25316
  *
25465
25317
  * @param request DescribeApiRequest
25466
25318
  * @return DescribeApiResponse
@@ -25470,16 +25322,6 @@ export default class Client extends OpenApi {
25470
25322
  return await this.describeApiWithOptions(request, runtime);
25471
25323
  }
25472
25324
 
25473
- /**
25474
- * * 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.****************
25475
- * * When you call this operation as an API caller, the service information, parameter definitions, and other details of the API you specify are returned.
25476
- * * 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.
25477
- * * 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.
25478
- *
25479
- * @param request DescribeApiDocRequest
25480
- * @param runtime runtime options for this request RuntimeOptions
25481
- * @return DescribeApiDocResponse
25482
- */
25483
25325
  async describeApiDocWithOptions(request: DescribeApiDocRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiDocResponse> {
25484
25326
  Util.validateModel(request);
25485
25327
  let query = { };
@@ -25516,15 +25358,6 @@ export default class Client extends OpenApi {
25516
25358
  return $tea.cast<DescribeApiDocResponse>(await this.callApi(params, req, runtime), new DescribeApiDocResponse({}));
25517
25359
  }
25518
25360
 
25519
- /**
25520
- * * 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.****************
25521
- * * When you call this operation as an API caller, the service information, parameter definitions, and other details of the API you specify are returned.
25522
- * * 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.
25523
- * * 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.
25524
- *
25525
- * @param request DescribeApiDocRequest
25526
- * @return DescribeApiDocResponse
25527
- */
25528
25361
  async describeApiDoc(request: DescribeApiDocRequest): Promise<DescribeApiDocResponse> {
25529
25362
  let runtime = new $Util.RuntimeOptions({ });
25530
25363
  return await this.describeApiDocWithOptions(request, runtime);
@@ -25613,13 +25446,6 @@ export default class Client extends OpenApi {
25613
25446
  return await this.describeApiGroupVpcWhitelistWithOptions(request, runtime);
25614
25447
  }
25615
25448
 
25616
- /**
25617
- * * This operation is intended for API providers.
25618
- *
25619
- * @param request DescribeApiGroupsRequest
25620
- * @param runtime runtime options for this request RuntimeOptions
25621
- * @return DescribeApiGroupsResponse
25622
- */
25623
25449
  async describeApiGroupsWithOptions(request: DescribeApiGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiGroupsResponse> {
25624
25450
  Util.validateModel(request);
25625
25451
  let query = { };
@@ -25676,20 +25502,15 @@ export default class Client extends OpenApi {
25676
25502
  return $tea.cast<DescribeApiGroupsResponse>(await this.callApi(params, req, runtime), new DescribeApiGroupsResponse({}));
25677
25503
  }
25678
25504
 
25679
- /**
25680
- * * This operation is intended for API providers.
25681
- *
25682
- * @param request DescribeApiGroupsRequest
25683
- * @return DescribeApiGroupsResponse
25684
- */
25685
25505
  async describeApiGroups(request: DescribeApiGroupsRequest): Promise<DescribeApiGroupsResponse> {
25686
25506
  let runtime = new $Util.RuntimeOptions({ });
25687
25507
  return await this.describeApiGroupsWithOptions(request, runtime);
25688
25508
  }
25689
25509
 
25690
25510
  /**
25691
- * * This operation is intended for API providers. Only APIs which have been published have a historical version record.
25692
- * * This operation allows you to obtain the API historical versions which can be used to call other APIs.
25511
+ * The name of the runtime environment. Valid values:
25512
+ * * **RELEASE**
25513
+ * * **TEST: the test environment**
25693
25514
  *
25694
25515
  * @param request DescribeApiHistoriesRequest
25695
25516
  * @param runtime runtime options for this request RuntimeOptions
@@ -25744,8 +25565,9 @@ export default class Client extends OpenApi {
25744
25565
  }
25745
25566
 
25746
25567
  /**
25747
- * * This operation is intended for API providers. Only APIs which have been published have a historical version record.
25748
- * * This operation allows you to obtain the API historical versions which can be used to call other APIs.
25568
+ * The name of the runtime environment. Valid values:
25569
+ * * **RELEASE**
25570
+ * * **TEST: the test environment**
25749
25571
  *
25750
25572
  * @param request DescribeApiHistoriesRequest
25751
25573
  * @return DescribeApiHistoriesResponse
@@ -25818,9 +25640,7 @@ export default class Client extends OpenApi {
25818
25640
  }
25819
25641
 
25820
25642
  /**
25821
- * * This operation is intended for API callers.
25822
- * * If an optional parameter is not specified, all results are returned on separate pages.
25823
- * ·
25643
+ * The ID of the API group.
25824
25644
  *
25825
25645
  * @param request DescribeApiIpControlsRequest
25826
25646
  * @param runtime runtime options for this request RuntimeOptions
@@ -25871,9 +25691,7 @@ export default class Client extends OpenApi {
25871
25691
  }
25872
25692
 
25873
25693
  /**
25874
- * * This operation is intended for API callers.
25875
- * * If an optional parameter is not specified, all results are returned on separate pages.
25876
- * ·
25694
+ * The ID of the API group.
25877
25695
  *
25878
25696
  * @param request DescribeApiIpControlsRequest
25879
25697
  * @return DescribeApiIpControlsResponse
@@ -25883,15 +25701,6 @@ export default class Client extends OpenApi {
25883
25701
  return await this.describeApiIpControlsWithOptions(request, runtime);
25884
25702
  }
25885
25703
 
25886
- /**
25887
- * You can call this operation to query the latency metrics in milliseconds for a specified API.
25888
- * * This API is intended for API providers.
25889
- * * Only statistics for API calls made in the release environment are collected by default.
25890
- *
25891
- * @param request DescribeApiLatencyDataRequest
25892
- * @param runtime runtime options for this request RuntimeOptions
25893
- * @return DescribeApiLatencyDataResponse
25894
- */
25895
25704
  async describeApiLatencyDataWithOptions(request: DescribeApiLatencyDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiLatencyDataResponse> {
25896
25705
  Util.validateModel(request);
25897
25706
  let query = { };
@@ -25936,14 +25745,6 @@ export default class Client extends OpenApi {
25936
25745
  return $tea.cast<DescribeApiLatencyDataResponse>(await this.callApi(params, req, runtime), new DescribeApiLatencyDataResponse({}));
25937
25746
  }
25938
25747
 
25939
- /**
25940
- * You can call this operation to query the latency metrics in milliseconds for a specified API.
25941
- * * This API is intended for API providers.
25942
- * * Only statistics for API calls made in the release environment are collected by default.
25943
- *
25944
- * @param request DescribeApiLatencyDataRequest
25945
- * @return DescribeApiLatencyDataResponse
25946
- */
25947
25748
  async describeApiLatencyData(request: DescribeApiLatencyDataRequest): Promise<DescribeApiLatencyDataResponse> {
25948
25749
  let runtime = new $Util.RuntimeOptions({ });
25949
25750
  return await this.describeApiLatencyDataWithOptions(request, runtime);
@@ -25986,14 +25787,6 @@ export default class Client extends OpenApi {
25986
25787
  return await this.describeApiMarketAttributesWithOptions(request, runtime);
25987
25788
  }
25988
25789
 
25989
- /**
25990
- * * This API is intended for API providers.
25991
- * * Only statistics for API calls made in the release environment are collected by default.
25992
- *
25993
- * @param request DescribeApiQpsDataRequest
25994
- * @param runtime runtime options for this request RuntimeOptions
25995
- * @return DescribeApiQpsDataResponse
25996
- */
25997
25790
  async describeApiQpsDataWithOptions(request: DescribeApiQpsDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiQpsDataResponse> {
25998
25791
  Util.validateModel(request);
25999
25792
  let query = { };
@@ -26038,20 +25831,15 @@ export default class Client extends OpenApi {
26038
25831
  return $tea.cast<DescribeApiQpsDataResponse>(await this.callApi(params, req, runtime), new DescribeApiQpsDataResponse({}));
26039
25832
  }
26040
25833
 
26041
- /**
26042
- * * This API is intended for API providers.
26043
- * * Only statistics for API calls made in the release environment are collected by default.
26044
- *
26045
- * @param request DescribeApiQpsDataRequest
26046
- * @return DescribeApiQpsDataResponse
26047
- */
26048
25834
  async describeApiQpsData(request: DescribeApiQpsDataRequest): Promise<DescribeApiQpsDataResponse> {
26049
25835
  let runtime = new $Util.RuntimeOptions({ });
26050
25836
  return await this.describeApiQpsDataWithOptions(request, runtime);
26051
25837
  }
26052
25838
 
26053
25839
  /**
26054
- * Queries the backend signature keys that are bound to the APIs of a specified API group in a specified environment.
25840
+ * The runtime environment. Valid values:
25841
+ * * **RELEASE**
25842
+ * * **TEST**
26055
25843
  *
26056
25844
  * @param request DescribeApiSignaturesRequest
26057
25845
  * @param runtime runtime options for this request RuntimeOptions
@@ -26102,7 +25890,9 @@ export default class Client extends OpenApi {
26102
25890
  }
26103
25891
 
26104
25892
  /**
26105
- * Queries the backend signature keys that are bound to the APIs of a specified API group in a specified environment.
25893
+ * The runtime environment. Valid values:
25894
+ * * **RELEASE**
25895
+ * * **TEST**
26106
25896
  *
26107
25897
  * @param request DescribeApiSignaturesRequest
26108
25898
  * @return DescribeApiSignaturesResponse
@@ -26113,7 +25903,9 @@ export default class Client extends OpenApi {
26113
25903
  }
26114
25904
 
26115
25905
  /**
26116
- * Queries the throttling policies bound to all members of an API group in a specified environment.
25906
+ * The runtime environment of the API. Valid values:
25907
+ * * **RELEASE**
25908
+ * * **TEST**: the test environment
26117
25909
  *
26118
25910
  * @param request DescribeApiTrafficControlsRequest
26119
25911
  * @param runtime runtime options for this request RuntimeOptions
@@ -26164,7 +25956,9 @@ export default class Client extends OpenApi {
26164
25956
  }
26165
25957
 
26166
25958
  /**
26167
- * Queries the throttling policies bound to all members of an API group in a specified environment.
25959
+ * The runtime environment of the API. Valid values:
25960
+ * * **RELEASE**
25961
+ * * **TEST**: the test environment
26168
25962
  *
26169
25963
  * @param request DescribeApiTrafficControlsRequest
26170
25964
  * @return DescribeApiTrafficControlsResponse
@@ -26174,14 +25968,6 @@ export default class Client extends OpenApi {
26174
25968
  return await this.describeApiTrafficControlsWithOptions(request, runtime);
26175
25969
  }
26176
25970
 
26177
- /**
26178
- * * This API is intended for API providers.
26179
- * * Only statistics for API calls made in the release environment are collected by default.
26180
- *
26181
- * @param request DescribeApiTrafficDataRequest
26182
- * @param runtime runtime options for this request RuntimeOptions
26183
- * @return DescribeApiTrafficDataResponse
26184
- */
26185
25971
  async describeApiTrafficDataWithOptions(request: DescribeApiTrafficDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiTrafficDataResponse> {
26186
25972
  Util.validateModel(request);
26187
25973
  let query = { };
@@ -26226,22 +26012,15 @@ export default class Client extends OpenApi {
26226
26012
  return $tea.cast<DescribeApiTrafficDataResponse>(await this.callApi(params, req, runtime), new DescribeApiTrafficDataResponse({}));
26227
26013
  }
26228
26014
 
26229
- /**
26230
- * * This API is intended for API providers.
26231
- * * Only statistics for API calls made in the release environment are collected by default.
26232
- *
26233
- * @param request DescribeApiTrafficDataRequest
26234
- * @return DescribeApiTrafficDataResponse
26235
- */
26236
26015
  async describeApiTrafficData(request: DescribeApiTrafficDataRequest): Promise<DescribeApiTrafficDataResponse> {
26237
26016
  let runtime = new $Util.RuntimeOptions({ });
26238
26017
  return await this.describeApiTrafficDataWithOptions(request, runtime);
26239
26018
  }
26240
26019
 
26241
26020
  /**
26242
- * * This API is intended for API providers.
26243
- * * The list of all APIs that belong to the definition and their brief information are returned.
26244
- * * 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.
26021
+ * * This operation is intended for API callers.
26022
+ * * This operation returns a list of all APIs that are being defined. The basic information about these APIs is also returned in the list.
26023
+ * * This operation returns all APIs that are being edited, regardless of their environments. The returned definitions may be different from the definitions in the environments.
26245
26024
  *
26246
26025
  * @param request DescribeApisRequest
26247
26026
  * @param runtime runtime options for this request RuntimeOptions
@@ -26324,9 +26103,9 @@ export default class Client extends OpenApi {
26324
26103
  }
26325
26104
 
26326
26105
  /**
26327
- * * This API is intended for API providers.
26328
- * * The list of all APIs that belong to the definition and their brief information are returned.
26329
- * * 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.
26106
+ * * This operation is intended for API callers.
26107
+ * * This operation returns a list of all APIs that are being defined. The basic information about these APIs is also returned in the list.
26108
+ * * This operation returns all APIs that are being edited, regardless of their environments. The returned definitions may be different from the definitions in the environments.
26330
26109
  *
26331
26110
  * @param request DescribeApisRequest
26332
26111
  * @return DescribeApisResponse
@@ -26443,8 +26222,7 @@ export default class Client extends OpenApi {
26443
26222
  }
26444
26223
 
26445
26224
  /**
26446
- * * This API is intended for API providers.
26447
- * * You can specify PageNumber to obtain the result on the specified page.
26225
+ * The number of entries to return on each page. Maximum value: 100. Default value: 10.
26448
26226
  *
26449
26227
  * @param request DescribeApisByIpControlRequest
26450
26228
  * @param runtime runtime options for this request RuntimeOptions
@@ -26487,8 +26265,7 @@ export default class Client extends OpenApi {
26487
26265
  }
26488
26266
 
26489
26267
  /**
26490
- * * This API is intended for API providers.
26491
- * * You can specify PageNumber to obtain the result on the specified page.
26268
+ * The number of entries to return on each page. Maximum value: 100. Default value: 10.
26492
26269
  *
26493
26270
  * @param request DescribeApisByIpControlRequest
26494
26271
  * @return DescribeApisByIpControlResponse
@@ -26499,7 +26276,7 @@ export default class Client extends OpenApi {
26499
26276
  }
26500
26277
 
26501
26278
  /**
26502
- * Queries the APIs to which a specified backend signature key is bound.
26279
+ * The ID of the signature key.
26503
26280
  *
26504
26281
  * @param request DescribeApisBySignatureRequest
26505
26282
  * @param runtime runtime options for this request RuntimeOptions
@@ -26542,7 +26319,7 @@ export default class Client extends OpenApi {
26542
26319
  }
26543
26320
 
26544
26321
  /**
26545
- * Queries the APIs to which a specified backend signature key is bound.
26322
+ * The ID of the signature key.
26546
26323
  *
26547
26324
  * @param request DescribeApisBySignatureRequest
26548
26325
  * @return DescribeApisBySignatureResponse
@@ -26553,8 +26330,7 @@ export default class Client extends OpenApi {
26553
26330
  }
26554
26331
 
26555
26332
  /**
26556
- * * This API is intended for API providers.
26557
- * * You can specify PageNumber to obtain the result on the specified page.
26333
+ * The number of entries to return on each page. Maximum value: 100. Default value: 10.
26558
26334
  *
26559
26335
  * @param request DescribeApisByTrafficControlRequest
26560
26336
  * @param runtime runtime options for this request RuntimeOptions
@@ -26597,8 +26373,7 @@ export default class Client extends OpenApi {
26597
26373
  }
26598
26374
 
26599
26375
  /**
26600
- * * This API is intended for API providers.
26601
- * * You can specify PageNumber to obtain the result on the specified page.
26376
+ * The number of entries to return on each page. Maximum value: 100. Default value: 10.
26602
26377
  *
26603
26378
  * @param request DescribeApisByTrafficControlRequest
26604
26379
  * @return DescribeApisByTrafficControlResponse
@@ -26641,14 +26416,6 @@ export default class Client extends OpenApi {
26641
26416
  return await this.describeAppWithOptions(request, runtime);
26642
26417
  }
26643
26418
 
26644
- /**
26645
- * * This operation is intended for API callers.
26646
- * * AppId is optional.
26647
- *
26648
- * @param request DescribeAppAttributesRequest
26649
- * @param runtime runtime options for this request RuntimeOptions
26650
- * @return DescribeAppAttributesResponse
26651
- */
26652
26419
  async describeAppAttributesWithOptions(request: DescribeAppAttributesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAppAttributesResponse> {
26653
26420
  Util.validateModel(request);
26654
26421
  let query = { };
@@ -26709,25 +26476,11 @@ export default class Client extends OpenApi {
26709
26476
  return $tea.cast<DescribeAppAttributesResponse>(await this.callApi(params, req, runtime), new DescribeAppAttributesResponse({}));
26710
26477
  }
26711
26478
 
26712
- /**
26713
- * * This operation is intended for API callers.
26714
- * * AppId is optional.
26715
- *
26716
- * @param request DescribeAppAttributesRequest
26717
- * @return DescribeAppAttributesResponse
26718
- */
26719
26479
  async describeAppAttributes(request: DescribeAppAttributesRequest): Promise<DescribeAppAttributesResponse> {
26720
26480
  let runtime = new $Util.RuntimeOptions({ });
26721
26481
  return await this.describeAppAttributesWithOptions(request, runtime);
26722
26482
  }
26723
26483
 
26724
- /**
26725
- * * This operation is intended for API callers.
26726
- *
26727
- * @param request DescribeAppSecurityRequest
26728
- * @param runtime runtime options for this request RuntimeOptions
26729
- * @return DescribeAppSecurityResponse
26730
- */
26731
26484
  async describeAppSecurityWithOptions(request: DescribeAppSecurityRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAppSecurityResponse> {
26732
26485
  Util.validateModel(request);
26733
26486
  let query = { };
@@ -26760,19 +26513,13 @@ export default class Client extends OpenApi {
26760
26513
  return $tea.cast<DescribeAppSecurityResponse>(await this.callApi(params, req, runtime), new DescribeAppSecurityResponse({}));
26761
26514
  }
26762
26515
 
26763
- /**
26764
- * * This operation is intended for API callers.
26765
- *
26766
- * @param request DescribeAppSecurityRequest
26767
- * @return DescribeAppSecurityResponse
26768
- */
26769
26516
  async describeAppSecurity(request: DescribeAppSecurityRequest): Promise<DescribeAppSecurityResponse> {
26770
26517
  let runtime = new $Util.RuntimeOptions({ });
26771
26518
  return await this.describeAppSecurityWithOptions(request, runtime);
26772
26519
  }
26773
26520
 
26774
26521
  /**
26775
- * Queries the apps. App information is returned only to the app owner.
26522
+ * The ID of the app.
26776
26523
  *
26777
26524
  * @param request DescribeAppsRequest
26778
26525
  * @param runtime runtime options for this request RuntimeOptions
@@ -26819,7 +26566,7 @@ export default class Client extends OpenApi {
26819
26566
  }
26820
26567
 
26821
26568
  /**
26822
- * Queries the apps. App information is returned only to the app owner.
26569
+ * The ID of the app.
26823
26570
  *
26824
26571
  * @param request DescribeAppsRequest
26825
26572
  * @return DescribeAppsResponse
@@ -26830,8 +26577,7 @@ export default class Client extends OpenApi {
26830
26577
  }
26831
26578
 
26832
26579
  /**
26833
- * * This operation is intended for API callers.
26834
- * * The specified application can call all APIs included in the responses.
26580
+ * The number of the page to return. Pages start from page 1. Default value: 1.
26835
26581
  *
26836
26582
  * @param request DescribeAuthorizedApisRequest
26837
26583
  * @param runtime runtime options for this request RuntimeOptions
@@ -26874,8 +26620,7 @@ export default class Client extends OpenApi {
26874
26620
  }
26875
26621
 
26876
26622
  /**
26877
- * * This operation is intended for API callers.
26878
- * * The specified application can call all APIs included in the responses.
26623
+ * The number of the page to return. Pages start from page 1. Default value: 1.
26879
26624
  *
26880
26625
  * @param request DescribeAuthorizedApisRequest
26881
26626
  * @return DescribeAuthorizedApisResponse
@@ -26885,14 +26630,6 @@ export default class Client extends OpenApi {
26885
26630
  return await this.describeAuthorizedApisWithOptions(request, runtime);
26886
26631
  }
26887
26632
 
26888
- /**
26889
- * * This operation is intended for API providers.
26890
- * * All applications included in the responses have access to the specified API.
26891
- *
26892
- * @param request DescribeAuthorizedAppsRequest
26893
- * @param runtime runtime options for this request RuntimeOptions
26894
- * @return DescribeAuthorizedAppsResponse
26895
- */
26896
26633
  async describeAuthorizedAppsWithOptions(request: DescribeAuthorizedAppsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAuthorizedAppsResponse> {
26897
26634
  Util.validateModel(request);
26898
26635
  let query = { };
@@ -26949,13 +26686,6 @@ export default class Client extends OpenApi {
26949
26686
  return $tea.cast<DescribeAuthorizedAppsResponse>(await this.callApi(params, req, runtime), new DescribeAuthorizedAppsResponse({}));
26950
26687
  }
26951
26688
 
26952
- /**
26953
- * * This operation is intended for API providers.
26954
- * * All applications included in the responses have access to the specified API.
26955
- *
26956
- * @param request DescribeAuthorizedAppsRequest
26957
- * @return DescribeAuthorizedAppsResponse
26958
- */
26959
26689
  async describeAuthorizedApps(request: DescribeAuthorizedAppsRequest): Promise<DescribeAuthorizedAppsResponse> {
26960
26690
  let runtime = new $Util.RuntimeOptions({ });
26961
26691
  return await this.describeAuthorizedAppsWithOptions(request, runtime);
@@ -27273,13 +27003,6 @@ export default class Client extends OpenApi {
27273
27003
  return await this.describeDeployedApiWithOptions(request, runtime);
27274
27004
  }
27275
27005
 
27276
- /**
27277
- * * This API is intended for API providers.
27278
- *
27279
- * @param request DescribeDeployedApisRequest
27280
- * @param runtime runtime options for this request RuntimeOptions
27281
- * @return DescribeDeployedApisResponse
27282
- */
27283
27006
  async describeDeployedApisWithOptions(request: DescribeDeployedApisRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDeployedApisResponse> {
27284
27007
  Util.validateModel(request);
27285
27008
  let query = { };
@@ -27344,19 +27067,13 @@ export default class Client extends OpenApi {
27344
27067
  return $tea.cast<DescribeDeployedApisResponse>(await this.callApi(params, req, runtime), new DescribeDeployedApisResponse({}));
27345
27068
  }
27346
27069
 
27347
- /**
27348
- * * This API is intended for API providers.
27349
- *
27350
- * @param request DescribeDeployedApisRequest
27351
- * @return DescribeDeployedApisResponse
27352
- */
27353
27070
  async describeDeployedApis(request: DescribeDeployedApisRequest): Promise<DescribeDeployedApisResponse> {
27354
27071
  let runtime = new $Util.RuntimeOptions({ });
27355
27072
  return await this.describeDeployedApisWithOptions(request, runtime);
27356
27073
  }
27357
27074
 
27358
27075
  /**
27359
- * Queries details about a bound custom domain name, including the automatically assigned second-level domain name, custom domain name, and SSL certificate.
27076
+ * The ID of the API group to which the domain name is bound. This ID is generated by the system and globally unique.
27360
27077
  *
27361
27078
  * @param request DescribeDomainRequest
27362
27079
  * @param runtime runtime options for this request RuntimeOptions
@@ -27395,7 +27112,7 @@ export default class Client extends OpenApi {
27395
27112
  }
27396
27113
 
27397
27114
  /**
27398
- * Queries details about a bound custom domain name, including the automatically assigned second-level domain name, custom domain name, and SSL certificate.
27115
+ * The ID of the API group to which the domain name is bound. This ID is generated by the system and globally unique.
27399
27116
  *
27400
27117
  * @param request DescribeDomainRequest
27401
27118
  * @return DescribeDomainResponse
@@ -27941,14 +27658,6 @@ export default class Client extends OpenApi {
27941
27658
  return await this.describeInstancesWithOptions(request, runtime);
27942
27659
  }
27943
27660
 
27944
- /**
27945
- * * This operation is intended for API providers.
27946
- * * You can filter the query results by policy ID.
27947
- *
27948
- * @param request DescribeIpControlPolicyItemsRequest
27949
- * @param runtime runtime options for this request RuntimeOptions
27950
- * @return DescribeIpControlPolicyItemsResponse
27951
- */
27952
27661
  async describeIpControlPolicyItemsWithOptions(request: DescribeIpControlPolicyItemsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeIpControlPolicyItemsResponse> {
27953
27662
  Util.validateModel(request);
27954
27663
  let query = { };
@@ -27989,13 +27698,6 @@ export default class Client extends OpenApi {
27989
27698
  return $tea.cast<DescribeIpControlPolicyItemsResponse>(await this.callApi(params, req, runtime), new DescribeIpControlPolicyItemsResponse({}));
27990
27699
  }
27991
27700
 
27992
- /**
27993
- * * This operation is intended for API providers.
27994
- * * You can filter the query results by policy ID.
27995
- *
27996
- * @param request DescribeIpControlPolicyItemsRequest
27997
- * @return DescribeIpControlPolicyItemsResponse
27998
- */
27999
27701
  async describeIpControlPolicyItems(request: DescribeIpControlPolicyItemsRequest): Promise<DescribeIpControlPolicyItemsResponse> {
28000
27702
  let runtime = new $Util.RuntimeOptions({ });
28001
27703
  return await this.describeIpControlPolicyItemsWithOptions(request, runtime);
@@ -28136,7 +27838,7 @@ export default class Client extends OpenApi {
28136
27838
  }
28137
27839
 
28138
27840
  /**
28139
- * * Fuzzy queries are supported.
27841
+ * The name of the model.
28140
27842
  *
28141
27843
  * @param request DescribeModelsRequest
28142
27844
  * @param runtime runtime options for this request RuntimeOptions
@@ -28183,7 +27885,7 @@ export default class Client extends OpenApi {
28183
27885
  }
28184
27886
 
28185
27887
  /**
28186
- * * Fuzzy queries are supported.
27888
+ * The name of the model.
28187
27889
  *
28188
27890
  * @param request DescribeModelsRequest
28189
27891
  * @return DescribeModelsResponse
@@ -28328,16 +28030,6 @@ export default class Client extends OpenApi {
28328
28030
  return await this.describePluginTemplatesWithOptions(request, runtime);
28329
28031
  }
28330
28032
 
28331
- /**
28332
- * * This operation supports pagination.
28333
- * * This operation allows you to query plug-ins by business type.
28334
- * * This operation allows you to query plug-ins by ID.
28335
- * * This operation allows you to query plug-ins by name.
28336
- *
28337
- * @param request DescribePluginsRequest
28338
- * @param runtime runtime options for this request RuntimeOptions
28339
- * @return DescribePluginsResponse
28340
- */
28341
28033
  async describePluginsWithOptions(request: DescribePluginsRequest, runtime: $Util.RuntimeOptions): Promise<DescribePluginsResponse> {
28342
28034
  Util.validateModel(request);
28343
28035
  let query = { };
@@ -28386,15 +28078,6 @@ export default class Client extends OpenApi {
28386
28078
  return $tea.cast<DescribePluginsResponse>(await this.callApi(params, req, runtime), new DescribePluginsResponse({}));
28387
28079
  }
28388
28080
 
28389
- /**
28390
- * * This operation supports pagination.
28391
- * * This operation allows you to query plug-ins by business type.
28392
- * * This operation allows you to query plug-ins by ID.
28393
- * * This operation allows you to query plug-ins by name.
28394
- *
28395
- * @param request DescribePluginsRequest
28396
- * @return DescribePluginsResponse
28397
- */
28398
28081
  async describePlugins(request: DescribePluginsRequest): Promise<DescribePluginsResponse> {
28399
28082
  let runtime = new $Util.RuntimeOptions({ });
28400
28083
  return await this.describePluginsWithOptions(request, runtime);
@@ -28591,14 +28274,6 @@ export default class Client extends OpenApi {
28591
28274
  return await this.describePurchasedApisWithOptions(request, runtime);
28592
28275
  }
28593
28276
 
28594
- /**
28595
- * This operation queries regions in which API Gateway is available.
28596
- * * This operation is intended for API providers and callers.
28597
- *
28598
- * @param request DescribeRegionsRequest
28599
- * @param runtime runtime options for this request RuntimeOptions
28600
- * @return DescribeRegionsResponse
28601
- */
28602
28277
  async describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse> {
28603
28278
  Util.validateModel(request);
28604
28279
  let query = { };
@@ -28627,20 +28302,13 @@ export default class Client extends OpenApi {
28627
28302
  return $tea.cast<DescribeRegionsResponse>(await this.callApi(params, req, runtime), new DescribeRegionsResponse({}));
28628
28303
  }
28629
28304
 
28630
- /**
28631
- * This operation queries regions in which API Gateway is available.
28632
- * * This operation is intended for API providers and callers.
28633
- *
28634
- * @param request DescribeRegionsRequest
28635
- * @return DescribeRegionsResponse
28636
- */
28637
28305
  async describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse> {
28638
28306
  let runtime = new $Util.RuntimeOptions({ });
28639
28307
  return await this.describeRegionsWithOptions(request, runtime);
28640
28308
  }
28641
28309
 
28642
28310
  /**
28643
- * Queries backend signature keys.
28311
+ * The IDs of the keys to query.
28644
28312
  *
28645
28313
  * @param request DescribeSignaturesRequest
28646
28314
  * @param runtime runtime options for this request RuntimeOptions
@@ -28687,7 +28355,7 @@ export default class Client extends OpenApi {
28687
28355
  }
28688
28356
 
28689
28357
  /**
28690
- * Queries backend signature keys.
28358
+ * The IDs of the keys to query.
28691
28359
  *
28692
28360
  * @param request DescribeSignaturesRequest
28693
28361
  * @return DescribeSignaturesResponse
@@ -28698,7 +28366,7 @@ export default class Client extends OpenApi {
28698
28366
  }
28699
28367
 
28700
28368
  /**
28701
- * Queries the backend signature keys that are bound to a specified API.
28369
+ * The ID of the group to which the API belongs.
28702
28370
  *
28703
28371
  * @param request DescribeSignaturesByApiRequest
28704
28372
  * @param runtime runtime options for this request RuntimeOptions
@@ -28741,7 +28409,7 @@ export default class Client extends OpenApi {
28741
28409
  }
28742
28410
 
28743
28411
  /**
28744
- * Queries the backend signature keys that are bound to a specified API.
28412
+ * The ID of the group to which the API belongs.
28745
28413
  *
28746
28414
  * @param request DescribeSignaturesByApiRequest
28747
28415
  * @return DescribeSignaturesByApiResponse
@@ -28752,8 +28420,7 @@ export default class Client extends OpenApi {
28752
28420
  }
28753
28421
 
28754
28422
  /**
28755
- * * This API is intended for API callers.
28756
- * * The response of this API contains the system parameters that are optional in API definitions.
28423
+ * The returned information about system parameters. It is an array that consists of SystemParam data.
28757
28424
  *
28758
28425
  * @param request DescribeSystemParametersRequest
28759
28426
  * @param runtime runtime options for this request RuntimeOptions
@@ -28784,8 +28451,7 @@ export default class Client extends OpenApi {
28784
28451
  }
28785
28452
 
28786
28453
  /**
28787
- * * This API is intended for API callers.
28788
- * * The response of this API contains the system parameters that are optional in API definitions.
28454
+ * The returned information about system parameters. It is an array that consists of SystemParam data.
28789
28455
  *
28790
28456
  * @param request DescribeSystemParametersRequest
28791
28457
  * @return DescribeSystemParametersResponse
@@ -28796,9 +28462,7 @@ export default class Client extends OpenApi {
28796
28462
  }
28797
28463
 
28798
28464
  /**
28799
- * * This API is intended for API providers.
28800
- * * This API can be used to query all existing throttling policies (including special throttling policies) and their details.
28801
- * * You can specify query conditions. For example, you can query the throttling policies bound to a specified API or in a specified environment.
28465
+ * The specified group ID. This parameter must be specified together with ApiId and StageName.
28802
28466
  *
28803
28467
  * @param request DescribeTrafficControlsRequest
28804
28468
  * @param runtime runtime options for this request RuntimeOptions
@@ -28857,9 +28521,7 @@ export default class Client extends OpenApi {
28857
28521
  }
28858
28522
 
28859
28523
  /**
28860
- * * This API is intended for API providers.
28861
- * * This API can be used to query all existing throttling policies (including special throttling policies) and their details.
28862
- * * You can specify query conditions. For example, you can query the throttling policies bound to a specified API or in a specified environment.
28524
+ * The specified group ID. This parameter must be specified together with ApiId and StageName.
28863
28525
  *
28864
28526
  * @param request DescribeTrafficControlsRequest
28865
28527
  * @return DescribeTrafficControlsResponse
@@ -28870,7 +28532,7 @@ export default class Client extends OpenApi {
28870
28532
  }
28871
28533
 
28872
28534
  /**
28873
- * * This API is intended for API providers.
28535
+ * The ID of the API.
28874
28536
  *
28875
28537
  * @param request DescribeTrafficControlsByApiRequest
28876
28538
  * @param runtime runtime options for this request RuntimeOptions
@@ -28913,7 +28575,7 @@ export default class Client extends OpenApi {
28913
28575
  }
28914
28576
 
28915
28577
  /**
28916
- * * This API is intended for API providers.
28578
+ * The ID of the API.
28917
28579
  *
28918
28580
  * @param request DescribeTrafficControlsByApiRequest
28919
28581
  * @return DescribeTrafficControlsByApiResponse
@@ -29335,8 +28997,7 @@ export default class Client extends OpenApi {
29335
28997
  }
29336
28998
 
29337
28999
  /**
29338
- * * Alibaba Cloud supports extensions based on Swagger 2.0.
29339
- * * Alibaba Cloud supports Swagger configuration files in JSON and YAML formats.
29000
+ * 0009db9c828549768a200320714b8930
29340
29001
  *
29341
29002
  * @param tmpReq ImportSwaggerRequest
29342
29003
  * @param runtime runtime options for this request RuntimeOptions
@@ -29399,8 +29060,7 @@ export default class Client extends OpenApi {
29399
29060
  }
29400
29061
 
29401
29062
  /**
29402
- * * Alibaba Cloud supports extensions based on Swagger 2.0.
29403
- * * Alibaba Cloud supports Swagger configuration files in JSON and YAML formats.
29063
+ * 0009db9c828549768a200320714b8930
29404
29064
  *
29405
29065
  * @param request ImportSwaggerRequest
29406
29066
  * @return ImportSwaggerResponse
@@ -29410,21 +29070,6 @@ export default class Client extends OpenApi {
29410
29070
  return await this.importSwaggerWithOptions(request, runtime);
29411
29071
  }
29412
29072
 
29413
- /**
29414
- * * The Tag.N.Key and Tag.N.Value parameters constitute a key-value pair.
29415
- * * 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.
29416
- * * This operation is used to query resource tags based on conditions. If no relationship matches the conditions, an empty list is returned.
29417
- * * You can query both user tags and visible system tags.
29418
- * * 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.
29419
- * * You can also specify Tag.N.Key to query the visible keys of a specified key in a region.
29420
- * * At least one of ResourceId.N, Tag.N.Key, and Tag.N.Value exists.
29421
- * * You can query tags of the same type or different types in a single operation.
29422
- * * You can query all your user tags and visible system tags.
29423
- *
29424
- * @param request ListTagResourcesRequest
29425
- * @param runtime runtime options for this request RuntimeOptions
29426
- * @return ListTagResourcesResponse
29427
- */
29428
29073
  async listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse> {
29429
29074
  Util.validateModel(request);
29430
29075
  let query = { };
@@ -29461,27 +29106,13 @@ export default class Client extends OpenApi {
29461
29106
  return $tea.cast<ListTagResourcesResponse>(await this.callApi(params, req, runtime), new ListTagResourcesResponse({}));
29462
29107
  }
29463
29108
 
29464
- /**
29465
- * * The Tag.N.Key and Tag.N.Value parameters constitute a key-value pair.
29466
- * * 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.
29467
- * * This operation is used to query resource tags based on conditions. If no relationship matches the conditions, an empty list is returned.
29468
- * * You can query both user tags and visible system tags.
29469
- * * 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.
29470
- * * You can also specify Tag.N.Key to query the visible keys of a specified key in a region.
29471
- * * At least one of ResourceId.N, Tag.N.Key, and Tag.N.Value exists.
29472
- * * You can query tags of the same type or different types in a single operation.
29473
- * * You can query all your user tags and visible system tags.
29474
- *
29475
- * @param request ListTagResourcesRequest
29476
- * @return ListTagResourcesResponse
29477
- */
29478
29109
  async listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse> {
29479
29110
  let runtime = new $Util.RuntimeOptions({ });
29480
29111
  return await this.listTagResourcesWithOptions(request, runtime);
29481
29112
  }
29482
29113
 
29483
29114
  /**
29484
- * Modifies the definition of an API.
29115
+ * 58928
29485
29116
  *
29486
29117
  * @param request ModifyApiRequest
29487
29118
  * @param runtime runtime options for this request RuntimeOptions
@@ -29620,7 +29251,7 @@ export default class Client extends OpenApi {
29620
29251
  }
29621
29252
 
29622
29253
  /**
29623
- * Modifies the definition of an API.
29254
+ * 58928
29624
29255
  *
29625
29256
  * @param request ModifyApiRequest
29626
29257
  * @return ModifyApiResponse
@@ -29799,14 +29430,6 @@ export default class Client extends OpenApi {
29799
29430
  return await this.modifyApiConfigurationWithOptions(request, runtime);
29800
29431
  }
29801
29432
 
29802
- /**
29803
- * * This operation is intended for API providers.
29804
- * * The QPS limit on this operation is 50 per user.
29805
- *
29806
- * @param request ModifyApiGroupRequest
29807
- * @param runtime runtime options for this request RuntimeOptions
29808
- * @return ModifyApiGroupResponse
29809
- */
29810
29433
  async modifyApiGroupWithOptions(request: ModifyApiGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyApiGroupResponse> {
29811
29434
  Util.validateModel(request);
29812
29435
  let query = { };
@@ -29879,13 +29502,6 @@ export default class Client extends OpenApi {
29879
29502
  return $tea.cast<ModifyApiGroupResponse>(await this.callApi(params, req, runtime), new ModifyApiGroupResponse({}));
29880
29503
  }
29881
29504
 
29882
- /**
29883
- * * This operation is intended for API providers.
29884
- * * The QPS limit on this operation is 50 per user.
29885
- *
29886
- * @param request ModifyApiGroupRequest
29887
- * @return ModifyApiGroupResponse
29888
- */
29889
29505
  async modifyApiGroup(request: ModifyApiGroupRequest): Promise<ModifyApiGroupResponse> {
29890
29506
  let runtime = new $Util.RuntimeOptions({ });
29891
29507
  return await this.modifyApiGroupWithOptions(request, runtime);
@@ -29928,15 +29544,6 @@ export default class Client extends OpenApi {
29928
29544
  return await this.modifyApiGroupVpcWhitelistWithOptions(request, runtime);
29929
29545
  }
29930
29546
 
29931
- /**
29932
- * * This operation is intended for API callers.
29933
- * * 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.********
29934
- * * The QPS limit on this operation is 50 per user.
29935
- *
29936
- * @param request ModifyAppRequest
29937
- * @param runtime runtime options for this request RuntimeOptions
29938
- * @return ModifyAppResponse
29939
- */
29940
29547
  async modifyAppWithOptions(request: ModifyAppRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAppResponse> {
29941
29548
  Util.validateModel(request);
29942
29549
  let query = { };
@@ -29977,14 +29584,6 @@ export default class Client extends OpenApi {
29977
29584
  return $tea.cast<ModifyAppResponse>(await this.callApi(params, req, runtime), new ModifyAppResponse({}));
29978
29585
  }
29979
29586
 
29980
- /**
29981
- * * This operation is intended for API callers.
29982
- * * 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.********
29983
- * * The QPS limit on this operation is 50 per user.
29984
- *
29985
- * @param request ModifyAppRequest
29986
- * @return ModifyAppResponse
29987
- */
29988
29587
  async modifyApp(request: ModifyAppRequest): Promise<ModifyAppResponse> {
29989
29588
  let runtime = new $Util.RuntimeOptions({ });
29990
29589
  return await this.modifyAppWithOptions(request, runtime);
@@ -30220,8 +29819,7 @@ export default class Client extends OpenApi {
30220
29819
  }
30221
29820
 
30222
29821
  /**
30223
- * * This operation is intended for API providers.
30224
- * * This operation allows you to modify only the name and description of an ACL. You cannot modify the type of the ACL.
29822
+ * The name of the ACL. The name must be 4 to 50 characters in length, and can contain letters, digits, and underscores (\\_). The name cannot start with an underscore (\\_).
30225
29823
  *
30226
29824
  * @param request ModifyIpControlRequest
30227
29825
  * @param runtime runtime options for this request RuntimeOptions
@@ -30264,8 +29862,7 @@ export default class Client extends OpenApi {
30264
29862
  }
30265
29863
 
30266
29864
  /**
30267
- * * This operation is intended for API providers.
30268
- * * This operation allows you to modify only the name and description of an ACL. You cannot modify the type of the ACL.
29865
+ * The name of the ACL. The name must be 4 to 50 characters in length, and can contain letters, digits, and underscores (\\_). The name cannot start with an underscore (\\_).
30269
29866
  *
30270
29867
  * @param request ModifyIpControlRequest
30271
29868
  * @return ModifyIpControlResponse
@@ -30276,9 +29873,7 @@ export default class Client extends OpenApi {
30276
29873
  }
30277
29874
 
30278
29875
  /**
30279
- * * This operation is intended for API providers.
30280
- * * The modification immediately takes effect on all the APIs that are bound to the policy.
30281
- * * This operation causes a full modification of the content of a policy.
29876
+ * The ID of the policy.
30282
29877
  *
30283
29878
  * @param request ModifyIpControlPolicyItemRequest
30284
29879
  * @param runtime runtime options for this request RuntimeOptions
@@ -30325,9 +29920,7 @@ export default class Client extends OpenApi {
30325
29920
  }
30326
29921
 
30327
29922
  /**
30328
- * * This operation is intended for API providers.
30329
- * * The modification immediately takes effect on all the APIs that are bound to the policy.
30330
- * * This operation causes a full modification of the content of a policy.
29923
+ * The ID of the policy.
30331
29924
  *
30332
29925
  * @param request ModifyIpControlPolicyItemRequest
30333
29926
  * @return ModifyIpControlPolicyItemResponse
@@ -30423,14 +30016,6 @@ export default class Client extends OpenApi {
30423
30016
  return await this.modifyModelWithOptions(request, runtime);
30424
30017
  }
30425
30018
 
30426
- /**
30427
- * * This operation is intended for API providers.
30428
- * * The name of the plug-in must be unique.
30429
- *
30430
- * @param request ModifyPluginRequest
30431
- * @param runtime runtime options for this request RuntimeOptions
30432
- * @return ModifyPluginResponse
30433
- */
30434
30019
  async modifyPluginWithOptions(request: ModifyPluginRequest, runtime: $Util.RuntimeOptions): Promise<ModifyPluginResponse> {
30435
30020
  Util.validateModel(request);
30436
30021
  let query = { };
@@ -30475,23 +30060,13 @@ export default class Client extends OpenApi {
30475
30060
  return $tea.cast<ModifyPluginResponse>(await this.callApi(params, req, runtime), new ModifyPluginResponse({}));
30476
30061
  }
30477
30062
 
30478
- /**
30479
- * * This operation is intended for API providers.
30480
- * * The name of the plug-in must be unique.
30481
- *
30482
- * @param request ModifyPluginRequest
30483
- * @return ModifyPluginResponse
30484
- */
30485
30063
  async modifyPlugin(request: ModifyPluginRequest): Promise<ModifyPluginResponse> {
30486
30064
  let runtime = new $Util.RuntimeOptions({ });
30487
30065
  return await this.modifyPluginWithOptions(request, runtime);
30488
30066
  }
30489
30067
 
30490
30068
  /**
30491
- * * This API is intended for API providers.
30492
- * * This API operation modifies the name, Key value, and Secret value of an existing signature key.
30493
- * * 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.
30494
- * * The QPS limit on this operation is 50 per user.
30069
+ * The new name of the key. The name must be 4 to 50 characters in length and can contain letters, digits, and underscores (\\_). It must start with a letter.
30495
30070
  *
30496
30071
  * @param request ModifySignatureRequest
30497
30072
  * @param runtime runtime options for this request RuntimeOptions
@@ -30538,10 +30113,7 @@ export default class Client extends OpenApi {
30538
30113
  }
30539
30114
 
30540
30115
  /**
30541
- * * This API is intended for API providers.
30542
- * * This API operation modifies the name, Key value, and Secret value of an existing signature key.
30543
- * * 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.
30544
- * * The QPS limit on this operation is 50 per user.
30116
+ * The new name of the key. The name must be 4 to 50 characters in length and can contain letters, digits, and underscores (\\_). It must start with a letter.
30545
30117
  *
30546
30118
  * @param request ModifySignatureRequest
30547
30119
  * @return ModifySignatureResponse
@@ -30552,9 +30124,7 @@ export default class Client extends OpenApi {
30552
30124
  }
30553
30125
 
30554
30126
  /**
30555
- * * This API is intended for API providers.
30556
- * * The modifications take effect on the bound APIs instantly.
30557
- * * The QPS limit on this operation is 50 per user.
30127
+ * The throttling policy name. The name must be 4 to 50 characters in length and can contain letters, digits, and underscores (\\_). It cannot start with an underscore.
30558
30128
  *
30559
30129
  * @param request ModifyTrafficControlRequest
30560
30130
  * @param runtime runtime options for this request RuntimeOptions
@@ -30613,9 +30183,7 @@ export default class Client extends OpenApi {
30613
30183
  }
30614
30184
 
30615
30185
  /**
30616
- * * This API is intended for API providers.
30617
- * * The modifications take effect on the bound APIs instantly.
30618
- * * The QPS limit on this operation is 50 per user.
30186
+ * The throttling policy name. The name must be 4 to 50 characters in length and can contain letters, digits, and underscores (\\_). It cannot start with an underscore.
30619
30187
  *
30620
30188
  * @param request ModifyTrafficControlRequest
30621
30189
  * @return ModifyTrafficControlResponse
@@ -30741,7 +30309,7 @@ export default class Client extends OpenApi {
30741
30309
  }
30742
30310
 
30743
30311
  /**
30744
- * Reactivates a custom domain name whose validity status is Abnormal.
30312
+ * The ID of the API group to which the domain name is bound. This ID is generated by the system and globally unique.
30745
30313
  *
30746
30314
  * @param request ReactivateDomainRequest
30747
30315
  * @param runtime runtime options for this request RuntimeOptions
@@ -30780,7 +30348,7 @@ export default class Client extends OpenApi {
30780
30348
  }
30781
30349
 
30782
30350
  /**
30783
- * Reactivates a custom domain name whose validity status is Abnormal.
30351
+ * The ID of the API group to which the domain name is bound. This ID is generated by the system and globally unique.
30784
30352
  *
30785
30353
  * @param request ReactivateDomainRequest
30786
30354
  * @return ReactivateDomainResponse
@@ -30828,8 +30396,7 @@ export default class Client extends OpenApi {
30828
30396
  }
30829
30397
 
30830
30398
  /**
30831
- * * This operation is intended for API providers and callers.
30832
- * * 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.
30399
+ * The ID of the app. The ID is generated by the system and globally unique.
30833
30400
  *
30834
30401
  * @param request RemoveApisAuthoritiesRequest
30835
30402
  * @param runtime runtime options for this request RuntimeOptions
@@ -30880,8 +30447,7 @@ export default class Client extends OpenApi {
30880
30447
  }
30881
30448
 
30882
30449
  /**
30883
- * * This operation is intended for API providers and callers.
30884
- * * 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.
30450
+ * The ID of the app. The ID is generated by the system and globally unique.
30885
30451
  *
30886
30452
  * @param request RemoveApisAuthoritiesRequest
30887
30453
  * @return RemoveApisAuthoritiesResponse
@@ -30892,8 +30458,7 @@ export default class Client extends OpenApi {
30892
30458
  }
30893
30459
 
30894
30460
  /**
30895
- * * This operation is intended for API providers and callers.
30896
- * * 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.
30461
+ * The ID of the API. This ID is generated by the system and globally unique.
30897
30462
  *
30898
30463
  * @param request RemoveAppsAuthoritiesRequest
30899
30464
  * @param runtime runtime options for this request RuntimeOptions
@@ -30940,8 +30505,7 @@ export default class Client extends OpenApi {
30940
30505
  }
30941
30506
 
30942
30507
  /**
30943
- * * This operation is intended for API providers and callers.
30944
- * * 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.
30508
+ * The ID of the API. This ID is generated by the system and globally unique.
30945
30509
  *
30946
30510
  * @param request RemoveAppsAuthoritiesRequest
30947
30511
  * @return RemoveAppsAuthoritiesResponse
@@ -30952,8 +30516,7 @@ export default class Client extends OpenApi {
30952
30516
  }
30953
30517
 
30954
30518
  /**
30955
- * * This API is intended for API providers.
30956
- * * 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.
30519
+ * The ID of the API group containing the API to be managed.
30957
30520
  *
30958
30521
  * @param request RemoveIpControlApisRequest
30959
30522
  * @param runtime runtime options for this request RuntimeOptions
@@ -31000,8 +30563,7 @@ export default class Client extends OpenApi {
31000
30563
  }
31001
30564
 
31002
30565
  /**
31003
- * * This API is intended for API providers.
31004
- * * 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.
30566
+ * The ID of the API group containing the API to be managed.
31005
30567
  *
31006
30568
  * @param request RemoveIpControlApisRequest
31007
30569
  * @return RemoveIpControlApisResponse
@@ -31012,7 +30574,7 @@ export default class Client extends OpenApi {
31012
30574
  }
31013
30575
 
31014
30576
  /**
31015
- * * This operation is intended for API providers.
30577
+ * The ID of a policy. Separate multiple IDs with semicolons (;). A maximum of 100 IDs can be entered.
31016
30578
  *
31017
30579
  * @param request RemoveIpControlPolicyItemRequest
31018
30580
  * @param runtime runtime options for this request RuntimeOptions
@@ -31051,7 +30613,7 @@ export default class Client extends OpenApi {
31051
30613
  }
31052
30614
 
31053
30615
  /**
31054
- * * This operation is intended for API providers.
30616
+ * The ID of a policy. Separate multiple IDs with semicolons (;). A maximum of 100 IDs can be entered.
31055
30617
  *
31056
30618
  * @param request RemoveIpControlPolicyItemRequest
31057
30619
  * @return RemoveIpControlPolicyItemResponse
@@ -31062,7 +30624,7 @@ export default class Client extends OpenApi {
31062
30624
  }
31063
30625
 
31064
30626
  /**
31065
- * Unbinds a backend signature key from APIs.
30627
+ * The ID of the signature key.
31066
30628
  *
31067
30629
  * @param request RemoveSignatureApisRequest
31068
30630
  * @param runtime runtime options for this request RuntimeOptions
@@ -31109,7 +30671,7 @@ export default class Client extends OpenApi {
31109
30671
  }
31110
30672
 
31111
30673
  /**
31112
- * Unbinds a backend signature key from APIs.
30674
+ * The ID of the signature key.
31113
30675
  *
31114
30676
  * @param request RemoveSignatureApisRequest
31115
30677
  * @return RemoveSignatureApisResponse
@@ -31120,8 +30682,7 @@ export default class Client extends OpenApi {
31120
30682
  }
31121
30683
 
31122
30684
  /**
31123
- * * This API is intended for API providers.
31124
- * * This API allows you to unbind a specified throttling policy from up to 100 APIs at a time.
30685
+ * The ID of the API group containing the APIs from which you want to unbind a specified throttling policy.
31125
30686
  *
31126
30687
  * @param request RemoveTrafficControlApisRequest
31127
30688
  * @param runtime runtime options for this request RuntimeOptions
@@ -31168,8 +30729,7 @@ export default class Client extends OpenApi {
31168
30729
  }
31169
30730
 
31170
30731
  /**
31171
- * * This API is intended for API providers.
31172
- * * This API allows you to unbind a specified throttling policy from up to 100 APIs at a time.
30732
+ * The ID of the API group containing the APIs from which you want to unbind a specified throttling policy.
31173
30733
  *
31174
30734
  * @param request RemoveTrafficControlApisRequest
31175
30735
  * @return RemoveTrafficControlApisResponse
@@ -31179,15 +30739,6 @@ export default class Client extends OpenApi {
31179
30739
  return await this.removeTrafficControlApisWithOptions(request, runtime);
31180
30740
  }
31181
30741
 
31182
- /**
31183
- * * This API is intended for API providers.
31184
- * * Revokes the permissions of API Gateway to access your VPC instance.
31185
- * > Deleting an authorization affects the associated API. Before you delete the authorization, make sure that it is not used by the API.
31186
- *
31187
- * @param request RemoveVpcAccessRequest
31188
- * @param runtime runtime options for this request RuntimeOptions
31189
- * @return RemoveVpcAccessResponse
31190
- */
31191
30742
  async removeVpcAccessWithOptions(request: RemoveVpcAccessRequest, runtime: $Util.RuntimeOptions): Promise<RemoveVpcAccessResponse> {
31192
30743
  Util.validateModel(request);
31193
30744
  let query = { };
@@ -31228,14 +30779,6 @@ export default class Client extends OpenApi {
31228
30779
  return $tea.cast<RemoveVpcAccessResponse>(await this.callApi(params, req, runtime), new RemoveVpcAccessResponse({}));
31229
30780
  }
31230
30781
 
31231
- /**
31232
- * * This API is intended for API providers.
31233
- * * Revokes the permissions of API Gateway to access your VPC instance.
31234
- * > Deleting an authorization affects the associated API. Before you delete the authorization, make sure that it is not used by the API.
31235
- *
31236
- * @param request RemoveVpcAccessRequest
31237
- * @return RemoveVpcAccessResponse
31238
- */
31239
30782
  async removeVpcAccess(request: RemoveVpcAccessRequest): Promise<RemoveVpcAccessResponse> {
31240
30783
  let runtime = new $Util.RuntimeOptions({ });
31241
30784
  return await this.removeVpcAccessWithOptions(request, runtime);
@@ -31352,6 +30895,10 @@ export default class Client extends OpenApi {
31352
30895
  query["AppKey"] = request.appKey;
31353
30896
  }
31354
30897
 
30898
+ if (!Util.isUnset(request.newAppKey)) {
30899
+ query["NewAppKey"] = request.newAppKey;
30900
+ }
30901
+
31355
30902
  if (!Util.isUnset(request.newAppSecret)) {
31356
30903
  query["NewAppSecret"] = request.newAppSecret;
31357
30904
  }
@@ -31539,9 +31086,7 @@ export default class Client extends OpenApi {
31539
31086
  }
31540
31087
 
31541
31088
  /**
31542
- * * This operation is intended for API providers and callers.
31543
- * * API providers can authorize any apps to call their APIs.
31544
- * * API callers can authorize their own apps to call the APIs that they have purchased.
31089
+ * The ID of the app. This ID is generated by the system and globally unique.
31545
31090
  *
31546
31091
  * @param request SetApisAuthoritiesRequest
31547
31092
  * @param runtime runtime options for this request RuntimeOptions
@@ -31596,9 +31141,7 @@ export default class Client extends OpenApi {
31596
31141
  }
31597
31142
 
31598
31143
  /**
31599
- * * This operation is intended for API providers and callers.
31600
- * * API providers can authorize any apps to call their APIs.
31601
- * * API callers can authorize their own apps to call the APIs that they have purchased.
31144
+ * The ID of the app. This ID is generated by the system and globally unique.
31602
31145
  *
31603
31146
  * @param request SetApisAuthoritiesRequest
31604
31147
  * @return SetApisAuthoritiesResponse
@@ -31609,9 +31152,7 @@ export default class Client extends OpenApi {
31609
31152
  }
31610
31153
 
31611
31154
  /**
31612
- * * This operation is intended for API providers and callers.
31613
- * * API providers can authorize any apps to call their APIs.
31614
- * * API callers can authorize their own apps to call the APIs that they have purchased.
31155
+ * The ID of the API. This ID is generated by the system and globally unique.
31615
31156
  *
31616
31157
  * @param request SetAppsAuthoritiesRequest
31617
31158
  * @param runtime runtime options for this request RuntimeOptions
@@ -31666,9 +31207,7 @@ export default class Client extends OpenApi {
31666
31207
  }
31667
31208
 
31668
31209
  /**
31669
- * * This operation is intended for API providers and callers.
31670
- * * API providers can authorize any apps to call their APIs.
31671
- * * API callers can authorize their own apps to call the APIs that they have purchased.
31210
+ * The ID of the API. This ID is generated by the system and globally unique.
31672
31211
  *
31673
31212
  * @param request SetAppsAuthoritiesRequest
31674
31213
  * @return SetAppsAuthoritiesResponse
@@ -31728,9 +31267,7 @@ export default class Client extends OpenApi {
31728
31267
  }
31729
31268
 
31730
31269
  /**
31731
- * * This operation is intended for API providers.
31732
- * * The SSL certificate must match the custom domain name.
31733
- * * After the SSL certificate is bound, HTTPS-based API services become available.
31270
+ * 382271
31734
31271
  *
31735
31272
  * @param request SetDomainCertificateRequest
31736
31273
  * @param runtime runtime options for this request RuntimeOptions
@@ -31789,9 +31326,7 @@ export default class Client extends OpenApi {
31789
31326
  }
31790
31327
 
31791
31328
  /**
31792
- * * This operation is intended for API providers.
31793
- * * The SSL certificate must match the custom domain name.
31794
- * * After the SSL certificate is bound, HTTPS-based API services become available.
31329
+ * 382271
31795
31330
  *
31796
31331
  * @param request SetDomainCertificateRequest
31797
31332
  * @return SetDomainCertificateResponse
@@ -31884,8 +31419,7 @@ export default class Client extends OpenApi {
31884
31419
  }
31885
31420
 
31886
31421
  /**
31887
- * * This operation is intended for API callers.
31888
- * * A maximum of 100 APIs can be bound at a time.
31422
+ * The ID of the API group.
31889
31423
  *
31890
31424
  * @param request SetIpControlApisRequest
31891
31425
  * @param runtime runtime options for this request RuntimeOptions
@@ -31932,8 +31466,7 @@ export default class Client extends OpenApi {
31932
31466
  }
31933
31467
 
31934
31468
  /**
31935
- * * This operation is intended for API callers.
31936
- * * A maximum of 100 APIs can be bound at a time.
31469
+ * The ID of the API group.
31937
31470
  *
31938
31471
  * @param request SetIpControlApisRequest
31939
31472
  * @return SetIpControlApisResponse
@@ -31944,7 +31477,7 @@ export default class Client extends OpenApi {
31944
31477
  }
31945
31478
 
31946
31479
  /**
31947
- * Binds a signature key to APIs.
31480
+ * The ID of the signature key.
31948
31481
  *
31949
31482
  * @param request SetSignatureApisRequest
31950
31483
  * @param runtime runtime options for this request RuntimeOptions
@@ -31991,7 +31524,7 @@ export default class Client extends OpenApi {
31991
31524
  }
31992
31525
 
31993
31526
  /**
31994
- * Binds a signature key to APIs.
31527
+ * The ID of the signature key.
31995
31528
  *
31996
31529
  * @param request SetSignatureApisRequest
31997
31530
  * @return SetSignatureApisResponse
@@ -32002,8 +31535,7 @@ export default class Client extends OpenApi {
32002
31535
  }
32003
31536
 
32004
31537
  /**
32005
- * * This API is intended for API providers.
32006
- * * This API allows you to bind a specific throttling policy to up to 100 APIs at a time.
31538
+ * The ID of the API group containing the APIs to which you want to bind a specified throttling policy.
32007
31539
  *
32008
31540
  * @param request SetTrafficControlApisRequest
32009
31541
  * @param runtime runtime options for this request RuntimeOptions
@@ -32050,8 +31582,7 @@ export default class Client extends OpenApi {
32050
31582
  }
32051
31583
 
32052
31584
  /**
32053
- * * This API is intended for API providers.
32054
- * * This API allows you to bind a specific throttling policy to up to 100 APIs at a time.
31585
+ * The ID of the API group containing the APIs to which you want to bind a specified throttling policy.
32055
31586
  *
32056
31587
  * @param request SetTrafficControlApisRequest
32057
31588
  * @return SetTrafficControlApisResponse
@@ -32061,14 +31592,6 @@ export default class Client extends OpenApi {
32061
31592
  return await this.setTrafficControlApisWithOptions(request, runtime);
32062
31593
  }
32063
31594
 
32064
- /**
32065
- * * This operation is intended for API providers.
32066
- * * This operation is used to authorize API Gateway to access your VPC instance.
32067
- *
32068
- * @param request SetVpcAccessRequest
32069
- * @param runtime runtime options for this request RuntimeOptions
32070
- * @return SetVpcAccessResponse
32071
- */
32072
31595
  async setVpcAccessWithOptions(request: SetVpcAccessRequest, runtime: $Util.RuntimeOptions): Promise<SetVpcAccessResponse> {
32073
31596
  Util.validateModel(request);
32074
31597
  let query = { };
@@ -32117,13 +31640,6 @@ export default class Client extends OpenApi {
32117
31640
  return $tea.cast<SetVpcAccessResponse>(await this.callApi(params, req, runtime), new SetVpcAccessResponse({}));
32118
31641
  }
32119
31642
 
32120
- /**
32121
- * * This operation is intended for API providers.
32122
- * * This operation is used to authorize API Gateway to access your VPC instance.
32123
- *
32124
- * @param request SetVpcAccessRequest
32125
- * @return SetVpcAccessResponse
32126
- */
32127
31643
  async setVpcAccess(request: SetVpcAccessRequest): Promise<SetVpcAccessResponse> {
32128
31644
  let runtime = new $Util.RuntimeOptions({ });
32129
31645
  return await this.setVpcAccessWithOptions(request, runtime);
@@ -32171,11 +31687,7 @@ export default class Client extends OpenApi {
32171
31687
  }
32172
31688
 
32173
31689
  /**
32174
- * * This API is intended for API providers.
32175
- * * The historical version can be obtained through the DescribeHistoryApis API.****
32176
- * * Only APIs that have been published more than once have historical versions to switch to.
32177
- * * 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.
32178
- * * The switch operation is in essence a publish operation, and the reason for this operation must be provided.
31690
+ * The ID of the API.
32179
31691
  *
32180
31692
  * @param request SwitchApiRequest
32181
31693
  * @param runtime runtime options for this request RuntimeOptions
@@ -32226,11 +31738,7 @@ export default class Client extends OpenApi {
32226
31738
  }
32227
31739
 
32228
31740
  /**
32229
- * * This API is intended for API providers.
32230
- * * The historical version can be obtained through the DescribeHistoryApis API.****
32231
- * * Only APIs that have been published more than once have historical versions to switch to.
32232
- * * 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.
32233
- * * The switch operation is in essence a publish operation, and the reason for this operation must be provided.
31741
+ * The ID of the API.
32234
31742
  *
32235
31743
  * @param request SwitchApiRequest
32236
31744
  * @return SwitchApiResponse
@@ -32241,11 +31749,8 @@ export default class Client extends OpenApi {
32241
31749
  }
32242
31750
 
32243
31751
  /**
32244
- * * All tags (key-value pairs) are applied to all resources of a specified ResourceId, with each resource specified as ResourceId.N.
32245
- * * Tag.N is a resource tag consisting of a key-value pair: Tag.N.Key and Tag.N.Value.
32246
- * * If you call this operation to tag multiple resources simultaneously, either all or none of the resources will be tagged.
32247
- * * 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.
32248
- * * If a tag with the same key has been bound to a resource, the new tag will overwrite the existing one.
31752
+ * The key of tag N.
31753
+ * Valid values of N: `1 to 20.`
32249
31754
  *
32250
31755
  * @param request TagResourcesRequest
32251
31756
  * @param runtime runtime options for this request RuntimeOptions
@@ -32288,11 +31793,8 @@ export default class Client extends OpenApi {
32288
31793
  }
32289
31794
 
32290
31795
  /**
32291
- * * All tags (key-value pairs) are applied to all resources of a specified ResourceId, with each resource specified as ResourceId.N.
32292
- * * Tag.N is a resource tag consisting of a key-value pair: Tag.N.Key and Tag.N.Value.
32293
- * * If you call this operation to tag multiple resources simultaneously, either all or none of the resources will be tagged.
32294
- * * 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.
32295
- * * If a tag with the same key has been bound to a resource, the new tag will overwrite the existing one.
31796
+ * The key of tag N.
31797
+ * Valid values of N: `1 to 20.`
32296
31798
  *
32297
31799
  * @param request TagResourcesRequest
32298
31800
  * @return TagResourcesResponse
@@ -32303,11 +31805,9 @@ export default class Client extends OpenApi {
32303
31805
  }
32304
31806
 
32305
31807
  /**
32306
- * * If you call this operation to untag multiple resources simultaneously, either all or none of the resources will be untagged.
32307
- * * 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.
32308
- * * 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.
32309
- * * When tag keys are specified, the All parameter is invalid.
32310
- * * When multiple resources and key-value pairs are specified, the specified tags bound to the resources are deleted.
31808
+ * Specifies whether to delete all tags. This parameter is valid only when the **TagKey.N**parameter is not specified. Default value: false. Valid values:
31809
+ * * **true**
31810
+ * * **false**
32311
31811
  *
32312
31812
  * @param request UntagResourcesRequest
32313
31813
  * @param runtime runtime options for this request RuntimeOptions
@@ -32354,11 +31854,9 @@ export default class Client extends OpenApi {
32354
31854
  }
32355
31855
 
32356
31856
  /**
32357
- * * If you call this operation to untag multiple resources simultaneously, either all or none of the resources will be untagged.
32358
- * * 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.
32359
- * * 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.
32360
- * * When tag keys are specified, the All parameter is invalid.
32361
- * * When multiple resources and key-value pairs are specified, the specified tags bound to the resources are deleted.
31857
+ * Specifies whether to delete all tags. This parameter is valid only when the **TagKey.N**parameter is not specified. Default value: false. Valid values:
31858
+ * * **true**
31859
+ * * **false**
32362
31860
  *
32363
31861
  * @param request UntagResourcesRequest
32364
31862
  * @return UntagResourcesResponse
@@ -32368,4 +31866,41 @@ export default class Client extends OpenApi {
32368
31866
  return await this.untagResourcesWithOptions(request, runtime);
32369
31867
  }
32370
31868
 
31869
+ async validateVpcConnectivityWithOptions(request: ValidateVpcConnectivityRequest, runtime: $Util.RuntimeOptions): Promise<ValidateVpcConnectivityResponse> {
31870
+ Util.validateModel(request);
31871
+ let query = { };
31872
+ if (!Util.isUnset(request.instanceId)) {
31873
+ query["InstanceId"] = request.instanceId;
31874
+ }
31875
+
31876
+ if (!Util.isUnset(request.securityToken)) {
31877
+ query["SecurityToken"] = request.securityToken;
31878
+ }
31879
+
31880
+ if (!Util.isUnset(request.vpcAccessId)) {
31881
+ query["VpcAccessId"] = request.vpcAccessId;
31882
+ }
31883
+
31884
+ let req = new $OpenApi.OpenApiRequest({
31885
+ query: OpenApiUtil.query(query),
31886
+ });
31887
+ let params = new $OpenApi.Params({
31888
+ action: "ValidateVpcConnectivity",
31889
+ version: "2016-07-14",
31890
+ protocol: "HTTPS",
31891
+ pathname: "/",
31892
+ method: "POST",
31893
+ authType: "AK",
31894
+ style: "RPC",
31895
+ reqBodyType: "formData",
31896
+ bodyType: "json",
31897
+ });
31898
+ return $tea.cast<ValidateVpcConnectivityResponse>(await this.callApi(params, req, runtime), new ValidateVpcConnectivityResponse({}));
31899
+ }
31900
+
31901
+ async validateVpcConnectivity(request: ValidateVpcConnectivityRequest): Promise<ValidateVpcConnectivityResponse> {
31902
+ let runtime = new $Util.RuntimeOptions({ });
31903
+ return await this.validateVpcConnectivityWithOptions(request, runtime);
31904
+ }
31905
+
32371
31906
  }