@aws-sdk/client-rds 3.28.0 → 3.32.0
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/CHANGELOG.md +35 -0
- package/RDS.ts +1 -1
- package/commands/ModifyCurrentDBClusterCapacityCommand.ts +1 -1
- package/dist/cjs/commands/ModifyCurrentDBClusterCapacityCommand.js +1 -1
- package/dist/cjs/models/models_0.js.map +1 -1
- package/dist/cjs/models/models_1.js.map +1 -1
- package/dist/cjs/package.json +33 -33
- package/dist/cjs/protocols/Aws_query.js +102 -95
- package/dist/cjs/protocols/Aws_query.js.map +1 -1
- package/dist/es/commands/ModifyCurrentDBClusterCapacityCommand.js +1 -1
- package/dist/es/endpoints.js +1 -2
- package/dist/es/endpoints.js.map +1 -1
- package/dist/es/models/models_0.js.map +1 -1
- package/dist/es/models/models_1.js.map +1 -1
- package/dist/es/package.json +33 -33
- package/dist/es/protocols/Aws_query.js +103 -96
- package/dist/es/protocols/Aws_query.js.map +1 -1
- package/dist/types/RDS.d.ts +1 -1
- package/dist/types/commands/ModifyCurrentDBClusterCapacityCommand.d.ts +1 -1
- package/dist/types/models/models_0.d.ts +18 -2
- package/dist/types/models/models_1.d.ts +1 -5
- package/dist/types/ts3.4/RDS.d.ts +1 -1
- package/dist/types/ts3.4/commands/ModifyCurrentDBClusterCapacityCommand.d.ts +1 -1
- package/dist/types/ts3.4/models/models_0.d.ts +18 -2
- package/dist/types/ts3.4/models/models_1.d.ts +1 -5
- package/models/models_0.ts +20 -2
- package/models/models_1.ts +1 -5
- package/package.json +33 -33
- package/protocols/Aws_query.ts +108 -96
package/dist/types/RDS.d.ts
CHANGED
|
@@ -1276,7 +1276,7 @@ export declare class RDS extends RDSClient {
|
|
|
1276
1276
|
* Autoscaling for Aurora Serverless</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
1277
1277
|
* </important>
|
|
1278
1278
|
* <note>
|
|
1279
|
-
* <p>This action only applies to Aurora DB clusters.</p>
|
|
1279
|
+
* <p>This action only applies to Aurora Serverless DB clusters.</p>
|
|
1280
1280
|
* </note>
|
|
1281
1281
|
*/
|
|
1282
1282
|
modifyCurrentDBClusterCapacity(args: ModifyCurrentDBClusterCapacityCommandInput, options?: __HttpHandlerOptions): Promise<ModifyCurrentDBClusterCapacityCommandOutput>;
|
|
@@ -23,7 +23,7 @@ export interface ModifyCurrentDBClusterCapacityCommandOutput extends DBClusterCa
|
|
|
23
23
|
* Autoscaling for Aurora Serverless</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
24
24
|
* </important>
|
|
25
25
|
* <note>
|
|
26
|
-
* <p>This action only applies to Aurora DB clusters.</p>
|
|
26
|
+
* <p>This action only applies to Aurora Serverless DB clusters.</p>
|
|
27
27
|
* </note>
|
|
28
28
|
* @example
|
|
29
29
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -2719,6 +2719,12 @@ export interface ScalingConfiguration {
|
|
|
2719
2719
|
* Autoscaling for Aurora Serverless</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
2720
2720
|
*/
|
|
2721
2721
|
TimeoutAction?: string;
|
|
2722
|
+
/**
|
|
2723
|
+
* <p>The amount of time, in seconds, that Aurora Serverless tries to find a scaling point
|
|
2724
|
+
* to perform seamless scaling before enforcing the timeout action. The default is 300.</p>
|
|
2725
|
+
* <p>Specify a value between 60 and 600 seconds.</p>
|
|
2726
|
+
*/
|
|
2727
|
+
SecondsBeforeTimeout?: number;
|
|
2722
2728
|
}
|
|
2723
2729
|
export declare namespace ScalingConfiguration {
|
|
2724
2730
|
/**
|
|
@@ -3336,10 +3342,20 @@ export interface ScalingConfigurationInfo {
|
|
|
3336
3342
|
*/
|
|
3337
3343
|
SecondsUntilAutoPause?: number;
|
|
3338
3344
|
/**
|
|
3339
|
-
* <p>The
|
|
3340
|
-
*
|
|
3345
|
+
* <p>The action that occurs when Aurora times out while attempting to change the capacity of an
|
|
3346
|
+
* Aurora Serverless cluster. The value is either <code>ForceApplyCapacityChange</code> or
|
|
3347
|
+
* <code>RollbackCapacityChange</code>.</p>
|
|
3348
|
+
* <p>
|
|
3349
|
+
* <code>ForceApplyCapacityChange</code>, the default, sets the capacity to the specified value as soon as possible.</p>
|
|
3350
|
+
* <p>
|
|
3351
|
+
* <code>RollbackCapacityChange</code> ignores the capacity change if a scaling point isn't found in the timeout period.</p>
|
|
3341
3352
|
*/
|
|
3342
3353
|
TimeoutAction?: string;
|
|
3354
|
+
/**
|
|
3355
|
+
* <p>The number of seconds before scaling times out. What happens when an attempted scaling action times out
|
|
3356
|
+
* is determined by the <code>TimeoutAction</code> setting.</p>
|
|
3357
|
+
*/
|
|
3358
|
+
SecondsBeforeTimeout?: number;
|
|
3343
3359
|
}
|
|
3344
3360
|
export declare namespace ScalingConfigurationInfo {
|
|
3345
3361
|
/**
|
|
@@ -2868,11 +2868,7 @@ export interface ModifyCurrentDBClusterCapacityMessage {
|
|
|
2868
2868
|
* <p>The amount of time, in seconds, that Aurora Serverless tries to find a scaling point
|
|
2869
2869
|
* to perform seamless scaling before enforcing the timeout action. The default is
|
|
2870
2870
|
* 300.</p>
|
|
2871
|
-
* <
|
|
2872
|
-
* <li>
|
|
2873
|
-
* <p>Value must be from 10 through 600.</p>
|
|
2874
|
-
* </li>
|
|
2875
|
-
* </ul>
|
|
2871
|
+
* <p>Specify a value between 10 and 600 seconds.</p>
|
|
2876
2872
|
*/
|
|
2877
2873
|
SecondsBeforeTimeout?: number;
|
|
2878
2874
|
/**
|
|
@@ -1276,7 +1276,7 @@ export declare class RDS extends RDSClient {
|
|
|
1276
1276
|
* Autoscaling for Aurora Serverless</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
1277
1277
|
* </important>
|
|
1278
1278
|
* <note>
|
|
1279
|
-
* <p>This action only applies to Aurora DB clusters.</p>
|
|
1279
|
+
* <p>This action only applies to Aurora Serverless DB clusters.</p>
|
|
1280
1280
|
* </note>
|
|
1281
1281
|
*/
|
|
1282
1282
|
modifyCurrentDBClusterCapacity(args: ModifyCurrentDBClusterCapacityCommandInput, options?: __HttpHandlerOptions): Promise<ModifyCurrentDBClusterCapacityCommandOutput>;
|
|
@@ -23,7 +23,7 @@ export interface ModifyCurrentDBClusterCapacityCommandOutput extends DBClusterCa
|
|
|
23
23
|
* Autoscaling for Aurora Serverless</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
24
24
|
* </important>
|
|
25
25
|
* <note>
|
|
26
|
-
* <p>This action only applies to Aurora DB clusters.</p>
|
|
26
|
+
* <p>This action only applies to Aurora Serverless DB clusters.</p>
|
|
27
27
|
* </note>
|
|
28
28
|
* @example
|
|
29
29
|
* Use a bare-bones client and the command you need to make an API call.
|
|
@@ -2719,6 +2719,12 @@ export interface ScalingConfiguration {
|
|
|
2719
2719
|
* Autoscaling for Aurora Serverless</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
2720
2720
|
*/
|
|
2721
2721
|
TimeoutAction?: string;
|
|
2722
|
+
/**
|
|
2723
|
+
* <p>The amount of time, in seconds, that Aurora Serverless tries to find a scaling point
|
|
2724
|
+
* to perform seamless scaling before enforcing the timeout action. The default is 300.</p>
|
|
2725
|
+
* <p>Specify a value between 60 and 600 seconds.</p>
|
|
2726
|
+
*/
|
|
2727
|
+
SecondsBeforeTimeout?: number;
|
|
2722
2728
|
}
|
|
2723
2729
|
export declare namespace ScalingConfiguration {
|
|
2724
2730
|
/**
|
|
@@ -3336,10 +3342,20 @@ export interface ScalingConfigurationInfo {
|
|
|
3336
3342
|
*/
|
|
3337
3343
|
SecondsUntilAutoPause?: number;
|
|
3338
3344
|
/**
|
|
3339
|
-
* <p>The
|
|
3340
|
-
*
|
|
3345
|
+
* <p>The action that occurs when Aurora times out while attempting to change the capacity of an
|
|
3346
|
+
* Aurora Serverless cluster. The value is either <code>ForceApplyCapacityChange</code> or
|
|
3347
|
+
* <code>RollbackCapacityChange</code>.</p>
|
|
3348
|
+
* <p>
|
|
3349
|
+
* <code>ForceApplyCapacityChange</code>, the default, sets the capacity to the specified value as soon as possible.</p>
|
|
3350
|
+
* <p>
|
|
3351
|
+
* <code>RollbackCapacityChange</code> ignores the capacity change if a scaling point isn't found in the timeout period.</p>
|
|
3341
3352
|
*/
|
|
3342
3353
|
TimeoutAction?: string;
|
|
3354
|
+
/**
|
|
3355
|
+
* <p>The number of seconds before scaling times out. What happens when an attempted scaling action times out
|
|
3356
|
+
* is determined by the <code>TimeoutAction</code> setting.</p>
|
|
3357
|
+
*/
|
|
3358
|
+
SecondsBeforeTimeout?: number;
|
|
3343
3359
|
}
|
|
3344
3360
|
export declare namespace ScalingConfigurationInfo {
|
|
3345
3361
|
/**
|
|
@@ -2868,11 +2868,7 @@ export interface ModifyCurrentDBClusterCapacityMessage {
|
|
|
2868
2868
|
* <p>The amount of time, in seconds, that Aurora Serverless tries to find a scaling point
|
|
2869
2869
|
* to perform seamless scaling before enforcing the timeout action. The default is
|
|
2870
2870
|
* 300.</p>
|
|
2871
|
-
* <
|
|
2872
|
-
* <li>
|
|
2873
|
-
* <p>Value must be from 10 through 600.</p>
|
|
2874
|
-
* </li>
|
|
2875
|
-
* </ul>
|
|
2871
|
+
* <p>Specify a value between 10 and 600 seconds.</p>
|
|
2876
2872
|
*/
|
|
2877
2873
|
SecondsBeforeTimeout?: number;
|
|
2878
2874
|
/**
|
package/models/models_0.ts
CHANGED
|
@@ -3236,6 +3236,13 @@ export interface ScalingConfiguration {
|
|
|
3236
3236
|
* Autoscaling for Aurora Serverless</a> in the <i>Amazon Aurora User Guide</i>.</p>
|
|
3237
3237
|
*/
|
|
3238
3238
|
TimeoutAction?: string;
|
|
3239
|
+
|
|
3240
|
+
/**
|
|
3241
|
+
* <p>The amount of time, in seconds, that Aurora Serverless tries to find a scaling point
|
|
3242
|
+
* to perform seamless scaling before enforcing the timeout action. The default is 300.</p>
|
|
3243
|
+
* <p>Specify a value between 60 and 600 seconds.</p>
|
|
3244
|
+
*/
|
|
3245
|
+
SecondsBeforeTimeout?: number;
|
|
3239
3246
|
}
|
|
3240
3247
|
|
|
3241
3248
|
export namespace ScalingConfiguration {
|
|
@@ -3936,10 +3943,21 @@ export interface ScalingConfigurationInfo {
|
|
|
3936
3943
|
SecondsUntilAutoPause?: number;
|
|
3937
3944
|
|
|
3938
3945
|
/**
|
|
3939
|
-
* <p>The
|
|
3940
|
-
*
|
|
3946
|
+
* <p>The action that occurs when Aurora times out while attempting to change the capacity of an
|
|
3947
|
+
* Aurora Serverless cluster. The value is either <code>ForceApplyCapacityChange</code> or
|
|
3948
|
+
* <code>RollbackCapacityChange</code>.</p>
|
|
3949
|
+
* <p>
|
|
3950
|
+
* <code>ForceApplyCapacityChange</code>, the default, sets the capacity to the specified value as soon as possible.</p>
|
|
3951
|
+
* <p>
|
|
3952
|
+
* <code>RollbackCapacityChange</code> ignores the capacity change if a scaling point isn't found in the timeout period.</p>
|
|
3941
3953
|
*/
|
|
3942
3954
|
TimeoutAction?: string;
|
|
3955
|
+
|
|
3956
|
+
/**
|
|
3957
|
+
* <p>The number of seconds before scaling times out. What happens when an attempted scaling action times out
|
|
3958
|
+
* is determined by the <code>TimeoutAction</code> setting.</p>
|
|
3959
|
+
*/
|
|
3960
|
+
SecondsBeforeTimeout?: number;
|
|
3943
3961
|
}
|
|
3944
3962
|
|
|
3945
3963
|
export namespace ScalingConfigurationInfo {
|
package/models/models_1.ts
CHANGED
|
@@ -3426,11 +3426,7 @@ export interface ModifyCurrentDBClusterCapacityMessage {
|
|
|
3426
3426
|
* <p>The amount of time, in seconds, that Aurora Serverless tries to find a scaling point
|
|
3427
3427
|
* to perform seamless scaling before enforcing the timeout action. The default is
|
|
3428
3428
|
* 300.</p>
|
|
3429
|
-
* <
|
|
3430
|
-
* <li>
|
|
3431
|
-
* <p>Value must be from 10 through 600.</p>
|
|
3432
|
-
* </li>
|
|
3433
|
-
* </ul>
|
|
3429
|
+
* <p>Specify a value between 10 and 600 seconds.</p>
|
|
3434
3430
|
*/
|
|
3435
3431
|
SecondsBeforeTimeout?: number;
|
|
3436
3432
|
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-rds",
|
|
3
3
|
"description": "AWS SDK for JavaScript Rds Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.32.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"clean": "yarn remove-definitions && yarn remove-dist && yarn remove-documentation",
|
|
7
7
|
"build-documentation": "yarn remove-documentation && typedoc ./",
|
|
@@ -27,49 +27,49 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@aws-crypto/sha256-browser": "^1.0.0",
|
|
29
29
|
"@aws-crypto/sha256-js": "^1.0.0",
|
|
30
|
-
"@aws-sdk/client-sts": "3.
|
|
31
|
-
"@aws-sdk/config-resolver": "3.
|
|
32
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
33
|
-
"@aws-sdk/fetch-http-handler": "3.
|
|
34
|
-
"@aws-sdk/hash-node": "3.
|
|
35
|
-
"@aws-sdk/invalid-dependency": "3.
|
|
36
|
-
"@aws-sdk/middleware-content-length": "3.
|
|
37
|
-
"@aws-sdk/middleware-host-header": "3.
|
|
38
|
-
"@aws-sdk/middleware-logger": "3.
|
|
39
|
-
"@aws-sdk/middleware-retry": "3.
|
|
40
|
-
"@aws-sdk/middleware-sdk-rds": "3.
|
|
41
|
-
"@aws-sdk/middleware-serde": "3.
|
|
42
|
-
"@aws-sdk/middleware-signing": "3.
|
|
43
|
-
"@aws-sdk/middleware-stack": "3.
|
|
44
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
45
|
-
"@aws-sdk/node-config-provider": "3.
|
|
46
|
-
"@aws-sdk/node-http-handler": "3.
|
|
47
|
-
"@aws-sdk/protocol-http": "3.
|
|
48
|
-
"@aws-sdk/smithy-client": "3.
|
|
49
|
-
"@aws-sdk/types": "3.
|
|
50
|
-
"@aws-sdk/url-parser": "3.
|
|
51
|
-
"@aws-sdk/util-base64-browser": "3.
|
|
52
|
-
"@aws-sdk/util-base64-node": "3.
|
|
53
|
-
"@aws-sdk/util-body-length-browser": "3.
|
|
54
|
-
"@aws-sdk/util-body-length-node": "3.
|
|
55
|
-
"@aws-sdk/util-user-agent-browser": "3.
|
|
56
|
-
"@aws-sdk/util-user-agent-node": "3.
|
|
57
|
-
"@aws-sdk/util-utf8-browser": "3.
|
|
58
|
-
"@aws-sdk/util-utf8-node": "3.
|
|
59
|
-
"@aws-sdk/util-waiter": "3.
|
|
30
|
+
"@aws-sdk/client-sts": "3.32.0",
|
|
31
|
+
"@aws-sdk/config-resolver": "3.32.0",
|
|
32
|
+
"@aws-sdk/credential-provider-node": "3.32.0",
|
|
33
|
+
"@aws-sdk/fetch-http-handler": "3.32.0",
|
|
34
|
+
"@aws-sdk/hash-node": "3.32.0",
|
|
35
|
+
"@aws-sdk/invalid-dependency": "3.32.0",
|
|
36
|
+
"@aws-sdk/middleware-content-length": "3.32.0",
|
|
37
|
+
"@aws-sdk/middleware-host-header": "3.32.0",
|
|
38
|
+
"@aws-sdk/middleware-logger": "3.32.0",
|
|
39
|
+
"@aws-sdk/middleware-retry": "3.32.0",
|
|
40
|
+
"@aws-sdk/middleware-sdk-rds": "3.32.0",
|
|
41
|
+
"@aws-sdk/middleware-serde": "3.32.0",
|
|
42
|
+
"@aws-sdk/middleware-signing": "3.32.0",
|
|
43
|
+
"@aws-sdk/middleware-stack": "3.32.0",
|
|
44
|
+
"@aws-sdk/middleware-user-agent": "3.32.0",
|
|
45
|
+
"@aws-sdk/node-config-provider": "3.32.0",
|
|
46
|
+
"@aws-sdk/node-http-handler": "3.32.0",
|
|
47
|
+
"@aws-sdk/protocol-http": "3.32.0",
|
|
48
|
+
"@aws-sdk/smithy-client": "3.32.0",
|
|
49
|
+
"@aws-sdk/types": "3.32.0",
|
|
50
|
+
"@aws-sdk/url-parser": "3.32.0",
|
|
51
|
+
"@aws-sdk/util-base64-browser": "3.32.0",
|
|
52
|
+
"@aws-sdk/util-base64-node": "3.32.0",
|
|
53
|
+
"@aws-sdk/util-body-length-browser": "3.32.0",
|
|
54
|
+
"@aws-sdk/util-body-length-node": "3.32.0",
|
|
55
|
+
"@aws-sdk/util-user-agent-browser": "3.32.0",
|
|
56
|
+
"@aws-sdk/util-user-agent-node": "3.32.0",
|
|
57
|
+
"@aws-sdk/util-utf8-browser": "3.32.0",
|
|
58
|
+
"@aws-sdk/util-utf8-node": "3.32.0",
|
|
59
|
+
"@aws-sdk/util-waiter": "3.32.0",
|
|
60
60
|
"entities": "2.2.0",
|
|
61
61
|
"fast-xml-parser": "3.19.0",
|
|
62
62
|
"tslib": "^2.3.0"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
65
|
-
"@aws-sdk/client-documentation-generator": "3.
|
|
65
|
+
"@aws-sdk/client-documentation-generator": "3.32.0",
|
|
66
66
|
"@types/node": "^12.7.5",
|
|
67
67
|
"downlevel-dts": "0.7.0",
|
|
68
68
|
"jest": "^26.1.0",
|
|
69
69
|
"rimraf": "^3.0.0",
|
|
70
70
|
"ts-jest": "^26.4.1",
|
|
71
71
|
"typedoc": "^0.19.2",
|
|
72
|
-
"typescript": "~4.3.
|
|
72
|
+
"typescript": "~4.3.5"
|
|
73
73
|
},
|
|
74
74
|
"engines": {
|
|
75
75
|
"node": ">=10.0.0"
|