@alicloud/rds20140815 2.3.4 → 2.3.6
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 +244 -2
- package/dist/client.js +543 -2
- package/dist/client.js.map +1 -1
- package/package.json +1 -1
- package/src/client.ts +688 -2
package/dist/client.d.ts
CHANGED
|
@@ -1952,6 +1952,56 @@ export declare class CreateParameterGroupResponse extends $tea.Model {
|
|
|
1952
1952
|
[key: string]: any;
|
|
1953
1953
|
});
|
|
1954
1954
|
}
|
|
1955
|
+
export declare class CreatePostgresExtensionsRequest extends $tea.Model {
|
|
1956
|
+
accountName?: string;
|
|
1957
|
+
clientToken?: string;
|
|
1958
|
+
DBInstanceId?: string;
|
|
1959
|
+
DBNames?: string;
|
|
1960
|
+
extensions?: string;
|
|
1961
|
+
ownerAccount?: string;
|
|
1962
|
+
ownerId?: number;
|
|
1963
|
+
resourceGroupId?: string;
|
|
1964
|
+
resourceOwnerAccount?: string;
|
|
1965
|
+
resourceOwnerId?: number;
|
|
1966
|
+
sourceDatabase?: string;
|
|
1967
|
+
static names(): {
|
|
1968
|
+
[key: string]: string;
|
|
1969
|
+
};
|
|
1970
|
+
static types(): {
|
|
1971
|
+
[key: string]: any;
|
|
1972
|
+
};
|
|
1973
|
+
constructor(map?: {
|
|
1974
|
+
[key: string]: any;
|
|
1975
|
+
});
|
|
1976
|
+
}
|
|
1977
|
+
export declare class CreatePostgresExtensionsResponseBody extends $tea.Model {
|
|
1978
|
+
requestId?: string;
|
|
1979
|
+
static names(): {
|
|
1980
|
+
[key: string]: string;
|
|
1981
|
+
};
|
|
1982
|
+
static types(): {
|
|
1983
|
+
[key: string]: any;
|
|
1984
|
+
};
|
|
1985
|
+
constructor(map?: {
|
|
1986
|
+
[key: string]: any;
|
|
1987
|
+
});
|
|
1988
|
+
}
|
|
1989
|
+
export declare class CreatePostgresExtensionsResponse extends $tea.Model {
|
|
1990
|
+
headers: {
|
|
1991
|
+
[key: string]: string;
|
|
1992
|
+
};
|
|
1993
|
+
statusCode: number;
|
|
1994
|
+
body: CreatePostgresExtensionsResponseBody;
|
|
1995
|
+
static names(): {
|
|
1996
|
+
[key: string]: string;
|
|
1997
|
+
};
|
|
1998
|
+
static types(): {
|
|
1999
|
+
[key: string]: any;
|
|
2000
|
+
};
|
|
2001
|
+
constructor(map?: {
|
|
2002
|
+
[key: string]: any;
|
|
2003
|
+
});
|
|
2004
|
+
}
|
|
1955
2005
|
export declare class CreateReadOnlyDBInstanceRequest extends $tea.Model {
|
|
1956
2006
|
autoPay?: boolean;
|
|
1957
2007
|
autoRenew?: string;
|
|
@@ -2731,6 +2781,54 @@ export declare class DeleteParameterGroupResponse extends $tea.Model {
|
|
|
2731
2781
|
[key: string]: any;
|
|
2732
2782
|
});
|
|
2733
2783
|
}
|
|
2784
|
+
export declare class DeletePostgresExtensionsRequest extends $tea.Model {
|
|
2785
|
+
clientToken?: string;
|
|
2786
|
+
DBInstanceId?: string;
|
|
2787
|
+
DBNames?: string;
|
|
2788
|
+
extensions?: string;
|
|
2789
|
+
ownerAccount?: string;
|
|
2790
|
+
ownerId?: number;
|
|
2791
|
+
resourceGroupId?: string;
|
|
2792
|
+
resourceOwnerAccount?: string;
|
|
2793
|
+
resourceOwnerId?: number;
|
|
2794
|
+
static names(): {
|
|
2795
|
+
[key: string]: string;
|
|
2796
|
+
};
|
|
2797
|
+
static types(): {
|
|
2798
|
+
[key: string]: any;
|
|
2799
|
+
};
|
|
2800
|
+
constructor(map?: {
|
|
2801
|
+
[key: string]: any;
|
|
2802
|
+
});
|
|
2803
|
+
}
|
|
2804
|
+
export declare class DeletePostgresExtensionsResponseBody extends $tea.Model {
|
|
2805
|
+
requestId?: string;
|
|
2806
|
+
static names(): {
|
|
2807
|
+
[key: string]: string;
|
|
2808
|
+
};
|
|
2809
|
+
static types(): {
|
|
2810
|
+
[key: string]: any;
|
|
2811
|
+
};
|
|
2812
|
+
constructor(map?: {
|
|
2813
|
+
[key: string]: any;
|
|
2814
|
+
});
|
|
2815
|
+
}
|
|
2816
|
+
export declare class DeletePostgresExtensionsResponse extends $tea.Model {
|
|
2817
|
+
headers: {
|
|
2818
|
+
[key: string]: string;
|
|
2819
|
+
};
|
|
2820
|
+
statusCode: number;
|
|
2821
|
+
body: DeletePostgresExtensionsResponseBody;
|
|
2822
|
+
static names(): {
|
|
2823
|
+
[key: string]: string;
|
|
2824
|
+
};
|
|
2825
|
+
static types(): {
|
|
2826
|
+
[key: string]: any;
|
|
2827
|
+
};
|
|
2828
|
+
constructor(map?: {
|
|
2829
|
+
[key: string]: any;
|
|
2830
|
+
});
|
|
2831
|
+
}
|
|
2734
2832
|
export declare class DeleteSecretRequest extends $tea.Model {
|
|
2735
2833
|
clientToken?: string;
|
|
2736
2834
|
dbInstanceId?: string;
|
|
@@ -6996,6 +7094,58 @@ export declare class DescribeParametersResponse extends $tea.Model {
|
|
|
6996
7094
|
[key: string]: any;
|
|
6997
7095
|
});
|
|
6998
7096
|
}
|
|
7097
|
+
export declare class DescribePostgresExtensionsRequest extends $tea.Model {
|
|
7098
|
+
clientToken?: string;
|
|
7099
|
+
DBInstanceId?: string;
|
|
7100
|
+
DBName?: string;
|
|
7101
|
+
ownerAccount?: string;
|
|
7102
|
+
ownerId?: number;
|
|
7103
|
+
resourceGroupId?: string;
|
|
7104
|
+
resourceOwnerAccount?: string;
|
|
7105
|
+
resourceOwnerId?: number;
|
|
7106
|
+
static names(): {
|
|
7107
|
+
[key: string]: string;
|
|
7108
|
+
};
|
|
7109
|
+
static types(): {
|
|
7110
|
+
[key: string]: any;
|
|
7111
|
+
};
|
|
7112
|
+
constructor(map?: {
|
|
7113
|
+
[key: string]: any;
|
|
7114
|
+
});
|
|
7115
|
+
}
|
|
7116
|
+
export declare class DescribePostgresExtensionsResponseBody extends $tea.Model {
|
|
7117
|
+
installedExtensions?: DescribePostgresExtensionsResponseBodyInstalledExtensions[];
|
|
7118
|
+
overview?: {
|
|
7119
|
+
[key: string]: any;
|
|
7120
|
+
};
|
|
7121
|
+
requestId?: string;
|
|
7122
|
+
uninstalledExtensions?: DescribePostgresExtensionsResponseBodyUninstalledExtensions[];
|
|
7123
|
+
static names(): {
|
|
7124
|
+
[key: string]: string;
|
|
7125
|
+
};
|
|
7126
|
+
static types(): {
|
|
7127
|
+
[key: string]: any;
|
|
7128
|
+
};
|
|
7129
|
+
constructor(map?: {
|
|
7130
|
+
[key: string]: any;
|
|
7131
|
+
});
|
|
7132
|
+
}
|
|
7133
|
+
export declare class DescribePostgresExtensionsResponse extends $tea.Model {
|
|
7134
|
+
headers: {
|
|
7135
|
+
[key: string]: string;
|
|
7136
|
+
};
|
|
7137
|
+
statusCode: number;
|
|
7138
|
+
body: DescribePostgresExtensionsResponseBody;
|
|
7139
|
+
static names(): {
|
|
7140
|
+
[key: string]: string;
|
|
7141
|
+
};
|
|
7142
|
+
static types(): {
|
|
7143
|
+
[key: string]: any;
|
|
7144
|
+
};
|
|
7145
|
+
constructor(map?: {
|
|
7146
|
+
[key: string]: any;
|
|
7147
|
+
});
|
|
7148
|
+
}
|
|
6999
7149
|
export declare class DescribePriceRequest extends $tea.Model {
|
|
7000
7150
|
clientToken?: string;
|
|
7001
7151
|
commodityCode?: string;
|
|
@@ -12683,6 +12833,54 @@ export declare class UntagResourcesResponse extends $tea.Model {
|
|
|
12683
12833
|
[key: string]: any;
|
|
12684
12834
|
});
|
|
12685
12835
|
}
|
|
12836
|
+
export declare class UpdatePostgresExtensionsRequest extends $tea.Model {
|
|
12837
|
+
clientToken?: string;
|
|
12838
|
+
DBInstanceId?: string;
|
|
12839
|
+
DBNames?: string;
|
|
12840
|
+
extensions?: string;
|
|
12841
|
+
ownerAccount?: string;
|
|
12842
|
+
ownerId?: number;
|
|
12843
|
+
resourceGroupId?: string;
|
|
12844
|
+
resourceOwnerAccount?: string;
|
|
12845
|
+
resourceOwnerId?: number;
|
|
12846
|
+
static names(): {
|
|
12847
|
+
[key: string]: string;
|
|
12848
|
+
};
|
|
12849
|
+
static types(): {
|
|
12850
|
+
[key: string]: any;
|
|
12851
|
+
};
|
|
12852
|
+
constructor(map?: {
|
|
12853
|
+
[key: string]: any;
|
|
12854
|
+
});
|
|
12855
|
+
}
|
|
12856
|
+
export declare class UpdatePostgresExtensionsResponseBody extends $tea.Model {
|
|
12857
|
+
requestId?: string;
|
|
12858
|
+
static names(): {
|
|
12859
|
+
[key: string]: string;
|
|
12860
|
+
};
|
|
12861
|
+
static types(): {
|
|
12862
|
+
[key: string]: any;
|
|
12863
|
+
};
|
|
12864
|
+
constructor(map?: {
|
|
12865
|
+
[key: string]: any;
|
|
12866
|
+
});
|
|
12867
|
+
}
|
|
12868
|
+
export declare class UpdatePostgresExtensionsResponse extends $tea.Model {
|
|
12869
|
+
headers: {
|
|
12870
|
+
[key: string]: string;
|
|
12871
|
+
};
|
|
12872
|
+
statusCode: number;
|
|
12873
|
+
body: UpdatePostgresExtensionsResponseBody;
|
|
12874
|
+
static names(): {
|
|
12875
|
+
[key: string]: string;
|
|
12876
|
+
};
|
|
12877
|
+
static types(): {
|
|
12878
|
+
[key: string]: any;
|
|
12879
|
+
};
|
|
12880
|
+
constructor(map?: {
|
|
12881
|
+
[key: string]: any;
|
|
12882
|
+
});
|
|
12883
|
+
}
|
|
12686
12884
|
export declare class UpdateUserBackupFileRequest extends $tea.Model {
|
|
12687
12885
|
backupId?: string;
|
|
12688
12886
|
comment?: string;
|
|
@@ -16088,6 +16286,44 @@ export declare class DescribeParametersResponseBodyRunningParameters extends $te
|
|
|
16088
16286
|
[key: string]: any;
|
|
16089
16287
|
});
|
|
16090
16288
|
}
|
|
16289
|
+
export declare class DescribePostgresExtensionsResponseBodyInstalledExtensions extends $tea.Model {
|
|
16290
|
+
category?: string;
|
|
16291
|
+
comment?: string;
|
|
16292
|
+
defaultVersion?: string;
|
|
16293
|
+
installedVersion?: string;
|
|
16294
|
+
name?: string;
|
|
16295
|
+
owner?: string;
|
|
16296
|
+
priority?: string;
|
|
16297
|
+
requires?: string;
|
|
16298
|
+
static names(): {
|
|
16299
|
+
[key: string]: string;
|
|
16300
|
+
};
|
|
16301
|
+
static types(): {
|
|
16302
|
+
[key: string]: any;
|
|
16303
|
+
};
|
|
16304
|
+
constructor(map?: {
|
|
16305
|
+
[key: string]: any;
|
|
16306
|
+
});
|
|
16307
|
+
}
|
|
16308
|
+
export declare class DescribePostgresExtensionsResponseBodyUninstalledExtensions extends $tea.Model {
|
|
16309
|
+
category?: string;
|
|
16310
|
+
comment?: string;
|
|
16311
|
+
defaultVersion?: string;
|
|
16312
|
+
installedVersion?: string;
|
|
16313
|
+
name?: string;
|
|
16314
|
+
owner?: string;
|
|
16315
|
+
priority?: string;
|
|
16316
|
+
requires?: string;
|
|
16317
|
+
static names(): {
|
|
16318
|
+
[key: string]: string;
|
|
16319
|
+
};
|
|
16320
|
+
static types(): {
|
|
16321
|
+
[key: string]: any;
|
|
16322
|
+
};
|
|
16323
|
+
constructor(map?: {
|
|
16324
|
+
[key: string]: any;
|
|
16325
|
+
});
|
|
16326
|
+
}
|
|
16091
16327
|
export declare class DescribePriceRequestDBNode extends $tea.Model {
|
|
16092
16328
|
classCode?: string;
|
|
16093
16329
|
zoneId?: string;
|
|
@@ -17900,6 +18136,8 @@ export default class Client extends OpenApi {
|
|
|
17900
18136
|
* @return CreateParameterGroupResponse
|
|
17901
18137
|
*/
|
|
17902
18138
|
createParameterGroup(request: CreateParameterGroupRequest): Promise<CreateParameterGroupResponse>;
|
|
18139
|
+
createPostgresExtensionsWithOptions(request: CreatePostgresExtensionsRequest, runtime: $Util.RuntimeOptions): Promise<CreatePostgresExtensionsResponse>;
|
|
18140
|
+
createPostgresExtensions(request: CreatePostgresExtensionsRequest): Promise<CreatePostgresExtensionsResponse>;
|
|
17903
18141
|
/**
|
|
17904
18142
|
* **Before you call this operation, take note of the following limits:**
|
|
17905
18143
|
* * The primary instance cannot belong to a dedicated cluster and must run one of the following database engine versions and RDS editions:
|
|
@@ -18162,6 +18400,8 @@ export default class Client extends OpenApi {
|
|
|
18162
18400
|
* @return DeleteParameterGroupResponse
|
|
18163
18401
|
*/
|
|
18164
18402
|
deleteParameterGroup(request: DeleteParameterGroupRequest): Promise<DeleteParameterGroupResponse>;
|
|
18403
|
+
deletePostgresExtensionsWithOptions(request: DeletePostgresExtensionsRequest, runtime: $Util.RuntimeOptions): Promise<DeletePostgresExtensionsResponse>;
|
|
18404
|
+
deletePostgresExtensions(request: DeletePostgresExtensionsRequest): Promise<DeletePostgresExtensionsResponse>;
|
|
18165
18405
|
deleteSecretWithOptions(request: DeleteSecretRequest, runtime: $Util.RuntimeOptions): Promise<DeleteSecretResponse>;
|
|
18166
18406
|
deleteSecret(request: DeleteSecretRequest): Promise<DeleteSecretResponse>;
|
|
18167
18407
|
/**
|
|
@@ -19277,6 +19517,8 @@ export default class Client extends OpenApi {
|
|
|
19277
19517
|
* @return DescribeParametersResponse
|
|
19278
19518
|
*/
|
|
19279
19519
|
describeParameters(request: DescribeParametersRequest): Promise<DescribeParametersResponse>;
|
|
19520
|
+
describePostgresExtensionsWithOptions(request: DescribePostgresExtensionsRequest, runtime: $Util.RuntimeOptions): Promise<DescribePostgresExtensionsResponse>;
|
|
19521
|
+
describePostgresExtensions(request: DescribePostgresExtensionsRequest): Promise<DescribePostgresExtensionsResponse>;
|
|
19280
19522
|
describePriceWithOptions(tmpReq: DescribePriceRequest, runtime: $Util.RuntimeOptions): Promise<DescribePriceResponse>;
|
|
19281
19523
|
describePrice(request: DescribePriceRequest): Promise<DescribePriceResponse>;
|
|
19282
19524
|
/**
|
|
@@ -19994,7 +20236,6 @@ export default class Client extends OpenApi {
|
|
|
19994
20236
|
modifyDBInstanceConnectionMode(request: ModifyDBInstanceConnectionModeRequest): Promise<ModifyDBInstanceConnectionModeResponse>;
|
|
19995
20237
|
/**
|
|
19996
20238
|
* ApsaraDB RDS provides the internal and public endpoints. ApsaraDB RDS also allows hybrid access by using both a virtual private cloud (VPC) endpoint and a classic network endpoint.
|
|
19997
|
-
* >
|
|
19998
20239
|
* * You can change only the prefix of an endpoint.
|
|
19999
20240
|
* * The read/write splitting endpoint cannot be changed.
|
|
20000
20241
|
*
|
|
@@ -20005,7 +20246,6 @@ export default class Client extends OpenApi {
|
|
|
20005
20246
|
modifyDBInstanceConnectionStringWithOptions(request: ModifyDBInstanceConnectionStringRequest, runtime: $Util.RuntimeOptions): Promise<ModifyDBInstanceConnectionStringResponse>;
|
|
20006
20247
|
/**
|
|
20007
20248
|
* ApsaraDB RDS provides the internal and public endpoints. ApsaraDB RDS also allows hybrid access by using both a virtual private cloud (VPC) endpoint and a classic network endpoint.
|
|
20008
|
-
* >
|
|
20009
20249
|
* * You can change only the prefix of an endpoint.
|
|
20010
20250
|
* * The read/write splitting endpoint cannot be changed.
|
|
20011
20251
|
*
|
|
@@ -21210,6 +21450,8 @@ export default class Client extends OpenApi {
|
|
|
21210
21450
|
* @return UntagResourcesResponse
|
|
21211
21451
|
*/
|
|
21212
21452
|
untagResources(request: UntagResourcesRequest): Promise<UntagResourcesResponse>;
|
|
21453
|
+
updatePostgresExtensionsWithOptions(request: UpdatePostgresExtensionsRequest, runtime: $Util.RuntimeOptions): Promise<UpdatePostgresExtensionsResponse>;
|
|
21454
|
+
updatePostgresExtensions(request: UpdatePostgresExtensionsRequest): Promise<UpdatePostgresExtensionsResponse>;
|
|
21213
21455
|
/**
|
|
21214
21456
|
* > A full backup file contains the data of a self-managed MySQL database. You can restore the data of a self-managed MySQL database from a full backup file to an ApsaraDB RDS for MySQL instance. For more information, see [Migrate the data of a self-managed MySQL 5.7 instance to the cloud](~~251779~~).
|
|
21215
21457
|
*
|