@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/dist/client.d.ts +191 -738
- package/dist/client.js +274 -765
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +307 -772
package/dist/client.d.ts
CHANGED
|
@@ -7467,6 +7467,7 @@ export declare class ResetAppCodeResponse extends $tea.Model {
|
|
|
7467
7467
|
}
|
|
7468
7468
|
export declare class ResetAppSecretRequest extends $tea.Model {
|
|
7469
7469
|
appKey?: string;
|
|
7470
|
+
newAppKey?: string;
|
|
7470
7471
|
newAppSecret?: string;
|
|
7471
7472
|
securityToken?: string;
|
|
7472
7473
|
static names(): {
|
|
@@ -8308,6 +8309,50 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
8308
8309
|
[key: string]: any;
|
|
8309
8310
|
});
|
|
8310
8311
|
}
|
|
8312
|
+
export declare class ValidateVpcConnectivityRequest extends $tea.Model {
|
|
8313
|
+
instanceId?: string;
|
|
8314
|
+
securityToken?: string;
|
|
8315
|
+
vpcAccessId?: string;
|
|
8316
|
+
static names(): {
|
|
8317
|
+
[key: string]: string;
|
|
8318
|
+
};
|
|
8319
|
+
static types(): {
|
|
8320
|
+
[key: string]: any;
|
|
8321
|
+
};
|
|
8322
|
+
constructor(map?: {
|
|
8323
|
+
[key: string]: any;
|
|
8324
|
+
});
|
|
8325
|
+
}
|
|
8326
|
+
export declare class ValidateVpcConnectivityResponseBody extends $tea.Model {
|
|
8327
|
+
connected?: boolean;
|
|
8328
|
+
ipType?: string;
|
|
8329
|
+
requestId?: string;
|
|
8330
|
+
static names(): {
|
|
8331
|
+
[key: string]: string;
|
|
8332
|
+
};
|
|
8333
|
+
static types(): {
|
|
8334
|
+
[key: string]: any;
|
|
8335
|
+
};
|
|
8336
|
+
constructor(map?: {
|
|
8337
|
+
[key: string]: any;
|
|
8338
|
+
});
|
|
8339
|
+
}
|
|
8340
|
+
export declare class ValidateVpcConnectivityResponse extends $tea.Model {
|
|
8341
|
+
headers: {
|
|
8342
|
+
[key: string]: string;
|
|
8343
|
+
};
|
|
8344
|
+
statusCode: number;
|
|
8345
|
+
body: ValidateVpcConnectivityResponseBody;
|
|
8346
|
+
static names(): {
|
|
8347
|
+
[key: string]: string;
|
|
8348
|
+
};
|
|
8349
|
+
static types(): {
|
|
8350
|
+
[key: string]: any;
|
|
8351
|
+
};
|
|
8352
|
+
constructor(map?: {
|
|
8353
|
+
[key: string]: any;
|
|
8354
|
+
});
|
|
8355
|
+
}
|
|
8311
8356
|
export declare class BatchAbolishApisRequestApi extends $tea.Model {
|
|
8312
8357
|
apiUid?: string;
|
|
8313
8358
|
groupId?: string;
|
|
@@ -9108,6 +9153,8 @@ export declare class DescribeApiGroupResponseBodyCustomDomainsDomainItem extends
|
|
|
9108
9153
|
bindStageName?: string;
|
|
9109
9154
|
certificateId?: string;
|
|
9110
9155
|
certificateName?: string;
|
|
9156
|
+
certificateValidEnd?: number;
|
|
9157
|
+
certificateValidStart?: number;
|
|
9111
9158
|
customDomainType?: string;
|
|
9112
9159
|
domainBindingStatus?: string;
|
|
9113
9160
|
domainCNAMEStatus?: string;
|
|
@@ -10412,6 +10459,7 @@ export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBack
|
|
|
10412
10459
|
export declare class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfig extends $tea.Model {
|
|
10413
10460
|
eventBridgeConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigEventBridgeConfig;
|
|
10414
10461
|
functionComputeConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigFunctionComputeConfig;
|
|
10462
|
+
httpTargetHostName?: string;
|
|
10415
10463
|
mockConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigMockConfig;
|
|
10416
10464
|
ossConfig?: DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigOssConfig;
|
|
10417
10465
|
serviceAddress?: string;
|
|
@@ -11380,6 +11428,7 @@ export declare class DescribeInstancesResponseBodyInstancesInstanceAttribute ext
|
|
|
11380
11428
|
IPV6AclType?: string;
|
|
11381
11429
|
instanceChargeType?: string;
|
|
11382
11430
|
instanceCidrBlock?: string;
|
|
11431
|
+
instanceClusterId?: string;
|
|
11383
11432
|
instanceId?: string;
|
|
11384
11433
|
instanceName?: string;
|
|
11385
11434
|
instanceRpsLimit?: number;
|
|
@@ -12690,28 +12739,17 @@ export default class Client extends OpenApi {
|
|
|
12690
12739
|
getEndpoint(productId: string, regionId: string, endpointRule: string, network: string, suffix: string, endpointMap: {
|
|
12691
12740
|
[key: string]: string;
|
|
12692
12741
|
}, endpoint: string): string;
|
|
12693
|
-
/**
|
|
12694
|
-
* Unpublishes a specified API from a specified runtime environment.
|
|
12695
|
-
*
|
|
12696
|
-
* @param request AbolishApiRequest
|
|
12697
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
12698
|
-
* @return AbolishApiResponse
|
|
12699
|
-
*/
|
|
12700
12742
|
abolishApiWithOptions(request: AbolishApiRequest, runtime: $Util.RuntimeOptions): Promise<AbolishApiResponse>;
|
|
12701
|
-
/**
|
|
12702
|
-
* Unpublishes a specified API from a specified runtime environment.
|
|
12703
|
-
*
|
|
12704
|
-
* @param request AbolishApiRequest
|
|
12705
|
-
* @return AbolishApiResponse
|
|
12706
|
-
*/
|
|
12707
12743
|
abolishApi(request: AbolishApiRequest): Promise<AbolishApiResponse>;
|
|
12708
12744
|
addAccessControlListEntryWithOptions(request: AddAccessControlListEntryRequest, runtime: $Util.RuntimeOptions): Promise<AddAccessControlListEntryResponse>;
|
|
12709
12745
|
addAccessControlListEntry(request: AddAccessControlListEntryRequest): Promise<AddAccessControlListEntryResponse>;
|
|
12710
12746
|
/**
|
|
12711
|
-
*
|
|
12712
|
-
* *
|
|
12713
|
-
* *
|
|
12714
|
-
* *
|
|
12747
|
+
* 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.
|
|
12748
|
+
* * You can add only one app ID restriction policy at a time.
|
|
12749
|
+
* * If this parameter is empty, no restriction is imposed on the app IDs.
|
|
12750
|
+
* * If this parameter is not empty, there is restriction not only on IP addresses, but also on apps.
|
|
12751
|
+
* * 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.
|
|
12752
|
+
* * 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.
|
|
12715
12753
|
*
|
|
12716
12754
|
* @param request AddIpControlPolicyItemRequest
|
|
12717
12755
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12719,19 +12757,21 @@ export default class Client extends OpenApi {
|
|
|
12719
12757
|
*/
|
|
12720
12758
|
addIpControlPolicyItemWithOptions(request: AddIpControlPolicyItemRequest, runtime: $Util.RuntimeOptions): Promise<AddIpControlPolicyItemResponse>;
|
|
12721
12759
|
/**
|
|
12722
|
-
*
|
|
12723
|
-
* *
|
|
12724
|
-
* *
|
|
12725
|
-
* *
|
|
12760
|
+
* 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.
|
|
12761
|
+
* * You can add only one app ID restriction policy at a time.
|
|
12762
|
+
* * If this parameter is empty, no restriction is imposed on the app IDs.
|
|
12763
|
+
* * If this parameter is not empty, there is restriction not only on IP addresses, but also on apps.
|
|
12764
|
+
* * 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.
|
|
12765
|
+
* * 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.
|
|
12726
12766
|
*
|
|
12727
12767
|
* @param request AddIpControlPolicyItemRequest
|
|
12728
12768
|
* @return AddIpControlPolicyItemResponse
|
|
12729
12769
|
*/
|
|
12730
12770
|
addIpControlPolicyItem(request: AddIpControlPolicyItemRequest): Promise<AddIpControlPolicyItemResponse>;
|
|
12731
12771
|
/**
|
|
12732
|
-
*
|
|
12733
|
-
* *
|
|
12734
|
-
* *
|
|
12772
|
+
* The type of the special throttling policy. Valid values:
|
|
12773
|
+
* * **APP**
|
|
12774
|
+
* * **USER**
|
|
12735
12775
|
*
|
|
12736
12776
|
* @param request AddTrafficSpecialControlRequest
|
|
12737
12777
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12739,34 +12779,15 @@ export default class Client extends OpenApi {
|
|
|
12739
12779
|
*/
|
|
12740
12780
|
addTrafficSpecialControlWithOptions(request: AddTrafficSpecialControlRequest, runtime: $Util.RuntimeOptions): Promise<AddTrafficSpecialControlResponse>;
|
|
12741
12781
|
/**
|
|
12742
|
-
*
|
|
12743
|
-
* *
|
|
12744
|
-
* *
|
|
12782
|
+
* The type of the special throttling policy. Valid values:
|
|
12783
|
+
* * **APP**
|
|
12784
|
+
* * **USER**
|
|
12745
12785
|
*
|
|
12746
12786
|
* @param request AddTrafficSpecialControlRequest
|
|
12747
12787
|
* @return AddTrafficSpecialControlResponse
|
|
12748
12788
|
*/
|
|
12749
12789
|
addTrafficSpecialControl(request: AddTrafficSpecialControlRequest): Promise<AddTrafficSpecialControlResponse>;
|
|
12750
|
-
/**
|
|
12751
|
-
* * This operation is intended for API providers.
|
|
12752
|
-
* * You can only bind plug-ins to published APIs.
|
|
12753
|
-
* * The plug-in takes effect immediately after it is bound to an API.
|
|
12754
|
-
* * If you bind a different plug-in to an API, this plug-in takes effect immediately.
|
|
12755
|
-
*
|
|
12756
|
-
* @param request AttachPluginRequest
|
|
12757
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
12758
|
-
* @return AttachPluginResponse
|
|
12759
|
-
*/
|
|
12760
12790
|
attachPluginWithOptions(request: AttachPluginRequest, runtime: $Util.RuntimeOptions): Promise<AttachPluginResponse>;
|
|
12761
|
-
/**
|
|
12762
|
-
* * This operation is intended for API providers.
|
|
12763
|
-
* * You can only bind plug-ins to published APIs.
|
|
12764
|
-
* * The plug-in takes effect immediately after it is bound to an API.
|
|
12765
|
-
* * If you bind a different plug-in to an API, this plug-in takes effect immediately.
|
|
12766
|
-
*
|
|
12767
|
-
* @param request AttachPluginRequest
|
|
12768
|
-
* @return AttachPluginResponse
|
|
12769
|
-
*/
|
|
12770
12791
|
attachPlugin(request: AttachPluginRequest): Promise<AttachPluginResponse>;
|
|
12771
12792
|
batchAbolishApisWithOptions(request: BatchAbolishApisRequest, runtime: $Util.RuntimeOptions): Promise<BatchAbolishApisResponse>;
|
|
12772
12793
|
batchAbolishApis(request: BatchAbolishApisRequest): Promise<BatchAbolishApisResponse>;
|
|
@@ -12795,72 +12816,11 @@ export default class Client extends OpenApi {
|
|
|
12795
12816
|
* @return CreateApiResponse
|
|
12796
12817
|
*/
|
|
12797
12818
|
createApi(request: CreateApiRequest): Promise<CreateApiResponse>;
|
|
12798
|
-
/**
|
|
12799
|
-
* 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.
|
|
12800
|
-
* * This operation is intended for API providers.
|
|
12801
|
-
* * Each user can create a maximum of 100 API groups in a region.
|
|
12802
|
-
* * A second-level domain name is automatically allocated to the API group for testing purposes.
|
|
12803
|
-
* * 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.
|
|
12804
|
-
* * After you create an API group, you can bind a custom domain name to the group.
|
|
12805
|
-
* * The QPS limit on this operation is 50 per user.
|
|
12806
|
-
*
|
|
12807
|
-
* @param request CreateApiGroupRequest
|
|
12808
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
12809
|
-
* @return CreateApiGroupResponse
|
|
12810
|
-
*/
|
|
12811
12819
|
createApiGroupWithOptions(request: CreateApiGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateApiGroupResponse>;
|
|
12812
|
-
/**
|
|
12813
|
-
* 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.
|
|
12814
|
-
* * This operation is intended for API providers.
|
|
12815
|
-
* * Each user can create a maximum of 100 API groups in a region.
|
|
12816
|
-
* * A second-level domain name is automatically allocated to the API group for testing purposes.
|
|
12817
|
-
* * 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.
|
|
12818
|
-
* * After you create an API group, you can bind a custom domain name to the group.
|
|
12819
|
-
* * The QPS limit on this operation is 50 per user.
|
|
12820
|
-
*
|
|
12821
|
-
* @param request CreateApiGroupRequest
|
|
12822
|
-
* @return CreateApiGroupResponse
|
|
12823
|
-
*/
|
|
12824
12820
|
createApiGroup(request: CreateApiGroupRequest): Promise<CreateApiGroupResponse>;
|
|
12825
|
-
/**
|
|
12826
|
-
* * This operation is intended for API providers.
|
|
12827
|
-
*
|
|
12828
|
-
* @param request CreateApiStageVariableRequest
|
|
12829
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
12830
|
-
* @return CreateApiStageVariableResponse
|
|
12831
|
-
*/
|
|
12832
12821
|
createApiStageVariableWithOptions(request: CreateApiStageVariableRequest, runtime: $Util.RuntimeOptions): Promise<CreateApiStageVariableResponse>;
|
|
12833
|
-
/**
|
|
12834
|
-
* * This operation is intended for API providers.
|
|
12835
|
-
*
|
|
12836
|
-
* @param request CreateApiStageVariableRequest
|
|
12837
|
-
* @return CreateApiStageVariableResponse
|
|
12838
|
-
*/
|
|
12839
12822
|
createApiStageVariable(request: CreateApiStageVariableRequest): Promise<CreateApiStageVariableResponse>;
|
|
12840
|
-
/**
|
|
12841
|
-
* * This operation is intended for API callers.
|
|
12842
|
-
* * Each application has a key-secret pair which is used for identity verification when calling an API.
|
|
12843
|
-
* * An application must be authorized to call an API.
|
|
12844
|
-
* * Each application has only one key-secret pair which can be reset if it is leaked.
|
|
12845
|
-
* * A maximum of 1,000 applications can be created for each Apsara Stack tenant account.
|
|
12846
|
-
* * The QPS limit on this operation is 50 per user.
|
|
12847
|
-
*
|
|
12848
|
-
* @param request CreateAppRequest
|
|
12849
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
12850
|
-
* @return CreateAppResponse
|
|
12851
|
-
*/
|
|
12852
12823
|
createAppWithOptions(request: CreateAppRequest, runtime: $Util.RuntimeOptions): Promise<CreateAppResponse>;
|
|
12853
|
-
/**
|
|
12854
|
-
* * This operation is intended for API callers.
|
|
12855
|
-
* * Each application has a key-secret pair which is used for identity verification when calling an API.
|
|
12856
|
-
* * An application must be authorized to call an API.
|
|
12857
|
-
* * Each application has only one key-secret pair which can be reset if it is leaked.
|
|
12858
|
-
* * A maximum of 1,000 applications can be created for each Apsara Stack tenant account.
|
|
12859
|
-
* * The QPS limit on this operation is 50 per user.
|
|
12860
|
-
*
|
|
12861
|
-
* @param request CreateAppRequest
|
|
12862
|
-
* @return CreateAppResponse
|
|
12863
|
-
*/
|
|
12864
12824
|
createApp(request: CreateAppRequest): Promise<CreateAppResponse>;
|
|
12865
12825
|
createBackendWithOptions(request: CreateBackendRequest, runtime: $Util.RuntimeOptions): Promise<CreateBackendResponse>;
|
|
12866
12826
|
createBackend(request: CreateBackendRequest): Promise<CreateBackendResponse>;
|
|
@@ -12874,26 +12834,7 @@ export default class Client extends OpenApi {
|
|
|
12874
12834
|
createInstance(request: CreateInstanceRequest): Promise<CreateInstanceResponse>;
|
|
12875
12835
|
createIntranetDomainWithOptions(request: CreateIntranetDomainRequest, runtime: $Util.RuntimeOptions): Promise<CreateIntranetDomainResponse>;
|
|
12876
12836
|
createIntranetDomain(request: CreateIntranetDomainRequest): Promise<CreateIntranetDomainResponse>;
|
|
12877
|
-
/**
|
|
12878
|
-
* * This operation is intended for API providers.
|
|
12879
|
-
* * 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.
|
|
12880
|
-
* * You can add policies to an ACL when you create the ACL.
|
|
12881
|
-
* * If an ACL does not have any policy, the ACL is ineffective.
|
|
12882
|
-
*
|
|
12883
|
-
* @param request CreateIpControlRequest
|
|
12884
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
12885
|
-
* @return CreateIpControlResponse
|
|
12886
|
-
*/
|
|
12887
12837
|
createIpControlWithOptions(request: CreateIpControlRequest, runtime: $Util.RuntimeOptions): Promise<CreateIpControlResponse>;
|
|
12888
|
-
/**
|
|
12889
|
-
* * This operation is intended for API providers.
|
|
12890
|
-
* * 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.
|
|
12891
|
-
* * You can add policies to an ACL when you create the ACL.
|
|
12892
|
-
* * If an ACL does not have any policy, the ACL is ineffective.
|
|
12893
|
-
*
|
|
12894
|
-
* @param request CreateIpControlRequest
|
|
12895
|
-
* @return CreateIpControlResponse
|
|
12896
|
-
*/
|
|
12897
12838
|
createIpControl(request: CreateIpControlRequest): Promise<CreateIpControlResponse>;
|
|
12898
12839
|
createLogConfigWithOptions(request: CreateLogConfigRequest, runtime: $Util.RuntimeOptions): Promise<CreateLogConfigResponse>;
|
|
12899
12840
|
createLogConfig(request: CreateLogConfigRequest): Promise<CreateLogConfigResponse>;
|
|
@@ -12916,32 +12857,10 @@ export default class Client extends OpenApi {
|
|
|
12916
12857
|
createModel(request: CreateModelRequest): Promise<CreateModelResponse>;
|
|
12917
12858
|
createMonitorGroupWithOptions(request: CreateMonitorGroupRequest, runtime: $Util.RuntimeOptions): Promise<CreateMonitorGroupResponse>;
|
|
12918
12859
|
createMonitorGroup(request: CreateMonitorGroupRequest): Promise<CreateMonitorGroupResponse>;
|
|
12919
|
-
/**
|
|
12920
|
-
* * This operation is intended for API providers.
|
|
12921
|
-
* * The number of plug-ins of the same type that each user can create is limited. Different limits apply to different plug-in types.
|
|
12922
|
-
* * The plug-in definitions for advanced features are restricted.
|
|
12923
|
-
* * Plug-ins must be bound to APIs to take effect. After a plug-in is bound, it takes effect on that API immediately.
|
|
12924
|
-
*
|
|
12925
|
-
* @param request CreatePluginRequest
|
|
12926
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
12927
|
-
* @return CreatePluginResponse
|
|
12928
|
-
*/
|
|
12929
12860
|
createPluginWithOptions(request: CreatePluginRequest, runtime: $Util.RuntimeOptions): Promise<CreatePluginResponse>;
|
|
12930
|
-
/**
|
|
12931
|
-
* * This operation is intended for API providers.
|
|
12932
|
-
* * The number of plug-ins of the same type that each user can create is limited. Different limits apply to different plug-in types.
|
|
12933
|
-
* * The plug-in definitions for advanced features are restricted.
|
|
12934
|
-
* * Plug-ins must be bound to APIs to take effect. After a plug-in is bound, it takes effect on that API immediately.
|
|
12935
|
-
*
|
|
12936
|
-
* @param request CreatePluginRequest
|
|
12937
|
-
* @return CreatePluginResponse
|
|
12938
|
-
*/
|
|
12939
12861
|
createPlugin(request: CreatePluginRequest): Promise<CreatePluginResponse>;
|
|
12940
12862
|
/**
|
|
12941
|
-
*
|
|
12942
|
-
* * The API operation only creates a key policy. You must call the binding operation to bind the key to an API.
|
|
12943
|
-
* * 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.
|
|
12944
|
-
* * The QPS limit on this operation is 50 per user.
|
|
12863
|
+
* 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.
|
|
12945
12864
|
*
|
|
12946
12865
|
* @param request CreateSignatureRequest
|
|
12947
12866
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12949,19 +12868,14 @@ export default class Client extends OpenApi {
|
|
|
12949
12868
|
*/
|
|
12950
12869
|
createSignatureWithOptions(request: CreateSignatureRequest, runtime: $Util.RuntimeOptions): Promise<CreateSignatureResponse>;
|
|
12951
12870
|
/**
|
|
12952
|
-
*
|
|
12953
|
-
* * The API operation only creates a key policy. You must call the binding operation to bind the key to an API.
|
|
12954
|
-
* * 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.
|
|
12955
|
-
* * The QPS limit on this operation is 50 per user.
|
|
12871
|
+
* 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.
|
|
12956
12872
|
*
|
|
12957
12873
|
* @param request CreateSignatureRequest
|
|
12958
12874
|
* @return CreateSignatureResponse
|
|
12959
12875
|
*/
|
|
12960
12876
|
createSignature(request: CreateSignatureRequest): Promise<CreateSignatureResponse>;
|
|
12961
12877
|
/**
|
|
12962
|
-
*
|
|
12963
|
-
* * 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.
|
|
12964
|
-
* * The QPS limit on this operation is 50 per user.
|
|
12878
|
+
* ThrottlingTest
|
|
12965
12879
|
*
|
|
12966
12880
|
* @param request CreateTrafficControlRequest
|
|
12967
12881
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12969,9 +12883,7 @@ export default class Client extends OpenApi {
|
|
|
12969
12883
|
*/
|
|
12970
12884
|
createTrafficControlWithOptions(request: CreateTrafficControlRequest, runtime: $Util.RuntimeOptions): Promise<CreateTrafficControlResponse>;
|
|
12971
12885
|
/**
|
|
12972
|
-
*
|
|
12973
|
-
* * 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.
|
|
12974
|
-
* * The QPS limit on this operation is 50 per user.
|
|
12886
|
+
* ThrottlingTest
|
|
12975
12887
|
*
|
|
12976
12888
|
* @param request CreateTrafficControlRequest
|
|
12977
12889
|
* @return CreateTrafficControlResponse
|
|
@@ -12980,7 +12892,7 @@ export default class Client extends OpenApi {
|
|
|
12980
12892
|
deleteAccessControlListWithOptions(request: DeleteAccessControlListRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAccessControlListResponse>;
|
|
12981
12893
|
deleteAccessControlList(request: DeleteAccessControlListRequest): Promise<DeleteAccessControlListResponse>;
|
|
12982
12894
|
/**
|
|
12983
|
-
*
|
|
12895
|
+
* The ID of the request.
|
|
12984
12896
|
*
|
|
12985
12897
|
* @param request DeleteAllTrafficSpecialControlRequest
|
|
12986
12898
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -12988,74 +12900,19 @@ export default class Client extends OpenApi {
|
|
|
12988
12900
|
*/
|
|
12989
12901
|
deleteAllTrafficSpecialControlWithOptions(request: DeleteAllTrafficSpecialControlRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAllTrafficSpecialControlResponse>;
|
|
12990
12902
|
/**
|
|
12991
|
-
*
|
|
12903
|
+
* The ID of the request.
|
|
12992
12904
|
*
|
|
12993
12905
|
* @param request DeleteAllTrafficSpecialControlRequest
|
|
12994
12906
|
* @return DeleteAllTrafficSpecialControlResponse
|
|
12995
12907
|
*/
|
|
12996
12908
|
deleteAllTrafficSpecialControl(request: DeleteAllTrafficSpecialControlRequest): Promise<DeleteAllTrafficSpecialControlResponse>;
|
|
12997
|
-
/**
|
|
12998
|
-
* * This operation is intended for API providers and cannot be undone after it is complete.
|
|
12999
|
-
* * An API that is running in the runtime environment must be unpublished before you can delete the API.****
|
|
13000
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13001
|
-
*
|
|
13002
|
-
* @param request DeleteApiRequest
|
|
13003
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13004
|
-
* @return DeleteApiResponse
|
|
13005
|
-
*/
|
|
13006
12909
|
deleteApiWithOptions(request: DeleteApiRequest, runtime: $Util.RuntimeOptions): Promise<DeleteApiResponse>;
|
|
13007
|
-
/**
|
|
13008
|
-
* * This operation is intended for API providers and cannot be undone after it is complete.
|
|
13009
|
-
* * An API that is running in the runtime environment must be unpublished before you can delete the API.****
|
|
13010
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13011
|
-
*
|
|
13012
|
-
* @param request DeleteApiRequest
|
|
13013
|
-
* @return DeleteApiResponse
|
|
13014
|
-
*/
|
|
13015
12910
|
deleteApi(request: DeleteApiRequest): Promise<DeleteApiResponse>;
|
|
13016
|
-
/**
|
|
13017
|
-
* * This operation is intended for API providers.
|
|
13018
|
-
* * An API group that contains APIs cannot be deleted. To delete the API group, you must first delete its APIs.
|
|
13019
|
-
* * After an API group is deleted, the second-level domain name bound to the API group is automatically invalidated.
|
|
13020
|
-
* * If the specified API group does not exist, a success response is returned.
|
|
13021
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13022
|
-
*
|
|
13023
|
-
* @param request DeleteApiGroupRequest
|
|
13024
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13025
|
-
* @return DeleteApiGroupResponse
|
|
13026
|
-
*/
|
|
13027
12911
|
deleteApiGroupWithOptions(request: DeleteApiGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteApiGroupResponse>;
|
|
13028
|
-
/**
|
|
13029
|
-
* * This operation is intended for API providers.
|
|
13030
|
-
* * An API group that contains APIs cannot be deleted. To delete the API group, you must first delete its APIs.
|
|
13031
|
-
* * After an API group is deleted, the second-level domain name bound to the API group is automatically invalidated.
|
|
13032
|
-
* * If the specified API group does not exist, a success response is returned.
|
|
13033
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13034
|
-
*
|
|
13035
|
-
* @param request DeleteApiGroupRequest
|
|
13036
|
-
* @return DeleteApiGroupResponse
|
|
13037
|
-
*/
|
|
13038
12912
|
deleteApiGroup(request: DeleteApiGroupRequest): Promise<DeleteApiGroupResponse>;
|
|
13039
12913
|
deleteApiStageVariableWithOptions(request: DeleteApiStageVariableRequest, runtime: $Util.RuntimeOptions): Promise<DeleteApiStageVariableResponse>;
|
|
13040
12914
|
deleteApiStageVariable(request: DeleteApiStageVariableRequest): Promise<DeleteApiStageVariableResponse>;
|
|
13041
|
-
/**
|
|
13042
|
-
* * This operation is intended for API callers.
|
|
13043
|
-
* * After an application is deleted, the application and its API authorization cannot be restored.
|
|
13044
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13045
|
-
*
|
|
13046
|
-
* @param request DeleteAppRequest
|
|
13047
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13048
|
-
* @return DeleteAppResponse
|
|
13049
|
-
*/
|
|
13050
12915
|
deleteAppWithOptions(request: DeleteAppRequest, runtime: $Util.RuntimeOptions): Promise<DeleteAppResponse>;
|
|
13051
|
-
/**
|
|
13052
|
-
* * This operation is intended for API callers.
|
|
13053
|
-
* * After an application is deleted, the application and its API authorization cannot be restored.
|
|
13054
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13055
|
-
*
|
|
13056
|
-
* @param request DeleteAppRequest
|
|
13057
|
-
* @return DeleteAppResponse
|
|
13058
|
-
*/
|
|
13059
12916
|
deleteApp(request: DeleteAppRequest): Promise<DeleteAppResponse>;
|
|
13060
12917
|
deleteBackendWithOptions(request: DeleteBackendRequest, runtime: $Util.RuntimeOptions): Promise<DeleteBackendResponse>;
|
|
13061
12918
|
deleteBackend(request: DeleteBackendRequest): Promise<DeleteBackendResponse>;
|
|
@@ -13066,9 +12923,7 @@ export default class Client extends OpenApi {
|
|
|
13066
12923
|
deleteDatasetItemWithOptions(request: DeleteDatasetItemRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDatasetItemResponse>;
|
|
13067
12924
|
deleteDatasetItem(request: DeleteDatasetItemRequest): Promise<DeleteDatasetItemResponse>;
|
|
13068
12925
|
/**
|
|
13069
|
-
*
|
|
13070
|
-
* * If the specified domain name does not exist, a successful response will still appear.
|
|
13071
|
-
* * Unbinding a domain name from an API group will affect access to the APIs in the group. Exercise caution when using this operation.
|
|
12926
|
+
* The custom domain name.
|
|
13072
12927
|
*
|
|
13073
12928
|
* @param request DeleteDomainRequest
|
|
13074
12929
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13076,9 +12931,7 @@ export default class Client extends OpenApi {
|
|
|
13076
12931
|
*/
|
|
13077
12932
|
deleteDomainWithOptions(request: DeleteDomainRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDomainResponse>;
|
|
13078
12933
|
/**
|
|
13079
|
-
*
|
|
13080
|
-
* * If the specified domain name does not exist, a successful response will still appear.
|
|
13081
|
-
* * Unbinding a domain name from an API group will affect access to the APIs in the group. Exercise caution when using this operation.
|
|
12934
|
+
* The custom domain name.
|
|
13082
12935
|
*
|
|
13083
12936
|
* @param request DeleteDomainRequest
|
|
13084
12937
|
* @return DeleteDomainResponse
|
|
@@ -13089,9 +12942,7 @@ export default class Client extends OpenApi {
|
|
|
13089
12942
|
deleteInstanceWithOptions(request: DeleteInstanceRequest, runtime: $Util.RuntimeOptions): Promise<DeleteInstanceResponse>;
|
|
13090
12943
|
deleteInstance(request: DeleteInstanceRequest): Promise<DeleteInstanceResponse>;
|
|
13091
12944
|
/**
|
|
13092
|
-
*
|
|
13093
|
-
* * 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.
|
|
13094
|
-
* * If you call this operation on an ACL that does not exist, a success message is returned.
|
|
12945
|
+
* The ID of the request.
|
|
13095
12946
|
*
|
|
13096
12947
|
* @param request DeleteIpControlRequest
|
|
13097
12948
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13099,9 +12950,7 @@ export default class Client extends OpenApi {
|
|
|
13099
12950
|
*/
|
|
13100
12951
|
deleteIpControlWithOptions(request: DeleteIpControlRequest, runtime: $Util.RuntimeOptions): Promise<DeleteIpControlResponse>;
|
|
13101
12952
|
/**
|
|
13102
|
-
*
|
|
13103
|
-
* * 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.
|
|
13104
|
-
* * If you call this operation on an ACL that does not exist, a success message is returned.
|
|
12953
|
+
* The ID of the request.
|
|
13105
12954
|
*
|
|
13106
12955
|
* @param request DeleteIpControlRequest
|
|
13107
12956
|
* @return DeleteIpControlResponse
|
|
@@ -13113,28 +12962,10 @@ export default class Client extends OpenApi {
|
|
|
13113
12962
|
deleteModel(request: DeleteModelRequest): Promise<DeleteModelResponse>;
|
|
13114
12963
|
deleteMonitorGroupWithOptions(request: DeleteMonitorGroupRequest, runtime: $Util.RuntimeOptions): Promise<DeleteMonitorGroupResponse>;
|
|
13115
12964
|
deleteMonitorGroup(request: DeleteMonitorGroupRequest): Promise<DeleteMonitorGroupResponse>;
|
|
13116
|
-
/**
|
|
13117
|
-
* * This operation is intended for API providers.
|
|
13118
|
-
* * You must first unbind the plug-in from the API. Otherwise, an error is reported when you delete the plug-in.
|
|
13119
|
-
*
|
|
13120
|
-
* @param request DeletePluginRequest
|
|
13121
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13122
|
-
* @return DeletePluginResponse
|
|
13123
|
-
*/
|
|
13124
12965
|
deletePluginWithOptions(request: DeletePluginRequest, runtime: $Util.RuntimeOptions): Promise<DeletePluginResponse>;
|
|
13125
|
-
/**
|
|
13126
|
-
* * This operation is intended for API providers.
|
|
13127
|
-
* * You must first unbind the plug-in from the API. Otherwise, an error is reported when you delete the plug-in.
|
|
13128
|
-
*
|
|
13129
|
-
* @param request DeletePluginRequest
|
|
13130
|
-
* @return DeletePluginResponse
|
|
13131
|
-
*/
|
|
13132
12966
|
deletePlugin(request: DeletePluginRequest): Promise<DeletePluginResponse>;
|
|
13133
12967
|
/**
|
|
13134
|
-
*
|
|
13135
|
-
* * This API operation deletes an existing backend signature key.
|
|
13136
|
-
* * You cannot delete a key that is bound to an API. To delete the key, you must unbind it first.
|
|
13137
|
-
* * The QPS limit on this operation is 50 per user.
|
|
12968
|
+
* The ID of the request.
|
|
13138
12969
|
*
|
|
13139
12970
|
* @param request DeleteSignatureRequest
|
|
13140
12971
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13142,37 +12973,18 @@ export default class Client extends OpenApi {
|
|
|
13142
12973
|
*/
|
|
13143
12974
|
deleteSignatureWithOptions(request: DeleteSignatureRequest, runtime: $Util.RuntimeOptions): Promise<DeleteSignatureResponse>;
|
|
13144
12975
|
/**
|
|
13145
|
-
*
|
|
13146
|
-
* * This API operation deletes an existing backend signature key.
|
|
13147
|
-
* * You cannot delete a key that is bound to an API. To delete the key, you must unbind it first.
|
|
13148
|
-
* * The QPS limit on this operation is 50 per user.
|
|
12976
|
+
* The ID of the request.
|
|
13149
12977
|
*
|
|
13150
12978
|
* @param request DeleteSignatureRequest
|
|
13151
12979
|
* @return DeleteSignatureResponse
|
|
13152
12980
|
*/
|
|
13153
12981
|
deleteSignature(request: DeleteSignatureRequest): Promise<DeleteSignatureResponse>;
|
|
13154
|
-
/**
|
|
13155
|
-
* * This API is intended for API providers.
|
|
13156
|
-
* * 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.
|
|
13157
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13158
|
-
*
|
|
13159
|
-
* @param request DeleteTrafficControlRequest
|
|
13160
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13161
|
-
* @return DeleteTrafficControlResponse
|
|
13162
|
-
*/
|
|
13163
12982
|
deleteTrafficControlWithOptions(request: DeleteTrafficControlRequest, runtime: $Util.RuntimeOptions): Promise<DeleteTrafficControlResponse>;
|
|
13164
|
-
/**
|
|
13165
|
-
* * This API is intended for API providers.
|
|
13166
|
-
* * 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.
|
|
13167
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13168
|
-
*
|
|
13169
|
-
* @param request DeleteTrafficControlRequest
|
|
13170
|
-
* @return DeleteTrafficControlResponse
|
|
13171
|
-
*/
|
|
13172
12983
|
deleteTrafficControl(request: DeleteTrafficControlRequest): Promise<DeleteTrafficControlResponse>;
|
|
13173
12984
|
/**
|
|
13174
|
-
*
|
|
13175
|
-
* *
|
|
12985
|
+
* The type of the special throttling policy. Valid values:
|
|
12986
|
+
* * **APP**
|
|
12987
|
+
* * **USER**
|
|
13176
12988
|
*
|
|
13177
12989
|
* @param request DeleteTrafficSpecialControlRequest
|
|
13178
12990
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13180,17 +12992,16 @@ export default class Client extends OpenApi {
|
|
|
13180
12992
|
*/
|
|
13181
12993
|
deleteTrafficSpecialControlWithOptions(request: DeleteTrafficSpecialControlRequest, runtime: $Util.RuntimeOptions): Promise<DeleteTrafficSpecialControlResponse>;
|
|
13182
12994
|
/**
|
|
13183
|
-
*
|
|
13184
|
-
* *
|
|
12995
|
+
* The type of the special throttling policy. Valid values:
|
|
12996
|
+
* * **APP**
|
|
12997
|
+
* * **USER**
|
|
13185
12998
|
*
|
|
13186
12999
|
* @param request DeleteTrafficSpecialControlRequest
|
|
13187
13000
|
* @return DeleteTrafficSpecialControlResponse
|
|
13188
13001
|
*/
|
|
13189
13002
|
deleteTrafficSpecialControl(request: DeleteTrafficSpecialControlRequest): Promise<DeleteTrafficSpecialControlResponse>;
|
|
13190
13003
|
/**
|
|
13191
|
-
*
|
|
13192
|
-
* * An API is published to a cluster in less than 5 seconds.
|
|
13193
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13004
|
+
* The ID of the API.
|
|
13194
13005
|
*
|
|
13195
13006
|
* @param request DeployApiRequest
|
|
13196
13007
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13198,9 +13009,7 @@ export default class Client extends OpenApi {
|
|
|
13198
13009
|
*/
|
|
13199
13010
|
deployApiWithOptions(request: DeployApiRequest, runtime: $Util.RuntimeOptions): Promise<DeployApiResponse>;
|
|
13200
13011
|
/**
|
|
13201
|
-
*
|
|
13202
|
-
* * An API is published to a cluster in less than 5 seconds.
|
|
13203
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13012
|
+
* The ID of the API.
|
|
13204
13013
|
*
|
|
13205
13014
|
* @param request DeployApiRequest
|
|
13206
13015
|
* @return DeployApiResponse
|
|
@@ -13213,7 +13022,7 @@ export default class Client extends OpenApi {
|
|
|
13213
13022
|
describeAccessControlListsWithOptions(request: DescribeAccessControlListsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccessControlListsResponse>;
|
|
13214
13023
|
describeAccessControlLists(request: DescribeAccessControlListsRequest): Promise<DescribeAccessControlListsResponse>;
|
|
13215
13024
|
/**
|
|
13216
|
-
*
|
|
13025
|
+
* The ID of the public key.
|
|
13217
13026
|
*
|
|
13218
13027
|
* @param request DescribeApiRequest
|
|
13219
13028
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13221,32 +13030,13 @@ export default class Client extends OpenApi {
|
|
|
13221
13030
|
*/
|
|
13222
13031
|
describeApiWithOptions(request: DescribeApiRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiResponse>;
|
|
13223
13032
|
/**
|
|
13224
|
-
*
|
|
13033
|
+
* The ID of the public key.
|
|
13225
13034
|
*
|
|
13226
13035
|
* @param request DescribeApiRequest
|
|
13227
13036
|
* @return DescribeApiResponse
|
|
13228
13037
|
*/
|
|
13229
13038
|
describeApi(request: DescribeApiRequest): Promise<DescribeApiResponse>;
|
|
13230
|
-
/**
|
|
13231
|
-
* * 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.****************
|
|
13232
|
-
* * When you call this operation as an API caller, the service information, parameter definitions, and other details of the API you specify are returned.
|
|
13233
|
-
* * 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.
|
|
13234
|
-
* * 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.
|
|
13235
|
-
*
|
|
13236
|
-
* @param request DescribeApiDocRequest
|
|
13237
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13238
|
-
* @return DescribeApiDocResponse
|
|
13239
|
-
*/
|
|
13240
13039
|
describeApiDocWithOptions(request: DescribeApiDocRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiDocResponse>;
|
|
13241
|
-
/**
|
|
13242
|
-
* * 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.****************
|
|
13243
|
-
* * When you call this operation as an API caller, the service information, parameter definitions, and other details of the API you specify are returned.
|
|
13244
|
-
* * 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.
|
|
13245
|
-
* * 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.
|
|
13246
|
-
*
|
|
13247
|
-
* @param request DescribeApiDocRequest
|
|
13248
|
-
* @return DescribeApiDocResponse
|
|
13249
|
-
*/
|
|
13250
13040
|
describeApiDoc(request: DescribeApiDocRequest): Promise<DescribeApiDocResponse>;
|
|
13251
13041
|
/**
|
|
13252
13042
|
* * This operation is intended for API providers.
|
|
@@ -13265,24 +13055,12 @@ export default class Client extends OpenApi {
|
|
|
13265
13055
|
describeApiGroup(request: DescribeApiGroupRequest): Promise<DescribeApiGroupResponse>;
|
|
13266
13056
|
describeApiGroupVpcWhitelistWithOptions(request: DescribeApiGroupVpcWhitelistRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiGroupVpcWhitelistResponse>;
|
|
13267
13057
|
describeApiGroupVpcWhitelist(request: DescribeApiGroupVpcWhitelistRequest): Promise<DescribeApiGroupVpcWhitelistResponse>;
|
|
13268
|
-
/**
|
|
13269
|
-
* * This operation is intended for API providers.
|
|
13270
|
-
*
|
|
13271
|
-
* @param request DescribeApiGroupsRequest
|
|
13272
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13273
|
-
* @return DescribeApiGroupsResponse
|
|
13274
|
-
*/
|
|
13275
13058
|
describeApiGroupsWithOptions(request: DescribeApiGroupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiGroupsResponse>;
|
|
13276
|
-
/**
|
|
13277
|
-
* * This operation is intended for API providers.
|
|
13278
|
-
*
|
|
13279
|
-
* @param request DescribeApiGroupsRequest
|
|
13280
|
-
* @return DescribeApiGroupsResponse
|
|
13281
|
-
*/
|
|
13282
13059
|
describeApiGroups(request: DescribeApiGroupsRequest): Promise<DescribeApiGroupsResponse>;
|
|
13283
13060
|
/**
|
|
13284
|
-
*
|
|
13285
|
-
* *
|
|
13061
|
+
* The name of the runtime environment. Valid values:
|
|
13062
|
+
* * **RELEASE**
|
|
13063
|
+
* * **TEST: the test environment**
|
|
13286
13064
|
*
|
|
13287
13065
|
* @param request DescribeApiHistoriesRequest
|
|
13288
13066
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13290,8 +13068,9 @@ export default class Client extends OpenApi {
|
|
|
13290
13068
|
*/
|
|
13291
13069
|
describeApiHistoriesWithOptions(request: DescribeApiHistoriesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiHistoriesResponse>;
|
|
13292
13070
|
/**
|
|
13293
|
-
*
|
|
13294
|
-
* *
|
|
13071
|
+
* The name of the runtime environment. Valid values:
|
|
13072
|
+
* * **RELEASE**
|
|
13073
|
+
* * **TEST: the test environment**
|
|
13295
13074
|
*
|
|
13296
13075
|
* @param request DescribeApiHistoriesRequest
|
|
13297
13076
|
* @return DescribeApiHistoriesResponse
|
|
@@ -13317,9 +13096,7 @@ export default class Client extends OpenApi {
|
|
|
13317
13096
|
*/
|
|
13318
13097
|
describeApiHistory(request: DescribeApiHistoryRequest): Promise<DescribeApiHistoryResponse>;
|
|
13319
13098
|
/**
|
|
13320
|
-
*
|
|
13321
|
-
* * If an optional parameter is not specified, all results are returned on separate pages.
|
|
13322
|
-
* ·
|
|
13099
|
+
* The ID of the API group.
|
|
13323
13100
|
*
|
|
13324
13101
|
* @param request DescribeApiIpControlsRequest
|
|
13325
13102
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13327,54 +13104,22 @@ export default class Client extends OpenApi {
|
|
|
13327
13104
|
*/
|
|
13328
13105
|
describeApiIpControlsWithOptions(request: DescribeApiIpControlsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiIpControlsResponse>;
|
|
13329
13106
|
/**
|
|
13330
|
-
*
|
|
13331
|
-
* * If an optional parameter is not specified, all results are returned on separate pages.
|
|
13332
|
-
* ·
|
|
13107
|
+
* The ID of the API group.
|
|
13333
13108
|
*
|
|
13334
13109
|
* @param request DescribeApiIpControlsRequest
|
|
13335
13110
|
* @return DescribeApiIpControlsResponse
|
|
13336
13111
|
*/
|
|
13337
13112
|
describeApiIpControls(request: DescribeApiIpControlsRequest): Promise<DescribeApiIpControlsResponse>;
|
|
13338
|
-
/**
|
|
13339
|
-
* You can call this operation to query the latency metrics in milliseconds for a specified API.
|
|
13340
|
-
* * This API is intended for API providers.
|
|
13341
|
-
* * Only statistics for API calls made in the release environment are collected by default.
|
|
13342
|
-
*
|
|
13343
|
-
* @param request DescribeApiLatencyDataRequest
|
|
13344
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13345
|
-
* @return DescribeApiLatencyDataResponse
|
|
13346
|
-
*/
|
|
13347
13113
|
describeApiLatencyDataWithOptions(request: DescribeApiLatencyDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiLatencyDataResponse>;
|
|
13348
|
-
/**
|
|
13349
|
-
* You can call this operation to query the latency metrics in milliseconds for a specified API.
|
|
13350
|
-
* * This API is intended for API providers.
|
|
13351
|
-
* * Only statistics for API calls made in the release environment are collected by default.
|
|
13352
|
-
*
|
|
13353
|
-
* @param request DescribeApiLatencyDataRequest
|
|
13354
|
-
* @return DescribeApiLatencyDataResponse
|
|
13355
|
-
*/
|
|
13356
13114
|
describeApiLatencyData(request: DescribeApiLatencyDataRequest): Promise<DescribeApiLatencyDataResponse>;
|
|
13357
13115
|
describeApiMarketAttributesWithOptions(request: DescribeApiMarketAttributesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiMarketAttributesResponse>;
|
|
13358
13116
|
describeApiMarketAttributes(request: DescribeApiMarketAttributesRequest): Promise<DescribeApiMarketAttributesResponse>;
|
|
13359
|
-
/**
|
|
13360
|
-
* * This API is intended for API providers.
|
|
13361
|
-
* * Only statistics for API calls made in the release environment are collected by default.
|
|
13362
|
-
*
|
|
13363
|
-
* @param request DescribeApiQpsDataRequest
|
|
13364
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13365
|
-
* @return DescribeApiQpsDataResponse
|
|
13366
|
-
*/
|
|
13367
13117
|
describeApiQpsDataWithOptions(request: DescribeApiQpsDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiQpsDataResponse>;
|
|
13368
|
-
/**
|
|
13369
|
-
* * This API is intended for API providers.
|
|
13370
|
-
* * Only statistics for API calls made in the release environment are collected by default.
|
|
13371
|
-
*
|
|
13372
|
-
* @param request DescribeApiQpsDataRequest
|
|
13373
|
-
* @return DescribeApiQpsDataResponse
|
|
13374
|
-
*/
|
|
13375
13118
|
describeApiQpsData(request: DescribeApiQpsDataRequest): Promise<DescribeApiQpsDataResponse>;
|
|
13376
13119
|
/**
|
|
13377
|
-
*
|
|
13120
|
+
* The runtime environment. Valid values:
|
|
13121
|
+
* * **RELEASE**
|
|
13122
|
+
* * **TEST**
|
|
13378
13123
|
*
|
|
13379
13124
|
* @param request DescribeApiSignaturesRequest
|
|
13380
13125
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13382,14 +13127,18 @@ export default class Client extends OpenApi {
|
|
|
13382
13127
|
*/
|
|
13383
13128
|
describeApiSignaturesWithOptions(request: DescribeApiSignaturesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiSignaturesResponse>;
|
|
13384
13129
|
/**
|
|
13385
|
-
*
|
|
13130
|
+
* The runtime environment. Valid values:
|
|
13131
|
+
* * **RELEASE**
|
|
13132
|
+
* * **TEST**
|
|
13386
13133
|
*
|
|
13387
13134
|
* @param request DescribeApiSignaturesRequest
|
|
13388
13135
|
* @return DescribeApiSignaturesResponse
|
|
13389
13136
|
*/
|
|
13390
13137
|
describeApiSignatures(request: DescribeApiSignaturesRequest): Promise<DescribeApiSignaturesResponse>;
|
|
13391
13138
|
/**
|
|
13392
|
-
*
|
|
13139
|
+
* The runtime environment of the API. Valid values:
|
|
13140
|
+
* * **RELEASE**
|
|
13141
|
+
* * **TEST**: the test environment
|
|
13393
13142
|
*
|
|
13394
13143
|
* @param request DescribeApiTrafficControlsRequest
|
|
13395
13144
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13397,33 +13146,20 @@ export default class Client extends OpenApi {
|
|
|
13397
13146
|
*/
|
|
13398
13147
|
describeApiTrafficControlsWithOptions(request: DescribeApiTrafficControlsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiTrafficControlsResponse>;
|
|
13399
13148
|
/**
|
|
13400
|
-
*
|
|
13149
|
+
* The runtime environment of the API. Valid values:
|
|
13150
|
+
* * **RELEASE**
|
|
13151
|
+
* * **TEST**: the test environment
|
|
13401
13152
|
*
|
|
13402
13153
|
* @param request DescribeApiTrafficControlsRequest
|
|
13403
13154
|
* @return DescribeApiTrafficControlsResponse
|
|
13404
13155
|
*/
|
|
13405
13156
|
describeApiTrafficControls(request: DescribeApiTrafficControlsRequest): Promise<DescribeApiTrafficControlsResponse>;
|
|
13406
|
-
/**
|
|
13407
|
-
* * This API is intended for API providers.
|
|
13408
|
-
* * Only statistics for API calls made in the release environment are collected by default.
|
|
13409
|
-
*
|
|
13410
|
-
* @param request DescribeApiTrafficDataRequest
|
|
13411
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13412
|
-
* @return DescribeApiTrafficDataResponse
|
|
13413
|
-
*/
|
|
13414
13157
|
describeApiTrafficDataWithOptions(request: DescribeApiTrafficDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApiTrafficDataResponse>;
|
|
13415
|
-
/**
|
|
13416
|
-
* * This API is intended for API providers.
|
|
13417
|
-
* * Only statistics for API calls made in the release environment are collected by default.
|
|
13418
|
-
*
|
|
13419
|
-
* @param request DescribeApiTrafficDataRequest
|
|
13420
|
-
* @return DescribeApiTrafficDataResponse
|
|
13421
|
-
*/
|
|
13422
13158
|
describeApiTrafficData(request: DescribeApiTrafficDataRequest): Promise<DescribeApiTrafficDataResponse>;
|
|
13423
13159
|
/**
|
|
13424
|
-
* * This
|
|
13425
|
-
* *
|
|
13426
|
-
* * This
|
|
13160
|
+
* * This operation is intended for API callers.
|
|
13161
|
+
* * This operation returns a list of all APIs that are being defined. The basic information about these APIs is also returned in the list.
|
|
13162
|
+
* * 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.
|
|
13427
13163
|
*
|
|
13428
13164
|
* @param request DescribeApisRequest
|
|
13429
13165
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13431,9 +13167,9 @@ export default class Client extends OpenApi {
|
|
|
13431
13167
|
*/
|
|
13432
13168
|
describeApisWithOptions(request: DescribeApisRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApisResponse>;
|
|
13433
13169
|
/**
|
|
13434
|
-
* * This
|
|
13435
|
-
* *
|
|
13436
|
-
* * This
|
|
13170
|
+
* * This operation is intended for API callers.
|
|
13171
|
+
* * This operation returns a list of all APIs that are being defined. The basic information about these APIs is also returned in the list.
|
|
13172
|
+
* * 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.
|
|
13437
13173
|
*
|
|
13438
13174
|
* @param request DescribeApisRequest
|
|
13439
13175
|
* @return DescribeApisResponse
|
|
@@ -13444,8 +13180,7 @@ export default class Client extends OpenApi {
|
|
|
13444
13180
|
describeApisByBackendWithOptions(request: DescribeApisByBackendRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApisByBackendResponse>;
|
|
13445
13181
|
describeApisByBackend(request: DescribeApisByBackendRequest): Promise<DescribeApisByBackendResponse>;
|
|
13446
13182
|
/**
|
|
13447
|
-
*
|
|
13448
|
-
* * You can specify PageNumber to obtain the result on the specified page.
|
|
13183
|
+
* The number of entries to return on each page. Maximum value: 100. Default value: 10.
|
|
13449
13184
|
*
|
|
13450
13185
|
* @param request DescribeApisByIpControlRequest
|
|
13451
13186
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13453,15 +13188,14 @@ export default class Client extends OpenApi {
|
|
|
13453
13188
|
*/
|
|
13454
13189
|
describeApisByIpControlWithOptions(request: DescribeApisByIpControlRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApisByIpControlResponse>;
|
|
13455
13190
|
/**
|
|
13456
|
-
*
|
|
13457
|
-
* * You can specify PageNumber to obtain the result on the specified page.
|
|
13191
|
+
* The number of entries to return on each page. Maximum value: 100. Default value: 10.
|
|
13458
13192
|
*
|
|
13459
13193
|
* @param request DescribeApisByIpControlRequest
|
|
13460
13194
|
* @return DescribeApisByIpControlResponse
|
|
13461
13195
|
*/
|
|
13462
13196
|
describeApisByIpControl(request: DescribeApisByIpControlRequest): Promise<DescribeApisByIpControlResponse>;
|
|
13463
13197
|
/**
|
|
13464
|
-
*
|
|
13198
|
+
* The ID of the signature key.
|
|
13465
13199
|
*
|
|
13466
13200
|
* @param request DescribeApisBySignatureRequest
|
|
13467
13201
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13469,15 +13203,14 @@ export default class Client extends OpenApi {
|
|
|
13469
13203
|
*/
|
|
13470
13204
|
describeApisBySignatureWithOptions(request: DescribeApisBySignatureRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApisBySignatureResponse>;
|
|
13471
13205
|
/**
|
|
13472
|
-
*
|
|
13206
|
+
* The ID of the signature key.
|
|
13473
13207
|
*
|
|
13474
13208
|
* @param request DescribeApisBySignatureRequest
|
|
13475
13209
|
* @return DescribeApisBySignatureResponse
|
|
13476
13210
|
*/
|
|
13477
13211
|
describeApisBySignature(request: DescribeApisBySignatureRequest): Promise<DescribeApisBySignatureResponse>;
|
|
13478
13212
|
/**
|
|
13479
|
-
*
|
|
13480
|
-
* * You can specify PageNumber to obtain the result on the specified page.
|
|
13213
|
+
* The number of entries to return on each page. Maximum value: 100. Default value: 10.
|
|
13481
13214
|
*
|
|
13482
13215
|
* @param request DescribeApisByTrafficControlRequest
|
|
13483
13216
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13485,8 +13218,7 @@ export default class Client extends OpenApi {
|
|
|
13485
13218
|
*/
|
|
13486
13219
|
describeApisByTrafficControlWithOptions(request: DescribeApisByTrafficControlRequest, runtime: $Util.RuntimeOptions): Promise<DescribeApisByTrafficControlResponse>;
|
|
13487
13220
|
/**
|
|
13488
|
-
*
|
|
13489
|
-
* * You can specify PageNumber to obtain the result on the specified page.
|
|
13221
|
+
* The number of entries to return on each page. Maximum value: 100. Default value: 10.
|
|
13490
13222
|
*
|
|
13491
13223
|
* @param request DescribeApisByTrafficControlRequest
|
|
13492
13224
|
* @return DescribeApisByTrafficControlResponse
|
|
@@ -13494,40 +13226,12 @@ export default class Client extends OpenApi {
|
|
|
13494
13226
|
describeApisByTrafficControl(request: DescribeApisByTrafficControlRequest): Promise<DescribeApisByTrafficControlResponse>;
|
|
13495
13227
|
describeAppWithOptions(request: DescribeAppRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAppResponse>;
|
|
13496
13228
|
describeApp(request: DescribeAppRequest): Promise<DescribeAppResponse>;
|
|
13497
|
-
/**
|
|
13498
|
-
* * This operation is intended for API callers.
|
|
13499
|
-
* * AppId is optional.
|
|
13500
|
-
*
|
|
13501
|
-
* @param request DescribeAppAttributesRequest
|
|
13502
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13503
|
-
* @return DescribeAppAttributesResponse
|
|
13504
|
-
*/
|
|
13505
13229
|
describeAppAttributesWithOptions(request: DescribeAppAttributesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAppAttributesResponse>;
|
|
13506
|
-
/**
|
|
13507
|
-
* * This operation is intended for API callers.
|
|
13508
|
-
* * AppId is optional.
|
|
13509
|
-
*
|
|
13510
|
-
* @param request DescribeAppAttributesRequest
|
|
13511
|
-
* @return DescribeAppAttributesResponse
|
|
13512
|
-
*/
|
|
13513
13230
|
describeAppAttributes(request: DescribeAppAttributesRequest): Promise<DescribeAppAttributesResponse>;
|
|
13514
|
-
/**
|
|
13515
|
-
* * This operation is intended for API callers.
|
|
13516
|
-
*
|
|
13517
|
-
* @param request DescribeAppSecurityRequest
|
|
13518
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13519
|
-
* @return DescribeAppSecurityResponse
|
|
13520
|
-
*/
|
|
13521
13231
|
describeAppSecurityWithOptions(request: DescribeAppSecurityRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAppSecurityResponse>;
|
|
13522
|
-
/**
|
|
13523
|
-
* * This operation is intended for API callers.
|
|
13524
|
-
*
|
|
13525
|
-
* @param request DescribeAppSecurityRequest
|
|
13526
|
-
* @return DescribeAppSecurityResponse
|
|
13527
|
-
*/
|
|
13528
13232
|
describeAppSecurity(request: DescribeAppSecurityRequest): Promise<DescribeAppSecurityResponse>;
|
|
13529
13233
|
/**
|
|
13530
|
-
*
|
|
13234
|
+
* The ID of the app.
|
|
13531
13235
|
*
|
|
13532
13236
|
* @param request DescribeAppsRequest
|
|
13533
13237
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13535,15 +13239,14 @@ export default class Client extends OpenApi {
|
|
|
13535
13239
|
*/
|
|
13536
13240
|
describeAppsWithOptions(request: DescribeAppsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAppsResponse>;
|
|
13537
13241
|
/**
|
|
13538
|
-
*
|
|
13242
|
+
* The ID of the app.
|
|
13539
13243
|
*
|
|
13540
13244
|
* @param request DescribeAppsRequest
|
|
13541
13245
|
* @return DescribeAppsResponse
|
|
13542
13246
|
*/
|
|
13543
13247
|
describeApps(request: DescribeAppsRequest): Promise<DescribeAppsResponse>;
|
|
13544
13248
|
/**
|
|
13545
|
-
*
|
|
13546
|
-
* * The specified application can call all APIs included in the responses.
|
|
13249
|
+
* The number of the page to return. Pages start from page 1. Default value: 1.
|
|
13547
13250
|
*
|
|
13548
13251
|
* @param request DescribeAuthorizedApisRequest
|
|
13549
13252
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13551,29 +13254,13 @@ export default class Client extends OpenApi {
|
|
|
13551
13254
|
*/
|
|
13552
13255
|
describeAuthorizedApisWithOptions(request: DescribeAuthorizedApisRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAuthorizedApisResponse>;
|
|
13553
13256
|
/**
|
|
13554
|
-
*
|
|
13555
|
-
* * The specified application can call all APIs included in the responses.
|
|
13257
|
+
* The number of the page to return. Pages start from page 1. Default value: 1.
|
|
13556
13258
|
*
|
|
13557
13259
|
* @param request DescribeAuthorizedApisRequest
|
|
13558
13260
|
* @return DescribeAuthorizedApisResponse
|
|
13559
13261
|
*/
|
|
13560
13262
|
describeAuthorizedApis(request: DescribeAuthorizedApisRequest): Promise<DescribeAuthorizedApisResponse>;
|
|
13561
|
-
/**
|
|
13562
|
-
* * This operation is intended for API providers.
|
|
13563
|
-
* * All applications included in the responses have access to the specified API.
|
|
13564
|
-
*
|
|
13565
|
-
* @param request DescribeAuthorizedAppsRequest
|
|
13566
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13567
|
-
* @return DescribeAuthorizedAppsResponse
|
|
13568
|
-
*/
|
|
13569
13263
|
describeAuthorizedAppsWithOptions(request: DescribeAuthorizedAppsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAuthorizedAppsResponse>;
|
|
13570
|
-
/**
|
|
13571
|
-
* * This operation is intended for API providers.
|
|
13572
|
-
* * All applications included in the responses have access to the specified API.
|
|
13573
|
-
*
|
|
13574
|
-
* @param request DescribeAuthorizedAppsRequest
|
|
13575
|
-
* @return DescribeAuthorizedAppsResponse
|
|
13576
|
-
*/
|
|
13577
13264
|
describeAuthorizedApps(request: DescribeAuthorizedAppsRequest): Promise<DescribeAuthorizedAppsResponse>;
|
|
13578
13265
|
describeBackendInfoWithOptions(request: DescribeBackendInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackendInfoResponse>;
|
|
13579
13266
|
describeBackendInfo(request: DescribeBackendInfoRequest): Promise<DescribeBackendInfoResponse>;
|
|
@@ -13591,23 +13278,10 @@ export default class Client extends OpenApi {
|
|
|
13591
13278
|
describeDeployApiTask(request: DescribeDeployApiTaskRequest): Promise<DescribeDeployApiTaskResponse>;
|
|
13592
13279
|
describeDeployedApiWithOptions(request: DescribeDeployedApiRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDeployedApiResponse>;
|
|
13593
13280
|
describeDeployedApi(request: DescribeDeployedApiRequest): Promise<DescribeDeployedApiResponse>;
|
|
13594
|
-
/**
|
|
13595
|
-
* * This API is intended for API providers.
|
|
13596
|
-
*
|
|
13597
|
-
* @param request DescribeDeployedApisRequest
|
|
13598
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13599
|
-
* @return DescribeDeployedApisResponse
|
|
13600
|
-
*/
|
|
13601
13281
|
describeDeployedApisWithOptions(request: DescribeDeployedApisRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDeployedApisResponse>;
|
|
13602
|
-
/**
|
|
13603
|
-
* * This API is intended for API providers.
|
|
13604
|
-
*
|
|
13605
|
-
* @param request DescribeDeployedApisRequest
|
|
13606
|
-
* @return DescribeDeployedApisResponse
|
|
13607
|
-
*/
|
|
13608
13282
|
describeDeployedApis(request: DescribeDeployedApisRequest): Promise<DescribeDeployedApisResponse>;
|
|
13609
13283
|
/**
|
|
13610
|
-
*
|
|
13284
|
+
* The ID of the API group to which the domain name is bound. This ID is generated by the system and globally unique.
|
|
13611
13285
|
*
|
|
13612
13286
|
* @param request DescribeDomainRequest
|
|
13613
13287
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13615,7 +13289,7 @@ export default class Client extends OpenApi {
|
|
|
13615
13289
|
*/
|
|
13616
13290
|
describeDomainWithOptions(request: DescribeDomainRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDomainResponse>;
|
|
13617
13291
|
/**
|
|
13618
|
-
*
|
|
13292
|
+
* The ID of the API group to which the domain name is bound. This ID is generated by the system and globally unique.
|
|
13619
13293
|
*
|
|
13620
13294
|
* @param request DescribeDomainRequest
|
|
13621
13295
|
* @return DescribeDomainResponse
|
|
@@ -13645,22 +13319,7 @@ export default class Client extends OpenApi {
|
|
|
13645
13319
|
describeInstanceTraffic(request: DescribeInstanceTrafficRequest): Promise<DescribeInstanceTrafficResponse>;
|
|
13646
13320
|
describeInstancesWithOptions(request: DescribeInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeInstancesResponse>;
|
|
13647
13321
|
describeInstances(request: DescribeInstancesRequest): Promise<DescribeInstancesResponse>;
|
|
13648
|
-
/**
|
|
13649
|
-
* * This operation is intended for API providers.
|
|
13650
|
-
* * You can filter the query results by policy ID.
|
|
13651
|
-
*
|
|
13652
|
-
* @param request DescribeIpControlPolicyItemsRequest
|
|
13653
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13654
|
-
* @return DescribeIpControlPolicyItemsResponse
|
|
13655
|
-
*/
|
|
13656
13322
|
describeIpControlPolicyItemsWithOptions(request: DescribeIpControlPolicyItemsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeIpControlPolicyItemsResponse>;
|
|
13657
|
-
/**
|
|
13658
|
-
* * This operation is intended for API providers.
|
|
13659
|
-
* * You can filter the query results by policy ID.
|
|
13660
|
-
*
|
|
13661
|
-
* @param request DescribeIpControlPolicyItemsRequest
|
|
13662
|
-
* @return DescribeIpControlPolicyItemsResponse
|
|
13663
|
-
*/
|
|
13664
13323
|
describeIpControlPolicyItems(request: DescribeIpControlPolicyItemsRequest): Promise<DescribeIpControlPolicyItemsResponse>;
|
|
13665
13324
|
/**
|
|
13666
13325
|
* * This operation is intended for API providers.
|
|
@@ -13688,7 +13347,7 @@ export default class Client extends OpenApi {
|
|
|
13688
13347
|
describeMarketRemainsQuotaWithOptions(request: DescribeMarketRemainsQuotaRequest, runtime: $Util.RuntimeOptions): Promise<DescribeMarketRemainsQuotaResponse>;
|
|
13689
13348
|
describeMarketRemainsQuota(request: DescribeMarketRemainsQuotaRequest): Promise<DescribeMarketRemainsQuotaResponse>;
|
|
13690
13349
|
/**
|
|
13691
|
-
*
|
|
13350
|
+
* The name of the model.
|
|
13692
13351
|
*
|
|
13693
13352
|
* @param request DescribeModelsRequest
|
|
13694
13353
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13696,7 +13355,7 @@ export default class Client extends OpenApi {
|
|
|
13696
13355
|
*/
|
|
13697
13356
|
describeModelsWithOptions(request: DescribeModelsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeModelsResponse>;
|
|
13698
13357
|
/**
|
|
13699
|
-
*
|
|
13358
|
+
* The name of the model.
|
|
13700
13359
|
*
|
|
13701
13360
|
* @param request DescribeModelsRequest
|
|
13702
13361
|
* @return DescribeModelsResponse
|
|
@@ -13708,26 +13367,7 @@ export default class Client extends OpenApi {
|
|
|
13708
13367
|
describePluginSchemas(request: DescribePluginSchemasRequest): Promise<DescribePluginSchemasResponse>;
|
|
13709
13368
|
describePluginTemplatesWithOptions(request: DescribePluginTemplatesRequest, runtime: $Util.RuntimeOptions): Promise<DescribePluginTemplatesResponse>;
|
|
13710
13369
|
describePluginTemplates(request: DescribePluginTemplatesRequest): Promise<DescribePluginTemplatesResponse>;
|
|
13711
|
-
/**
|
|
13712
|
-
* * This operation supports pagination.
|
|
13713
|
-
* * This operation allows you to query plug-ins by business type.
|
|
13714
|
-
* * This operation allows you to query plug-ins by ID.
|
|
13715
|
-
* * This operation allows you to query plug-ins by name.
|
|
13716
|
-
*
|
|
13717
|
-
* @param request DescribePluginsRequest
|
|
13718
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13719
|
-
* @return DescribePluginsResponse
|
|
13720
|
-
*/
|
|
13721
13370
|
describePluginsWithOptions(request: DescribePluginsRequest, runtime: $Util.RuntimeOptions): Promise<DescribePluginsResponse>;
|
|
13722
|
-
/**
|
|
13723
|
-
* * This operation supports pagination.
|
|
13724
|
-
* * This operation allows you to query plug-ins by business type.
|
|
13725
|
-
* * This operation allows you to query plug-ins by ID.
|
|
13726
|
-
* * This operation allows you to query plug-ins by name.
|
|
13727
|
-
*
|
|
13728
|
-
* @param request DescribePluginsRequest
|
|
13729
|
-
* @return DescribePluginsResponse
|
|
13730
|
-
*/
|
|
13731
13371
|
describePlugins(request: DescribePluginsRequest): Promise<DescribePluginsResponse>;
|
|
13732
13372
|
/**
|
|
13733
13373
|
* * This operation is intended for API callers.
|
|
@@ -13752,25 +13392,10 @@ export default class Client extends OpenApi {
|
|
|
13752
13392
|
describePurchasedApiGroups(request: DescribePurchasedApiGroupsRequest): Promise<DescribePurchasedApiGroupsResponse>;
|
|
13753
13393
|
describePurchasedApisWithOptions(request: DescribePurchasedApisRequest, runtime: $Util.RuntimeOptions): Promise<DescribePurchasedApisResponse>;
|
|
13754
13394
|
describePurchasedApis(request: DescribePurchasedApisRequest): Promise<DescribePurchasedApisResponse>;
|
|
13755
|
-
/**
|
|
13756
|
-
* This operation queries regions in which API Gateway is available.
|
|
13757
|
-
* * This operation is intended for API providers and callers.
|
|
13758
|
-
*
|
|
13759
|
-
* @param request DescribeRegionsRequest
|
|
13760
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13761
|
-
* @return DescribeRegionsResponse
|
|
13762
|
-
*/
|
|
13763
13395
|
describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
13764
|
-
/**
|
|
13765
|
-
* This operation queries regions in which API Gateway is available.
|
|
13766
|
-
* * This operation is intended for API providers and callers.
|
|
13767
|
-
*
|
|
13768
|
-
* @param request DescribeRegionsRequest
|
|
13769
|
-
* @return DescribeRegionsResponse
|
|
13770
|
-
*/
|
|
13771
13396
|
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
13772
13397
|
/**
|
|
13773
|
-
*
|
|
13398
|
+
* The IDs of the keys to query.
|
|
13774
13399
|
*
|
|
13775
13400
|
* @param request DescribeSignaturesRequest
|
|
13776
13401
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13778,14 +13403,14 @@ export default class Client extends OpenApi {
|
|
|
13778
13403
|
*/
|
|
13779
13404
|
describeSignaturesWithOptions(request: DescribeSignaturesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSignaturesResponse>;
|
|
13780
13405
|
/**
|
|
13781
|
-
*
|
|
13406
|
+
* The IDs of the keys to query.
|
|
13782
13407
|
*
|
|
13783
13408
|
* @param request DescribeSignaturesRequest
|
|
13784
13409
|
* @return DescribeSignaturesResponse
|
|
13785
13410
|
*/
|
|
13786
13411
|
describeSignatures(request: DescribeSignaturesRequest): Promise<DescribeSignaturesResponse>;
|
|
13787
13412
|
/**
|
|
13788
|
-
*
|
|
13413
|
+
* The ID of the group to which the API belongs.
|
|
13789
13414
|
*
|
|
13790
13415
|
* @param request DescribeSignaturesByApiRequest
|
|
13791
13416
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13793,15 +13418,14 @@ export default class Client extends OpenApi {
|
|
|
13793
13418
|
*/
|
|
13794
13419
|
describeSignaturesByApiWithOptions(request: DescribeSignaturesByApiRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSignaturesByApiResponse>;
|
|
13795
13420
|
/**
|
|
13796
|
-
*
|
|
13421
|
+
* The ID of the group to which the API belongs.
|
|
13797
13422
|
*
|
|
13798
13423
|
* @param request DescribeSignaturesByApiRequest
|
|
13799
13424
|
* @return DescribeSignaturesByApiResponse
|
|
13800
13425
|
*/
|
|
13801
13426
|
describeSignaturesByApi(request: DescribeSignaturesByApiRequest): Promise<DescribeSignaturesByApiResponse>;
|
|
13802
13427
|
/**
|
|
13803
|
-
*
|
|
13804
|
-
* * The response of this API contains the system parameters that are optional in API definitions.
|
|
13428
|
+
* The returned information about system parameters. It is an array that consists of SystemParam data.
|
|
13805
13429
|
*
|
|
13806
13430
|
* @param request DescribeSystemParametersRequest
|
|
13807
13431
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13809,17 +13433,14 @@ export default class Client extends OpenApi {
|
|
|
13809
13433
|
*/
|
|
13810
13434
|
describeSystemParametersWithOptions(request: DescribeSystemParametersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSystemParametersResponse>;
|
|
13811
13435
|
/**
|
|
13812
|
-
*
|
|
13813
|
-
* * The response of this API contains the system parameters that are optional in API definitions.
|
|
13436
|
+
* The returned information about system parameters. It is an array that consists of SystemParam data.
|
|
13814
13437
|
*
|
|
13815
13438
|
* @param request DescribeSystemParametersRequest
|
|
13816
13439
|
* @return DescribeSystemParametersResponse
|
|
13817
13440
|
*/
|
|
13818
13441
|
describeSystemParameters(request: DescribeSystemParametersRequest): Promise<DescribeSystemParametersResponse>;
|
|
13819
13442
|
/**
|
|
13820
|
-
*
|
|
13821
|
-
* * This API can be used to query all existing throttling policies (including special throttling policies) and their details.
|
|
13822
|
-
* * You can specify query conditions. For example, you can query the throttling policies bound to a specified API or in a specified environment.
|
|
13443
|
+
* The specified group ID. This parameter must be specified together with ApiId and StageName.
|
|
13823
13444
|
*
|
|
13824
13445
|
* @param request DescribeTrafficControlsRequest
|
|
13825
13446
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13827,16 +13448,14 @@ export default class Client extends OpenApi {
|
|
|
13827
13448
|
*/
|
|
13828
13449
|
describeTrafficControlsWithOptions(request: DescribeTrafficControlsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTrafficControlsResponse>;
|
|
13829
13450
|
/**
|
|
13830
|
-
*
|
|
13831
|
-
* * This API can be used to query all existing throttling policies (including special throttling policies) and their details.
|
|
13832
|
-
* * You can specify query conditions. For example, you can query the throttling policies bound to a specified API or in a specified environment.
|
|
13451
|
+
* The specified group ID. This parameter must be specified together with ApiId and StageName.
|
|
13833
13452
|
*
|
|
13834
13453
|
* @param request DescribeTrafficControlsRequest
|
|
13835
13454
|
* @return DescribeTrafficControlsResponse
|
|
13836
13455
|
*/
|
|
13837
13456
|
describeTrafficControls(request: DescribeTrafficControlsRequest): Promise<DescribeTrafficControlsResponse>;
|
|
13838
13457
|
/**
|
|
13839
|
-
*
|
|
13458
|
+
* The ID of the API.
|
|
13840
13459
|
*
|
|
13841
13460
|
* @param request DescribeTrafficControlsByApiRequest
|
|
13842
13461
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13844,7 +13463,7 @@ export default class Client extends OpenApi {
|
|
|
13844
13463
|
*/
|
|
13845
13464
|
describeTrafficControlsByApiWithOptions(request: DescribeTrafficControlsByApiRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTrafficControlsByApiResponse>;
|
|
13846
13465
|
/**
|
|
13847
|
-
*
|
|
13466
|
+
* The ID of the API.
|
|
13848
13467
|
*
|
|
13849
13468
|
* @param request DescribeTrafficControlsByApiRequest
|
|
13850
13469
|
* @return DescribeTrafficControlsByApiResponse
|
|
@@ -13869,8 +13488,7 @@ export default class Client extends OpenApi {
|
|
|
13869
13488
|
importOASWithOptions(request: ImportOASRequest, runtime: $Util.RuntimeOptions): Promise<ImportOASResponse>;
|
|
13870
13489
|
importOAS(request: ImportOASRequest): Promise<ImportOASResponse>;
|
|
13871
13490
|
/**
|
|
13872
|
-
*
|
|
13873
|
-
* * Alibaba Cloud supports Swagger configuration files in JSON and YAML formats.
|
|
13491
|
+
* 0009db9c828549768a200320714b8930
|
|
13874
13492
|
*
|
|
13875
13493
|
* @param tmpReq ImportSwaggerRequest
|
|
13876
13494
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13878,46 +13496,16 @@ export default class Client extends OpenApi {
|
|
|
13878
13496
|
*/
|
|
13879
13497
|
importSwaggerWithOptions(tmpReq: ImportSwaggerRequest, runtime: $Util.RuntimeOptions): Promise<ImportSwaggerResponse>;
|
|
13880
13498
|
/**
|
|
13881
|
-
*
|
|
13882
|
-
* * Alibaba Cloud supports Swagger configuration files in JSON and YAML formats.
|
|
13499
|
+
* 0009db9c828549768a200320714b8930
|
|
13883
13500
|
*
|
|
13884
13501
|
* @param request ImportSwaggerRequest
|
|
13885
13502
|
* @return ImportSwaggerResponse
|
|
13886
13503
|
*/
|
|
13887
13504
|
importSwagger(request: ImportSwaggerRequest): Promise<ImportSwaggerResponse>;
|
|
13888
|
-
/**
|
|
13889
|
-
* * The Tag.N.Key and Tag.N.Value parameters constitute a key-value pair.
|
|
13890
|
-
* * 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.
|
|
13891
|
-
* * This operation is used to query resource tags based on conditions. If no relationship matches the conditions, an empty list is returned.
|
|
13892
|
-
* * You can query both user tags and visible system tags.
|
|
13893
|
-
* * 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.
|
|
13894
|
-
* * You can also specify Tag.N.Key to query the visible keys of a specified key in a region.
|
|
13895
|
-
* * At least one of ResourceId.N, Tag.N.Key, and Tag.N.Value exists.
|
|
13896
|
-
* * You can query tags of the same type or different types in a single operation.
|
|
13897
|
-
* * You can query all your user tags and visible system tags.
|
|
13898
|
-
*
|
|
13899
|
-
* @param request ListTagResourcesRequest
|
|
13900
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13901
|
-
* @return ListTagResourcesResponse
|
|
13902
|
-
*/
|
|
13903
13505
|
listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse>;
|
|
13904
|
-
/**
|
|
13905
|
-
* * The Tag.N.Key and Tag.N.Value parameters constitute a key-value pair.
|
|
13906
|
-
* * 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.
|
|
13907
|
-
* * This operation is used to query resource tags based on conditions. If no relationship matches the conditions, an empty list is returned.
|
|
13908
|
-
* * You can query both user tags and visible system tags.
|
|
13909
|
-
* * 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.
|
|
13910
|
-
* * You can also specify Tag.N.Key to query the visible keys of a specified key in a region.
|
|
13911
|
-
* * At least one of ResourceId.N, Tag.N.Key, and Tag.N.Value exists.
|
|
13912
|
-
* * You can query tags of the same type or different types in a single operation.
|
|
13913
|
-
* * You can query all your user tags and visible system tags.
|
|
13914
|
-
*
|
|
13915
|
-
* @param request ListTagResourcesRequest
|
|
13916
|
-
* @return ListTagResourcesResponse
|
|
13917
|
-
*/
|
|
13918
13506
|
listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse>;
|
|
13919
13507
|
/**
|
|
13920
|
-
*
|
|
13508
|
+
* 58928
|
|
13921
13509
|
*
|
|
13922
13510
|
* @param request ModifyApiRequest
|
|
13923
13511
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13925,7 +13513,7 @@ export default class Client extends OpenApi {
|
|
|
13925
13513
|
*/
|
|
13926
13514
|
modifyApiWithOptions(request: ModifyApiRequest, runtime: $Util.RuntimeOptions): Promise<ModifyApiResponse>;
|
|
13927
13515
|
/**
|
|
13928
|
-
*
|
|
13516
|
+
* 58928
|
|
13929
13517
|
*
|
|
13930
13518
|
* @param request ModifyApiRequest
|
|
13931
13519
|
* @return ModifyApiResponse
|
|
@@ -13933,43 +13521,11 @@ export default class Client extends OpenApi {
|
|
|
13933
13521
|
modifyApi(request: ModifyApiRequest): Promise<ModifyApiResponse>;
|
|
13934
13522
|
modifyApiConfigurationWithOptions(request: ModifyApiConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<ModifyApiConfigurationResponse>;
|
|
13935
13523
|
modifyApiConfiguration(request: ModifyApiConfigurationRequest): Promise<ModifyApiConfigurationResponse>;
|
|
13936
|
-
/**
|
|
13937
|
-
* * This operation is intended for API providers.
|
|
13938
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13939
|
-
*
|
|
13940
|
-
* @param request ModifyApiGroupRequest
|
|
13941
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13942
|
-
* @return ModifyApiGroupResponse
|
|
13943
|
-
*/
|
|
13944
13524
|
modifyApiGroupWithOptions(request: ModifyApiGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyApiGroupResponse>;
|
|
13945
|
-
/**
|
|
13946
|
-
* * This operation is intended for API providers.
|
|
13947
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13948
|
-
*
|
|
13949
|
-
* @param request ModifyApiGroupRequest
|
|
13950
|
-
* @return ModifyApiGroupResponse
|
|
13951
|
-
*/
|
|
13952
13525
|
modifyApiGroup(request: ModifyApiGroupRequest): Promise<ModifyApiGroupResponse>;
|
|
13953
13526
|
modifyApiGroupVpcWhitelistWithOptions(request: ModifyApiGroupVpcWhitelistRequest, runtime: $Util.RuntimeOptions): Promise<ModifyApiGroupVpcWhitelistResponse>;
|
|
13954
13527
|
modifyApiGroupVpcWhitelist(request: ModifyApiGroupVpcWhitelistRequest): Promise<ModifyApiGroupVpcWhitelistResponse>;
|
|
13955
|
-
/**
|
|
13956
|
-
* * This operation is intended for API callers.
|
|
13957
|
-
* * 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.********
|
|
13958
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13959
|
-
*
|
|
13960
|
-
* @param request ModifyAppRequest
|
|
13961
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
13962
|
-
* @return ModifyAppResponse
|
|
13963
|
-
*/
|
|
13964
13528
|
modifyAppWithOptions(request: ModifyAppRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAppResponse>;
|
|
13965
|
-
/**
|
|
13966
|
-
* * This operation is intended for API callers.
|
|
13967
|
-
* * 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.********
|
|
13968
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13969
|
-
*
|
|
13970
|
-
* @param request ModifyAppRequest
|
|
13971
|
-
* @return ModifyAppResponse
|
|
13972
|
-
*/
|
|
13973
13529
|
modifyApp(request: ModifyAppRequest): Promise<ModifyAppResponse>;
|
|
13974
13530
|
modifyBackendWithOptions(request: ModifyBackendRequest, runtime: $Util.RuntimeOptions): Promise<ModifyBackendResponse>;
|
|
13975
13531
|
modifyBackend(request: ModifyBackendRequest): Promise<ModifyBackendResponse>;
|
|
@@ -13982,8 +13538,7 @@ export default class Client extends OpenApi {
|
|
|
13982
13538
|
modifyInstanceSpecWithOptions(request: ModifyInstanceSpecRequest, runtime: $Util.RuntimeOptions): Promise<ModifyInstanceSpecResponse>;
|
|
13983
13539
|
modifyInstanceSpec(request: ModifyInstanceSpecRequest): Promise<ModifyInstanceSpecResponse>;
|
|
13984
13540
|
/**
|
|
13985
|
-
*
|
|
13986
|
-
* * This operation allows you to modify only the name and description of an ACL. You cannot modify the type of the ACL.
|
|
13541
|
+
* 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 (\\_).
|
|
13987
13542
|
*
|
|
13988
13543
|
* @param request ModifyIpControlRequest
|
|
13989
13544
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -13991,17 +13546,14 @@ export default class Client extends OpenApi {
|
|
|
13991
13546
|
*/
|
|
13992
13547
|
modifyIpControlWithOptions(request: ModifyIpControlRequest, runtime: $Util.RuntimeOptions): Promise<ModifyIpControlResponse>;
|
|
13993
13548
|
/**
|
|
13994
|
-
*
|
|
13995
|
-
* * This operation allows you to modify only the name and description of an ACL. You cannot modify the type of the ACL.
|
|
13549
|
+
* 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 (\\_).
|
|
13996
13550
|
*
|
|
13997
13551
|
* @param request ModifyIpControlRequest
|
|
13998
13552
|
* @return ModifyIpControlResponse
|
|
13999
13553
|
*/
|
|
14000
13554
|
modifyIpControl(request: ModifyIpControlRequest): Promise<ModifyIpControlResponse>;
|
|
14001
13555
|
/**
|
|
14002
|
-
*
|
|
14003
|
-
* * The modification immediately takes effect on all the APIs that are bound to the policy.
|
|
14004
|
-
* * This operation causes a full modification of the content of a policy.
|
|
13556
|
+
* The ID of the policy.
|
|
14005
13557
|
*
|
|
14006
13558
|
* @param request ModifyIpControlPolicyItemRequest
|
|
14007
13559
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14009,9 +13561,7 @@ export default class Client extends OpenApi {
|
|
|
14009
13561
|
*/
|
|
14010
13562
|
modifyIpControlPolicyItemWithOptions(request: ModifyIpControlPolicyItemRequest, runtime: $Util.RuntimeOptions): Promise<ModifyIpControlPolicyItemResponse>;
|
|
14011
13563
|
/**
|
|
14012
|
-
*
|
|
14013
|
-
* * The modification immediately takes effect on all the APIs that are bound to the policy.
|
|
14014
|
-
* * This operation causes a full modification of the content of a policy.
|
|
13564
|
+
* The ID of the policy.
|
|
14015
13565
|
*
|
|
14016
13566
|
* @param request ModifyIpControlPolicyItemRequest
|
|
14017
13567
|
* @return ModifyIpControlPolicyItemResponse
|
|
@@ -14021,28 +13571,10 @@ export default class Client extends OpenApi {
|
|
|
14021
13571
|
modifyLogConfig(request: ModifyLogConfigRequest): Promise<ModifyLogConfigResponse>;
|
|
14022
13572
|
modifyModelWithOptions(request: ModifyModelRequest, runtime: $Util.RuntimeOptions): Promise<ModifyModelResponse>;
|
|
14023
13573
|
modifyModel(request: ModifyModelRequest): Promise<ModifyModelResponse>;
|
|
14024
|
-
/**
|
|
14025
|
-
* * This operation is intended for API providers.
|
|
14026
|
-
* * The name of the plug-in must be unique.
|
|
14027
|
-
*
|
|
14028
|
-
* @param request ModifyPluginRequest
|
|
14029
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
14030
|
-
* @return ModifyPluginResponse
|
|
14031
|
-
*/
|
|
14032
13574
|
modifyPluginWithOptions(request: ModifyPluginRequest, runtime: $Util.RuntimeOptions): Promise<ModifyPluginResponse>;
|
|
14033
|
-
/**
|
|
14034
|
-
* * This operation is intended for API providers.
|
|
14035
|
-
* * The name of the plug-in must be unique.
|
|
14036
|
-
*
|
|
14037
|
-
* @param request ModifyPluginRequest
|
|
14038
|
-
* @return ModifyPluginResponse
|
|
14039
|
-
*/
|
|
14040
13575
|
modifyPlugin(request: ModifyPluginRequest): Promise<ModifyPluginResponse>;
|
|
14041
13576
|
/**
|
|
14042
|
-
*
|
|
14043
|
-
* * This API operation modifies the name, Key value, and Secret value of an existing signature key.
|
|
14044
|
-
* * 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.
|
|
14045
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13577
|
+
* 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.
|
|
14046
13578
|
*
|
|
14047
13579
|
* @param request ModifySignatureRequest
|
|
14048
13580
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14050,19 +13582,14 @@ export default class Client extends OpenApi {
|
|
|
14050
13582
|
*/
|
|
14051
13583
|
modifySignatureWithOptions(request: ModifySignatureRequest, runtime: $Util.RuntimeOptions): Promise<ModifySignatureResponse>;
|
|
14052
13584
|
/**
|
|
14053
|
-
*
|
|
14054
|
-
* * This API operation modifies the name, Key value, and Secret value of an existing signature key.
|
|
14055
|
-
* * 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.
|
|
14056
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13585
|
+
* 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.
|
|
14057
13586
|
*
|
|
14058
13587
|
* @param request ModifySignatureRequest
|
|
14059
13588
|
* @return ModifySignatureResponse
|
|
14060
13589
|
*/
|
|
14061
13590
|
modifySignature(request: ModifySignatureRequest): Promise<ModifySignatureResponse>;
|
|
14062
13591
|
/**
|
|
14063
|
-
*
|
|
14064
|
-
* * The modifications take effect on the bound APIs instantly.
|
|
14065
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13592
|
+
* 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.
|
|
14066
13593
|
*
|
|
14067
13594
|
* @param request ModifyTrafficControlRequest
|
|
14068
13595
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14070,9 +13597,7 @@ export default class Client extends OpenApi {
|
|
|
14070
13597
|
*/
|
|
14071
13598
|
modifyTrafficControlWithOptions(request: ModifyTrafficControlRequest, runtime: $Util.RuntimeOptions): Promise<ModifyTrafficControlResponse>;
|
|
14072
13599
|
/**
|
|
14073
|
-
*
|
|
14074
|
-
* * The modifications take effect on the bound APIs instantly.
|
|
14075
|
-
* * The QPS limit on this operation is 50 per user.
|
|
13600
|
+
* 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.
|
|
14076
13601
|
*
|
|
14077
13602
|
* @param request ModifyTrafficControlRequest
|
|
14078
13603
|
* @return ModifyTrafficControlResponse
|
|
@@ -14085,7 +13610,7 @@ export default class Client extends OpenApi {
|
|
|
14085
13610
|
queryRequestLogsWithOptions(request: QueryRequestLogsRequest, runtime: $Util.RuntimeOptions): Promise<QueryRequestLogsResponse>;
|
|
14086
13611
|
queryRequestLogs(request: QueryRequestLogsRequest): Promise<QueryRequestLogsResponse>;
|
|
14087
13612
|
/**
|
|
14088
|
-
*
|
|
13613
|
+
* The ID of the API group to which the domain name is bound. This ID is generated by the system and globally unique.
|
|
14089
13614
|
*
|
|
14090
13615
|
* @param request ReactivateDomainRequest
|
|
14091
13616
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14093,7 +13618,7 @@ export default class Client extends OpenApi {
|
|
|
14093
13618
|
*/
|
|
14094
13619
|
reactivateDomainWithOptions(request: ReactivateDomainRequest, runtime: $Util.RuntimeOptions): Promise<ReactivateDomainResponse>;
|
|
14095
13620
|
/**
|
|
14096
|
-
*
|
|
13621
|
+
* The ID of the API group to which the domain name is bound. This ID is generated by the system and globally unique.
|
|
14097
13622
|
*
|
|
14098
13623
|
* @param request ReactivateDomainRequest
|
|
14099
13624
|
* @return ReactivateDomainResponse
|
|
@@ -14102,8 +13627,7 @@ export default class Client extends OpenApi {
|
|
|
14102
13627
|
removeAccessControlListEntryWithOptions(request: RemoveAccessControlListEntryRequest, runtime: $Util.RuntimeOptions): Promise<RemoveAccessControlListEntryResponse>;
|
|
14103
13628
|
removeAccessControlListEntry(request: RemoveAccessControlListEntryRequest): Promise<RemoveAccessControlListEntryResponse>;
|
|
14104
13629
|
/**
|
|
14105
|
-
*
|
|
14106
|
-
* * 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.
|
|
13630
|
+
* The ID of the app. The ID is generated by the system and globally unique.
|
|
14107
13631
|
*
|
|
14108
13632
|
* @param request RemoveApisAuthoritiesRequest
|
|
14109
13633
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14111,16 +13635,14 @@ export default class Client extends OpenApi {
|
|
|
14111
13635
|
*/
|
|
14112
13636
|
removeApisAuthoritiesWithOptions(request: RemoveApisAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<RemoveApisAuthoritiesResponse>;
|
|
14113
13637
|
/**
|
|
14114
|
-
*
|
|
14115
|
-
* * 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.
|
|
13638
|
+
* The ID of the app. The ID is generated by the system and globally unique.
|
|
14116
13639
|
*
|
|
14117
13640
|
* @param request RemoveApisAuthoritiesRequest
|
|
14118
13641
|
* @return RemoveApisAuthoritiesResponse
|
|
14119
13642
|
*/
|
|
14120
13643
|
removeApisAuthorities(request: RemoveApisAuthoritiesRequest): Promise<RemoveApisAuthoritiesResponse>;
|
|
14121
13644
|
/**
|
|
14122
|
-
*
|
|
14123
|
-
* * 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.
|
|
13645
|
+
* The ID of the API. This ID is generated by the system and globally unique.
|
|
14124
13646
|
*
|
|
14125
13647
|
* @param request RemoveAppsAuthoritiesRequest
|
|
14126
13648
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14128,16 +13650,14 @@ export default class Client extends OpenApi {
|
|
|
14128
13650
|
*/
|
|
14129
13651
|
removeAppsAuthoritiesWithOptions(request: RemoveAppsAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<RemoveAppsAuthoritiesResponse>;
|
|
14130
13652
|
/**
|
|
14131
|
-
*
|
|
14132
|
-
* * 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.
|
|
13653
|
+
* The ID of the API. This ID is generated by the system and globally unique.
|
|
14133
13654
|
*
|
|
14134
13655
|
* @param request RemoveAppsAuthoritiesRequest
|
|
14135
13656
|
* @return RemoveAppsAuthoritiesResponse
|
|
14136
13657
|
*/
|
|
14137
13658
|
removeAppsAuthorities(request: RemoveAppsAuthoritiesRequest): Promise<RemoveAppsAuthoritiesResponse>;
|
|
14138
13659
|
/**
|
|
14139
|
-
*
|
|
14140
|
-
* * 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.
|
|
13660
|
+
* The ID of the API group containing the API to be managed.
|
|
14141
13661
|
*
|
|
14142
13662
|
* @param request RemoveIpControlApisRequest
|
|
14143
13663
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14145,15 +13665,14 @@ export default class Client extends OpenApi {
|
|
|
14145
13665
|
*/
|
|
14146
13666
|
removeIpControlApisWithOptions(request: RemoveIpControlApisRequest, runtime: $Util.RuntimeOptions): Promise<RemoveIpControlApisResponse>;
|
|
14147
13667
|
/**
|
|
14148
|
-
*
|
|
14149
|
-
* * 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.
|
|
13668
|
+
* The ID of the API group containing the API to be managed.
|
|
14150
13669
|
*
|
|
14151
13670
|
* @param request RemoveIpControlApisRequest
|
|
14152
13671
|
* @return RemoveIpControlApisResponse
|
|
14153
13672
|
*/
|
|
14154
13673
|
removeIpControlApis(request: RemoveIpControlApisRequest): Promise<RemoveIpControlApisResponse>;
|
|
14155
13674
|
/**
|
|
14156
|
-
*
|
|
13675
|
+
* The ID of a policy. Separate multiple IDs with semicolons (;). A maximum of 100 IDs can be entered.
|
|
14157
13676
|
*
|
|
14158
13677
|
* @param request RemoveIpControlPolicyItemRequest
|
|
14159
13678
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14161,14 +13680,14 @@ export default class Client extends OpenApi {
|
|
|
14161
13680
|
*/
|
|
14162
13681
|
removeIpControlPolicyItemWithOptions(request: RemoveIpControlPolicyItemRequest, runtime: $Util.RuntimeOptions): Promise<RemoveIpControlPolicyItemResponse>;
|
|
14163
13682
|
/**
|
|
14164
|
-
*
|
|
13683
|
+
* The ID of a policy. Separate multiple IDs with semicolons (;). A maximum of 100 IDs can be entered.
|
|
14165
13684
|
*
|
|
14166
13685
|
* @param request RemoveIpControlPolicyItemRequest
|
|
14167
13686
|
* @return RemoveIpControlPolicyItemResponse
|
|
14168
13687
|
*/
|
|
14169
13688
|
removeIpControlPolicyItem(request: RemoveIpControlPolicyItemRequest): Promise<RemoveIpControlPolicyItemResponse>;
|
|
14170
13689
|
/**
|
|
14171
|
-
*
|
|
13690
|
+
* The ID of the signature key.
|
|
14172
13691
|
*
|
|
14173
13692
|
* @param request RemoveSignatureApisRequest
|
|
14174
13693
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14176,15 +13695,14 @@ export default class Client extends OpenApi {
|
|
|
14176
13695
|
*/
|
|
14177
13696
|
removeSignatureApisWithOptions(request: RemoveSignatureApisRequest, runtime: $Util.RuntimeOptions): Promise<RemoveSignatureApisResponse>;
|
|
14178
13697
|
/**
|
|
14179
|
-
*
|
|
13698
|
+
* The ID of the signature key.
|
|
14180
13699
|
*
|
|
14181
13700
|
* @param request RemoveSignatureApisRequest
|
|
14182
13701
|
* @return RemoveSignatureApisResponse
|
|
14183
13702
|
*/
|
|
14184
13703
|
removeSignatureApis(request: RemoveSignatureApisRequest): Promise<RemoveSignatureApisResponse>;
|
|
14185
13704
|
/**
|
|
14186
|
-
*
|
|
14187
|
-
* * This API allows you to unbind a specified throttling policy from up to 100 APIs at a time.
|
|
13705
|
+
* The ID of the API group containing the APIs from which you want to unbind a specified throttling policy.
|
|
14188
13706
|
*
|
|
14189
13707
|
* @param request RemoveTrafficControlApisRequest
|
|
14190
13708
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14192,31 +13710,13 @@ export default class Client extends OpenApi {
|
|
|
14192
13710
|
*/
|
|
14193
13711
|
removeTrafficControlApisWithOptions(request: RemoveTrafficControlApisRequest, runtime: $Util.RuntimeOptions): Promise<RemoveTrafficControlApisResponse>;
|
|
14194
13712
|
/**
|
|
14195
|
-
*
|
|
14196
|
-
* * This API allows you to unbind a specified throttling policy from up to 100 APIs at a time.
|
|
13713
|
+
* The ID of the API group containing the APIs from which you want to unbind a specified throttling policy.
|
|
14197
13714
|
*
|
|
14198
13715
|
* @param request RemoveTrafficControlApisRequest
|
|
14199
13716
|
* @return RemoveTrafficControlApisResponse
|
|
14200
13717
|
*/
|
|
14201
13718
|
removeTrafficControlApis(request: RemoveTrafficControlApisRequest): Promise<RemoveTrafficControlApisResponse>;
|
|
14202
|
-
/**
|
|
14203
|
-
* * This API is intended for API providers.
|
|
14204
|
-
* * Revokes the permissions of API Gateway to access your VPC instance.
|
|
14205
|
-
* > Deleting an authorization affects the associated API. Before you delete the authorization, make sure that it is not used by the API.
|
|
14206
|
-
*
|
|
14207
|
-
* @param request RemoveVpcAccessRequest
|
|
14208
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
14209
|
-
* @return RemoveVpcAccessResponse
|
|
14210
|
-
*/
|
|
14211
13719
|
removeVpcAccessWithOptions(request: RemoveVpcAccessRequest, runtime: $Util.RuntimeOptions): Promise<RemoveVpcAccessResponse>;
|
|
14212
|
-
/**
|
|
14213
|
-
* * This API is intended for API providers.
|
|
14214
|
-
* * Revokes the permissions of API Gateway to access your VPC instance.
|
|
14215
|
-
* > Deleting an authorization affects the associated API. Before you delete the authorization, make sure that it is not used by the API.
|
|
14216
|
-
*
|
|
14217
|
-
* @param request RemoveVpcAccessRequest
|
|
14218
|
-
* @return RemoveVpcAccessResponse
|
|
14219
|
-
*/
|
|
14220
13720
|
removeVpcAccess(request: RemoveVpcAccessRequest): Promise<RemoveVpcAccessResponse>;
|
|
14221
13721
|
removeVpcAccessAndAbolishApisWithOptions(request: RemoveVpcAccessAndAbolishApisRequest, runtime: $Util.RuntimeOptions): Promise<RemoveVpcAccessAndAbolishApisResponse>;
|
|
14222
13722
|
removeVpcAccessAndAbolishApis(request: RemoveVpcAccessAndAbolishApisRequest): Promise<RemoveVpcAccessAndAbolishApisResponse>;
|
|
@@ -14263,9 +13763,7 @@ export default class Client extends OpenApi {
|
|
|
14263
13763
|
setAccessControlListAttributeWithOptions(request: SetAccessControlListAttributeRequest, runtime: $Util.RuntimeOptions): Promise<SetAccessControlListAttributeResponse>;
|
|
14264
13764
|
setAccessControlListAttribute(request: SetAccessControlListAttributeRequest): Promise<SetAccessControlListAttributeResponse>;
|
|
14265
13765
|
/**
|
|
14266
|
-
*
|
|
14267
|
-
* * API providers can authorize any apps to call their APIs.
|
|
14268
|
-
* * API callers can authorize their own apps to call the APIs that they have purchased.
|
|
13766
|
+
* The ID of the app. This ID is generated by the system and globally unique.
|
|
14269
13767
|
*
|
|
14270
13768
|
* @param request SetApisAuthoritiesRequest
|
|
14271
13769
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14273,18 +13771,14 @@ export default class Client extends OpenApi {
|
|
|
14273
13771
|
*/
|
|
14274
13772
|
setApisAuthoritiesWithOptions(request: SetApisAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<SetApisAuthoritiesResponse>;
|
|
14275
13773
|
/**
|
|
14276
|
-
*
|
|
14277
|
-
* * API providers can authorize any apps to call their APIs.
|
|
14278
|
-
* * API callers can authorize their own apps to call the APIs that they have purchased.
|
|
13774
|
+
* The ID of the app. This ID is generated by the system and globally unique.
|
|
14279
13775
|
*
|
|
14280
13776
|
* @param request SetApisAuthoritiesRequest
|
|
14281
13777
|
* @return SetApisAuthoritiesResponse
|
|
14282
13778
|
*/
|
|
14283
13779
|
setApisAuthorities(request: SetApisAuthoritiesRequest): Promise<SetApisAuthoritiesResponse>;
|
|
14284
13780
|
/**
|
|
14285
|
-
*
|
|
14286
|
-
* * API providers can authorize any apps to call their APIs.
|
|
14287
|
-
* * API callers can authorize their own apps to call the APIs that they have purchased.
|
|
13781
|
+
* The ID of the API. This ID is generated by the system and globally unique.
|
|
14288
13782
|
*
|
|
14289
13783
|
* @param request SetAppsAuthoritiesRequest
|
|
14290
13784
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14292,9 +13786,7 @@ export default class Client extends OpenApi {
|
|
|
14292
13786
|
*/
|
|
14293
13787
|
setAppsAuthoritiesWithOptions(request: SetAppsAuthoritiesRequest, runtime: $Util.RuntimeOptions): Promise<SetAppsAuthoritiesResponse>;
|
|
14294
13788
|
/**
|
|
14295
|
-
*
|
|
14296
|
-
* * API providers can authorize any apps to call their APIs.
|
|
14297
|
-
* * API callers can authorize their own apps to call the APIs that they have purchased.
|
|
13789
|
+
* The ID of the API. This ID is generated by the system and globally unique.
|
|
14298
13790
|
*
|
|
14299
13791
|
* @param request SetAppsAuthoritiesRequest
|
|
14300
13792
|
* @return SetAppsAuthoritiesResponse
|
|
@@ -14303,9 +13795,7 @@ export default class Client extends OpenApi {
|
|
|
14303
13795
|
setDomainWithOptions(request: SetDomainRequest, runtime: $Util.RuntimeOptions): Promise<SetDomainResponse>;
|
|
14304
13796
|
setDomain(request: SetDomainRequest): Promise<SetDomainResponse>;
|
|
14305
13797
|
/**
|
|
14306
|
-
*
|
|
14307
|
-
* * The SSL certificate must match the custom domain name.
|
|
14308
|
-
* * After the SSL certificate is bound, HTTPS-based API services become available.
|
|
13798
|
+
* 382271
|
|
14309
13799
|
*
|
|
14310
13800
|
* @param request SetDomainCertificateRequest
|
|
14311
13801
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14313,9 +13803,7 @@ export default class Client extends OpenApi {
|
|
|
14313
13803
|
*/
|
|
14314
13804
|
setDomainCertificateWithOptions(request: SetDomainCertificateRequest, runtime: $Util.RuntimeOptions): Promise<SetDomainCertificateResponse>;
|
|
14315
13805
|
/**
|
|
14316
|
-
*
|
|
14317
|
-
* * The SSL certificate must match the custom domain name.
|
|
14318
|
-
* * After the SSL certificate is bound, HTTPS-based API services become available.
|
|
13806
|
+
* 382271
|
|
14319
13807
|
*
|
|
14320
13808
|
* @param request SetDomainCertificateRequest
|
|
14321
13809
|
* @return SetDomainCertificateResponse
|
|
@@ -14326,8 +13814,7 @@ export default class Client extends OpenApi {
|
|
|
14326
13814
|
setGroupAuthAppCodeWithOptions(request: SetGroupAuthAppCodeRequest, runtime: $Util.RuntimeOptions): Promise<SetGroupAuthAppCodeResponse>;
|
|
14327
13815
|
setGroupAuthAppCode(request: SetGroupAuthAppCodeRequest): Promise<SetGroupAuthAppCodeResponse>;
|
|
14328
13816
|
/**
|
|
14329
|
-
*
|
|
14330
|
-
* * A maximum of 100 APIs can be bound at a time.
|
|
13817
|
+
* The ID of the API group.
|
|
14331
13818
|
*
|
|
14332
13819
|
* @param request SetIpControlApisRequest
|
|
14333
13820
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14335,15 +13822,14 @@ export default class Client extends OpenApi {
|
|
|
14335
13822
|
*/
|
|
14336
13823
|
setIpControlApisWithOptions(request: SetIpControlApisRequest, runtime: $Util.RuntimeOptions): Promise<SetIpControlApisResponse>;
|
|
14337
13824
|
/**
|
|
14338
|
-
*
|
|
14339
|
-
* * A maximum of 100 APIs can be bound at a time.
|
|
13825
|
+
* The ID of the API group.
|
|
14340
13826
|
*
|
|
14341
13827
|
* @param request SetIpControlApisRequest
|
|
14342
13828
|
* @return SetIpControlApisResponse
|
|
14343
13829
|
*/
|
|
14344
13830
|
setIpControlApis(request: SetIpControlApisRequest): Promise<SetIpControlApisResponse>;
|
|
14345
13831
|
/**
|
|
14346
|
-
*
|
|
13832
|
+
* The ID of the signature key.
|
|
14347
13833
|
*
|
|
14348
13834
|
* @param request SetSignatureApisRequest
|
|
14349
13835
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14351,15 +13837,14 @@ export default class Client extends OpenApi {
|
|
|
14351
13837
|
*/
|
|
14352
13838
|
setSignatureApisWithOptions(request: SetSignatureApisRequest, runtime: $Util.RuntimeOptions): Promise<SetSignatureApisResponse>;
|
|
14353
13839
|
/**
|
|
14354
|
-
*
|
|
13840
|
+
* The ID of the signature key.
|
|
14355
13841
|
*
|
|
14356
13842
|
* @param request SetSignatureApisRequest
|
|
14357
13843
|
* @return SetSignatureApisResponse
|
|
14358
13844
|
*/
|
|
14359
13845
|
setSignatureApis(request: SetSignatureApisRequest): Promise<SetSignatureApisResponse>;
|
|
14360
13846
|
/**
|
|
14361
|
-
*
|
|
14362
|
-
* * This API allows you to bind a specific throttling policy to up to 100 APIs at a time.
|
|
13847
|
+
* The ID of the API group containing the APIs to which you want to bind a specified throttling policy.
|
|
14363
13848
|
*
|
|
14364
13849
|
* @param request SetTrafficControlApisRequest
|
|
14365
13850
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14367,38 +13852,18 @@ export default class Client extends OpenApi {
|
|
|
14367
13852
|
*/
|
|
14368
13853
|
setTrafficControlApisWithOptions(request: SetTrafficControlApisRequest, runtime: $Util.RuntimeOptions): Promise<SetTrafficControlApisResponse>;
|
|
14369
13854
|
/**
|
|
14370
|
-
*
|
|
14371
|
-
* * This API allows you to bind a specific throttling policy to up to 100 APIs at a time.
|
|
13855
|
+
* The ID of the API group containing the APIs to which you want to bind a specified throttling policy.
|
|
14372
13856
|
*
|
|
14373
13857
|
* @param request SetTrafficControlApisRequest
|
|
14374
13858
|
* @return SetTrafficControlApisResponse
|
|
14375
13859
|
*/
|
|
14376
13860
|
setTrafficControlApis(request: SetTrafficControlApisRequest): Promise<SetTrafficControlApisResponse>;
|
|
14377
|
-
/**
|
|
14378
|
-
* * This operation is intended for API providers.
|
|
14379
|
-
* * This operation is used to authorize API Gateway to access your VPC instance.
|
|
14380
|
-
*
|
|
14381
|
-
* @param request SetVpcAccessRequest
|
|
14382
|
-
* @param runtime runtime options for this request RuntimeOptions
|
|
14383
|
-
* @return SetVpcAccessResponse
|
|
14384
|
-
*/
|
|
14385
13861
|
setVpcAccessWithOptions(request: SetVpcAccessRequest, runtime: $Util.RuntimeOptions): Promise<SetVpcAccessResponse>;
|
|
14386
|
-
/**
|
|
14387
|
-
* * This operation is intended for API providers.
|
|
14388
|
-
* * This operation is used to authorize API Gateway to access your VPC instance.
|
|
14389
|
-
*
|
|
14390
|
-
* @param request SetVpcAccessRequest
|
|
14391
|
-
* @return SetVpcAccessResponse
|
|
14392
|
-
*/
|
|
14393
13862
|
setVpcAccess(request: SetVpcAccessRequest): Promise<SetVpcAccessResponse>;
|
|
14394
13863
|
setWildcardDomainPatternsWithOptions(request: SetWildcardDomainPatternsRequest, runtime: $Util.RuntimeOptions): Promise<SetWildcardDomainPatternsResponse>;
|
|
14395
13864
|
setWildcardDomainPatterns(request: SetWildcardDomainPatternsRequest): Promise<SetWildcardDomainPatternsResponse>;
|
|
14396
13865
|
/**
|
|
14397
|
-
*
|
|
14398
|
-
* * The historical version can be obtained through the DescribeHistoryApis API.****
|
|
14399
|
-
* * Only APIs that have been published more than once have historical versions to switch to.
|
|
14400
|
-
* * 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.
|
|
14401
|
-
* * The switch operation is in essence a publish operation, and the reason for this operation must be provided.
|
|
13866
|
+
* The ID of the API.
|
|
14402
13867
|
*
|
|
14403
13868
|
* @param request SwitchApiRequest
|
|
14404
13869
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14406,22 +13871,15 @@ export default class Client extends OpenApi {
|
|
|
14406
13871
|
*/
|
|
14407
13872
|
switchApiWithOptions(request: SwitchApiRequest, runtime: $Util.RuntimeOptions): Promise<SwitchApiResponse>;
|
|
14408
13873
|
/**
|
|
14409
|
-
*
|
|
14410
|
-
* * The historical version can be obtained through the DescribeHistoryApis API.****
|
|
14411
|
-
* * Only APIs that have been published more than once have historical versions to switch to.
|
|
14412
|
-
* * 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.
|
|
14413
|
-
* * The switch operation is in essence a publish operation, and the reason for this operation must be provided.
|
|
13874
|
+
* The ID of the API.
|
|
14414
13875
|
*
|
|
14415
13876
|
* @param request SwitchApiRequest
|
|
14416
13877
|
* @return SwitchApiResponse
|
|
14417
13878
|
*/
|
|
14418
13879
|
switchApi(request: SwitchApiRequest): Promise<SwitchApiResponse>;
|
|
14419
13880
|
/**
|
|
14420
|
-
*
|
|
14421
|
-
*
|
|
14422
|
-
* * If you call this operation to tag multiple resources simultaneously, either all or none of the resources will be tagged.
|
|
14423
|
-
* * 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.
|
|
14424
|
-
* * If a tag with the same key has been bound to a resource, the new tag will overwrite the existing one.
|
|
13881
|
+
* The key of tag N.
|
|
13882
|
+
* Valid values of N: `1 to 20.`
|
|
14425
13883
|
*
|
|
14426
13884
|
* @param request TagResourcesRequest
|
|
14427
13885
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14429,22 +13887,17 @@ export default class Client extends OpenApi {
|
|
|
14429
13887
|
*/
|
|
14430
13888
|
tagResourcesWithOptions(request: TagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse>;
|
|
14431
13889
|
/**
|
|
14432
|
-
*
|
|
14433
|
-
*
|
|
14434
|
-
* * If you call this operation to tag multiple resources simultaneously, either all or none of the resources will be tagged.
|
|
14435
|
-
* * 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.
|
|
14436
|
-
* * If a tag with the same key has been bound to a resource, the new tag will overwrite the existing one.
|
|
13890
|
+
* The key of tag N.
|
|
13891
|
+
* Valid values of N: `1 to 20.`
|
|
14437
13892
|
*
|
|
14438
13893
|
* @param request TagResourcesRequest
|
|
14439
13894
|
* @return TagResourcesResponse
|
|
14440
13895
|
*/
|
|
14441
13896
|
tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse>;
|
|
14442
13897
|
/**
|
|
14443
|
-
*
|
|
14444
|
-
* *
|
|
14445
|
-
* *
|
|
14446
|
-
* * When tag keys are specified, the All parameter is invalid.
|
|
14447
|
-
* * When multiple resources and key-value pairs are specified, the specified tags bound to the resources are deleted.
|
|
13898
|
+
* Specifies whether to delete all tags. This parameter is valid only when the **TagKey.N**parameter is not specified. Default value: false. Valid values:
|
|
13899
|
+
* * **true**
|
|
13900
|
+
* * **false**
|
|
14448
13901
|
*
|
|
14449
13902
|
* @param request UntagResourcesRequest
|
|
14450
13903
|
* @param runtime runtime options for this request RuntimeOptions
|
|
@@ -14452,14 +13905,14 @@ export default class Client extends OpenApi {
|
|
|
14452
13905
|
*/
|
|
14453
13906
|
untagResourcesWithOptions(request: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse>;
|
|
14454
13907
|
/**
|
|
14455
|
-
*
|
|
14456
|
-
* *
|
|
14457
|
-
* *
|
|
14458
|
-
* * When tag keys are specified, the All parameter is invalid.
|
|
14459
|
-
* * When multiple resources and key-value pairs are specified, the specified tags bound to the resources are deleted.
|
|
13908
|
+
* Specifies whether to delete all tags. This parameter is valid only when the **TagKey.N**parameter is not specified. Default value: false. Valid values:
|
|
13909
|
+
* * **true**
|
|
13910
|
+
* * **false**
|
|
14460
13911
|
*
|
|
14461
13912
|
* @param request UntagResourcesRequest
|
|
14462
13913
|
* @return UntagResourcesResponse
|
|
14463
13914
|
*/
|
|
14464
13915
|
untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
|
|
13916
|
+
validateVpcConnectivityWithOptions(request: ValidateVpcConnectivityRequest, runtime: $Util.RuntimeOptions): Promise<ValidateVpcConnectivityResponse>;
|
|
13917
|
+
validateVpcConnectivity(request: ValidateVpcConnectivityRequest): Promise<ValidateVpcConnectivityResponse>;
|
|
14465
13918
|
}
|