@alicloud/gpdb20160503 1.6.2 → 1.6.5
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 +1808 -690
- package/dist/client.js +1857 -698
- package/dist/client.js.map +1 -1
- package/package.json +2 -2
- package/src/client.ts +1866 -690
package/dist/client.d.ts
CHANGED
|
@@ -2013,6 +2013,48 @@ export declare class DescribeDBInstancesResponse extends $tea.Model {
|
|
|
2013
2013
|
[key: string]: any;
|
|
2014
2014
|
});
|
|
2015
2015
|
}
|
|
2016
|
+
export declare class DescribeDBResourceManagementModeRequest extends $tea.Model {
|
|
2017
|
+
DBInstanceId?: string;
|
|
2018
|
+
ownerId?: number;
|
|
2019
|
+
static names(): {
|
|
2020
|
+
[key: string]: string;
|
|
2021
|
+
};
|
|
2022
|
+
static types(): {
|
|
2023
|
+
[key: string]: any;
|
|
2024
|
+
};
|
|
2025
|
+
constructor(map?: {
|
|
2026
|
+
[key: string]: any;
|
|
2027
|
+
});
|
|
2028
|
+
}
|
|
2029
|
+
export declare class DescribeDBResourceManagementModeResponseBody extends $tea.Model {
|
|
2030
|
+
requestId?: string;
|
|
2031
|
+
resourceManagementMode?: string;
|
|
2032
|
+
static names(): {
|
|
2033
|
+
[key: string]: string;
|
|
2034
|
+
};
|
|
2035
|
+
static types(): {
|
|
2036
|
+
[key: string]: any;
|
|
2037
|
+
};
|
|
2038
|
+
constructor(map?: {
|
|
2039
|
+
[key: string]: any;
|
|
2040
|
+
});
|
|
2041
|
+
}
|
|
2042
|
+
export declare class DescribeDBResourceManagementModeResponse extends $tea.Model {
|
|
2043
|
+
headers?: {
|
|
2044
|
+
[key: string]: string;
|
|
2045
|
+
};
|
|
2046
|
+
statusCode?: number;
|
|
2047
|
+
body?: DescribeDBResourceManagementModeResponseBody;
|
|
2048
|
+
static names(): {
|
|
2049
|
+
[key: string]: string;
|
|
2050
|
+
};
|
|
2051
|
+
static types(): {
|
|
2052
|
+
[key: string]: any;
|
|
2053
|
+
};
|
|
2054
|
+
constructor(map?: {
|
|
2055
|
+
[key: string]: any;
|
|
2056
|
+
});
|
|
2057
|
+
}
|
|
2016
2058
|
export declare class DescribeDBVersionInfosRequest extends $tea.Model {
|
|
2017
2059
|
DBInstanceMode?: string;
|
|
2018
2060
|
DBVersion?: string;
|
|
@@ -7774,1150 +7816,2226 @@ export default class Client extends OpenApi {
|
|
|
7774
7816
|
[key: string]: string;
|
|
7775
7817
|
}, endpoint: string): string;
|
|
7776
7818
|
/**
|
|
7777
|
-
|
|
7778
|
-
|
|
7779
|
-
|
|
7780
|
-
|
|
7781
|
-
|
|
7782
|
-
|
|
7783
|
-
|
|
7819
|
+
* @summary Allocates a public endpoint for an AnalyticDB for PostgreSQL instance.
|
|
7820
|
+
*
|
|
7821
|
+
* @description You can call this operation to apply for a public endpoint for an AnalyticDB for PostgreSQL instance. Both the primary and instance endpoints of an AnalyticDB for PostgreSQL instance can be public endpoints. For more information, see [Endpoints of an instance and its primary coordinator node](https://help.aliyun.com/document_detail/204879.html).
|
|
7822
|
+
* ## Limits
|
|
7823
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
7824
|
+
*
|
|
7825
|
+
* @param request AllocateInstancePublicConnectionRequest
|
|
7826
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7827
|
+
* @return AllocateInstancePublicConnectionResponse
|
|
7784
7828
|
*/
|
|
7785
7829
|
allocateInstancePublicConnectionWithOptions(request: AllocateInstancePublicConnectionRequest, runtime: $Util.RuntimeOptions): Promise<AllocateInstancePublicConnectionResponse>;
|
|
7786
7830
|
/**
|
|
7787
|
-
|
|
7788
|
-
|
|
7789
|
-
|
|
7790
|
-
|
|
7791
|
-
|
|
7792
|
-
|
|
7831
|
+
* @summary Allocates a public endpoint for an AnalyticDB for PostgreSQL instance.
|
|
7832
|
+
*
|
|
7833
|
+
* @description You can call this operation to apply for a public endpoint for an AnalyticDB for PostgreSQL instance. Both the primary and instance endpoints of an AnalyticDB for PostgreSQL instance can be public endpoints. For more information, see [Endpoints of an instance and its primary coordinator node](https://help.aliyun.com/document_detail/204879.html).
|
|
7834
|
+
* ## Limits
|
|
7835
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
7836
|
+
*
|
|
7837
|
+
* @param request AllocateInstancePublicConnectionRequest
|
|
7838
|
+
* @return AllocateInstancePublicConnectionResponse
|
|
7793
7839
|
*/
|
|
7794
7840
|
allocateInstancePublicConnection(request: AllocateInstancePublicConnectionRequest): Promise<AllocateInstancePublicConnectionResponse>;
|
|
7841
|
+
/**
|
|
7842
|
+
* @summary 取消上传文档任务
|
|
7843
|
+
*
|
|
7844
|
+
* @param request CancelUploadDocumentJobRequest
|
|
7845
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7846
|
+
* @return CancelUploadDocumentJobResponse
|
|
7847
|
+
*/
|
|
7795
7848
|
cancelUploadDocumentJobWithOptions(request: CancelUploadDocumentJobRequest, runtime: $Util.RuntimeOptions): Promise<CancelUploadDocumentJobResponse>;
|
|
7849
|
+
/**
|
|
7850
|
+
* @summary 取消上传文档任务
|
|
7851
|
+
*
|
|
7852
|
+
* @param request CancelUploadDocumentJobRequest
|
|
7853
|
+
* @return CancelUploadDocumentJobResponse
|
|
7854
|
+
*/
|
|
7796
7855
|
cancelUploadDocumentJob(request: CancelUploadDocumentJobRequest): Promise<CancelUploadDocumentJobResponse>;
|
|
7856
|
+
/**
|
|
7857
|
+
* @summary 取消上传数据任务
|
|
7858
|
+
*
|
|
7859
|
+
* @param request CancelUpsertCollectionDataJobRequest
|
|
7860
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7861
|
+
* @return CancelUpsertCollectionDataJobResponse
|
|
7862
|
+
*/
|
|
7797
7863
|
cancelUpsertCollectionDataJobWithOptions(request: CancelUpsertCollectionDataJobRequest, runtime: $Util.RuntimeOptions): Promise<CancelUpsertCollectionDataJobResponse>;
|
|
7864
|
+
/**
|
|
7865
|
+
* @summary 取消上传数据任务
|
|
7866
|
+
*
|
|
7867
|
+
* @param request CancelUpsertCollectionDataJobRequest
|
|
7868
|
+
* @return CancelUpsertCollectionDataJobResponse
|
|
7869
|
+
*/
|
|
7798
7870
|
cancelUpsertCollectionDataJob(request: CancelUpsertCollectionDataJobRequest): Promise<CancelUpsertCollectionDataJobResponse>;
|
|
7871
|
+
/**
|
|
7872
|
+
* @summary Queries whether a service-linked role is created.
|
|
7873
|
+
*
|
|
7874
|
+
* @param request CheckServiceLinkedRoleRequest
|
|
7875
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7876
|
+
* @return CheckServiceLinkedRoleResponse
|
|
7877
|
+
*/
|
|
7799
7878
|
checkServiceLinkedRoleWithOptions(request: CheckServiceLinkedRoleRequest, runtime: $Util.RuntimeOptions): Promise<CheckServiceLinkedRoleResponse>;
|
|
7879
|
+
/**
|
|
7880
|
+
* @summary Queries whether a service-linked role is created.
|
|
7881
|
+
*
|
|
7882
|
+
* @param request CheckServiceLinkedRoleRequest
|
|
7883
|
+
* @return CheckServiceLinkedRoleResponse
|
|
7884
|
+
*/
|
|
7800
7885
|
checkServiceLinkedRole(request: CheckServiceLinkedRoleRequest): Promise<CheckServiceLinkedRoleResponse>;
|
|
7801
7886
|
/**
|
|
7802
|
-
|
|
7803
|
-
|
|
7804
|
-
|
|
7805
|
-
|
|
7806
|
-
|
|
7807
|
-
|
|
7808
|
-
|
|
7809
|
-
|
|
7887
|
+
* @summary Creates a privileged account for an AnalyticDB for PostgreSQL instance.
|
|
7888
|
+
*
|
|
7889
|
+
* @description * Before you can use an AnalyticDB for PostgreSQL instance, you must create a privileged account for the instance.
|
|
7890
|
+
* * You can call this operation to create only privileged accounts. For information about how to create other types of accounts, see [Create a database account](https://help.aliyun.com/document_detail/50206.html).
|
|
7891
|
+
* ## Limits
|
|
7892
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
7893
|
+
*
|
|
7894
|
+
* @param request CreateAccountRequest
|
|
7895
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7896
|
+
* @return CreateAccountResponse
|
|
7810
7897
|
*/
|
|
7811
7898
|
createAccountWithOptions(request: CreateAccountRequest, runtime: $Util.RuntimeOptions): Promise<CreateAccountResponse>;
|
|
7812
7899
|
/**
|
|
7813
|
-
|
|
7814
|
-
|
|
7815
|
-
|
|
7816
|
-
|
|
7817
|
-
|
|
7818
|
-
|
|
7819
|
-
|
|
7900
|
+
* @summary Creates a privileged account for an AnalyticDB for PostgreSQL instance.
|
|
7901
|
+
*
|
|
7902
|
+
* @description * Before you can use an AnalyticDB for PostgreSQL instance, you must create a privileged account for the instance.
|
|
7903
|
+
* * You can call this operation to create only privileged accounts. For information about how to create other types of accounts, see [Create a database account](https://help.aliyun.com/document_detail/50206.html).
|
|
7904
|
+
* ## Limits
|
|
7905
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
7906
|
+
*
|
|
7907
|
+
* @param request CreateAccountRequest
|
|
7908
|
+
* @return CreateAccountResponse
|
|
7820
7909
|
*/
|
|
7821
7910
|
createAccount(request: CreateAccountRequest): Promise<CreateAccountResponse>;
|
|
7911
|
+
/**
|
|
7912
|
+
* @summary 创建Collection
|
|
7913
|
+
*
|
|
7914
|
+
* @param request CreateCollectionRequest
|
|
7915
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7916
|
+
* @return CreateCollectionResponse
|
|
7917
|
+
*/
|
|
7822
7918
|
createCollectionWithOptions(request: CreateCollectionRequest, runtime: $Util.RuntimeOptions): Promise<CreateCollectionResponse>;
|
|
7919
|
+
/**
|
|
7920
|
+
* @summary 创建Collection
|
|
7921
|
+
*
|
|
7922
|
+
* @param request CreateCollectionRequest
|
|
7923
|
+
* @return CreateCollectionResponse
|
|
7924
|
+
*/
|
|
7823
7925
|
createCollection(request: CreateCollectionRequest): Promise<CreateCollectionResponse>;
|
|
7824
7926
|
/**
|
|
7825
|
-
|
|
7826
|
-
|
|
7827
|
-
|
|
7828
|
-
|
|
7829
|
-
|
|
7830
|
-
|
|
7831
|
-
|
|
7832
|
-
|
|
7927
|
+
* @summary Creates an AnalyticDB for PostgreSQL instance.
|
|
7928
|
+
*
|
|
7929
|
+
* @description You can call this operation when you need to create AnalyticDB for PostgreSQL instances to meet the requirements of new applications or services.
|
|
7930
|
+
* Before you call this operation, make sure that you are familiar with the billing of AnalyticDB for PostgreSQL instances. For more information, see [Billing methods](https://help.aliyun.com/document_detail/35406.html) and [AnalyticDB for PostgreSQL pricing](https://www.alibabacloud.com/zh/product/hybriddb-postgresql/pricing).
|
|
7931
|
+
* ## Limits
|
|
7932
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds a limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limits when you call this operation.
|
|
7933
|
+
*
|
|
7934
|
+
* @param request CreateDBInstanceRequest
|
|
7935
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7936
|
+
* @return CreateDBInstanceResponse
|
|
7833
7937
|
*/
|
|
7834
7938
|
createDBInstanceWithOptions(request: CreateDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<CreateDBInstanceResponse>;
|
|
7835
7939
|
/**
|
|
7836
|
-
|
|
7837
|
-
|
|
7838
|
-
|
|
7839
|
-
|
|
7840
|
-
|
|
7841
|
-
|
|
7842
|
-
|
|
7940
|
+
* @summary Creates an AnalyticDB for PostgreSQL instance.
|
|
7941
|
+
*
|
|
7942
|
+
* @description You can call this operation when you need to create AnalyticDB for PostgreSQL instances to meet the requirements of new applications or services.
|
|
7943
|
+
* Before you call this operation, make sure that you are familiar with the billing of AnalyticDB for PostgreSQL instances. For more information, see [Billing methods](https://help.aliyun.com/document_detail/35406.html) and [AnalyticDB for PostgreSQL pricing](https://www.alibabacloud.com/zh/product/hybriddb-postgresql/pricing).
|
|
7944
|
+
* ## Limits
|
|
7945
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds a limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limits when you call this operation.
|
|
7946
|
+
*
|
|
7947
|
+
* @param request CreateDBInstanceRequest
|
|
7948
|
+
* @return CreateDBInstanceResponse
|
|
7843
7949
|
*/
|
|
7844
7950
|
createDBInstance(request: CreateDBInstanceRequest): Promise<CreateDBInstanceResponse>;
|
|
7845
7951
|
/**
|
|
7846
|
-
|
|
7847
|
-
|
|
7848
|
-
|
|
7849
|
-
|
|
7850
|
-
|
|
7851
|
-
|
|
7852
|
-
|
|
7952
|
+
* @summary Creates a plan for an AnalyticDB for PostgreSQL instance.
|
|
7953
|
+
*
|
|
7954
|
+
* @description * The plan management feature is supported only for pay-as-you-go instances.
|
|
7955
|
+
* * When you change the compute node specifications or change the number of compute nodes, transient connections may occur. We recommend that you perform these operations during off-peak hours.
|
|
7956
|
+
* Before you call this operation, make sure that you are familiar with the billing of AnalyticDB for PostgreSQL. For more information, see [Billing methods](https://help.aliyun.com/document_detail/35406.html) and [AnalyticDB for PostgreSQL pricing](https://www.alibabacloud.com/zh/product/hybriddb-postgresql/pricing).
|
|
7957
|
+
*
|
|
7958
|
+
* @param request CreateDBInstancePlanRequest
|
|
7959
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7960
|
+
* @return CreateDBInstancePlanResponse
|
|
7853
7961
|
*/
|
|
7854
7962
|
createDBInstancePlanWithOptions(request: CreateDBInstancePlanRequest, runtime: $Util.RuntimeOptions): Promise<CreateDBInstancePlanResponse>;
|
|
7855
7963
|
/**
|
|
7856
|
-
|
|
7857
|
-
|
|
7858
|
-
|
|
7859
|
-
|
|
7860
|
-
|
|
7861
|
-
|
|
7964
|
+
* @summary Creates a plan for an AnalyticDB for PostgreSQL instance.
|
|
7965
|
+
*
|
|
7966
|
+
* @description * The plan management feature is supported only for pay-as-you-go instances.
|
|
7967
|
+
* * When you change the compute node specifications or change the number of compute nodes, transient connections may occur. We recommend that you perform these operations during off-peak hours.
|
|
7968
|
+
* Before you call this operation, make sure that you are familiar with the billing of AnalyticDB for PostgreSQL. For more information, see [Billing methods](https://help.aliyun.com/document_detail/35406.html) and [AnalyticDB for PostgreSQL pricing](https://www.alibabacloud.com/zh/product/hybriddb-postgresql/pricing).
|
|
7969
|
+
*
|
|
7970
|
+
* @param request CreateDBInstancePlanRequest
|
|
7971
|
+
* @return CreateDBInstancePlanResponse
|
|
7862
7972
|
*/
|
|
7863
7973
|
createDBInstancePlan(request: CreateDBInstancePlanRequest): Promise<CreateDBInstancePlanResponse>;
|
|
7974
|
+
/**
|
|
7975
|
+
* @summary 创建知识库
|
|
7976
|
+
*
|
|
7977
|
+
* @param request CreateDocumentCollectionRequest
|
|
7978
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7979
|
+
* @return CreateDocumentCollectionResponse
|
|
7980
|
+
*/
|
|
7864
7981
|
createDocumentCollectionWithOptions(request: CreateDocumentCollectionRequest, runtime: $Util.RuntimeOptions): Promise<CreateDocumentCollectionResponse>;
|
|
7982
|
+
/**
|
|
7983
|
+
* @summary 创建知识库
|
|
7984
|
+
*
|
|
7985
|
+
* @param request CreateDocumentCollectionRequest
|
|
7986
|
+
* @return CreateDocumentCollectionResponse
|
|
7987
|
+
*/
|
|
7865
7988
|
createDocumentCollection(request: CreateDocumentCollectionRequest): Promise<CreateDocumentCollectionResponse>;
|
|
7989
|
+
/**
|
|
7990
|
+
* @summary Creates a vector namespace.
|
|
7991
|
+
*
|
|
7992
|
+
* @param request CreateNamespaceRequest
|
|
7993
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
7994
|
+
* @return CreateNamespaceResponse
|
|
7995
|
+
*/
|
|
7866
7996
|
createNamespaceWithOptions(request: CreateNamespaceRequest, runtime: $Util.RuntimeOptions): Promise<CreateNamespaceResponse>;
|
|
7997
|
+
/**
|
|
7998
|
+
* @summary Creates a vector namespace.
|
|
7999
|
+
*
|
|
8000
|
+
* @param request CreateNamespaceRequest
|
|
8001
|
+
* @return CreateNamespaceResponse
|
|
8002
|
+
*/
|
|
7867
8003
|
createNamespace(request: CreateNamespaceRequest): Promise<CreateNamespaceResponse>;
|
|
7868
8004
|
/**
|
|
7869
|
-
|
|
7870
|
-
|
|
7871
|
-
|
|
7872
|
-
|
|
7873
|
-
|
|
7874
|
-
|
|
7875
|
-
|
|
7876
|
-
|
|
7877
|
-
|
|
7878
|
-
|
|
7879
|
-
|
|
7880
|
-
|
|
8005
|
+
* @summary Creates a sample dataset for an AnalyticDB for PostgreSQL instance.
|
|
8006
|
+
*
|
|
8007
|
+
* @description You can call this operation to load a sample dataset to an AnalyticDB for PostgreSQL instance. Then, you can execute query statements on the sample dataset to experience or test your instance. For more information about query statements, see [Dataset information and query examples](https://help.aliyun.com/document_detail/452277.html).
|
|
8008
|
+
* ## Precautions
|
|
8009
|
+
* - If your instance is in elastic storage mode, the sample dataset is supported only for V6.3.10.3 or later. If your instance is in Serverless mode, the sample dataset is supported only for V1.0.4.0 or later. For more information about how to update the minor engine version of an instance, see [Update the minor engine version](/help/en/analyticdb-for-postgresql/latest/upgrade-the-engine-version).
|
|
8010
|
+
* - The sample dataset is about 10 GB in size. Make sure that your instance has sufficient storage space.
|
|
8011
|
+
* - The sample dataset contains a database named `ADB_SampleData_TPCH`. Make sure that your instance does not have a database with the same name. Otherwise, the dataset may fail to be loaded.
|
|
8012
|
+
* - It may take 6 to 8 minutes to load the sample dataset. During this period, operations on your instance such as adding nodes or changing node specifications may be affected.
|
|
8013
|
+
* ## Limits
|
|
8014
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8015
|
+
*
|
|
8016
|
+
* @param request CreateSampleDataRequest
|
|
8017
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8018
|
+
* @return CreateSampleDataResponse
|
|
7881
8019
|
*/
|
|
7882
8020
|
createSampleDataWithOptions(request: CreateSampleDataRequest, runtime: $Util.RuntimeOptions): Promise<CreateSampleDataResponse>;
|
|
7883
8021
|
/**
|
|
7884
|
-
|
|
7885
|
-
|
|
7886
|
-
|
|
7887
|
-
|
|
7888
|
-
|
|
7889
|
-
|
|
7890
|
-
|
|
7891
|
-
|
|
7892
|
-
|
|
7893
|
-
|
|
7894
|
-
|
|
8022
|
+
* @summary Creates a sample dataset for an AnalyticDB for PostgreSQL instance.
|
|
8023
|
+
*
|
|
8024
|
+
* @description You can call this operation to load a sample dataset to an AnalyticDB for PostgreSQL instance. Then, you can execute query statements on the sample dataset to experience or test your instance. For more information about query statements, see [Dataset information and query examples](https://help.aliyun.com/document_detail/452277.html).
|
|
8025
|
+
* ## Precautions
|
|
8026
|
+
* - If your instance is in elastic storage mode, the sample dataset is supported only for V6.3.10.3 or later. If your instance is in Serverless mode, the sample dataset is supported only for V1.0.4.0 or later. For more information about how to update the minor engine version of an instance, see [Update the minor engine version](/help/en/analyticdb-for-postgresql/latest/upgrade-the-engine-version).
|
|
8027
|
+
* - The sample dataset is about 10 GB in size. Make sure that your instance has sufficient storage space.
|
|
8028
|
+
* - The sample dataset contains a database named `ADB_SampleData_TPCH`. Make sure that your instance does not have a database with the same name. Otherwise, the dataset may fail to be loaded.
|
|
8029
|
+
* - It may take 6 to 8 minutes to load the sample dataset. During this period, operations on your instance such as adding nodes or changing node specifications may be affected.
|
|
8030
|
+
* ## Limits
|
|
8031
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8032
|
+
*
|
|
8033
|
+
* @param request CreateSampleDataRequest
|
|
8034
|
+
* @return CreateSampleDataResponse
|
|
7895
8035
|
*/
|
|
7896
8036
|
createSampleData(request: CreateSampleDataRequest): Promise<CreateSampleDataResponse>;
|
|
8037
|
+
/**
|
|
8038
|
+
* @summary Creates a service-linked role.
|
|
8039
|
+
*
|
|
8040
|
+
* @param request CreateServiceLinkedRoleRequest
|
|
8041
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8042
|
+
* @return CreateServiceLinkedRoleResponse
|
|
8043
|
+
*/
|
|
7897
8044
|
createServiceLinkedRoleWithOptions(request: CreateServiceLinkedRoleRequest, runtime: $Util.RuntimeOptions): Promise<CreateServiceLinkedRoleResponse>;
|
|
8045
|
+
/**
|
|
8046
|
+
* @summary Creates a service-linked role.
|
|
8047
|
+
*
|
|
8048
|
+
* @param request CreateServiceLinkedRoleRequest
|
|
8049
|
+
* @return CreateServiceLinkedRoleResponse
|
|
8050
|
+
*/
|
|
7898
8051
|
createServiceLinkedRole(request: CreateServiceLinkedRoleRequest): Promise<CreateServiceLinkedRoleResponse>;
|
|
8052
|
+
/**
|
|
8053
|
+
* @summary 创建向量索引
|
|
8054
|
+
*
|
|
8055
|
+
* @param request CreateVectorIndexRequest
|
|
8056
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8057
|
+
* @return CreateVectorIndexResponse
|
|
8058
|
+
*/
|
|
7899
8059
|
createVectorIndexWithOptions(request: CreateVectorIndexRequest, runtime: $Util.RuntimeOptions): Promise<CreateVectorIndexResponse>;
|
|
8060
|
+
/**
|
|
8061
|
+
* @summary 创建向量索引
|
|
8062
|
+
*
|
|
8063
|
+
* @param request CreateVectorIndexRequest
|
|
8064
|
+
* @return CreateVectorIndexResponse
|
|
8065
|
+
*/
|
|
7900
8066
|
createVectorIndex(request: CreateVectorIndexRequest): Promise<CreateVectorIndexResponse>;
|
|
8067
|
+
/**
|
|
8068
|
+
* @summary Deletes a vector collection.
|
|
8069
|
+
*
|
|
8070
|
+
* @param request DeleteCollectionRequest
|
|
8071
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8072
|
+
* @return DeleteCollectionResponse
|
|
8073
|
+
*/
|
|
7901
8074
|
deleteCollectionWithOptions(request: DeleteCollectionRequest, runtime: $Util.RuntimeOptions): Promise<DeleteCollectionResponse>;
|
|
8075
|
+
/**
|
|
8076
|
+
* @summary Deletes a vector collection.
|
|
8077
|
+
*
|
|
8078
|
+
* @param request DeleteCollectionRequest
|
|
8079
|
+
* @return DeleteCollectionResponse
|
|
8080
|
+
*/
|
|
7902
8081
|
deleteCollection(request: DeleteCollectionRequest): Promise<DeleteCollectionResponse>;
|
|
8082
|
+
/**
|
|
8083
|
+
* @summary Deletes vector data.
|
|
8084
|
+
*
|
|
8085
|
+
* @param request DeleteCollectionDataRequest
|
|
8086
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8087
|
+
* @return DeleteCollectionDataResponse
|
|
8088
|
+
*/
|
|
7903
8089
|
deleteCollectionDataWithOptions(request: DeleteCollectionDataRequest, runtime: $Util.RuntimeOptions): Promise<DeleteCollectionDataResponse>;
|
|
8090
|
+
/**
|
|
8091
|
+
* @summary Deletes vector data.
|
|
8092
|
+
*
|
|
8093
|
+
* @param request DeleteCollectionDataRequest
|
|
8094
|
+
* @return DeleteCollectionDataResponse
|
|
8095
|
+
*/
|
|
7904
8096
|
deleteCollectionData(request: DeleteCollectionDataRequest): Promise<DeleteCollectionDataResponse>;
|
|
7905
8097
|
/**
|
|
7906
|
-
|
|
7907
|
-
|
|
7908
|
-
|
|
7909
|
-
|
|
7910
|
-
|
|
7911
|
-
|
|
7912
|
-
|
|
7913
|
-
|
|
8098
|
+
* @summary Releases a pay-as-you-go AnalyticDB for PostgreSQL instance.
|
|
8099
|
+
*
|
|
8100
|
+
* @description * Subscription instances cannot be manually released. They are automatically released when they expire.
|
|
8101
|
+
* * You can call this operation to release pay-as-you-go instances only when they are in the **Running** state.
|
|
8102
|
+
* ## Limits
|
|
8103
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8104
|
+
*
|
|
8105
|
+
* @param request DeleteDBInstanceRequest
|
|
8106
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8107
|
+
* @return DeleteDBInstanceResponse
|
|
7914
8108
|
*/
|
|
7915
8109
|
deleteDBInstanceWithOptions(request: DeleteDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDBInstanceResponse>;
|
|
7916
8110
|
/**
|
|
7917
|
-
|
|
7918
|
-
|
|
7919
|
-
|
|
7920
|
-
|
|
7921
|
-
|
|
7922
|
-
|
|
7923
|
-
|
|
8111
|
+
* @summary Releases a pay-as-you-go AnalyticDB for PostgreSQL instance.
|
|
8112
|
+
*
|
|
8113
|
+
* @description * Subscription instances cannot be manually released. They are automatically released when they expire.
|
|
8114
|
+
* * You can call this operation to release pay-as-you-go instances only when they are in the **Running** state.
|
|
8115
|
+
* ## Limits
|
|
8116
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8117
|
+
*
|
|
8118
|
+
* @param request DeleteDBInstanceRequest
|
|
8119
|
+
* @return DeleteDBInstanceResponse
|
|
7924
8120
|
*/
|
|
7925
8121
|
deleteDBInstance(request: DeleteDBInstanceRequest): Promise<DeleteDBInstanceResponse>;
|
|
7926
8122
|
/**
|
|
7927
|
-
|
|
7928
|
-
|
|
7929
|
-
|
|
7930
|
-
|
|
7931
|
-
|
|
7932
|
-
|
|
7933
|
-
|
|
8123
|
+
* @summary Deletes a plan from an AnalyticDB for PostgreSQL instance.
|
|
8124
|
+
*
|
|
8125
|
+
* @description If you no longer need a plan, you can call this operation to delete the plan. The plan management feature is supported only for AnalyticDB for PostgreSQL instances in Serverless mode.
|
|
8126
|
+
* ## Limits
|
|
8127
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8128
|
+
*
|
|
8129
|
+
* @param request DeleteDBInstancePlanRequest
|
|
8130
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8131
|
+
* @return DeleteDBInstancePlanResponse
|
|
7934
8132
|
*/
|
|
7935
8133
|
deleteDBInstancePlanWithOptions(request: DeleteDBInstancePlanRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDBInstancePlanResponse>;
|
|
7936
8134
|
/**
|
|
7937
|
-
|
|
7938
|
-
|
|
7939
|
-
|
|
7940
|
-
|
|
7941
|
-
|
|
7942
|
-
|
|
8135
|
+
* @summary Deletes a plan from an AnalyticDB for PostgreSQL instance.
|
|
8136
|
+
*
|
|
8137
|
+
* @description If you no longer need a plan, you can call this operation to delete the plan. The plan management feature is supported only for AnalyticDB for PostgreSQL instances in Serverless mode.
|
|
8138
|
+
* ## Limits
|
|
8139
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8140
|
+
*
|
|
8141
|
+
* @param request DeleteDBInstancePlanRequest
|
|
8142
|
+
* @return DeleteDBInstancePlanResponse
|
|
7943
8143
|
*/
|
|
7944
8144
|
deleteDBInstancePlan(request: DeleteDBInstancePlanRequest): Promise<DeleteDBInstancePlanResponse>;
|
|
8145
|
+
/**
|
|
8146
|
+
* @summary 删除文档
|
|
8147
|
+
*
|
|
8148
|
+
* @param request DeleteDocumentRequest
|
|
8149
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8150
|
+
* @return DeleteDocumentResponse
|
|
8151
|
+
*/
|
|
7945
8152
|
deleteDocumentWithOptions(request: DeleteDocumentRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDocumentResponse>;
|
|
8153
|
+
/**
|
|
8154
|
+
* @summary 删除文档
|
|
8155
|
+
*
|
|
8156
|
+
* @param request DeleteDocumentRequest
|
|
8157
|
+
* @return DeleteDocumentResponse
|
|
8158
|
+
*/
|
|
7946
8159
|
deleteDocument(request: DeleteDocumentRequest): Promise<DeleteDocumentResponse>;
|
|
8160
|
+
/**
|
|
8161
|
+
* @summary 删除知识库
|
|
8162
|
+
*
|
|
8163
|
+
* @param request DeleteDocumentCollectionRequest
|
|
8164
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8165
|
+
* @return DeleteDocumentCollectionResponse
|
|
8166
|
+
*/
|
|
7947
8167
|
deleteDocumentCollectionWithOptions(request: DeleteDocumentCollectionRequest, runtime: $Util.RuntimeOptions): Promise<DeleteDocumentCollectionResponse>;
|
|
8168
|
+
/**
|
|
8169
|
+
* @summary 删除知识库
|
|
8170
|
+
*
|
|
8171
|
+
* @param request DeleteDocumentCollectionRequest
|
|
8172
|
+
* @return DeleteDocumentCollectionResponse
|
|
8173
|
+
*/
|
|
7948
8174
|
deleteDocumentCollection(request: DeleteDocumentCollectionRequest): Promise<DeleteDocumentCollectionResponse>;
|
|
8175
|
+
/**
|
|
8176
|
+
* @summary Deletes a namespace.
|
|
8177
|
+
*
|
|
8178
|
+
* @param request DeleteNamespaceRequest
|
|
8179
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8180
|
+
* @return DeleteNamespaceResponse
|
|
8181
|
+
*/
|
|
7949
8182
|
deleteNamespaceWithOptions(request: DeleteNamespaceRequest, runtime: $Util.RuntimeOptions): Promise<DeleteNamespaceResponse>;
|
|
8183
|
+
/**
|
|
8184
|
+
* @summary Deletes a namespace.
|
|
8185
|
+
*
|
|
8186
|
+
* @param request DeleteNamespaceRequest
|
|
8187
|
+
* @return DeleteNamespaceResponse
|
|
8188
|
+
*/
|
|
7950
8189
|
deleteNamespace(request: DeleteNamespaceRequest): Promise<DeleteNamespaceResponse>;
|
|
8190
|
+
/**
|
|
8191
|
+
* @summary Deletes a vector index.
|
|
8192
|
+
*
|
|
8193
|
+
* @param request DeleteVectorIndexRequest
|
|
8194
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8195
|
+
* @return DeleteVectorIndexResponse
|
|
8196
|
+
*/
|
|
7951
8197
|
deleteVectorIndexWithOptions(request: DeleteVectorIndexRequest, runtime: $Util.RuntimeOptions): Promise<DeleteVectorIndexResponse>;
|
|
8198
|
+
/**
|
|
8199
|
+
* @summary Deletes a vector index.
|
|
8200
|
+
*
|
|
8201
|
+
* @param request DeleteVectorIndexRequest
|
|
8202
|
+
* @return DeleteVectorIndexResponse
|
|
8203
|
+
*/
|
|
7952
8204
|
deleteVectorIndex(request: DeleteVectorIndexRequest): Promise<DeleteVectorIndexResponse>;
|
|
7953
8205
|
/**
|
|
7954
|
-
|
|
7955
|
-
|
|
7956
|
-
|
|
7957
|
-
|
|
7958
|
-
|
|
7959
|
-
|
|
7960
|
-
|
|
8206
|
+
* @summary Queries the information about database accounts for an AnalyticDB for PostgreSQL instance.
|
|
8207
|
+
*
|
|
8208
|
+
* @description This operation is called to query the information of the privileged account in an AnalyticDB for PostgreSQL instance, such as its state, description, and the instance.
|
|
8209
|
+
* ## Limit
|
|
8210
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered and may affect your business. We recommend that you take note of the limit when you call this operation.
|
|
8211
|
+
*
|
|
8212
|
+
* @param request DescribeAccountsRequest
|
|
8213
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8214
|
+
* @return DescribeAccountsResponse
|
|
7961
8215
|
*/
|
|
7962
8216
|
describeAccountsWithOptions(request: DescribeAccountsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAccountsResponse>;
|
|
7963
8217
|
/**
|
|
7964
|
-
|
|
7965
|
-
|
|
7966
|
-
|
|
7967
|
-
|
|
7968
|
-
|
|
7969
|
-
|
|
8218
|
+
* @summary Queries the information about database accounts for an AnalyticDB for PostgreSQL instance.
|
|
8219
|
+
*
|
|
8220
|
+
* @description This operation is called to query the information of the privileged account in an AnalyticDB for PostgreSQL instance, such as its state, description, and the instance.
|
|
8221
|
+
* ## Limit
|
|
8222
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered and may affect your business. We recommend that you take note of the limit when you call this operation.
|
|
8223
|
+
*
|
|
8224
|
+
* @param request DescribeAccountsRequest
|
|
8225
|
+
* @return DescribeAccountsResponse
|
|
7970
8226
|
*/
|
|
7971
8227
|
describeAccounts(request: DescribeAccountsRequest): Promise<DescribeAccountsResponse>;
|
|
8228
|
+
/**
|
|
8229
|
+
* @summary 获取实例活跃的SQL列表
|
|
8230
|
+
*
|
|
8231
|
+
* @param request DescribeActiveSQLRecordsRequest
|
|
8232
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8233
|
+
* @return DescribeActiveSQLRecordsResponse
|
|
8234
|
+
*/
|
|
7972
8235
|
describeActiveSQLRecordsWithOptions(request: DescribeActiveSQLRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeActiveSQLRecordsResponse>;
|
|
8236
|
+
/**
|
|
8237
|
+
* @summary 获取实例活跃的SQL列表
|
|
8238
|
+
*
|
|
8239
|
+
* @param request DescribeActiveSQLRecordsRequest
|
|
8240
|
+
* @return DescribeActiveSQLRecordsResponse
|
|
8241
|
+
*/
|
|
7973
8242
|
describeActiveSQLRecords(request: DescribeActiveSQLRecordsRequest): Promise<DescribeActiveSQLRecordsResponse>;
|
|
7974
8243
|
/**
|
|
7975
|
-
|
|
7976
|
-
|
|
7977
|
-
|
|
7978
|
-
|
|
7979
|
-
|
|
8244
|
+
* @summary Queries the information about available resources of AnalyticDB for PostgreSQL.
|
|
8245
|
+
*
|
|
8246
|
+
* @description When you create an AnalyticDB for PostgreSQL instance, you can call this operation to query the available resources within a zone.
|
|
8247
|
+
*
|
|
8248
|
+
* @param request DescribeAvailableResourcesRequest
|
|
8249
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8250
|
+
* @return DescribeAvailableResourcesResponse
|
|
7980
8251
|
*/
|
|
7981
8252
|
describeAvailableResourcesWithOptions(request: DescribeAvailableResourcesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeAvailableResourcesResponse>;
|
|
7982
8253
|
/**
|
|
7983
|
-
|
|
7984
|
-
|
|
7985
|
-
|
|
7986
|
-
|
|
8254
|
+
* @summary Queries the information about available resources of AnalyticDB for PostgreSQL.
|
|
8255
|
+
*
|
|
8256
|
+
* @description When you create an AnalyticDB for PostgreSQL instance, you can call this operation to query the available resources within a zone.
|
|
8257
|
+
*
|
|
8258
|
+
* @param request DescribeAvailableResourcesRequest
|
|
8259
|
+
* @return DescribeAvailableResourcesResponse
|
|
7987
8260
|
*/
|
|
7988
8261
|
describeAvailableResources(request: DescribeAvailableResourcesRequest): Promise<DescribeAvailableResourcesResponse>;
|
|
7989
8262
|
/**
|
|
7990
|
-
|
|
7991
|
-
|
|
7992
|
-
|
|
7993
|
-
|
|
7994
|
-
|
|
7995
|
-
|
|
7996
|
-
|
|
8263
|
+
* @summary Queries the backup policy of an AnalyticDB for PostgreSQL instance.
|
|
8264
|
+
*
|
|
8265
|
+
* @description You can call this operation to query the backup settings of an AnalyticDB for PostgreSQL instance in elastic storage mode. Periodically backing data can prevent data loss. For more information about how to modify backup policies, see [ModifyBackupPolicy](https://help.aliyun.com/document_detail/210095.html).
|
|
8266
|
+
* ## Limits
|
|
8267
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8268
|
+
*
|
|
8269
|
+
* @param request DescribeBackupPolicyRequest
|
|
8270
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8271
|
+
* @return DescribeBackupPolicyResponse
|
|
7997
8272
|
*/
|
|
7998
8273
|
describeBackupPolicyWithOptions(request: DescribeBackupPolicyRequest, runtime: $Util.RuntimeOptions): Promise<DescribeBackupPolicyResponse>;
|
|
7999
8274
|
/**
|
|
8000
|
-
|
|
8001
|
-
|
|
8002
|
-
|
|
8003
|
-
|
|
8004
|
-
|
|
8005
|
-
|
|
8275
|
+
* @summary Queries the backup policy of an AnalyticDB for PostgreSQL instance.
|
|
8276
|
+
*
|
|
8277
|
+
* @description You can call this operation to query the backup settings of an AnalyticDB for PostgreSQL instance in elastic storage mode. Periodically backing data can prevent data loss. For more information about how to modify backup policies, see [ModifyBackupPolicy](https://help.aliyun.com/document_detail/210095.html).
|
|
8278
|
+
* ## Limits
|
|
8279
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8280
|
+
*
|
|
8281
|
+
* @param request DescribeBackupPolicyRequest
|
|
8282
|
+
* @return DescribeBackupPolicyResponse
|
|
8006
8283
|
*/
|
|
8007
8284
|
describeBackupPolicy(request: DescribeBackupPolicyRequest): Promise<DescribeBackupPolicyResponse>;
|
|
8285
|
+
/**
|
|
8286
|
+
* @summary Queries the information about a vector collection.
|
|
8287
|
+
*
|
|
8288
|
+
* @param request DescribeCollectionRequest
|
|
8289
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8290
|
+
* @return DescribeCollectionResponse
|
|
8291
|
+
*/
|
|
8008
8292
|
describeCollectionWithOptions(request: DescribeCollectionRequest, runtime: $Util.RuntimeOptions): Promise<DescribeCollectionResponse>;
|
|
8293
|
+
/**
|
|
8294
|
+
* @summary Queries the information about a vector collection.
|
|
8295
|
+
*
|
|
8296
|
+
* @param request DescribeCollectionRequest
|
|
8297
|
+
* @return DescribeCollectionResponse
|
|
8298
|
+
*/
|
|
8009
8299
|
describeCollection(request: DescribeCollectionRequest): Promise<DescribeCollectionResponse>;
|
|
8010
8300
|
/**
|
|
8011
|
-
|
|
8012
|
-
|
|
8013
|
-
|
|
8014
|
-
|
|
8015
|
-
|
|
8016
|
-
|
|
8017
|
-
|
|
8018
|
-
|
|
8301
|
+
* @summary Queries a list of nodes in an AnalyticDB for PostgreSQL instance.
|
|
8302
|
+
*
|
|
8303
|
+
* @description ##
|
|
8304
|
+
* You can call this operation to query the information about coordinator and compute nodes in an AnalyticDB for PostgreSQL instance in elastic storage mode or Serverless mode.
|
|
8305
|
+
* ## Limits
|
|
8306
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8307
|
+
*
|
|
8308
|
+
* @param request DescribeDBClusterNodeRequest
|
|
8309
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8310
|
+
* @return DescribeDBClusterNodeResponse
|
|
8019
8311
|
*/
|
|
8020
8312
|
describeDBClusterNodeWithOptions(request: DescribeDBClusterNodeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterNodeResponse>;
|
|
8021
8313
|
/**
|
|
8022
|
-
|
|
8023
|
-
|
|
8024
|
-
|
|
8025
|
-
|
|
8026
|
-
|
|
8027
|
-
|
|
8028
|
-
|
|
8314
|
+
* @summary Queries a list of nodes in an AnalyticDB for PostgreSQL instance.
|
|
8315
|
+
*
|
|
8316
|
+
* @description ##
|
|
8317
|
+
* You can call this operation to query the information about coordinator and compute nodes in an AnalyticDB for PostgreSQL instance in elastic storage mode or Serverless mode.
|
|
8318
|
+
* ## Limits
|
|
8319
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8320
|
+
*
|
|
8321
|
+
* @param request DescribeDBClusterNodeRequest
|
|
8322
|
+
* @return DescribeDBClusterNodeResponse
|
|
8029
8323
|
*/
|
|
8030
8324
|
describeDBClusterNode(request: DescribeDBClusterNodeRequest): Promise<DescribeDBClusterNodeResponse>;
|
|
8031
8325
|
/**
|
|
8032
|
-
|
|
8033
|
-
|
|
8034
|
-
|
|
8035
|
-
|
|
8036
|
-
|
|
8326
|
+
* @summary Queries the information about performance metrics of an AnalyticDB for PostgreSQL instance within a time range.
|
|
8327
|
+
*
|
|
8328
|
+
* @description You can query monitoring information only within the last 30 days.
|
|
8329
|
+
*
|
|
8330
|
+
* @param request DescribeDBClusterPerformanceRequest
|
|
8331
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8332
|
+
* @return DescribeDBClusterPerformanceResponse
|
|
8037
8333
|
*/
|
|
8038
8334
|
describeDBClusterPerformanceWithOptions(request: DescribeDBClusterPerformanceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBClusterPerformanceResponse>;
|
|
8039
8335
|
/**
|
|
8040
|
-
|
|
8041
|
-
|
|
8042
|
-
|
|
8043
|
-
|
|
8336
|
+
* @summary Queries the information about performance metrics of an AnalyticDB for PostgreSQL instance within a time range.
|
|
8337
|
+
*
|
|
8338
|
+
* @description You can query monitoring information only within the last 30 days.
|
|
8339
|
+
*
|
|
8340
|
+
* @param request DescribeDBClusterPerformanceRequest
|
|
8341
|
+
* @return DescribeDBClusterPerformanceResponse
|
|
8044
8342
|
*/
|
|
8045
8343
|
describeDBClusterPerformance(request: DescribeDBClusterPerformanceRequest): Promise<DescribeDBClusterPerformanceResponse>;
|
|
8046
8344
|
/**
|
|
8047
|
-
|
|
8048
|
-
|
|
8049
|
-
|
|
8050
|
-
|
|
8051
|
-
|
|
8052
|
-
|
|
8053
|
-
|
|
8054
|
-
|
|
8345
|
+
* @summary Queries the information about an AnalyticDB for PostgreSQL instance.
|
|
8346
|
+
*
|
|
8347
|
+
* @description ##
|
|
8348
|
+
* You can call this operation to query the information about an AnalyticDB for PostgreSQL instance, such as the instance type, network type, and instance state.
|
|
8349
|
+
* ## Limits
|
|
8350
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8351
|
+
*
|
|
8352
|
+
* @param request DescribeDBInstanceAttributeRequest
|
|
8353
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8354
|
+
* @return DescribeDBInstanceAttributeResponse
|
|
8055
8355
|
*/
|
|
8056
8356
|
describeDBInstanceAttributeWithOptions(request: DescribeDBInstanceAttributeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceAttributeResponse>;
|
|
8057
8357
|
/**
|
|
8058
|
-
|
|
8059
|
-
|
|
8060
|
-
|
|
8061
|
-
|
|
8062
|
-
|
|
8063
|
-
|
|
8064
|
-
|
|
8358
|
+
* @summary Queries the information about an AnalyticDB for PostgreSQL instance.
|
|
8359
|
+
*
|
|
8360
|
+
* @description ##
|
|
8361
|
+
* You can call this operation to query the information about an AnalyticDB for PostgreSQL instance, such as the instance type, network type, and instance state.
|
|
8362
|
+
* ## Limits
|
|
8363
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8364
|
+
*
|
|
8365
|
+
* @param request DescribeDBInstanceAttributeRequest
|
|
8366
|
+
* @return DescribeDBInstanceAttributeResponse
|
|
8065
8367
|
*/
|
|
8066
8368
|
describeDBInstanceAttribute(request: DescribeDBInstanceAttributeRequest): Promise<DescribeDBInstanceAttributeResponse>;
|
|
8067
8369
|
/**
|
|
8068
|
-
|
|
8069
|
-
|
|
8070
|
-
|
|
8071
|
-
|
|
8072
|
-
|
|
8073
|
-
|
|
8074
|
-
|
|
8370
|
+
* @summary Queries the information about data bloat for an AnalyticDB for PostgreSQL instance.
|
|
8371
|
+
*
|
|
8372
|
+
* @description You can call this operation to query the details of data bloat on an AnalyticDB for PostgreSQL instance in elastic storage mode. The minor version of the instance must be V6.3.10.1 or later. For more information about how to view and update the minor version of an instance, see [View the minor engine version](https://help.aliyun.com/document_detail/277424.html) and [Update the minor engine version](https://help.aliyun.com/document_detail/139271.html).
|
|
8373
|
+
* ## Limits
|
|
8374
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8375
|
+
*
|
|
8376
|
+
* @param request DescribeDBInstanceDataBloatRequest
|
|
8377
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8378
|
+
* @return DescribeDBInstanceDataBloatResponse
|
|
8075
8379
|
*/
|
|
8076
8380
|
describeDBInstanceDataBloatWithOptions(request: DescribeDBInstanceDataBloatRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceDataBloatResponse>;
|
|
8077
8381
|
/**
|
|
8078
|
-
|
|
8079
|
-
|
|
8080
|
-
|
|
8081
|
-
|
|
8082
|
-
|
|
8083
|
-
|
|
8382
|
+
* @summary Queries the information about data bloat for an AnalyticDB for PostgreSQL instance.
|
|
8383
|
+
*
|
|
8384
|
+
* @description You can call this operation to query the details of data bloat on an AnalyticDB for PostgreSQL instance in elastic storage mode. The minor version of the instance must be V6.3.10.1 or later. For more information about how to view and update the minor version of an instance, see [View the minor engine version](https://help.aliyun.com/document_detail/277424.html) and [Update the minor engine version](https://help.aliyun.com/document_detail/139271.html).
|
|
8385
|
+
* ## Limits
|
|
8386
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8387
|
+
*
|
|
8388
|
+
* @param request DescribeDBInstanceDataBloatRequest
|
|
8389
|
+
* @return DescribeDBInstanceDataBloatResponse
|
|
8084
8390
|
*/
|
|
8085
8391
|
describeDBInstanceDataBloat(request: DescribeDBInstanceDataBloatRequest): Promise<DescribeDBInstanceDataBloatResponse>;
|
|
8086
8392
|
/**
|
|
8087
|
-
|
|
8088
|
-
|
|
8089
|
-
|
|
8090
|
-
|
|
8091
|
-
|
|
8092
|
-
|
|
8093
|
-
|
|
8393
|
+
* @summary Queries the information about data skew for an AnalyticDB for PostgreSQL instance.
|
|
8394
|
+
*
|
|
8395
|
+
* @description To prevent data skew from affecting your database service, you can call this operation to query the details about data skew on an AnalyticDB for PostgreSQL instance.
|
|
8396
|
+
* ## Limits
|
|
8397
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8398
|
+
*
|
|
8399
|
+
* @param request DescribeDBInstanceDataSkewRequest
|
|
8400
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8401
|
+
* @return DescribeDBInstanceDataSkewResponse
|
|
8094
8402
|
*/
|
|
8095
8403
|
describeDBInstanceDataSkewWithOptions(request: DescribeDBInstanceDataSkewRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceDataSkewResponse>;
|
|
8096
8404
|
/**
|
|
8097
|
-
|
|
8098
|
-
|
|
8099
|
-
|
|
8100
|
-
|
|
8101
|
-
|
|
8102
|
-
|
|
8405
|
+
* @summary Queries the information about data skew for an AnalyticDB for PostgreSQL instance.
|
|
8406
|
+
*
|
|
8407
|
+
* @description To prevent data skew from affecting your database service, you can call this operation to query the details about data skew on an AnalyticDB for PostgreSQL instance.
|
|
8408
|
+
* ## Limits
|
|
8409
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8410
|
+
*
|
|
8411
|
+
* @param request DescribeDBInstanceDataSkewRequest
|
|
8412
|
+
* @return DescribeDBInstanceDataSkewResponse
|
|
8103
8413
|
*/
|
|
8104
8414
|
describeDBInstanceDataSkew(request: DescribeDBInstanceDataSkewRequest): Promise<DescribeDBInstanceDataSkewResponse>;
|
|
8105
8415
|
/**
|
|
8106
|
-
|
|
8107
|
-
|
|
8108
|
-
|
|
8109
|
-
|
|
8110
|
-
|
|
8416
|
+
* @summary Queries the information about nodes in an AnalyticDB for PostgreSQL instance.
|
|
8417
|
+
*
|
|
8418
|
+
* @description You can call this operation to query the distribution and states of coordinator and compute nodes in an AnalyticDB for PostgreSQL instance.
|
|
8419
|
+
*
|
|
8420
|
+
* @param request DescribeDBInstanceDiagnosisSummaryRequest
|
|
8421
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8422
|
+
* @return DescribeDBInstanceDiagnosisSummaryResponse
|
|
8111
8423
|
*/
|
|
8112
8424
|
describeDBInstanceDiagnosisSummaryWithOptions(request: DescribeDBInstanceDiagnosisSummaryRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceDiagnosisSummaryResponse>;
|
|
8113
8425
|
/**
|
|
8114
|
-
|
|
8115
|
-
|
|
8116
|
-
|
|
8117
|
-
|
|
8426
|
+
* @summary Queries the information about nodes in an AnalyticDB for PostgreSQL instance.
|
|
8427
|
+
*
|
|
8428
|
+
* @description You can call this operation to query the distribution and states of coordinator and compute nodes in an AnalyticDB for PostgreSQL instance.
|
|
8429
|
+
*
|
|
8430
|
+
* @param request DescribeDBInstanceDiagnosisSummaryRequest
|
|
8431
|
+
* @return DescribeDBInstanceDiagnosisSummaryResponse
|
|
8118
8432
|
*/
|
|
8119
8433
|
describeDBInstanceDiagnosisSummary(request: DescribeDBInstanceDiagnosisSummaryRequest): Promise<DescribeDBInstanceDiagnosisSummaryResponse>;
|
|
8120
8434
|
/**
|
|
8121
|
-
|
|
8122
|
-
|
|
8123
|
-
|
|
8124
|
-
|
|
8125
|
-
|
|
8126
|
-
|
|
8127
|
-
|
|
8435
|
+
* @summary Queries the error logs of an AnalyticDB for PostgreSQL instance.
|
|
8436
|
+
*
|
|
8437
|
+
* @description You can call this operation to query the error logs of an AnalyticDB for PostgreSQL instance.
|
|
8438
|
+
* ## Limits
|
|
8439
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8440
|
+
*
|
|
8441
|
+
* @param request DescribeDBInstanceErrorLogRequest
|
|
8442
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8443
|
+
* @return DescribeDBInstanceErrorLogResponse
|
|
8128
8444
|
*/
|
|
8129
8445
|
describeDBInstanceErrorLogWithOptions(request: DescribeDBInstanceErrorLogRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceErrorLogResponse>;
|
|
8130
8446
|
/**
|
|
8131
|
-
|
|
8132
|
-
|
|
8133
|
-
|
|
8134
|
-
|
|
8135
|
-
|
|
8136
|
-
|
|
8447
|
+
* @summary Queries the error logs of an AnalyticDB for PostgreSQL instance.
|
|
8448
|
+
*
|
|
8449
|
+
* @description You can call this operation to query the error logs of an AnalyticDB for PostgreSQL instance.
|
|
8450
|
+
* ## Limits
|
|
8451
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8452
|
+
*
|
|
8453
|
+
* @param request DescribeDBInstanceErrorLogRequest
|
|
8454
|
+
* @return DescribeDBInstanceErrorLogResponse
|
|
8137
8455
|
*/
|
|
8138
8456
|
describeDBInstanceErrorLog(request: DescribeDBInstanceErrorLogRequest): Promise<DescribeDBInstanceErrorLogResponse>;
|
|
8139
8457
|
/**
|
|
8140
|
-
|
|
8141
|
-
|
|
8142
|
-
|
|
8143
|
-
|
|
8144
|
-
|
|
8145
|
-
|
|
8146
|
-
|
|
8458
|
+
* @summary Queries the whitelists of IP addresses that are allowed to access an AnalyticDB for PostgreSQL instance.
|
|
8459
|
+
*
|
|
8460
|
+
* @description You can call this operation to query the whitelists of IP addresses that are allowed to access an AnalyticDB for PostgreSQL instance.
|
|
8461
|
+
* ## Limits
|
|
8462
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8463
|
+
*
|
|
8464
|
+
* @param request DescribeDBInstanceIPArrayListRequest
|
|
8465
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8466
|
+
* @return DescribeDBInstanceIPArrayListResponse
|
|
8147
8467
|
*/
|
|
8148
8468
|
describeDBInstanceIPArrayListWithOptions(request: DescribeDBInstanceIPArrayListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceIPArrayListResponse>;
|
|
8149
8469
|
/**
|
|
8150
|
-
|
|
8151
|
-
|
|
8152
|
-
|
|
8153
|
-
|
|
8154
|
-
|
|
8155
|
-
|
|
8470
|
+
* @summary Queries the whitelists of IP addresses that are allowed to access an AnalyticDB for PostgreSQL instance.
|
|
8471
|
+
*
|
|
8472
|
+
* @description You can call this operation to query the whitelists of IP addresses that are allowed to access an AnalyticDB for PostgreSQL instance.
|
|
8473
|
+
* ## Limits
|
|
8474
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8475
|
+
*
|
|
8476
|
+
* @param request DescribeDBInstanceIPArrayListRequest
|
|
8477
|
+
* @return DescribeDBInstanceIPArrayListResponse
|
|
8156
8478
|
*/
|
|
8157
8479
|
describeDBInstanceIPArrayList(request: DescribeDBInstanceIPArrayListRequest): Promise<DescribeDBInstanceIPArrayListResponse>;
|
|
8158
8480
|
/**
|
|
8159
|
-
|
|
8160
|
-
|
|
8161
|
-
|
|
8162
|
-
|
|
8163
|
-
|
|
8164
|
-
|
|
8481
|
+
* @summary Queries the index usage of an AnalyticDB for PostgreSQL instance.
|
|
8482
|
+
*
|
|
8483
|
+
* @description Appropriate indexes can accelerate database queries. You can call this operation to query the index usage of an AnalyticDB for PostgreSQL instance.
|
|
8484
|
+
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For information about how to view and update the minor version of an instance, see [View the minor engine version](https://help.aliyun.com/document_detail/277424.html) and [Update the minor engine version](https://help.aliyun.com/document_detail/139271.html).
|
|
8485
|
+
*
|
|
8486
|
+
* @param request DescribeDBInstanceIndexUsageRequest
|
|
8487
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8488
|
+
* @return DescribeDBInstanceIndexUsageResponse
|
|
8165
8489
|
*/
|
|
8166
8490
|
describeDBInstanceIndexUsageWithOptions(request: DescribeDBInstanceIndexUsageRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceIndexUsageResponse>;
|
|
8167
8491
|
/**
|
|
8168
|
-
|
|
8169
|
-
|
|
8170
|
-
|
|
8171
|
-
|
|
8172
|
-
|
|
8492
|
+
* @summary Queries the index usage of an AnalyticDB for PostgreSQL instance.
|
|
8493
|
+
*
|
|
8494
|
+
* @description Appropriate indexes can accelerate database queries. You can call this operation to query the index usage of an AnalyticDB for PostgreSQL instance.
|
|
8495
|
+
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For information about how to view and update the minor version of an instance, see [View the minor engine version](https://help.aliyun.com/document_detail/277424.html) and [Update the minor engine version](https://help.aliyun.com/document_detail/139271.html).
|
|
8496
|
+
*
|
|
8497
|
+
* @param request DescribeDBInstanceIndexUsageRequest
|
|
8498
|
+
* @return DescribeDBInstanceIndexUsageResponse
|
|
8173
8499
|
*/
|
|
8174
8500
|
describeDBInstanceIndexUsage(request: DescribeDBInstanceIndexUsageRequest): Promise<DescribeDBInstanceIndexUsageResponse>;
|
|
8501
|
+
/**
|
|
8502
|
+
* @summary Queries the connection information of an instance.
|
|
8503
|
+
*
|
|
8504
|
+
* @param request DescribeDBInstanceNetInfoRequest
|
|
8505
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8506
|
+
* @return DescribeDBInstanceNetInfoResponse
|
|
8507
|
+
*/
|
|
8175
8508
|
describeDBInstanceNetInfoWithOptions(request: DescribeDBInstanceNetInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceNetInfoResponse>;
|
|
8509
|
+
/**
|
|
8510
|
+
* @summary Queries the connection information of an instance.
|
|
8511
|
+
*
|
|
8512
|
+
* @param request DescribeDBInstanceNetInfoRequest
|
|
8513
|
+
* @return DescribeDBInstanceNetInfoResponse
|
|
8514
|
+
*/
|
|
8176
8515
|
describeDBInstanceNetInfo(request: DescribeDBInstanceNetInfoRequest): Promise<DescribeDBInstanceNetInfoResponse>;
|
|
8516
|
+
/**
|
|
8517
|
+
* @summary Queries the information about performance metrics of an AnalyticDB for PostgreSQL instance within a time range.
|
|
8518
|
+
*
|
|
8519
|
+
* @param request DescribeDBInstancePerformanceRequest
|
|
8520
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8521
|
+
* @return DescribeDBInstancePerformanceResponse
|
|
8522
|
+
*/
|
|
8177
8523
|
describeDBInstancePerformanceWithOptions(request: DescribeDBInstancePerformanceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstancePerformanceResponse>;
|
|
8524
|
+
/**
|
|
8525
|
+
* @summary Queries the information about performance metrics of an AnalyticDB for PostgreSQL instance within a time range.
|
|
8526
|
+
*
|
|
8527
|
+
* @param request DescribeDBInstancePerformanceRequest
|
|
8528
|
+
* @return DescribeDBInstancePerformanceResponse
|
|
8529
|
+
*/
|
|
8178
8530
|
describeDBInstancePerformance(request: DescribeDBInstancePerformanceRequest): Promise<DescribeDBInstancePerformanceResponse>;
|
|
8179
8531
|
/**
|
|
8180
|
-
|
|
8181
|
-
|
|
8182
|
-
|
|
8183
|
-
|
|
8184
|
-
|
|
8185
|
-
|
|
8186
|
-
|
|
8532
|
+
* @summary Queries the information about plans for an AnalyticDB for PostgreSQL instance.
|
|
8533
|
+
*
|
|
8534
|
+
* @description You can call this operation to query the details of plans for an AnalyticDB for PostgreSQL instance in Serverless mode.
|
|
8535
|
+
* ## Limits
|
|
8536
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8537
|
+
*
|
|
8538
|
+
* @param request DescribeDBInstancePlansRequest
|
|
8539
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8540
|
+
* @return DescribeDBInstancePlansResponse
|
|
8187
8541
|
*/
|
|
8188
8542
|
describeDBInstancePlansWithOptions(request: DescribeDBInstancePlansRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstancePlansResponse>;
|
|
8189
8543
|
/**
|
|
8190
|
-
|
|
8191
|
-
|
|
8192
|
-
|
|
8193
|
-
|
|
8194
|
-
|
|
8195
|
-
|
|
8544
|
+
* @summary Queries the information about plans for an AnalyticDB for PostgreSQL instance.
|
|
8545
|
+
*
|
|
8546
|
+
* @description You can call this operation to query the details of plans for an AnalyticDB for PostgreSQL instance in Serverless mode.
|
|
8547
|
+
* ## Limits
|
|
8548
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8549
|
+
*
|
|
8550
|
+
* @param request DescribeDBInstancePlansRequest
|
|
8551
|
+
* @return DescribeDBInstancePlansResponse
|
|
8196
8552
|
*/
|
|
8197
8553
|
describeDBInstancePlans(request: DescribeDBInstancePlansRequest): Promise<DescribeDBInstancePlansResponse>;
|
|
8554
|
+
/**
|
|
8555
|
+
* @summary Queries the SSL information about an AnalyticDB for PostgreSQL instance.
|
|
8556
|
+
*
|
|
8557
|
+
* @param request DescribeDBInstanceSSLRequest
|
|
8558
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8559
|
+
* @return DescribeDBInstanceSSLResponse
|
|
8560
|
+
*/
|
|
8198
8561
|
describeDBInstanceSSLWithOptions(request: DescribeDBInstanceSSLRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceSSLResponse>;
|
|
8562
|
+
/**
|
|
8563
|
+
* @summary Queries the SSL information about an AnalyticDB for PostgreSQL instance.
|
|
8564
|
+
*
|
|
8565
|
+
* @param request DescribeDBInstanceSSLRequest
|
|
8566
|
+
* @return DescribeDBInstanceSSLResponse
|
|
8567
|
+
*/
|
|
8199
8568
|
describeDBInstanceSSL(request: DescribeDBInstanceSSLRequest): Promise<DescribeDBInstanceSSLResponse>;
|
|
8569
|
+
/**
|
|
8570
|
+
* @summary 查询实例最大吞吐和IOPS
|
|
8571
|
+
*
|
|
8572
|
+
* @param request DescribeDBInstanceSupportMaxPerformanceRequest
|
|
8573
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8574
|
+
* @return DescribeDBInstanceSupportMaxPerformanceResponse
|
|
8575
|
+
*/
|
|
8200
8576
|
describeDBInstanceSupportMaxPerformanceWithOptions(request: DescribeDBInstanceSupportMaxPerformanceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstanceSupportMaxPerformanceResponse>;
|
|
8577
|
+
/**
|
|
8578
|
+
* @summary 查询实例最大吞吐和IOPS
|
|
8579
|
+
*
|
|
8580
|
+
* @param request DescribeDBInstanceSupportMaxPerformanceRequest
|
|
8581
|
+
* @return DescribeDBInstanceSupportMaxPerformanceResponse
|
|
8582
|
+
*/
|
|
8201
8583
|
describeDBInstanceSupportMaxPerformance(request: DescribeDBInstanceSupportMaxPerformanceRequest): Promise<DescribeDBInstanceSupportMaxPerformanceResponse>;
|
|
8202
8584
|
/**
|
|
8203
|
-
|
|
8204
|
-
|
|
8205
|
-
|
|
8206
|
-
|
|
8207
|
-
|
|
8208
|
-
|
|
8209
|
-
|
|
8210
|
-
|
|
8585
|
+
* @summary Queries a list of AnalyticDB for PostgreSQL instances.
|
|
8586
|
+
*
|
|
8587
|
+
* @description ##
|
|
8588
|
+
* You can call this operation to query the instance types, network types, and states of AnalyticDB for PostgreSQL instances within a region.
|
|
8589
|
+
* ## Limits
|
|
8590
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8591
|
+
*
|
|
8592
|
+
* @param tmpReq DescribeDBInstancesRequest
|
|
8593
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8594
|
+
* @return DescribeDBInstancesResponse
|
|
8211
8595
|
*/
|
|
8212
8596
|
describeDBInstancesWithOptions(tmpReq: DescribeDBInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBInstancesResponse>;
|
|
8213
8597
|
/**
|
|
8214
|
-
|
|
8215
|
-
|
|
8216
|
-
|
|
8217
|
-
|
|
8218
|
-
|
|
8219
|
-
|
|
8220
|
-
|
|
8598
|
+
* @summary Queries a list of AnalyticDB for PostgreSQL instances.
|
|
8599
|
+
*
|
|
8600
|
+
* @description ##
|
|
8601
|
+
* You can call this operation to query the instance types, network types, and states of AnalyticDB for PostgreSQL instances within a region.
|
|
8602
|
+
* ## Limits
|
|
8603
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8604
|
+
*
|
|
8605
|
+
* @param request DescribeDBInstancesRequest
|
|
8606
|
+
* @return DescribeDBInstancesResponse
|
|
8221
8607
|
*/
|
|
8222
8608
|
describeDBInstances(request: DescribeDBInstancesRequest): Promise<DescribeDBInstancesResponse>;
|
|
8609
|
+
/**
|
|
8610
|
+
* @summary 获取资源管理模式
|
|
8611
|
+
*
|
|
8612
|
+
* @param request DescribeDBResourceManagementModeRequest
|
|
8613
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8614
|
+
* @return DescribeDBResourceManagementModeResponse
|
|
8615
|
+
*/
|
|
8616
|
+
describeDBResourceManagementModeWithOptions(request: DescribeDBResourceManagementModeRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBResourceManagementModeResponse>;
|
|
8617
|
+
/**
|
|
8618
|
+
* @summary 获取资源管理模式
|
|
8619
|
+
*
|
|
8620
|
+
* @param request DescribeDBResourceManagementModeRequest
|
|
8621
|
+
* @return DescribeDBResourceManagementModeResponse
|
|
8622
|
+
*/
|
|
8623
|
+
describeDBResourceManagementMode(request: DescribeDBResourceManagementModeRequest): Promise<DescribeDBResourceManagementModeResponse>;
|
|
8624
|
+
/**
|
|
8625
|
+
* @summary Queries the information about minor versions of AnalyticDB for PostgreSQL instances.
|
|
8626
|
+
*
|
|
8627
|
+
* @param request DescribeDBVersionInfosRequest
|
|
8628
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8629
|
+
* @return DescribeDBVersionInfosResponse
|
|
8630
|
+
*/
|
|
8223
8631
|
describeDBVersionInfosWithOptions(request: DescribeDBVersionInfosRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDBVersionInfosResponse>;
|
|
8632
|
+
/**
|
|
8633
|
+
* @summary Queries the information about minor versions of AnalyticDB for PostgreSQL instances.
|
|
8634
|
+
*
|
|
8635
|
+
* @param request DescribeDBVersionInfosRequest
|
|
8636
|
+
* @return DescribeDBVersionInfosResponse
|
|
8637
|
+
*/
|
|
8224
8638
|
describeDBVersionInfos(request: DescribeDBVersionInfosRequest): Promise<DescribeDBVersionInfosResponse>;
|
|
8225
8639
|
/**
|
|
8226
|
-
|
|
8227
|
-
|
|
8228
|
-
|
|
8229
|
-
|
|
8230
|
-
|
|
8640
|
+
* @summary Queries a list of backup sets of full backup or point-in-time backup for an AnalyticDB for PostgreSQL instance.
|
|
8641
|
+
*
|
|
8642
|
+
* @description You can call this operation to query a list of backup sets and backup details only for instances in elastic storage mode.
|
|
8643
|
+
*
|
|
8644
|
+
* @param request DescribeDataBackupsRequest
|
|
8645
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8646
|
+
* @return DescribeDataBackupsResponse
|
|
8231
8647
|
*/
|
|
8232
8648
|
describeDataBackupsWithOptions(request: DescribeDataBackupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDataBackupsResponse>;
|
|
8233
8649
|
/**
|
|
8234
|
-
|
|
8235
|
-
|
|
8236
|
-
|
|
8237
|
-
|
|
8650
|
+
* @summary Queries a list of backup sets of full backup or point-in-time backup for an AnalyticDB for PostgreSQL instance.
|
|
8651
|
+
*
|
|
8652
|
+
* @description You can call this operation to query a list of backup sets and backup details only for instances in elastic storage mode.
|
|
8653
|
+
*
|
|
8654
|
+
* @param request DescribeDataBackupsRequest
|
|
8655
|
+
* @return DescribeDataBackupsResponse
|
|
8238
8656
|
*/
|
|
8239
8657
|
describeDataBackups(request: DescribeDataBackupsRequest): Promise<DescribeDataBackupsResponse>;
|
|
8658
|
+
/**
|
|
8659
|
+
* @summary Queries the data redistribution information about an AnalyticDB for PostgreSQL V6.0 instance in elastic storage mode.
|
|
8660
|
+
*
|
|
8661
|
+
* @param request DescribeDataReDistributeInfoRequest
|
|
8662
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8663
|
+
* @return DescribeDataReDistributeInfoResponse
|
|
8664
|
+
*/
|
|
8240
8665
|
describeDataReDistributeInfoWithOptions(request: DescribeDataReDistributeInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDataReDistributeInfoResponse>;
|
|
8666
|
+
/**
|
|
8667
|
+
* @summary Queries the data redistribution information about an AnalyticDB for PostgreSQL V6.0 instance in elastic storage mode.
|
|
8668
|
+
*
|
|
8669
|
+
* @param request DescribeDataReDistributeInfoRequest
|
|
8670
|
+
* @return DescribeDataReDistributeInfoResponse
|
|
8671
|
+
*/
|
|
8241
8672
|
describeDataReDistributeInfo(request: DescribeDataReDistributeInfoRequest): Promise<DescribeDataReDistributeInfoResponse>;
|
|
8242
8673
|
/**
|
|
8243
|
-
|
|
8244
|
-
|
|
8245
|
-
|
|
8246
|
-
|
|
8247
|
-
|
|
8674
|
+
* @summary Queries the state of data sharing for AnalyticDB for PostgreSQL instances.
|
|
8675
|
+
*
|
|
8676
|
+
* @description Data sharing is supported only for instances in Serverless mode.
|
|
8677
|
+
*
|
|
8678
|
+
* @param request DescribeDataShareInstancesRequest
|
|
8679
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8680
|
+
* @return DescribeDataShareInstancesResponse
|
|
8248
8681
|
*/
|
|
8249
8682
|
describeDataShareInstancesWithOptions(request: DescribeDataShareInstancesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDataShareInstancesResponse>;
|
|
8250
8683
|
/**
|
|
8251
|
-
|
|
8252
|
-
|
|
8253
|
-
|
|
8254
|
-
|
|
8684
|
+
* @summary Queries the state of data sharing for AnalyticDB for PostgreSQL instances.
|
|
8685
|
+
*
|
|
8686
|
+
* @description Data sharing is supported only for instances in Serverless mode.
|
|
8687
|
+
*
|
|
8688
|
+
* @param request DescribeDataShareInstancesRequest
|
|
8689
|
+
* @return DescribeDataShareInstancesResponse
|
|
8255
8690
|
*/
|
|
8256
8691
|
describeDataShareInstances(request: DescribeDataShareInstancesRequest): Promise<DescribeDataShareInstancesResponse>;
|
|
8257
8692
|
/**
|
|
8258
|
-
|
|
8259
|
-
|
|
8260
|
-
|
|
8261
|
-
|
|
8262
|
-
|
|
8263
|
-
|
|
8264
|
-
|
|
8693
|
+
* @summary Queries the information about data sharing performance metrics.
|
|
8694
|
+
*
|
|
8695
|
+
* @description You can call this operation to query the details of data sharing performance metrics for an AnalyticDB for PostgreSQL instance in Serverless mode, such as the number of shared topics and the amount of data shared.
|
|
8696
|
+
* ## Limits
|
|
8697
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8698
|
+
*
|
|
8699
|
+
* @param request DescribeDataSharePerformanceRequest
|
|
8700
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8701
|
+
* @return DescribeDataSharePerformanceResponse
|
|
8265
8702
|
*/
|
|
8266
8703
|
describeDataSharePerformanceWithOptions(request: DescribeDataSharePerformanceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDataSharePerformanceResponse>;
|
|
8267
8704
|
/**
|
|
8268
|
-
|
|
8269
|
-
|
|
8270
|
-
|
|
8271
|
-
|
|
8272
|
-
|
|
8273
|
-
|
|
8705
|
+
* @summary Queries the information about data sharing performance metrics.
|
|
8706
|
+
*
|
|
8707
|
+
* @description You can call this operation to query the details of data sharing performance metrics for an AnalyticDB for PostgreSQL instance in Serverless mode, such as the number of shared topics and the amount of data shared.
|
|
8708
|
+
* ## Limits
|
|
8709
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8710
|
+
*
|
|
8711
|
+
* @param request DescribeDataSharePerformanceRequest
|
|
8712
|
+
* @return DescribeDataSharePerformanceResponse
|
|
8274
8713
|
*/
|
|
8275
8714
|
describeDataSharePerformance(request: DescribeDataSharePerformanceRequest): Promise<DescribeDataSharePerformanceResponse>;
|
|
8276
8715
|
/**
|
|
8277
|
-
|
|
8278
|
-
|
|
8279
|
-
|
|
8280
|
-
|
|
8281
|
-
|
|
8282
|
-
|
|
8283
|
-
|
|
8716
|
+
* @summary Queries all databases and database accounts for an AnalyticDB for PostgreSQL instance.
|
|
8717
|
+
*
|
|
8718
|
+
* @description To facilitate management, you can call this operation to query all databases and database accounts on an AnalyticDB for PostgreSQL instance.
|
|
8719
|
+
* ## Limits
|
|
8720
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8721
|
+
*
|
|
8722
|
+
* @param request DescribeDiagnosisDimensionsRequest
|
|
8723
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8724
|
+
* @return DescribeDiagnosisDimensionsResponse
|
|
8284
8725
|
*/
|
|
8285
8726
|
describeDiagnosisDimensionsWithOptions(request: DescribeDiagnosisDimensionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiagnosisDimensionsResponse>;
|
|
8286
8727
|
/**
|
|
8287
|
-
|
|
8288
|
-
|
|
8289
|
-
|
|
8290
|
-
|
|
8291
|
-
|
|
8292
|
-
|
|
8728
|
+
* @summary Queries all databases and database accounts for an AnalyticDB for PostgreSQL instance.
|
|
8729
|
+
*
|
|
8730
|
+
* @description To facilitate management, you can call this operation to query all databases and database accounts on an AnalyticDB for PostgreSQL instance.
|
|
8731
|
+
* ## Limits
|
|
8732
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8733
|
+
*
|
|
8734
|
+
* @param request DescribeDiagnosisDimensionsRequest
|
|
8735
|
+
* @return DescribeDiagnosisDimensionsResponse
|
|
8293
8736
|
*/
|
|
8294
8737
|
describeDiagnosisDimensions(request: DescribeDiagnosisDimensionsRequest): Promise<DescribeDiagnosisDimensionsResponse>;
|
|
8295
8738
|
/**
|
|
8296
|
-
|
|
8297
|
-
|
|
8298
|
-
|
|
8299
|
-
|
|
8300
|
-
|
|
8301
|
-
|
|
8302
|
-
|
|
8739
|
+
* @summary Queries the details of query execution on an AnalyticDB for PostgreSQL instance.
|
|
8740
|
+
*
|
|
8741
|
+
* @description You can call this operation to query the details of query execution on an AnalyticDB for PostgreSQL instance in elastic storage mode within a specified time range.
|
|
8742
|
+
* ## Limits
|
|
8743
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8744
|
+
*
|
|
8745
|
+
* @param request DescribeDiagnosisMonitorPerformanceRequest
|
|
8746
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8747
|
+
* @return DescribeDiagnosisMonitorPerformanceResponse
|
|
8303
8748
|
*/
|
|
8304
8749
|
describeDiagnosisMonitorPerformanceWithOptions(request: DescribeDiagnosisMonitorPerformanceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiagnosisMonitorPerformanceResponse>;
|
|
8305
8750
|
/**
|
|
8306
|
-
|
|
8307
|
-
|
|
8308
|
-
|
|
8309
|
-
|
|
8310
|
-
|
|
8311
|
-
|
|
8751
|
+
* @summary Queries the details of query execution on an AnalyticDB for PostgreSQL instance.
|
|
8752
|
+
*
|
|
8753
|
+
* @description You can call this operation to query the details of query execution on an AnalyticDB for PostgreSQL instance in elastic storage mode within a specified time range.
|
|
8754
|
+
* ## Limits
|
|
8755
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8756
|
+
*
|
|
8757
|
+
* @param request DescribeDiagnosisMonitorPerformanceRequest
|
|
8758
|
+
* @return DescribeDiagnosisMonitorPerformanceResponse
|
|
8312
8759
|
*/
|
|
8313
8760
|
describeDiagnosisMonitorPerformance(request: DescribeDiagnosisMonitorPerformanceRequest): Promise<DescribeDiagnosisMonitorPerformanceResponse>;
|
|
8314
8761
|
/**
|
|
8315
|
-
|
|
8316
|
-
|
|
8317
|
-
|
|
8318
|
-
|
|
8319
|
-
|
|
8320
|
-
|
|
8321
|
-
|
|
8762
|
+
* @summary Queries the information about SQL queries for an AnalyticDB for PostgreSQL instance.
|
|
8763
|
+
*
|
|
8764
|
+
* @description You can call this operation to query the details of SQL queries on an AnalyticDB for PostgreSQL instance within a specified time range.
|
|
8765
|
+
* ## Limits
|
|
8766
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8767
|
+
*
|
|
8768
|
+
* @param request DescribeDiagnosisRecordsRequest
|
|
8769
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8770
|
+
* @return DescribeDiagnosisRecordsResponse
|
|
8322
8771
|
*/
|
|
8323
8772
|
describeDiagnosisRecordsWithOptions(request: DescribeDiagnosisRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiagnosisRecordsResponse>;
|
|
8324
8773
|
/**
|
|
8325
|
-
|
|
8326
|
-
|
|
8327
|
-
|
|
8328
|
-
|
|
8329
|
-
|
|
8330
|
-
|
|
8774
|
+
* @summary Queries the information about SQL queries for an AnalyticDB for PostgreSQL instance.
|
|
8775
|
+
*
|
|
8776
|
+
* @description You can call this operation to query the details of SQL queries on an AnalyticDB for PostgreSQL instance within a specified time range.
|
|
8777
|
+
* ## Limits
|
|
8778
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8779
|
+
*
|
|
8780
|
+
* @param request DescribeDiagnosisRecordsRequest
|
|
8781
|
+
* @return DescribeDiagnosisRecordsResponse
|
|
8331
8782
|
*/
|
|
8332
8783
|
describeDiagnosisRecords(request: DescribeDiagnosisRecordsRequest): Promise<DescribeDiagnosisRecordsResponse>;
|
|
8333
8784
|
/**
|
|
8334
|
-
|
|
8335
|
-
|
|
8336
|
-
|
|
8337
|
-
|
|
8338
|
-
|
|
8339
|
-
|
|
8785
|
+
* @summary Queries the information about a query for an AnalyticDB for PostgreSQL instance.
|
|
8786
|
+
*
|
|
8787
|
+
* @description You can call this operation to query the information about a query for an AnalyticDB for PostgreSQL instance, including the SQL statement, execution plan text, and execution plan tree.
|
|
8788
|
+
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For information about how to view and update the minor version of an instance, see [View the minor engine version](https://help.aliyun.com/document_detail/277424.html) and [Update the minor engine version](https://help.aliyun.com/document_detail/139271.html).
|
|
8789
|
+
*
|
|
8790
|
+
* @param request DescribeDiagnosisSQLInfoRequest
|
|
8791
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8792
|
+
* @return DescribeDiagnosisSQLInfoResponse
|
|
8340
8793
|
*/
|
|
8341
8794
|
describeDiagnosisSQLInfoWithOptions(request: DescribeDiagnosisSQLInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDiagnosisSQLInfoResponse>;
|
|
8342
8795
|
/**
|
|
8343
|
-
|
|
8344
|
-
|
|
8345
|
-
|
|
8346
|
-
|
|
8347
|
-
|
|
8796
|
+
* @summary Queries the information about a query for an AnalyticDB for PostgreSQL instance.
|
|
8797
|
+
*
|
|
8798
|
+
* @description You can call this operation to query the information about a query for an AnalyticDB for PostgreSQL instance, including the SQL statement, execution plan text, and execution plan tree.
|
|
8799
|
+
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For information about how to view and update the minor version of an instance, see [View the minor engine version](https://help.aliyun.com/document_detail/277424.html) and [Update the minor engine version](https://help.aliyun.com/document_detail/139271.html).
|
|
8800
|
+
*
|
|
8801
|
+
* @param request DescribeDiagnosisSQLInfoRequest
|
|
8802
|
+
* @return DescribeDiagnosisSQLInfoResponse
|
|
8348
8803
|
*/
|
|
8349
8804
|
describeDiagnosisSQLInfo(request: DescribeDiagnosisSQLInfoRequest): Promise<DescribeDiagnosisSQLInfoResponse>;
|
|
8805
|
+
/**
|
|
8806
|
+
* @summary 获取文档详情
|
|
8807
|
+
*
|
|
8808
|
+
* @param request DescribeDocumentRequest
|
|
8809
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8810
|
+
* @return DescribeDocumentResponse
|
|
8811
|
+
*/
|
|
8350
8812
|
describeDocumentWithOptions(request: DescribeDocumentRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDocumentResponse>;
|
|
8813
|
+
/**
|
|
8814
|
+
* @summary 获取文档详情
|
|
8815
|
+
*
|
|
8816
|
+
* @param request DescribeDocumentRequest
|
|
8817
|
+
* @return DescribeDocumentResponse
|
|
8818
|
+
*/
|
|
8351
8819
|
describeDocument(request: DescribeDocumentRequest): Promise<DescribeDocumentResponse>;
|
|
8352
8820
|
/**
|
|
8353
|
-
|
|
8354
|
-
|
|
8355
|
-
|
|
8356
|
-
|
|
8357
|
-
|
|
8358
|
-
|
|
8821
|
+
* @summary Queries the download records of query diagnostic information for an AnalyticDB for PostgreSQL instance.
|
|
8822
|
+
*
|
|
8823
|
+
* @description You must call the [DownloadDiagnosisRecords](https://help.aliyun.com/document_detail/447700.html) operation to download the query diagnostic information before you can call this operation to query the download records and download URLs.
|
|
8824
|
+
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For information about how to view and update the minor version of an instance, see [View the minor engine version](https://help.aliyun.com/document_detail/277424.html) and [Update the minor engine version](https://help.aliyun.com/document_detail/139271.html).
|
|
8825
|
+
*
|
|
8826
|
+
* @param request DescribeDownloadRecordsRequest
|
|
8827
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8828
|
+
* @return DescribeDownloadRecordsResponse
|
|
8359
8829
|
*/
|
|
8360
8830
|
describeDownloadRecordsWithOptions(request: DescribeDownloadRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDownloadRecordsResponse>;
|
|
8361
8831
|
/**
|
|
8362
|
-
|
|
8363
|
-
|
|
8364
|
-
|
|
8365
|
-
|
|
8366
|
-
|
|
8832
|
+
* @summary Queries the download records of query diagnostic information for an AnalyticDB for PostgreSQL instance.
|
|
8833
|
+
*
|
|
8834
|
+
* @description You must call the [DownloadDiagnosisRecords](https://help.aliyun.com/document_detail/447700.html) operation to download the query diagnostic information before you can call this operation to query the download records and download URLs.
|
|
8835
|
+
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For information about how to view and update the minor version of an instance, see [View the minor engine version](https://help.aliyun.com/document_detail/277424.html) and [Update the minor engine version](https://help.aliyun.com/document_detail/139271.html).
|
|
8836
|
+
*
|
|
8837
|
+
* @param request DescribeDownloadRecordsRequest
|
|
8838
|
+
* @return DescribeDownloadRecordsResponse
|
|
8367
8839
|
*/
|
|
8368
8840
|
describeDownloadRecords(request: DescribeDownloadRecordsRequest): Promise<DescribeDownloadRecordsResponse>;
|
|
8841
|
+
/**
|
|
8842
|
+
* @summary Queries the last five download records of slow query logs for an AnalyticDB for PostgreSQL instance.
|
|
8843
|
+
*
|
|
8844
|
+
* @param request DescribeDownloadSQLLogsRequest
|
|
8845
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8846
|
+
* @return DescribeDownloadSQLLogsResponse
|
|
8847
|
+
*/
|
|
8369
8848
|
describeDownloadSQLLogsWithOptions(request: DescribeDownloadSQLLogsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeDownloadSQLLogsResponse>;
|
|
8849
|
+
/**
|
|
8850
|
+
* @summary Queries the last five download records of slow query logs for an AnalyticDB for PostgreSQL instance.
|
|
8851
|
+
*
|
|
8852
|
+
* @param request DescribeDownloadSQLLogsRequest
|
|
8853
|
+
* @return DescribeDownloadSQLLogsResponse
|
|
8854
|
+
*/
|
|
8370
8855
|
describeDownloadSQLLogs(request: DescribeDownloadSQLLogsRequest): Promise<DescribeDownloadSQLLogsResponse>;
|
|
8371
8856
|
/**
|
|
8372
|
-
|
|
8373
|
-
|
|
8374
|
-
|
|
8375
|
-
|
|
8376
|
-
|
|
8377
|
-
|
|
8378
|
-
|
|
8857
|
+
* @summary Queries the health status of an AnalyticDB for PostgreSQL instance and its nodes.
|
|
8858
|
+
*
|
|
8859
|
+
* @description This operation is called to query the health status of an AnalyticDB for PostgreSQL instance in elastic storage mode or Serverless mode and its coordinator and compute nodes.
|
|
8860
|
+
* ## Limits
|
|
8861
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8862
|
+
*
|
|
8863
|
+
* @param request DescribeHealthStatusRequest
|
|
8864
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8865
|
+
* @return DescribeHealthStatusResponse
|
|
8379
8866
|
*/
|
|
8380
8867
|
describeHealthStatusWithOptions(request: DescribeHealthStatusRequest, runtime: $Util.RuntimeOptions): Promise<DescribeHealthStatusResponse>;
|
|
8381
8868
|
/**
|
|
8382
|
-
|
|
8383
|
-
|
|
8384
|
-
|
|
8385
|
-
|
|
8386
|
-
|
|
8387
|
-
|
|
8869
|
+
* @summary Queries the health status of an AnalyticDB for PostgreSQL instance and its nodes.
|
|
8870
|
+
*
|
|
8871
|
+
* @description This operation is called to query the health status of an AnalyticDB for PostgreSQL instance in elastic storage mode or Serverless mode and its coordinator and compute nodes.
|
|
8872
|
+
* ## Limits
|
|
8873
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8874
|
+
*
|
|
8875
|
+
* @param request DescribeHealthStatusRequest
|
|
8876
|
+
* @return DescribeHealthStatusResponse
|
|
8388
8877
|
*/
|
|
8389
8878
|
describeHealthStatus(request: DescribeHealthStatusRequest): Promise<DescribeHealthStatusResponse>;
|
|
8879
|
+
/**
|
|
8880
|
+
* @summary 查询实时物化视图信息
|
|
8881
|
+
*
|
|
8882
|
+
* @param request DescribeIMVInfosRequest
|
|
8883
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8884
|
+
* @return DescribeIMVInfosResponse
|
|
8885
|
+
*/
|
|
8390
8886
|
describeIMVInfosWithOptions(request: DescribeIMVInfosRequest, runtime: $Util.RuntimeOptions): Promise<DescribeIMVInfosResponse>;
|
|
8887
|
+
/**
|
|
8888
|
+
* @summary 查询实时物化视图信息
|
|
8889
|
+
*
|
|
8890
|
+
* @param request DescribeIMVInfosRequest
|
|
8891
|
+
* @return DescribeIMVInfosResponse
|
|
8892
|
+
*/
|
|
8391
8893
|
describeIMVInfos(request: DescribeIMVInfosRequest): Promise<DescribeIMVInfosResponse>;
|
|
8894
|
+
/**
|
|
8895
|
+
* @summary Queries a list of log backups.
|
|
8896
|
+
*
|
|
8897
|
+
* @param request DescribeLogBackupsRequest
|
|
8898
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8899
|
+
* @return DescribeLogBackupsResponse
|
|
8900
|
+
*/
|
|
8392
8901
|
describeLogBackupsWithOptions(request: DescribeLogBackupsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeLogBackupsResponse>;
|
|
8902
|
+
/**
|
|
8903
|
+
* @summary Queries a list of log backups.
|
|
8904
|
+
*
|
|
8905
|
+
* @param request DescribeLogBackupsRequest
|
|
8906
|
+
* @return DescribeLogBackupsResponse
|
|
8907
|
+
*/
|
|
8393
8908
|
describeLogBackups(request: DescribeLogBackupsRequest): Promise<DescribeLogBackupsResponse>;
|
|
8909
|
+
/**
|
|
8910
|
+
* @summary Queries the parameter modification logs of an AnalyticDB for PostgreSQL instance.
|
|
8911
|
+
*
|
|
8912
|
+
* @param request DescribeModifyParameterLogRequest
|
|
8913
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8914
|
+
* @return DescribeModifyParameterLogResponse
|
|
8915
|
+
*/
|
|
8394
8916
|
describeModifyParameterLogWithOptions(request: DescribeModifyParameterLogRequest, runtime: $Util.RuntimeOptions): Promise<DescribeModifyParameterLogResponse>;
|
|
8917
|
+
/**
|
|
8918
|
+
* @summary Queries the parameter modification logs of an AnalyticDB for PostgreSQL instance.
|
|
8919
|
+
*
|
|
8920
|
+
* @param request DescribeModifyParameterLogRequest
|
|
8921
|
+
* @return DescribeModifyParameterLogResponse
|
|
8922
|
+
*/
|
|
8395
8923
|
describeModifyParameterLog(request: DescribeModifyParameterLogRequest): Promise<DescribeModifyParameterLogResponse>;
|
|
8924
|
+
/**
|
|
8925
|
+
* @summary Queries the information about a namespace.
|
|
8926
|
+
*
|
|
8927
|
+
* @param request DescribeNamespaceRequest
|
|
8928
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8929
|
+
* @return DescribeNamespaceResponse
|
|
8930
|
+
*/
|
|
8396
8931
|
describeNamespaceWithOptions(request: DescribeNamespaceRequest, runtime: $Util.RuntimeOptions): Promise<DescribeNamespaceResponse>;
|
|
8932
|
+
/**
|
|
8933
|
+
* @summary Queries the information about a namespace.
|
|
8934
|
+
*
|
|
8935
|
+
* @param request DescribeNamespaceRequest
|
|
8936
|
+
* @return DescribeNamespaceResponse
|
|
8937
|
+
*/
|
|
8397
8938
|
describeNamespace(request: DescribeNamespaceRequest): Promise<DescribeNamespaceResponse>;
|
|
8398
8939
|
/**
|
|
8399
|
-
|
|
8400
|
-
|
|
8401
|
-
|
|
8402
|
-
|
|
8403
|
-
|
|
8404
|
-
|
|
8405
|
-
|
|
8940
|
+
* @summary Queries the information about configuration parameters for an AnalyticDB for PostgreSQL instance.
|
|
8941
|
+
*
|
|
8942
|
+
* @description This operation can be called to query the details of parameters in an AnalyticDB for PostgreSQL instance in elastic storage mode or Serverless mode.
|
|
8943
|
+
* ## Limits
|
|
8944
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered and may affect your business. We recommend that you take note of the limit when you call this operation.
|
|
8945
|
+
*
|
|
8946
|
+
* @param request DescribeParametersRequest
|
|
8947
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8948
|
+
* @return DescribeParametersResponse
|
|
8406
8949
|
*/
|
|
8407
8950
|
describeParametersWithOptions(request: DescribeParametersRequest, runtime: $Util.RuntimeOptions): Promise<DescribeParametersResponse>;
|
|
8408
8951
|
/**
|
|
8409
|
-
|
|
8410
|
-
|
|
8411
|
-
|
|
8412
|
-
|
|
8413
|
-
|
|
8414
|
-
|
|
8952
|
+
* @summary Queries the information about configuration parameters for an AnalyticDB for PostgreSQL instance.
|
|
8953
|
+
*
|
|
8954
|
+
* @description This operation can be called to query the details of parameters in an AnalyticDB for PostgreSQL instance in elastic storage mode or Serverless mode.
|
|
8955
|
+
* ## Limits
|
|
8956
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered and may affect your business. We recommend that you take note of the limit when you call this operation.
|
|
8957
|
+
*
|
|
8958
|
+
* @param request DescribeParametersRequest
|
|
8959
|
+
* @return DescribeParametersResponse
|
|
8415
8960
|
*/
|
|
8416
8961
|
describeParameters(request: DescribeParametersRequest): Promise<DescribeParametersResponse>;
|
|
8417
8962
|
/**
|
|
8418
|
-
|
|
8419
|
-
|
|
8420
|
-
|
|
8421
|
-
|
|
8422
|
-
|
|
8423
|
-
|
|
8424
|
-
|
|
8963
|
+
* @summary Queries a list of vSwitches.
|
|
8964
|
+
*
|
|
8965
|
+
* @description When you create AnalyticDB for PostgreSQL instances, you can call this operation to query the details of vSwitches within a specified region or zone.
|
|
8966
|
+
* ## Limits
|
|
8967
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8968
|
+
*
|
|
8969
|
+
* @param request DescribeRdsVSwitchsRequest
|
|
8970
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8971
|
+
* @return DescribeRdsVSwitchsResponse
|
|
8425
8972
|
*/
|
|
8426
8973
|
describeRdsVSwitchsWithOptions(request: DescribeRdsVSwitchsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRdsVSwitchsResponse>;
|
|
8427
8974
|
/**
|
|
8428
|
-
|
|
8429
|
-
|
|
8430
|
-
|
|
8431
|
-
|
|
8432
|
-
|
|
8433
|
-
|
|
8975
|
+
* @summary Queries a list of vSwitches.
|
|
8976
|
+
*
|
|
8977
|
+
* @description When you create AnalyticDB for PostgreSQL instances, you can call this operation to query the details of vSwitches within a specified region or zone.
|
|
8978
|
+
* ## Limits
|
|
8979
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8980
|
+
*
|
|
8981
|
+
* @param request DescribeRdsVSwitchsRequest
|
|
8982
|
+
* @return DescribeRdsVSwitchsResponse
|
|
8434
8983
|
*/
|
|
8435
8984
|
describeRdsVSwitchs(request: DescribeRdsVSwitchsRequest): Promise<DescribeRdsVSwitchsResponse>;
|
|
8436
8985
|
/**
|
|
8437
|
-
|
|
8438
|
-
|
|
8439
|
-
|
|
8440
|
-
|
|
8441
|
-
|
|
8442
|
-
|
|
8443
|
-
|
|
8986
|
+
* @summary Queries a list of VPCs.
|
|
8987
|
+
*
|
|
8988
|
+
* @description When you create an AnalyticDB for PostgreSQL instance, you can call this operation to query the available VPCs within a specified region or zone.
|
|
8989
|
+
* ## Limits
|
|
8990
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
8991
|
+
*
|
|
8992
|
+
* @param request DescribeRdsVpcsRequest
|
|
8993
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
8994
|
+
* @return DescribeRdsVpcsResponse
|
|
8444
8995
|
*/
|
|
8445
8996
|
describeRdsVpcsWithOptions(request: DescribeRdsVpcsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRdsVpcsResponse>;
|
|
8446
8997
|
/**
|
|
8447
|
-
|
|
8448
|
-
|
|
8449
|
-
|
|
8450
|
-
|
|
8451
|
-
|
|
8452
|
-
|
|
8998
|
+
* @summary Queries a list of VPCs.
|
|
8999
|
+
*
|
|
9000
|
+
* @description When you create an AnalyticDB for PostgreSQL instance, you can call this operation to query the available VPCs within a specified region or zone.
|
|
9001
|
+
* ## Limits
|
|
9002
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9003
|
+
*
|
|
9004
|
+
* @param request DescribeRdsVpcsRequest
|
|
9005
|
+
* @return DescribeRdsVpcsResponse
|
|
8453
9006
|
*/
|
|
8454
9007
|
describeRdsVpcs(request: DescribeRdsVpcsRequest): Promise<DescribeRdsVpcsResponse>;
|
|
8455
9008
|
/**
|
|
8456
|
-
|
|
8457
|
-
|
|
8458
|
-
|
|
8459
|
-
|
|
8460
|
-
|
|
8461
|
-
|
|
8462
|
-
|
|
9009
|
+
* @summary Queries a list of regions and zones where AnalyticDB for PostgreSQL is available.
|
|
9010
|
+
*
|
|
9011
|
+
* @description Before you create an AnalyticDB for PostgreSQL instance, you must call this operation to query available regions and zones.
|
|
9012
|
+
* ## Limit
|
|
9013
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered and may affect your business. We recommend that you take note of the limit when you call this operation.
|
|
9014
|
+
*
|
|
9015
|
+
* @param request DescribeRegionsRequest
|
|
9016
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9017
|
+
* @return DescribeRegionsResponse
|
|
8463
9018
|
*/
|
|
8464
9019
|
describeRegionsWithOptions(request: DescribeRegionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeRegionsResponse>;
|
|
8465
9020
|
/**
|
|
8466
|
-
|
|
8467
|
-
|
|
8468
|
-
|
|
8469
|
-
|
|
8470
|
-
|
|
8471
|
-
|
|
9021
|
+
* @summary Queries a list of regions and zones where AnalyticDB for PostgreSQL is available.
|
|
9022
|
+
*
|
|
9023
|
+
* @description Before you create an AnalyticDB for PostgreSQL instance, you must call this operation to query available regions and zones.
|
|
9024
|
+
* ## Limit
|
|
9025
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered and may affect your business. We recommend that you take note of the limit when you call this operation.
|
|
9026
|
+
*
|
|
9027
|
+
* @param request DescribeRegionsRequest
|
|
9028
|
+
* @return DescribeRegionsResponse
|
|
8472
9029
|
*/
|
|
8473
9030
|
describeRegions(request: DescribeRegionsRequest): Promise<DescribeRegionsResponse>;
|
|
8474
9031
|
/**
|
|
8475
|
-
|
|
8476
|
-
|
|
8477
|
-
|
|
8478
|
-
|
|
8479
|
-
|
|
9032
|
+
* @summary Queries the number of audit logs for an AnalyticDB for PostgreSQL instance.
|
|
9033
|
+
*
|
|
9034
|
+
* @description This operation is not available for instances in reserved storage mode.
|
|
9035
|
+
*
|
|
9036
|
+
* @param request DescribeSQLLogCountRequest
|
|
9037
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9038
|
+
* @return DescribeSQLLogCountResponse
|
|
8480
9039
|
*/
|
|
8481
9040
|
describeSQLLogCountWithOptions(request: DescribeSQLLogCountRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSQLLogCountResponse>;
|
|
8482
9041
|
/**
|
|
8483
|
-
|
|
8484
|
-
|
|
8485
|
-
|
|
8486
|
-
|
|
9042
|
+
* @summary Queries the number of audit logs for an AnalyticDB for PostgreSQL instance.
|
|
9043
|
+
*
|
|
9044
|
+
* @description This operation is not available for instances in reserved storage mode.
|
|
9045
|
+
*
|
|
9046
|
+
* @param request DescribeSQLLogCountRequest
|
|
9047
|
+
* @return DescribeSQLLogCountResponse
|
|
8487
9048
|
*/
|
|
8488
9049
|
describeSQLLogCount(request: DescribeSQLLogCountRequest): Promise<DescribeSQLLogCountResponse>;
|
|
8489
9050
|
/**
|
|
8490
|
-
|
|
8491
|
-
|
|
8492
|
-
|
|
8493
|
-
|
|
8494
|
-
|
|
9051
|
+
* @summary Queries the SQL execution logs of an AnalyticDB for PostgreSQL instance.
|
|
9052
|
+
*
|
|
9053
|
+
* @description > This operation is no longer used. To query SQL execution logs, call the [DescribeSQLLogsV2](https://help.aliyun.com/document_detail/453722.html) operation.
|
|
9054
|
+
*
|
|
9055
|
+
* @param request DescribeSQLLogsRequest
|
|
9056
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9057
|
+
* @return DescribeSQLLogsResponse
|
|
8495
9058
|
*/
|
|
8496
9059
|
describeSQLLogsWithOptions(request: DescribeSQLLogsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSQLLogsResponse>;
|
|
8497
9060
|
/**
|
|
8498
|
-
|
|
8499
|
-
|
|
8500
|
-
|
|
8501
|
-
|
|
9061
|
+
* @summary Queries the SQL execution logs of an AnalyticDB for PostgreSQL instance.
|
|
9062
|
+
*
|
|
9063
|
+
* @description > This operation is no longer used. To query SQL execution logs, call the [DescribeSQLLogsV2](https://help.aliyun.com/document_detail/453722.html) operation.
|
|
9064
|
+
*
|
|
9065
|
+
* @param request DescribeSQLLogsRequest
|
|
9066
|
+
* @return DescribeSQLLogsResponse
|
|
8502
9067
|
*/
|
|
8503
9068
|
describeSQLLogs(request: DescribeSQLLogsRequest): Promise<DescribeSQLLogsResponse>;
|
|
8504
9069
|
/**
|
|
8505
|
-
|
|
8506
|
-
|
|
8507
|
-
|
|
8508
|
-
|
|
8509
|
-
|
|
8510
|
-
|
|
8511
|
-
|
|
9070
|
+
* @summary Queries SQL logs within a specific time range.
|
|
9071
|
+
*
|
|
9072
|
+
* @description You can call this operation to query SQL logs of an AnalyticDB for PostgreSQL instance within a specific time range.
|
|
9073
|
+
* ## Limits
|
|
9074
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9075
|
+
*
|
|
9076
|
+
* @param request DescribeSQLLogsV2Request
|
|
9077
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9078
|
+
* @return DescribeSQLLogsV2Response
|
|
8512
9079
|
*/
|
|
8513
9080
|
describeSQLLogsV2WithOptions(request: DescribeSQLLogsV2Request, runtime: $Util.RuntimeOptions): Promise<DescribeSQLLogsV2Response>;
|
|
8514
9081
|
/**
|
|
8515
|
-
|
|
8516
|
-
|
|
8517
|
-
|
|
8518
|
-
|
|
8519
|
-
|
|
8520
|
-
|
|
9082
|
+
* @summary Queries SQL logs within a specific time range.
|
|
9083
|
+
*
|
|
9084
|
+
* @description You can call this operation to query SQL logs of an AnalyticDB for PostgreSQL instance within a specific time range.
|
|
9085
|
+
* ## Limits
|
|
9086
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9087
|
+
*
|
|
9088
|
+
* @param request DescribeSQLLogsV2Request
|
|
9089
|
+
* @return DescribeSQLLogsV2Response
|
|
8521
9090
|
*/
|
|
8522
9091
|
describeSQLLogsV2(request: DescribeSQLLogsV2Request): Promise<DescribeSQLLogsV2Response>;
|
|
8523
9092
|
/**
|
|
8524
|
-
|
|
8525
|
-
|
|
8526
|
-
|
|
8527
|
-
|
|
8528
|
-
|
|
9093
|
+
* @summary Queries whether a sample dataset is loaded to an AnalyticDB for PostgreSQL instance.
|
|
9094
|
+
*
|
|
9095
|
+
* @description You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9096
|
+
*
|
|
9097
|
+
* @param request DescribeSampleDataRequest
|
|
9098
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9099
|
+
* @return DescribeSampleDataResponse
|
|
8529
9100
|
*/
|
|
8530
9101
|
describeSampleDataWithOptions(request: DescribeSampleDataRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSampleDataResponse>;
|
|
8531
9102
|
/**
|
|
8532
|
-
|
|
8533
|
-
|
|
8534
|
-
|
|
8535
|
-
|
|
9103
|
+
* @summary Queries whether a sample dataset is loaded to an AnalyticDB for PostgreSQL instance.
|
|
9104
|
+
*
|
|
9105
|
+
* @description You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9106
|
+
*
|
|
9107
|
+
* @param request DescribeSampleDataRequest
|
|
9108
|
+
* @return DescribeSampleDataResponse
|
|
8536
9109
|
*/
|
|
8537
9110
|
describeSampleData(request: DescribeSampleDataRequest): Promise<DescribeSampleDataResponse>;
|
|
9111
|
+
/**
|
|
9112
|
+
* @summary Queries the features that are supported by an AnalyticDB for PostgreSQL instance.
|
|
9113
|
+
*
|
|
9114
|
+
* @param request DescribeSupportFeaturesRequest
|
|
9115
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9116
|
+
* @return DescribeSupportFeaturesResponse
|
|
9117
|
+
*/
|
|
8538
9118
|
describeSupportFeaturesWithOptions(request: DescribeSupportFeaturesRequest, runtime: $Util.RuntimeOptions): Promise<DescribeSupportFeaturesResponse>;
|
|
9119
|
+
/**
|
|
9120
|
+
* @summary Queries the features that are supported by an AnalyticDB for PostgreSQL instance.
|
|
9121
|
+
*
|
|
9122
|
+
* @param request DescribeSupportFeaturesRequest
|
|
9123
|
+
* @return DescribeSupportFeaturesResponse
|
|
9124
|
+
*/
|
|
8539
9125
|
describeSupportFeatures(request: DescribeSupportFeaturesRequest): Promise<DescribeSupportFeaturesResponse>;
|
|
9126
|
+
/**
|
|
9127
|
+
* @summary Queries a list of tags for AnalyticDB for PostgreSQL instances.
|
|
9128
|
+
*
|
|
9129
|
+
* @param request DescribeTagsRequest
|
|
9130
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9131
|
+
* @return DescribeTagsResponse
|
|
9132
|
+
*/
|
|
8540
9133
|
describeTagsWithOptions(request: DescribeTagsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeTagsResponse>;
|
|
9134
|
+
/**
|
|
9135
|
+
* @summary Queries a list of tags for AnalyticDB for PostgreSQL instances.
|
|
9136
|
+
*
|
|
9137
|
+
* @param request DescribeTagsRequest
|
|
9138
|
+
* @return DescribeTagsResponse
|
|
9139
|
+
*/
|
|
8541
9140
|
describeTags(request: DescribeTagsRequest): Promise<DescribeTagsResponse>;
|
|
9141
|
+
/**
|
|
9142
|
+
* @summary Queries a list of Key Management Service (KMS) keys.
|
|
9143
|
+
*
|
|
9144
|
+
* @param request DescribeUserEncryptionKeyListRequest
|
|
9145
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9146
|
+
* @return DescribeUserEncryptionKeyListResponse
|
|
9147
|
+
*/
|
|
8542
9148
|
describeUserEncryptionKeyListWithOptions(request: DescribeUserEncryptionKeyListRequest, runtime: $Util.RuntimeOptions): Promise<DescribeUserEncryptionKeyListResponse>;
|
|
9149
|
+
/**
|
|
9150
|
+
* @summary Queries a list of Key Management Service (KMS) keys.
|
|
9151
|
+
*
|
|
9152
|
+
* @param request DescribeUserEncryptionKeyListRequest
|
|
9153
|
+
* @return DescribeUserEncryptionKeyListResponse
|
|
9154
|
+
*/
|
|
8543
9155
|
describeUserEncryptionKeyList(request: DescribeUserEncryptionKeyListRequest): Promise<DescribeUserEncryptionKeyListResponse>;
|
|
8544
9156
|
/**
|
|
8545
|
-
|
|
8546
|
-
|
|
8547
|
-
|
|
8548
|
-
|
|
8549
|
-
|
|
8550
|
-
|
|
8551
|
-
|
|
9157
|
+
* @summary Queries the information about a lock-waiting query for an AnalyticDB for PostgreSQL instance.
|
|
9158
|
+
*
|
|
9159
|
+
* @description You can call this operation to query the details of a lock-waiting query only for an AnalyticDB for PostgreSQL V6.0 instance in elastic storage mode.
|
|
9160
|
+
* ## Limits
|
|
9161
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9162
|
+
*
|
|
9163
|
+
* @param request DescribeWaitingSQLInfoRequest
|
|
9164
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9165
|
+
* @return DescribeWaitingSQLInfoResponse
|
|
8552
9166
|
*/
|
|
8553
9167
|
describeWaitingSQLInfoWithOptions(request: DescribeWaitingSQLInfoRequest, runtime: $Util.RuntimeOptions): Promise<DescribeWaitingSQLInfoResponse>;
|
|
8554
9168
|
/**
|
|
8555
|
-
|
|
8556
|
-
|
|
8557
|
-
|
|
8558
|
-
|
|
8559
|
-
|
|
8560
|
-
|
|
9169
|
+
* @summary Queries the information about a lock-waiting query for an AnalyticDB for PostgreSQL instance.
|
|
9170
|
+
*
|
|
9171
|
+
* @description You can call this operation to query the details of a lock-waiting query only for an AnalyticDB for PostgreSQL V6.0 instance in elastic storage mode.
|
|
9172
|
+
* ## Limits
|
|
9173
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9174
|
+
*
|
|
9175
|
+
* @param request DescribeWaitingSQLInfoRequest
|
|
9176
|
+
* @return DescribeWaitingSQLInfoResponse
|
|
8561
9177
|
*/
|
|
8562
9178
|
describeWaitingSQLInfo(request: DescribeWaitingSQLInfoRequest): Promise<DescribeWaitingSQLInfoResponse>;
|
|
8563
9179
|
/**
|
|
8564
|
-
|
|
8565
|
-
|
|
8566
|
-
|
|
8567
|
-
|
|
8568
|
-
|
|
8569
|
-
|
|
8570
|
-
|
|
9180
|
+
* @summary Queries the lock diagnostic records of an AnalyticDB for PostgreSQL instance.
|
|
9181
|
+
*
|
|
9182
|
+
* @description You can call this operation to query the lock diagnostics records only for an AnalyticDB for PostgreSQL V6.0 instance in elastic storage mode.
|
|
9183
|
+
* ## Limits
|
|
9184
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9185
|
+
*
|
|
9186
|
+
* @param request DescribeWaitingSQLRecordsRequest
|
|
9187
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9188
|
+
* @return DescribeWaitingSQLRecordsResponse
|
|
8571
9189
|
*/
|
|
8572
9190
|
describeWaitingSQLRecordsWithOptions(request: DescribeWaitingSQLRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DescribeWaitingSQLRecordsResponse>;
|
|
8573
9191
|
/**
|
|
8574
|
-
|
|
8575
|
-
|
|
8576
|
-
|
|
8577
|
-
|
|
8578
|
-
|
|
8579
|
-
|
|
9192
|
+
* @summary Queries the lock diagnostic records of an AnalyticDB for PostgreSQL instance.
|
|
9193
|
+
*
|
|
9194
|
+
* @description You can call this operation to query the lock diagnostics records only for an AnalyticDB for PostgreSQL V6.0 instance in elastic storage mode.
|
|
9195
|
+
* ## Limits
|
|
9196
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9197
|
+
*
|
|
9198
|
+
* @param request DescribeWaitingSQLRecordsRequest
|
|
9199
|
+
* @return DescribeWaitingSQLRecordsResponse
|
|
8580
9200
|
*/
|
|
8581
9201
|
describeWaitingSQLRecords(request: DescribeWaitingSQLRecordsRequest): Promise<DescribeWaitingSQLRecordsResponse>;
|
|
8582
9202
|
/**
|
|
8583
|
-
|
|
8584
|
-
|
|
8585
|
-
|
|
8586
|
-
|
|
8587
|
-
|
|
8588
|
-
|
|
8589
|
-
|
|
8590
|
-
|
|
9203
|
+
* @summary Downloads the query diagnostic information of an AnalyticDB for PostgreSQL instance.
|
|
9204
|
+
*
|
|
9205
|
+
* @description You can call this operation to download the query diagnostic information of an AnalyticDB for PostgreSQL instance. After the download is complete, you can call the [DescribeDownloadRecords](https://help.aliyun.com/document_detail/447712.html) operation to query download records and download URLs.
|
|
9206
|
+
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For more information about how to view and update the minor engine version of an instance, see [View the minor engine version](https://help.aliyun.com/document_detail/277424.html) and [Update the minor engine version](https://help.aliyun.com/document_detail/139271.html).
|
|
9207
|
+
* ## Limits
|
|
9208
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9209
|
+
*
|
|
9210
|
+
* @param request DownloadDiagnosisRecordsRequest
|
|
9211
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9212
|
+
* @return DownloadDiagnosisRecordsResponse
|
|
8591
9213
|
*/
|
|
8592
9214
|
downloadDiagnosisRecordsWithOptions(request: DownloadDiagnosisRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DownloadDiagnosisRecordsResponse>;
|
|
8593
9215
|
/**
|
|
8594
|
-
|
|
8595
|
-
|
|
8596
|
-
|
|
8597
|
-
|
|
8598
|
-
|
|
8599
|
-
|
|
8600
|
-
|
|
9216
|
+
* @summary Downloads the query diagnostic information of an AnalyticDB for PostgreSQL instance.
|
|
9217
|
+
*
|
|
9218
|
+
* @description You can call this operation to download the query diagnostic information of an AnalyticDB for PostgreSQL instance. After the download is complete, you can call the [DescribeDownloadRecords](https://help.aliyun.com/document_detail/447712.html) operation to query download records and download URLs.
|
|
9219
|
+
* This operation is available only for instances of V6.3.10.1 or later in elastic storage mode. For more information about how to view and update the minor engine version of an instance, see [View the minor engine version](https://help.aliyun.com/document_detail/277424.html) and [Update the minor engine version](https://help.aliyun.com/document_detail/139271.html).
|
|
9220
|
+
* ## Limits
|
|
9221
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9222
|
+
*
|
|
9223
|
+
* @param request DownloadDiagnosisRecordsRequest
|
|
9224
|
+
* @return DownloadDiagnosisRecordsResponse
|
|
8601
9225
|
*/
|
|
8602
9226
|
downloadDiagnosisRecords(request: DownloadDiagnosisRecordsRequest): Promise<DownloadDiagnosisRecordsResponse>;
|
|
9227
|
+
/**
|
|
9228
|
+
* @summary Download the slow query logs of an AnalyticDB for PostgreSQL instance.
|
|
9229
|
+
*
|
|
9230
|
+
* @param request DownloadSQLLogsRecordsRequest
|
|
9231
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9232
|
+
* @return DownloadSQLLogsRecordsResponse
|
|
9233
|
+
*/
|
|
8603
9234
|
downloadSQLLogsRecordsWithOptions(request: DownloadSQLLogsRecordsRequest, runtime: $Util.RuntimeOptions): Promise<DownloadSQLLogsRecordsResponse>;
|
|
9235
|
+
/**
|
|
9236
|
+
* @summary Download the slow query logs of an AnalyticDB for PostgreSQL instance.
|
|
9237
|
+
*
|
|
9238
|
+
* @param request DownloadSQLLogsRecordsRequest
|
|
9239
|
+
* @return DownloadSQLLogsRecordsResponse
|
|
9240
|
+
*/
|
|
8604
9241
|
downloadSQLLogsRecords(request: DownloadSQLLogsRecordsRequest): Promise<DownloadSQLLogsRecordsResponse>;
|
|
9242
|
+
/**
|
|
9243
|
+
* @summary 查询上传文档任务的状态
|
|
9244
|
+
*
|
|
9245
|
+
* @param request GetUploadDocumentJobRequest
|
|
9246
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9247
|
+
* @return GetUploadDocumentJobResponse
|
|
9248
|
+
*/
|
|
8605
9249
|
getUploadDocumentJobWithOptions(request: GetUploadDocumentJobRequest, runtime: $Util.RuntimeOptions): Promise<GetUploadDocumentJobResponse>;
|
|
9250
|
+
/**
|
|
9251
|
+
* @summary 查询上传文档任务的状态
|
|
9252
|
+
*
|
|
9253
|
+
* @param request GetUploadDocumentJobRequest
|
|
9254
|
+
* @return GetUploadDocumentJobResponse
|
|
9255
|
+
*/
|
|
8606
9256
|
getUploadDocumentJob(request: GetUploadDocumentJobRequest): Promise<GetUploadDocumentJobResponse>;
|
|
9257
|
+
/**
|
|
9258
|
+
* @summary 查询上传向量任务结果
|
|
9259
|
+
*
|
|
9260
|
+
* @param request GetUpsertCollectionDataJobRequest
|
|
9261
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9262
|
+
* @return GetUpsertCollectionDataJobResponse
|
|
9263
|
+
*/
|
|
8607
9264
|
getUpsertCollectionDataJobWithOptions(request: GetUpsertCollectionDataJobRequest, runtime: $Util.RuntimeOptions): Promise<GetUpsertCollectionDataJobResponse>;
|
|
9265
|
+
/**
|
|
9266
|
+
* @summary 查询上传向量任务结果
|
|
9267
|
+
*
|
|
9268
|
+
* @param request GetUpsertCollectionDataJobRequest
|
|
9269
|
+
* @return GetUpsertCollectionDataJobResponse
|
|
9270
|
+
*/
|
|
8608
9271
|
getUpsertCollectionDataJob(request: GetUpsertCollectionDataJobRequest): Promise<GetUpsertCollectionDataJobResponse>;
|
|
9272
|
+
/**
|
|
9273
|
+
* @summary Grants vector collection permissions to a namespace.
|
|
9274
|
+
*
|
|
9275
|
+
* @param request GrantCollectionRequest
|
|
9276
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9277
|
+
* @return GrantCollectionResponse
|
|
9278
|
+
*/
|
|
8609
9279
|
grantCollectionWithOptions(request: GrantCollectionRequest, runtime: $Util.RuntimeOptions): Promise<GrantCollectionResponse>;
|
|
9280
|
+
/**
|
|
9281
|
+
* @summary Grants vector collection permissions to a namespace.
|
|
9282
|
+
*
|
|
9283
|
+
* @param request GrantCollectionRequest
|
|
9284
|
+
* @return GrantCollectionResponse
|
|
9285
|
+
*/
|
|
8610
9286
|
grantCollection(request: GrantCollectionRequest): Promise<GrantCollectionResponse>;
|
|
9287
|
+
/**
|
|
9288
|
+
* @summary 处理指定的查询SQL
|
|
9289
|
+
*
|
|
9290
|
+
* @param request HandleActiveSQLRecordRequest
|
|
9291
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9292
|
+
* @return HandleActiveSQLRecordResponse
|
|
9293
|
+
*/
|
|
8611
9294
|
handleActiveSQLRecordWithOptions(request: HandleActiveSQLRecordRequest, runtime: $Util.RuntimeOptions): Promise<HandleActiveSQLRecordResponse>;
|
|
9295
|
+
/**
|
|
9296
|
+
* @summary 处理指定的查询SQL
|
|
9297
|
+
*
|
|
9298
|
+
* @param request HandleActiveSQLRecordRequest
|
|
9299
|
+
* @return HandleActiveSQLRecordResponse
|
|
9300
|
+
*/
|
|
8612
9301
|
handleActiveSQLRecord(request: HandleActiveSQLRecordRequest): Promise<HandleActiveSQLRecordResponse>;
|
|
9302
|
+
/**
|
|
9303
|
+
* @summary Initializes vector databases.
|
|
9304
|
+
*
|
|
9305
|
+
* @param request InitVectorDatabaseRequest
|
|
9306
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9307
|
+
* @return InitVectorDatabaseResponse
|
|
9308
|
+
*/
|
|
8613
9309
|
initVectorDatabaseWithOptions(request: InitVectorDatabaseRequest, runtime: $Util.RuntimeOptions): Promise<InitVectorDatabaseResponse>;
|
|
9310
|
+
/**
|
|
9311
|
+
* @summary Initializes vector databases.
|
|
9312
|
+
*
|
|
9313
|
+
* @param request InitVectorDatabaseRequest
|
|
9314
|
+
* @return InitVectorDatabaseResponse
|
|
9315
|
+
*/
|
|
8614
9316
|
initVectorDatabase(request: InitVectorDatabaseRequest): Promise<InitVectorDatabaseResponse>;
|
|
9317
|
+
/**
|
|
9318
|
+
* @summary Queries a list of vector collections.
|
|
9319
|
+
*
|
|
9320
|
+
* @param request ListCollectionsRequest
|
|
9321
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9322
|
+
* @return ListCollectionsResponse
|
|
9323
|
+
*/
|
|
8615
9324
|
listCollectionsWithOptions(request: ListCollectionsRequest, runtime: $Util.RuntimeOptions): Promise<ListCollectionsResponse>;
|
|
9325
|
+
/**
|
|
9326
|
+
* @summary Queries a list of vector collections.
|
|
9327
|
+
*
|
|
9328
|
+
* @param request ListCollectionsRequest
|
|
9329
|
+
* @return ListCollectionsResponse
|
|
9330
|
+
*/
|
|
8616
9331
|
listCollections(request: ListCollectionsRequest): Promise<ListCollectionsResponse>;
|
|
9332
|
+
/**
|
|
9333
|
+
* @summary 获取知识库列表
|
|
9334
|
+
*
|
|
9335
|
+
* @param request ListDocumentCollectionsRequest
|
|
9336
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9337
|
+
* @return ListDocumentCollectionsResponse
|
|
9338
|
+
*/
|
|
8617
9339
|
listDocumentCollectionsWithOptions(request: ListDocumentCollectionsRequest, runtime: $Util.RuntimeOptions): Promise<ListDocumentCollectionsResponse>;
|
|
9340
|
+
/**
|
|
9341
|
+
* @summary 获取知识库列表
|
|
9342
|
+
*
|
|
9343
|
+
* @param request ListDocumentCollectionsRequest
|
|
9344
|
+
* @return ListDocumentCollectionsResponse
|
|
9345
|
+
*/
|
|
8618
9346
|
listDocumentCollections(request: ListDocumentCollectionsRequest): Promise<ListDocumentCollectionsResponse>;
|
|
9347
|
+
/**
|
|
9348
|
+
* @summary 查询文档列表
|
|
9349
|
+
*
|
|
9350
|
+
* @param request ListDocumentsRequest
|
|
9351
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9352
|
+
* @return ListDocumentsResponse
|
|
9353
|
+
*/
|
|
8619
9354
|
listDocumentsWithOptions(request: ListDocumentsRequest, runtime: $Util.RuntimeOptions): Promise<ListDocumentsResponse>;
|
|
9355
|
+
/**
|
|
9356
|
+
* @summary 查询文档列表
|
|
9357
|
+
*
|
|
9358
|
+
* @param request ListDocumentsRequest
|
|
9359
|
+
* @return ListDocumentsResponse
|
|
9360
|
+
*/
|
|
8620
9361
|
listDocuments(request: ListDocumentsRequest): Promise<ListDocumentsResponse>;
|
|
9362
|
+
/**
|
|
9363
|
+
* @summary Queries a list of namespaces.
|
|
9364
|
+
*
|
|
9365
|
+
* @param request ListNamespacesRequest
|
|
9366
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9367
|
+
* @return ListNamespacesResponse
|
|
9368
|
+
*/
|
|
8621
9369
|
listNamespacesWithOptions(request: ListNamespacesRequest, runtime: $Util.RuntimeOptions): Promise<ListNamespacesResponse>;
|
|
9370
|
+
/**
|
|
9371
|
+
* @summary Queries a list of namespaces.
|
|
9372
|
+
*
|
|
9373
|
+
* @param request ListNamespacesRequest
|
|
9374
|
+
* @return ListNamespacesResponse
|
|
9375
|
+
*/
|
|
8622
9376
|
listNamespaces(request: ListNamespacesRequest): Promise<ListNamespacesResponse>;
|
|
9377
|
+
/**
|
|
9378
|
+
* @summary Queries a list of tags that are added to AnalyticDB for PostgreSQL instances.
|
|
9379
|
+
*
|
|
9380
|
+
* @param request ListTagResourcesRequest
|
|
9381
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9382
|
+
* @return ListTagResourcesResponse
|
|
9383
|
+
*/
|
|
8623
9384
|
listTagResourcesWithOptions(request: ListTagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<ListTagResourcesResponse>;
|
|
9385
|
+
/**
|
|
9386
|
+
* @summary Queries a list of tags that are added to AnalyticDB for PostgreSQL instances.
|
|
9387
|
+
*
|
|
9388
|
+
* @param request ListTagResourcesRequest
|
|
9389
|
+
* @return ListTagResourcesResponse
|
|
9390
|
+
*/
|
|
8624
9391
|
listTagResources(request: ListTagResourcesRequest): Promise<ListTagResourcesResponse>;
|
|
9392
|
+
/**
|
|
9393
|
+
* @summary Modifies the description of a database account for an AnalyticDB for PostgreSQL instance.
|
|
9394
|
+
*
|
|
9395
|
+
* @param request ModifyAccountDescriptionRequest
|
|
9396
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9397
|
+
* @return ModifyAccountDescriptionResponse
|
|
9398
|
+
*/
|
|
8625
9399
|
modifyAccountDescriptionWithOptions(request: ModifyAccountDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyAccountDescriptionResponse>;
|
|
9400
|
+
/**
|
|
9401
|
+
* @summary Modifies the description of a database account for an AnalyticDB for PostgreSQL instance.
|
|
9402
|
+
*
|
|
9403
|
+
* @param request ModifyAccountDescriptionRequest
|
|
9404
|
+
* @return ModifyAccountDescriptionResponse
|
|
9405
|
+
*/
|
|
8626
9406
|
modifyAccountDescription(request: ModifyAccountDescriptionRequest): Promise<ModifyAccountDescriptionResponse>;
|
|
9407
|
+
/**
|
|
9408
|
+
* @summary Configures the backup policy of an AnalyticDB for PostgreSQL instance.
|
|
9409
|
+
*
|
|
9410
|
+
* @param request ModifyBackupPolicyRequest
|
|
9411
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9412
|
+
* @return ModifyBackupPolicyResponse
|
|
9413
|
+
*/
|
|
8627
9414
|
modifyBackupPolicyWithOptions(request: ModifyBackupPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ModifyBackupPolicyResponse>;
|
|
9415
|
+
/**
|
|
9416
|
+
* @summary Configures the backup policy of an AnalyticDB for PostgreSQL instance.
|
|
9417
|
+
*
|
|
9418
|
+
* @param request ModifyBackupPolicyRequest
|
|
9419
|
+
* @return ModifyBackupPolicyResponse
|
|
9420
|
+
*/
|
|
8628
9421
|
modifyBackupPolicy(request: ModifyBackupPolicyRequest): Promise<ModifyBackupPolicyResponse>;
|
|
9422
|
+
/**
|
|
9423
|
+
* @summary Changes the threshold of computing resources and the wait period of idle resources for an AnalyticDB for PostgreSQL instance in Serverless automatic scheduling mode.
|
|
9424
|
+
*
|
|
9425
|
+
* @param request ModifyDBInstanceConfigRequest
|
|
9426
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9427
|
+
* @return ModifyDBInstanceConfigResponse
|
|
9428
|
+
*/
|
|
8629
9429
|
modifyDBInstanceConfigWithOptions(request: ModifyDBInstanceConfigRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceConfigResponse>;
|
|
9430
|
+
/**
|
|
9431
|
+
* @summary Changes the threshold of computing resources and the wait period of idle resources for an AnalyticDB for PostgreSQL instance in Serverless automatic scheduling mode.
|
|
9432
|
+
*
|
|
9433
|
+
* @param request ModifyDBInstanceConfigRequest
|
|
9434
|
+
* @return ModifyDBInstanceConfigResponse
|
|
9435
|
+
*/
|
|
8630
9436
|
modifyDBInstanceConfig(request: ModifyDBInstanceConfigRequest): Promise<ModifyDBInstanceConfigResponse>;
|
|
9437
|
+
/**
|
|
9438
|
+
* @summary Changes the endpoint of an AnalyticDB for PostgreSQL instance.
|
|
9439
|
+
*
|
|
9440
|
+
* @param request ModifyDBInstanceConnectionStringRequest
|
|
9441
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9442
|
+
* @return ModifyDBInstanceConnectionStringResponse
|
|
9443
|
+
*/
|
|
8631
9444
|
modifyDBInstanceConnectionStringWithOptions(request: ModifyDBInstanceConnectionStringRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceConnectionStringResponse>;
|
|
9445
|
+
/**
|
|
9446
|
+
* @summary Changes the endpoint of an AnalyticDB for PostgreSQL instance.
|
|
9447
|
+
*
|
|
9448
|
+
* @param request ModifyDBInstanceConnectionStringRequest
|
|
9449
|
+
* @return ModifyDBInstanceConnectionStringResponse
|
|
9450
|
+
*/
|
|
8632
9451
|
modifyDBInstanceConnectionString(request: ModifyDBInstanceConnectionStringRequest): Promise<ModifyDBInstanceConnectionStringResponse>;
|
|
8633
9452
|
/**
|
|
8634
|
-
|
|
8635
|
-
|
|
8636
|
-
|
|
8637
|
-
|
|
8638
|
-
|
|
8639
|
-
|
|
8640
|
-
|
|
9453
|
+
* @summary Changes the description of an AnalyticDB for PostgreSQL instance.
|
|
9454
|
+
*
|
|
9455
|
+
* @description To make it easy to identify AnalyticDB for PostgreSQL instances, you can call this operation to modify the description of instances.
|
|
9456
|
+
* ## Limits
|
|
9457
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9458
|
+
*
|
|
9459
|
+
* @param request ModifyDBInstanceDescriptionRequest
|
|
9460
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9461
|
+
* @return ModifyDBInstanceDescriptionResponse
|
|
8641
9462
|
*/
|
|
8642
9463
|
modifyDBInstanceDescriptionWithOptions(request: ModifyDBInstanceDescriptionRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceDescriptionResponse>;
|
|
8643
9464
|
/**
|
|
8644
|
-
|
|
8645
|
-
|
|
8646
|
-
|
|
8647
|
-
|
|
8648
|
-
|
|
8649
|
-
|
|
9465
|
+
* @summary Changes the description of an AnalyticDB for PostgreSQL instance.
|
|
9466
|
+
*
|
|
9467
|
+
* @description To make it easy to identify AnalyticDB for PostgreSQL instances, you can call this operation to modify the description of instances.
|
|
9468
|
+
* ## Limits
|
|
9469
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9470
|
+
*
|
|
9471
|
+
* @param request ModifyDBInstanceDescriptionRequest
|
|
9472
|
+
* @return ModifyDBInstanceDescriptionResponse
|
|
8650
9473
|
*/
|
|
8651
9474
|
modifyDBInstanceDescription(request: ModifyDBInstanceDescriptionRequest): Promise<ModifyDBInstanceDescriptionResponse>;
|
|
8652
9475
|
/**
|
|
8653
|
-
|
|
8654
|
-
|
|
8655
|
-
|
|
8656
|
-
|
|
8657
|
-
|
|
8658
|
-
|
|
8659
|
-
|
|
9476
|
+
* @summary Modifies the maintenance window of an AnalyticDB for PostgreSQL instance.
|
|
9477
|
+
*
|
|
9478
|
+
* @description The system maintains AnalyticDB for PostgreSQL instances during the maintenance window that you specify. We recommend that you set the maintenance window to off-peak hours to minimize the impact on your business.
|
|
9479
|
+
* ## Limits
|
|
9480
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9481
|
+
*
|
|
9482
|
+
* @param request ModifyDBInstanceMaintainTimeRequest
|
|
9483
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9484
|
+
* @return ModifyDBInstanceMaintainTimeResponse
|
|
8660
9485
|
*/
|
|
8661
9486
|
modifyDBInstanceMaintainTimeWithOptions(request: ModifyDBInstanceMaintainTimeRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceMaintainTimeResponse>;
|
|
8662
9487
|
/**
|
|
8663
|
-
|
|
8664
|
-
|
|
8665
|
-
|
|
8666
|
-
|
|
8667
|
-
|
|
8668
|
-
|
|
9488
|
+
* @summary Modifies the maintenance window of an AnalyticDB for PostgreSQL instance.
|
|
9489
|
+
*
|
|
9490
|
+
* @description The system maintains AnalyticDB for PostgreSQL instances during the maintenance window that you specify. We recommend that you set the maintenance window to off-peak hours to minimize the impact on your business.
|
|
9491
|
+
* ## Limits
|
|
9492
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9493
|
+
*
|
|
9494
|
+
* @param request ModifyDBInstanceMaintainTimeRequest
|
|
9495
|
+
* @return ModifyDBInstanceMaintainTimeResponse
|
|
8669
9496
|
*/
|
|
8670
9497
|
modifyDBInstanceMaintainTime(request: ModifyDBInstanceMaintainTimeRequest): Promise<ModifyDBInstanceMaintainTimeResponse>;
|
|
8671
9498
|
/**
|
|
8672
|
-
|
|
8673
|
-
|
|
8674
|
-
|
|
8675
|
-
|
|
8676
|
-
|
|
9499
|
+
* @summary Moves an AnalyticDB for PostgreSQL instance to a resource group.
|
|
9500
|
+
*
|
|
9501
|
+
* @description Resource Management allows you to build an organizational structure for resources based on your business requirements. You can use resource directories, folders, accounts, and resource groups to hierarchically organize and manage resources. For more information, see [What is Resource Management?](https://help.aliyun.com/document_detail/94475.html)
|
|
9502
|
+
*
|
|
9503
|
+
* @param request ModifyDBInstanceResourceGroupRequest
|
|
9504
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9505
|
+
* @return ModifyDBInstanceResourceGroupResponse
|
|
8677
9506
|
*/
|
|
8678
9507
|
modifyDBInstanceResourceGroupWithOptions(request: ModifyDBInstanceResourceGroupRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceResourceGroupResponse>;
|
|
8679
9508
|
/**
|
|
8680
|
-
|
|
8681
|
-
|
|
8682
|
-
|
|
8683
|
-
|
|
9509
|
+
* @summary Moves an AnalyticDB for PostgreSQL instance to a resource group.
|
|
9510
|
+
*
|
|
9511
|
+
* @description Resource Management allows you to build an organizational structure for resources based on your business requirements. You can use resource directories, folders, accounts, and resource groups to hierarchically organize and manage resources. For more information, see [What is Resource Management?](https://help.aliyun.com/document_detail/94475.html)
|
|
9512
|
+
*
|
|
9513
|
+
* @param request ModifyDBInstanceResourceGroupRequest
|
|
9514
|
+
* @return ModifyDBInstanceResourceGroupResponse
|
|
8684
9515
|
*/
|
|
8685
9516
|
modifyDBInstanceResourceGroup(request: ModifyDBInstanceResourceGroupRequest): Promise<ModifyDBInstanceResourceGroupResponse>;
|
|
9517
|
+
/**
|
|
9518
|
+
* @summary Enables, disables, or updates SSL encryption for an AnalyticDB for PostgreSQL instance.
|
|
9519
|
+
*
|
|
9520
|
+
* @param request ModifyDBInstanceSSLRequest
|
|
9521
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9522
|
+
* @return ModifyDBInstanceSSLResponse
|
|
9523
|
+
*/
|
|
8686
9524
|
modifyDBInstanceSSLWithOptions(request: ModifyDBInstanceSSLRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceSSLResponse>;
|
|
9525
|
+
/**
|
|
9526
|
+
* @summary Enables, disables, or updates SSL encryption for an AnalyticDB for PostgreSQL instance.
|
|
9527
|
+
*
|
|
9528
|
+
* @param request ModifyDBInstanceSSLRequest
|
|
9529
|
+
* @return ModifyDBInstanceSSLResponse
|
|
9530
|
+
*/
|
|
8687
9531
|
modifyDBInstanceSSL(request: ModifyDBInstanceSSLRequest): Promise<ModifyDBInstanceSSLResponse>;
|
|
9532
|
+
/**
|
|
9533
|
+
* @summary 修改master规格
|
|
9534
|
+
*
|
|
9535
|
+
* @param request ModifyMasterSpecRequest
|
|
9536
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9537
|
+
* @return ModifyMasterSpecResponse
|
|
9538
|
+
*/
|
|
8688
9539
|
modifyMasterSpecWithOptions(request: ModifyMasterSpecRequest, runtime: $Util.RuntimeOptions): Promise<ModifyMasterSpecResponse>;
|
|
9540
|
+
/**
|
|
9541
|
+
* @summary 修改master规格
|
|
9542
|
+
*
|
|
9543
|
+
* @param request ModifyMasterSpecRequest
|
|
9544
|
+
* @return ModifyMasterSpecResponse
|
|
9545
|
+
*/
|
|
8689
9546
|
modifyMasterSpec(request: ModifyMasterSpecRequest): Promise<ModifyMasterSpecResponse>;
|
|
8690
9547
|
/**
|
|
8691
|
-
|
|
8692
|
-
|
|
8693
|
-
|
|
8694
|
-
|
|
8695
|
-
|
|
8696
|
-
|
|
8697
|
-
|
|
9548
|
+
* @summary Modifies the configuration parameters of an AnalyticDB for PostgreSQL instance.
|
|
9549
|
+
*
|
|
9550
|
+
* @description This operation can be called to modify parameters of an AnalyticDB for PostgreSQL instance in elastic storage mode or Serverless mode.
|
|
9551
|
+
* ## Limits
|
|
9552
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered and may affect your business. We recommend that you take note of the limit when you call this operation.
|
|
9553
|
+
*
|
|
9554
|
+
* @param request ModifyParametersRequest
|
|
9555
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9556
|
+
* @return ModifyParametersResponse
|
|
8698
9557
|
*/
|
|
8699
9558
|
modifyParametersWithOptions(request: ModifyParametersRequest, runtime: $Util.RuntimeOptions): Promise<ModifyParametersResponse>;
|
|
8700
9559
|
/**
|
|
8701
|
-
|
|
8702
|
-
|
|
8703
|
-
|
|
8704
|
-
|
|
8705
|
-
|
|
8706
|
-
|
|
9560
|
+
* @summary Modifies the configuration parameters of an AnalyticDB for PostgreSQL instance.
|
|
9561
|
+
*
|
|
9562
|
+
* @description This operation can be called to modify parameters of an AnalyticDB for PostgreSQL instance in elastic storage mode or Serverless mode.
|
|
9563
|
+
* ## Limits
|
|
9564
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered and may affect your business. We recommend that you take note of the limit when you call this operation.
|
|
9565
|
+
*
|
|
9566
|
+
* @param request ModifyParametersRequest
|
|
9567
|
+
* @return ModifyParametersResponse
|
|
8707
9568
|
*/
|
|
8708
9569
|
modifyParameters(request: ModifyParametersRequest): Promise<ModifyParametersResponse>;
|
|
9570
|
+
/**
|
|
9571
|
+
* @summary Enables or disables the SQL Explorer feature for an AnalyticDB for PostgreSQL instance.
|
|
9572
|
+
*
|
|
9573
|
+
* @param request ModifySQLCollectorPolicyRequest
|
|
9574
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9575
|
+
* @return ModifySQLCollectorPolicyResponse
|
|
9576
|
+
*/
|
|
8709
9577
|
modifySQLCollectorPolicyWithOptions(request: ModifySQLCollectorPolicyRequest, runtime: $Util.RuntimeOptions): Promise<ModifySQLCollectorPolicyResponse>;
|
|
9578
|
+
/**
|
|
9579
|
+
* @summary Enables or disables the SQL Explorer feature for an AnalyticDB for PostgreSQL instance.
|
|
9580
|
+
*
|
|
9581
|
+
* @param request ModifySQLCollectorPolicyRequest
|
|
9582
|
+
* @return ModifySQLCollectorPolicyResponse
|
|
9583
|
+
*/
|
|
8710
9584
|
modifySQLCollectorPolicy(request: ModifySQLCollectorPolicyRequest): Promise<ModifySQLCollectorPolicyResponse>;
|
|
8711
9585
|
/**
|
|
8712
|
-
|
|
8713
|
-
|
|
8714
|
-
|
|
8715
|
-
|
|
8716
|
-
|
|
8717
|
-
|
|
8718
|
-
|
|
9586
|
+
* @summary Modifies the IP address whitelist of an AnalyticDB for PostgreSQL instance.
|
|
9587
|
+
*
|
|
9588
|
+
* @description To ensure the security and stability of AnalyticDB for PostgreSQL instances, the system denies all external IP addresses to access AnalyticDB for PostgreSQL instances by default. Before you can use an AnalyticDB for PostgreSQL instance, you must add the IP address or CIDR block of your client to the IP address whitelist of the instance.
|
|
9589
|
+
* ## Limits
|
|
9590
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9591
|
+
*
|
|
9592
|
+
* @param request ModifySecurityIpsRequest
|
|
9593
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9594
|
+
* @return ModifySecurityIpsResponse
|
|
8719
9595
|
*/
|
|
8720
9596
|
modifySecurityIpsWithOptions(request: ModifySecurityIpsRequest, runtime: $Util.RuntimeOptions): Promise<ModifySecurityIpsResponse>;
|
|
8721
9597
|
/**
|
|
8722
|
-
|
|
8723
|
-
|
|
8724
|
-
|
|
8725
|
-
|
|
8726
|
-
|
|
8727
|
-
|
|
9598
|
+
* @summary Modifies the IP address whitelist of an AnalyticDB for PostgreSQL instance.
|
|
9599
|
+
*
|
|
9600
|
+
* @description To ensure the security and stability of AnalyticDB for PostgreSQL instances, the system denies all external IP addresses to access AnalyticDB for PostgreSQL instances by default. Before you can use an AnalyticDB for PostgreSQL instance, you must add the IP address or CIDR block of your client to the IP address whitelist of the instance.
|
|
9601
|
+
* ## Limits
|
|
9602
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9603
|
+
*
|
|
9604
|
+
* @param request ModifySecurityIpsRequest
|
|
9605
|
+
* @return ModifySecurityIpsResponse
|
|
8728
9606
|
*/
|
|
8729
9607
|
modifySecurityIps(request: ModifySecurityIpsRequest): Promise<ModifySecurityIpsResponse>;
|
|
9608
|
+
/**
|
|
9609
|
+
* @summary Modifies the vector engine optimization configuration of an AnalyticDB for PostgreSQL instance.
|
|
9610
|
+
*
|
|
9611
|
+
* @param request ModifyVectorConfigurationRequest
|
|
9612
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9613
|
+
* @return ModifyVectorConfigurationResponse
|
|
9614
|
+
*/
|
|
8730
9615
|
modifyVectorConfigurationWithOptions(request: ModifyVectorConfigurationRequest, runtime: $Util.RuntimeOptions): Promise<ModifyVectorConfigurationResponse>;
|
|
9616
|
+
/**
|
|
9617
|
+
* @summary Modifies the vector engine optimization configuration of an AnalyticDB for PostgreSQL instance.
|
|
9618
|
+
*
|
|
9619
|
+
* @param request ModifyVectorConfigurationRequest
|
|
9620
|
+
* @return ModifyVectorConfigurationResponse
|
|
9621
|
+
*/
|
|
8731
9622
|
modifyVectorConfiguration(request: ModifyVectorConfigurationRequest): Promise<ModifyVectorConfigurationResponse>;
|
|
8732
9623
|
/**
|
|
8733
|
-
|
|
8734
|
-
|
|
8735
|
-
|
|
8736
|
-
|
|
8737
|
-
|
|
8738
|
-
|
|
8739
|
-
|
|
8740
|
-
|
|
8741
|
-
|
|
9624
|
+
* @summary Pauses an AnalyticDB for PostgreSQL instance.
|
|
9625
|
+
*
|
|
9626
|
+
* @description You can call this operation to pause an AnalyticDB for PostgreSQL instance that is in the **Running** state.
|
|
9627
|
+
* This operation is available only for AnalyticDB for PostgreSQL instances in Serverless mode that run V1.0.2.1 or later. For more information about how to view and update the minor engine version of an instance, see [View the minor engine version](https://help.aliyun.com/document_detail/277424.html) and [Update the minor engine version](https://help.aliyun.com/document_detail/139271.html).
|
|
9628
|
+
* > Before you call this operation, make sure that you are familiar with the billing methods and pricing of AnalyticDB for PostgreSQL instances. For more information, see [Billing methods](https://help.aliyun.com/document_detail/35406.html) and [AnalyticDB for PostgreSQL pricing](https://www.alibabacloud.com/zh/product/hybriddb-postgresql/pricing).
|
|
9629
|
+
* ## Limits
|
|
9630
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9631
|
+
*
|
|
9632
|
+
* @param request PauseInstanceRequest
|
|
9633
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9634
|
+
* @return PauseInstanceResponse
|
|
8742
9635
|
*/
|
|
8743
9636
|
pauseInstanceWithOptions(request: PauseInstanceRequest, runtime: $Util.RuntimeOptions): Promise<PauseInstanceResponse>;
|
|
8744
9637
|
/**
|
|
8745
|
-
|
|
8746
|
-
|
|
8747
|
-
|
|
8748
|
-
|
|
8749
|
-
|
|
8750
|
-
|
|
8751
|
-
|
|
8752
|
-
|
|
9638
|
+
* @summary Pauses an AnalyticDB for PostgreSQL instance.
|
|
9639
|
+
*
|
|
9640
|
+
* @description You can call this operation to pause an AnalyticDB for PostgreSQL instance that is in the **Running** state.
|
|
9641
|
+
* This operation is available only for AnalyticDB for PostgreSQL instances in Serverless mode that run V1.0.2.1 or later. For more information about how to view and update the minor engine version of an instance, see [View the minor engine version](https://help.aliyun.com/document_detail/277424.html) and [Update the minor engine version](https://help.aliyun.com/document_detail/139271.html).
|
|
9642
|
+
* > Before you call this operation, make sure that you are familiar with the billing methods and pricing of AnalyticDB for PostgreSQL instances. For more information, see [Billing methods](https://help.aliyun.com/document_detail/35406.html) and [AnalyticDB for PostgreSQL pricing](https://www.alibabacloud.com/zh/product/hybriddb-postgresql/pricing).
|
|
9643
|
+
* ## Limits
|
|
9644
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9645
|
+
*
|
|
9646
|
+
* @param request PauseInstanceRequest
|
|
9647
|
+
* @return PauseInstanceResponse
|
|
8753
9648
|
*/
|
|
8754
9649
|
pauseInstance(request: PauseInstanceRequest): Promise<PauseInstanceResponse>;
|
|
9650
|
+
/**
|
|
9651
|
+
* @summary 查询向量数据
|
|
9652
|
+
*
|
|
9653
|
+
* @param tmpReq QueryCollectionDataRequest
|
|
9654
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9655
|
+
* @return QueryCollectionDataResponse
|
|
9656
|
+
*/
|
|
8755
9657
|
queryCollectionDataWithOptions(tmpReq: QueryCollectionDataRequest, runtime: $Util.RuntimeOptions): Promise<QueryCollectionDataResponse>;
|
|
9658
|
+
/**
|
|
9659
|
+
* @summary 查询向量数据
|
|
9660
|
+
*
|
|
9661
|
+
* @param request QueryCollectionDataRequest
|
|
9662
|
+
* @return QueryCollectionDataResponse
|
|
9663
|
+
*/
|
|
8756
9664
|
queryCollectionData(request: QueryCollectionDataRequest): Promise<QueryCollectionDataResponse>;
|
|
9665
|
+
/**
|
|
9666
|
+
* @summary 查询
|
|
9667
|
+
*
|
|
9668
|
+
* @param tmpReq QueryContentRequest
|
|
9669
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9670
|
+
* @return QueryContentResponse
|
|
9671
|
+
*/
|
|
8757
9672
|
queryContentWithOptions(tmpReq: QueryContentRequest, runtime: $Util.RuntimeOptions): Promise<QueryContentResponse>;
|
|
9673
|
+
/**
|
|
9674
|
+
* @summary 查询
|
|
9675
|
+
*
|
|
9676
|
+
* @param request QueryContentRequest
|
|
9677
|
+
* @return QueryContentResponse
|
|
9678
|
+
*/
|
|
8758
9679
|
queryContent(request: QueryContentRequest): Promise<QueryContentResponse>;
|
|
8759
9680
|
queryContentAdvance(request: QueryContentAdvanceRequest, runtime: $Util.RuntimeOptions): Promise<QueryContentResponse>;
|
|
9681
|
+
/**
|
|
9682
|
+
* @summary Rebalances an AnalyticDB for PostgreSQL instance.
|
|
9683
|
+
*
|
|
9684
|
+
* @param request RebalanceDBInstanceRequest
|
|
9685
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9686
|
+
* @return RebalanceDBInstanceResponse
|
|
9687
|
+
*/
|
|
8760
9688
|
rebalanceDBInstanceWithOptions(request: RebalanceDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<RebalanceDBInstanceResponse>;
|
|
9689
|
+
/**
|
|
9690
|
+
* @summary Rebalances an AnalyticDB for PostgreSQL instance.
|
|
9691
|
+
*
|
|
9692
|
+
* @param request RebalanceDBInstanceRequest
|
|
9693
|
+
* @return RebalanceDBInstanceResponse
|
|
9694
|
+
*/
|
|
8761
9695
|
rebalanceDBInstance(request: RebalanceDBInstanceRequest): Promise<RebalanceDBInstanceResponse>;
|
|
9696
|
+
/**
|
|
9697
|
+
* @summary Releases the public endpoint of an AnalyticDB for PostgreSQL instance.
|
|
9698
|
+
*
|
|
9699
|
+
* @param request ReleaseInstancePublicConnectionRequest
|
|
9700
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9701
|
+
* @return ReleaseInstancePublicConnectionResponse
|
|
9702
|
+
*/
|
|
8762
9703
|
releaseInstancePublicConnectionWithOptions(request: ReleaseInstancePublicConnectionRequest, runtime: $Util.RuntimeOptions): Promise<ReleaseInstancePublicConnectionResponse>;
|
|
9704
|
+
/**
|
|
9705
|
+
* @summary Releases the public endpoint of an AnalyticDB for PostgreSQL instance.
|
|
9706
|
+
*
|
|
9707
|
+
* @param request ReleaseInstancePublicConnectionRequest
|
|
9708
|
+
* @return ReleaseInstancePublicConnectionResponse
|
|
9709
|
+
*/
|
|
8763
9710
|
releaseInstancePublicConnection(request: ReleaseInstancePublicConnectionRequest): Promise<ReleaseInstancePublicConnectionResponse>;
|
|
9711
|
+
/**
|
|
9712
|
+
* @summary Resets the password of a database account for an AnalyticDB for PostgreSQL instance.
|
|
9713
|
+
*
|
|
9714
|
+
* @param request ResetAccountPasswordRequest
|
|
9715
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9716
|
+
* @return ResetAccountPasswordResponse
|
|
9717
|
+
*/
|
|
8764
9718
|
resetAccountPasswordWithOptions(request: ResetAccountPasswordRequest, runtime: $Util.RuntimeOptions): Promise<ResetAccountPasswordResponse>;
|
|
9719
|
+
/**
|
|
9720
|
+
* @summary Resets the password of a database account for an AnalyticDB for PostgreSQL instance.
|
|
9721
|
+
*
|
|
9722
|
+
* @param request ResetAccountPasswordRequest
|
|
9723
|
+
* @return ResetAccountPasswordResponse
|
|
9724
|
+
*/
|
|
8765
9725
|
resetAccountPassword(request: ResetAccountPasswordRequest): Promise<ResetAccountPasswordResponse>;
|
|
9726
|
+
/**
|
|
9727
|
+
* @summary 重置IMV统计信息
|
|
9728
|
+
*
|
|
9729
|
+
* @param request ResetIMVMonitorDataRequest
|
|
9730
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9731
|
+
* @return ResetIMVMonitorDataResponse
|
|
9732
|
+
*/
|
|
8766
9733
|
resetIMVMonitorDataWithOptions(request: ResetIMVMonitorDataRequest, runtime: $Util.RuntimeOptions): Promise<ResetIMVMonitorDataResponse>;
|
|
9734
|
+
/**
|
|
9735
|
+
* @summary 重置IMV统计信息
|
|
9736
|
+
*
|
|
9737
|
+
* @param request ResetIMVMonitorDataRequest
|
|
9738
|
+
* @return ResetIMVMonitorDataResponse
|
|
9739
|
+
*/
|
|
8767
9740
|
resetIMVMonitorData(request: ResetIMVMonitorDataRequest): Promise<ResetIMVMonitorDataResponse>;
|
|
8768
9741
|
/**
|
|
8769
|
-
|
|
8770
|
-
|
|
8771
|
-
|
|
8772
|
-
|
|
8773
|
-
|
|
8774
|
-
|
|
8775
|
-
|
|
9742
|
+
* @summary Restarts an AnalyticDB for PostgreSQL instance.
|
|
9743
|
+
*
|
|
9744
|
+
* @description A restart takes about 3 to 30 minutes. During the restart, services are unavailable. We recommend that you restart the instance during off-peak hours. After the instance is restarted and enters the running state, you can access the instance.
|
|
9745
|
+
* ## Limit
|
|
9746
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered and may affect your business. We recommend that you take note of the limit when you call this operation.
|
|
9747
|
+
*
|
|
9748
|
+
* @param request RestartDBInstanceRequest
|
|
9749
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9750
|
+
* @return RestartDBInstanceResponse
|
|
8776
9751
|
*/
|
|
8777
9752
|
restartDBInstanceWithOptions(request: RestartDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<RestartDBInstanceResponse>;
|
|
8778
9753
|
/**
|
|
8779
|
-
|
|
8780
|
-
|
|
8781
|
-
|
|
8782
|
-
|
|
8783
|
-
|
|
8784
|
-
|
|
9754
|
+
* @summary Restarts an AnalyticDB for PostgreSQL instance.
|
|
9755
|
+
*
|
|
9756
|
+
* @description A restart takes about 3 to 30 minutes. During the restart, services are unavailable. We recommend that you restart the instance during off-peak hours. After the instance is restarted and enters the running state, you can access the instance.
|
|
9757
|
+
* ## Limit
|
|
9758
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered and may affect your business. We recommend that you take note of the limit when you call this operation.
|
|
9759
|
+
*
|
|
9760
|
+
* @param request RestartDBInstanceRequest
|
|
9761
|
+
* @return RestartDBInstanceResponse
|
|
8785
9762
|
*/
|
|
8786
9763
|
restartDBInstance(request: RestartDBInstanceRequest): Promise<RestartDBInstanceResponse>;
|
|
8787
9764
|
/**
|
|
8788
|
-
|
|
8789
|
-
|
|
8790
|
-
|
|
8791
|
-
|
|
8792
|
-
|
|
8793
|
-
|
|
8794
|
-
|
|
8795
|
-
|
|
8796
|
-
|
|
9765
|
+
* @summary Resumes an AnalyticDB for PostgreSQL instance.
|
|
9766
|
+
*
|
|
9767
|
+
* @description You can call this operation to resume an AnalyticDB for PostgreSQL instance that is in the **Paused** state.
|
|
9768
|
+
* This operation is available only for AnalyticDB for PostgreSQL instances in Serverless mode that run V1.0.2.1 or later. For more information about how to view and update the minor engine version of an instance, see [View the minor engine version](https://help.aliyun.com/document_detail/277424.html) and [Update the minor engine version](https://help.aliyun.com/document_detail/139271.html).
|
|
9769
|
+
* > Before you call this operation, make sure that you are familiar with the billing methods and pricing of AnalyticDB for PostgreSQL instances. For more information, see [Billing methods](https://help.aliyun.com/document_detail/35406.html) and [AnalyticDB for PostgreSQL pricing](https://www.alibabacloud.com/zh/product/hybriddb-postgresql/pricing).
|
|
9770
|
+
* ## Limits
|
|
9771
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9772
|
+
*
|
|
9773
|
+
* @param request ResumeInstanceRequest
|
|
9774
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9775
|
+
* @return ResumeInstanceResponse
|
|
8797
9776
|
*/
|
|
8798
9777
|
resumeInstanceWithOptions(request: ResumeInstanceRequest, runtime: $Util.RuntimeOptions): Promise<ResumeInstanceResponse>;
|
|
8799
9778
|
/**
|
|
8800
|
-
|
|
8801
|
-
|
|
8802
|
-
|
|
8803
|
-
|
|
8804
|
-
|
|
8805
|
-
|
|
8806
|
-
|
|
8807
|
-
|
|
9779
|
+
* @summary Resumes an AnalyticDB for PostgreSQL instance.
|
|
9780
|
+
*
|
|
9781
|
+
* @description You can call this operation to resume an AnalyticDB for PostgreSQL instance that is in the **Paused** state.
|
|
9782
|
+
* This operation is available only for AnalyticDB for PostgreSQL instances in Serverless mode that run V1.0.2.1 or later. For more information about how to view and update the minor engine version of an instance, see [View the minor engine version](https://help.aliyun.com/document_detail/277424.html) and [Update the minor engine version](https://help.aliyun.com/document_detail/139271.html).
|
|
9783
|
+
* > Before you call this operation, make sure that you are familiar with the billing methods and pricing of AnalyticDB for PostgreSQL instances. For more information, see [Billing methods](https://help.aliyun.com/document_detail/35406.html) and [AnalyticDB for PostgreSQL pricing](https://www.alibabacloud.com/zh/product/hybriddb-postgresql/pricing).
|
|
9784
|
+
* ## Limits
|
|
9785
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9786
|
+
*
|
|
9787
|
+
* @param request ResumeInstanceRequest
|
|
9788
|
+
* @return ResumeInstanceResponse
|
|
8808
9789
|
*/
|
|
8809
9790
|
resumeInstance(request: ResumeInstanceRequest): Promise<ResumeInstanceResponse>;
|
|
8810
9791
|
/**
|
|
8811
|
-
|
|
8812
|
-
|
|
8813
|
-
|
|
8814
|
-
|
|
8815
|
-
|
|
8816
|
-
|
|
8817
|
-
|
|
9792
|
+
* @summary Enables or disables a plan for an AnalyticDB for PostgreSQL instance.
|
|
9793
|
+
*
|
|
9794
|
+
* @description You can call this operation to enable or disable a specified plan. The plan management feature is supported only for AnalyticDB for PostgreSQL instances in Serverless mode.
|
|
9795
|
+
* ## Limits
|
|
9796
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9797
|
+
*
|
|
9798
|
+
* @param request SetDBInstancePlanStatusRequest
|
|
9799
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9800
|
+
* @return SetDBInstancePlanStatusResponse
|
|
8818
9801
|
*/
|
|
8819
9802
|
setDBInstancePlanStatusWithOptions(request: SetDBInstancePlanStatusRequest, runtime: $Util.RuntimeOptions): Promise<SetDBInstancePlanStatusResponse>;
|
|
8820
9803
|
/**
|
|
8821
|
-
|
|
8822
|
-
|
|
8823
|
-
|
|
8824
|
-
|
|
8825
|
-
|
|
8826
|
-
|
|
9804
|
+
* @summary Enables or disables a plan for an AnalyticDB for PostgreSQL instance.
|
|
9805
|
+
*
|
|
9806
|
+
* @description You can call this operation to enable or disable a specified plan. The plan management feature is supported only for AnalyticDB for PostgreSQL instances in Serverless mode.
|
|
9807
|
+
* ## Limits
|
|
9808
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9809
|
+
*
|
|
9810
|
+
* @param request SetDBInstancePlanStatusRequest
|
|
9811
|
+
* @return SetDBInstancePlanStatusResponse
|
|
8827
9812
|
*/
|
|
8828
9813
|
setDBInstancePlanStatus(request: SetDBInstancePlanStatusRequest): Promise<SetDBInstancePlanStatusResponse>;
|
|
8829
9814
|
/**
|
|
8830
|
-
|
|
8831
|
-
|
|
8832
|
-
|
|
8833
|
-
|
|
8834
|
-
|
|
8835
|
-
|
|
8836
|
-
|
|
9815
|
+
* @summary Enables or disables data sharing for an AnalyticDB for PostgreSQL instance.
|
|
9816
|
+
*
|
|
9817
|
+
* @description This operation is called to enable or disable data sharing for an AnalyticDB for PostgreSQL instance in Serverless mode.
|
|
9818
|
+
* ## Limits
|
|
9819
|
+
* You can call this operation up to 1,000 times per second per account. Requests that exceed this limit are dropped and you will experience service interruptions. We recommend that you take note of this limit when you call this operation.
|
|
9820
|
+
*
|
|
9821
|
+
* @param tmpReq SetDataShareInstanceRequest
|
|
9822
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9823
|
+
* @return SetDataShareInstanceResponse
|
|
8837
9824
|
*/
|
|
8838
9825
|
setDataShareInstanceWithOptions(tmpReq: SetDataShareInstanceRequest, runtime: $Util.RuntimeOptions): Promise<SetDataShareInstanceResponse>;
|
|
8839
9826
|
/**
|
|
8840
|
-
|
|
8841
|
-
|
|
8842
|
-
|
|
8843
|
-
|
|
8844
|
-
|
|
8845
|
-
|
|
9827
|
+
* @summary Enables or disables data sharing for an AnalyticDB for PostgreSQL instance.
|
|
9828
|
+
*
|
|
9829
|
+
* @description This operation is called to enable or disable data sharing for an AnalyticDB for PostgreSQL instance in Serverless mode.
|
|
9830
|
+
* ## Limits
|
|
9831
|
+
* You can call this operation up to 1,000 times per second per account. Requests that exceed this limit are dropped and you will experience service interruptions. We recommend that you take note of this limit when you call this operation.
|
|
9832
|
+
*
|
|
9833
|
+
* @param request SetDataShareInstanceRequest
|
|
9834
|
+
* @return SetDataShareInstanceResponse
|
|
8846
9835
|
*/
|
|
8847
9836
|
setDataShareInstance(request: SetDataShareInstanceRequest): Promise<SetDataShareInstanceResponse>;
|
|
9837
|
+
/**
|
|
9838
|
+
* @summary Switches the internal or public endpoint for an AnalyticDB for PostgreSQL instance.
|
|
9839
|
+
*
|
|
9840
|
+
* @param request SwitchDBInstanceNetTypeRequest
|
|
9841
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9842
|
+
* @return SwitchDBInstanceNetTypeResponse
|
|
9843
|
+
*/
|
|
8848
9844
|
switchDBInstanceNetTypeWithOptions(request: SwitchDBInstanceNetTypeRequest, runtime: $Util.RuntimeOptions): Promise<SwitchDBInstanceNetTypeResponse>;
|
|
9845
|
+
/**
|
|
9846
|
+
* @summary Switches the internal or public endpoint for an AnalyticDB for PostgreSQL instance.
|
|
9847
|
+
*
|
|
9848
|
+
* @param request SwitchDBInstanceNetTypeRequest
|
|
9849
|
+
* @return SwitchDBInstanceNetTypeResponse
|
|
9850
|
+
*/
|
|
8849
9851
|
switchDBInstanceNetType(request: SwitchDBInstanceNetTypeRequest): Promise<SwitchDBInstanceNetTypeResponse>;
|
|
9852
|
+
/**
|
|
9853
|
+
* @summary Creates and adds tags to AnalyticDB for PostgreSQL instances.
|
|
9854
|
+
*
|
|
9855
|
+
* @param request TagResourcesRequest
|
|
9856
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9857
|
+
* @return TagResourcesResponse
|
|
9858
|
+
*/
|
|
8850
9859
|
tagResourcesWithOptions(request: TagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<TagResourcesResponse>;
|
|
9860
|
+
/**
|
|
9861
|
+
* @summary Creates and adds tags to AnalyticDB for PostgreSQL instances.
|
|
9862
|
+
*
|
|
9863
|
+
* @param request TagResourcesRequest
|
|
9864
|
+
* @return TagResourcesResponse
|
|
9865
|
+
*/
|
|
8851
9866
|
tagResources(request: TagResourcesRequest): Promise<TagResourcesResponse>;
|
|
8852
9867
|
/**
|
|
8853
|
-
|
|
8854
|
-
|
|
8855
|
-
|
|
8856
|
-
|
|
8857
|
-
|
|
8858
|
-
|
|
8859
|
-
|
|
9868
|
+
* @summary Releases a sample dataset from an AnalyticDB for PostgreSQL instance.
|
|
9869
|
+
*
|
|
9870
|
+
* @description You can call this operation to release a sample dataset from an AnalyticDB for PostgreSQL instance. You must have already loaded the sample dataset.
|
|
9871
|
+
* ## Limits
|
|
9872
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9873
|
+
*
|
|
9874
|
+
* @param request UnloadSampleDataRequest
|
|
9875
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9876
|
+
* @return UnloadSampleDataResponse
|
|
8860
9877
|
*/
|
|
8861
9878
|
unloadSampleDataWithOptions(request: UnloadSampleDataRequest, runtime: $Util.RuntimeOptions): Promise<UnloadSampleDataResponse>;
|
|
8862
9879
|
/**
|
|
8863
|
-
|
|
8864
|
-
|
|
8865
|
-
|
|
8866
|
-
|
|
8867
|
-
|
|
8868
|
-
|
|
9880
|
+
* @summary Releases a sample dataset from an AnalyticDB for PostgreSQL instance.
|
|
9881
|
+
*
|
|
9882
|
+
* @description You can call this operation to release a sample dataset from an AnalyticDB for PostgreSQL instance. You must have already loaded the sample dataset.
|
|
9883
|
+
* ## Limits
|
|
9884
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9885
|
+
*
|
|
9886
|
+
* @param request UnloadSampleDataRequest
|
|
9887
|
+
* @return UnloadSampleDataResponse
|
|
8869
9888
|
*/
|
|
8870
9889
|
unloadSampleData(request: UnloadSampleDataRequest): Promise<UnloadSampleDataResponse>;
|
|
9890
|
+
/**
|
|
9891
|
+
* @summary Removes tags from AnalyticDB for PostgreSQL instances. If the tags that you remove are not added to other instances, the tags are automatically deleted.
|
|
9892
|
+
*
|
|
9893
|
+
* @param request UntagResourcesRequest
|
|
9894
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9895
|
+
* @return UntagResourcesResponse
|
|
9896
|
+
*/
|
|
8871
9897
|
untagResourcesWithOptions(request: UntagResourcesRequest, runtime: $Util.RuntimeOptions): Promise<UntagResourcesResponse>;
|
|
9898
|
+
/**
|
|
9899
|
+
* @summary Removes tags from AnalyticDB for PostgreSQL instances. If the tags that you remove are not added to other instances, the tags are automatically deleted.
|
|
9900
|
+
*
|
|
9901
|
+
* @param request UntagResourcesRequest
|
|
9902
|
+
* @return UntagResourcesResponse
|
|
9903
|
+
*/
|
|
8872
9904
|
untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
|
|
9905
|
+
/**
|
|
9906
|
+
* @summary 更新Collection Data的Metadata数据
|
|
9907
|
+
*
|
|
9908
|
+
* @param tmpReq UpdateCollectionDataMetadataRequest
|
|
9909
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9910
|
+
* @return UpdateCollectionDataMetadataResponse
|
|
9911
|
+
*/
|
|
8873
9912
|
updateCollectionDataMetadataWithOptions(tmpReq: UpdateCollectionDataMetadataRequest, runtime: $Util.RuntimeOptions): Promise<UpdateCollectionDataMetadataResponse>;
|
|
9913
|
+
/**
|
|
9914
|
+
* @summary 更新Collection Data的Metadata数据
|
|
9915
|
+
*
|
|
9916
|
+
* @param request UpdateCollectionDataMetadataRequest
|
|
9917
|
+
* @return UpdateCollectionDataMetadataResponse
|
|
9918
|
+
*/
|
|
8874
9919
|
updateCollectionDataMetadata(request: UpdateCollectionDataMetadataRequest): Promise<UpdateCollectionDataMetadataResponse>;
|
|
8875
9920
|
/**
|
|
8876
|
-
|
|
8877
|
-
|
|
8878
|
-
|
|
8879
|
-
|
|
8880
|
-
|
|
8881
|
-
|
|
8882
|
-
|
|
9921
|
+
* @summary Modifies a plan for an AnalyticDB for PostgreSQL instance.
|
|
9922
|
+
*
|
|
9923
|
+
* @description You can call this operation to modify a plan for an AnalyticDB for PostgreSQL instance in Serverless mode. For example, you can modify a plan for periodically pausing and resuming an instance or scaling an instance.
|
|
9924
|
+
* ## Limits
|
|
9925
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9926
|
+
*
|
|
9927
|
+
* @param request UpdateDBInstancePlanRequest
|
|
9928
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9929
|
+
* @return UpdateDBInstancePlanResponse
|
|
8883
9930
|
*/
|
|
8884
9931
|
updateDBInstancePlanWithOptions(request: UpdateDBInstancePlanRequest, runtime: $Util.RuntimeOptions): Promise<UpdateDBInstancePlanResponse>;
|
|
8885
9932
|
/**
|
|
8886
|
-
|
|
8887
|
-
|
|
8888
|
-
|
|
8889
|
-
|
|
8890
|
-
|
|
8891
|
-
|
|
9933
|
+
* @summary Modifies a plan for an AnalyticDB for PostgreSQL instance.
|
|
9934
|
+
*
|
|
9935
|
+
* @description You can call this operation to modify a plan for an AnalyticDB for PostgreSQL instance in Serverless mode. For example, you can modify a plan for periodically pausing and resuming an instance or scaling an instance.
|
|
9936
|
+
* ## Limits
|
|
9937
|
+
* You can call this operation up to 1,000 times per second per account. If the number of the calls per second exceeds the limit, throttling is triggered. As a result, your business may be affected. We recommend that you take note of the limit when you call this operation.
|
|
9938
|
+
*
|
|
9939
|
+
* @param request UpdateDBInstancePlanRequest
|
|
9940
|
+
* @return UpdateDBInstancePlanResponse
|
|
8892
9941
|
*/
|
|
8893
9942
|
updateDBInstancePlan(request: UpdateDBInstancePlanRequest): Promise<UpdateDBInstancePlanResponse>;
|
|
8894
9943
|
/**
|
|
8895
|
-
|
|
8896
|
-
|
|
8897
|
-
|
|
8898
|
-
|
|
8899
|
-
|
|
8900
|
-
|
|
9944
|
+
* @summary Changes the configurations of an AnalyticDB for PostgreSQL instance.
|
|
9945
|
+
*
|
|
9946
|
+
* @description This operation is not available for instances in reserved storage mode.
|
|
9947
|
+
* Before you call this operation, make sure that you are familiar with the billing of AnalyticDB for PostgreSQL. For more information, see [Billing methods](https://help.aliyun.com/document_detail/35406.html) and [AnalyticDB for PostgreSQL pricing](https://www.alibabacloud.com/zh/product/hybriddb-postgresql/pricing).
|
|
9948
|
+
*
|
|
9949
|
+
* @param request UpgradeDBInstanceRequest
|
|
9950
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9951
|
+
* @return UpgradeDBInstanceResponse
|
|
8901
9952
|
*/
|
|
8902
9953
|
upgradeDBInstanceWithOptions(request: UpgradeDBInstanceRequest, runtime: $Util.RuntimeOptions): Promise<UpgradeDBInstanceResponse>;
|
|
8903
9954
|
/**
|
|
8904
|
-
|
|
8905
|
-
|
|
8906
|
-
|
|
8907
|
-
|
|
8908
|
-
|
|
9955
|
+
* @summary Changes the configurations of an AnalyticDB for PostgreSQL instance.
|
|
9956
|
+
*
|
|
9957
|
+
* @description This operation is not available for instances in reserved storage mode.
|
|
9958
|
+
* Before you call this operation, make sure that you are familiar with the billing of AnalyticDB for PostgreSQL. For more information, see [Billing methods](https://help.aliyun.com/document_detail/35406.html) and [AnalyticDB for PostgreSQL pricing](https://www.alibabacloud.com/zh/product/hybriddb-postgresql/pricing).
|
|
9959
|
+
*
|
|
9960
|
+
* @param request UpgradeDBInstanceRequest
|
|
9961
|
+
* @return UpgradeDBInstanceResponse
|
|
8909
9962
|
*/
|
|
8910
9963
|
upgradeDBInstance(request: UpgradeDBInstanceRequest): Promise<UpgradeDBInstanceResponse>;
|
|
9964
|
+
/**
|
|
9965
|
+
* @summary Upgrades the minor version of an AnalyticDB for PostgreSQL instance.
|
|
9966
|
+
*
|
|
9967
|
+
* @param request UpgradeDBVersionRequest
|
|
9968
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9969
|
+
* @return UpgradeDBVersionResponse
|
|
9970
|
+
*/
|
|
8911
9971
|
upgradeDBVersionWithOptions(request: UpgradeDBVersionRequest, runtime: $Util.RuntimeOptions): Promise<UpgradeDBVersionResponse>;
|
|
9972
|
+
/**
|
|
9973
|
+
* @summary Upgrades the minor version of an AnalyticDB for PostgreSQL instance.
|
|
9974
|
+
*
|
|
9975
|
+
* @param request UpgradeDBVersionRequest
|
|
9976
|
+
* @return UpgradeDBVersionResponse
|
|
9977
|
+
*/
|
|
8912
9978
|
upgradeDBVersion(request: UpgradeDBVersionRequest): Promise<UpgradeDBVersionResponse>;
|
|
9979
|
+
/**
|
|
9980
|
+
* @summary 异步上传文档
|
|
9981
|
+
*
|
|
9982
|
+
* @param tmpReq UploadDocumentAsyncRequest
|
|
9983
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
9984
|
+
* @return UploadDocumentAsyncResponse
|
|
9985
|
+
*/
|
|
8913
9986
|
uploadDocumentAsyncWithOptions(tmpReq: UploadDocumentAsyncRequest, runtime: $Util.RuntimeOptions): Promise<UploadDocumentAsyncResponse>;
|
|
9987
|
+
/**
|
|
9988
|
+
* @summary 异步上传文档
|
|
9989
|
+
*
|
|
9990
|
+
* @param request UploadDocumentAsyncRequest
|
|
9991
|
+
* @return UploadDocumentAsyncResponse
|
|
9992
|
+
*/
|
|
8914
9993
|
uploadDocumentAsync(request: UploadDocumentAsyncRequest): Promise<UploadDocumentAsyncResponse>;
|
|
8915
9994
|
uploadDocumentAsyncAdvance(request: UploadDocumentAsyncAdvanceRequest, runtime: $Util.RuntimeOptions): Promise<UploadDocumentAsyncResponse>;
|
|
9995
|
+
/**
|
|
9996
|
+
* @summary 上传切分后的文本
|
|
9997
|
+
*
|
|
9998
|
+
* @param tmpReq UpsertChunksRequest
|
|
9999
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
10000
|
+
* @return UpsertChunksResponse
|
|
10001
|
+
*/
|
|
8916
10002
|
upsertChunksWithOptions(tmpReq: UpsertChunksRequest, runtime: $Util.RuntimeOptions): Promise<UpsertChunksResponse>;
|
|
10003
|
+
/**
|
|
10004
|
+
* @summary 上传切分后的文本
|
|
10005
|
+
*
|
|
10006
|
+
* @param request UpsertChunksRequest
|
|
10007
|
+
* @return UpsertChunksResponse
|
|
10008
|
+
*/
|
|
8917
10009
|
upsertChunks(request: UpsertChunksRequest): Promise<UpsertChunksResponse>;
|
|
10010
|
+
/**
|
|
10011
|
+
* @summary Uploads vector data to a vector collection.
|
|
10012
|
+
*
|
|
10013
|
+
* @param tmpReq UpsertCollectionDataRequest
|
|
10014
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
10015
|
+
* @return UpsertCollectionDataResponse
|
|
10016
|
+
*/
|
|
8918
10017
|
upsertCollectionDataWithOptions(tmpReq: UpsertCollectionDataRequest, runtime: $Util.RuntimeOptions): Promise<UpsertCollectionDataResponse>;
|
|
10018
|
+
/**
|
|
10019
|
+
* @summary Uploads vector data to a vector collection.
|
|
10020
|
+
*
|
|
10021
|
+
* @param request UpsertCollectionDataRequest
|
|
10022
|
+
* @return UpsertCollectionDataResponse
|
|
10023
|
+
*/
|
|
8919
10024
|
upsertCollectionData(request: UpsertCollectionDataRequest): Promise<UpsertCollectionDataResponse>;
|
|
10025
|
+
/**
|
|
10026
|
+
* @summary 上传向量数据异步接口
|
|
10027
|
+
*
|
|
10028
|
+
* @param request UpsertCollectionDataAsyncRequest
|
|
10029
|
+
* @param runtime runtime options for this request RuntimeOptions
|
|
10030
|
+
* @return UpsertCollectionDataAsyncResponse
|
|
10031
|
+
*/
|
|
8920
10032
|
upsertCollectionDataAsyncWithOptions(request: UpsertCollectionDataAsyncRequest, runtime: $Util.RuntimeOptions): Promise<UpsertCollectionDataAsyncResponse>;
|
|
10033
|
+
/**
|
|
10034
|
+
* @summary 上传向量数据异步接口
|
|
10035
|
+
*
|
|
10036
|
+
* @param request UpsertCollectionDataAsyncRequest
|
|
10037
|
+
* @return UpsertCollectionDataAsyncResponse
|
|
10038
|
+
*/
|
|
8921
10039
|
upsertCollectionDataAsync(request: UpsertCollectionDataAsyncRequest): Promise<UpsertCollectionDataAsyncResponse>;
|
|
8922
10040
|
upsertCollectionDataAsyncAdvance(request: UpsertCollectionDataAsyncAdvanceRequest, runtime: $Util.RuntimeOptions): Promise<UpsertCollectionDataAsyncResponse>;
|
|
8923
10041
|
}
|