@aws-sdk/client-route-53 3.1037.0 → 3.1038.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/dist-es/waiters/waitForResourceRecordSetsChanged.js +1 -1
- package/dist-types/Route53.d.ts +1 -1
- package/dist-types/ts3.4/Route53.d.ts +1 -1
- package/dist-types/ts3.4/waiters/waitForResourceRecordSetsChanged.d.ts +7 -3
- package/dist-types/waiters/waitForResourceRecordSetsChanged.d.ts +4 -3
- package/package.json +8 -8
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { checkExceptions, createWaiter, WaiterState, } from "@smithy/util-waiter";
|
|
2
|
-
import { GetChangeCommand } from "../commands/GetChangeCommand";
|
|
2
|
+
import { GetChangeCommand, } from "../commands/GetChangeCommand";
|
|
3
3
|
const checkState = async (client, input) => {
|
|
4
4
|
let reason;
|
|
5
5
|
try {
|
package/dist-types/Route53.d.ts
CHANGED
|
@@ -560,7 +560,7 @@ export interface Route53 {
|
|
|
560
560
|
* @param args - command input.
|
|
561
561
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
562
562
|
*/
|
|
563
|
-
waitUntilResourceRecordSetsChanged(args: GetChangeCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Route53>, "client">): Promise<WaiterResult
|
|
563
|
+
waitUntilResourceRecordSetsChanged(args: GetChangeCommandInput, waiterConfig: number | Omit<WaiterConfiguration<Route53>, "client">): Promise<WaiterResult<GetChangeCommandOutput>>;
|
|
564
564
|
}
|
|
565
565
|
/**
|
|
566
566
|
* <p>Amazon Route 53 is a highly available and scalable Domain Name System (DNS) web
|
|
@@ -1302,6 +1302,6 @@ export interface Route53 {
|
|
|
1302
1302
|
WaiterConfiguration<Route53>,
|
|
1303
1303
|
Exclude<keyof WaiterConfiguration<Route53>, "client">
|
|
1304
1304
|
>
|
|
1305
|
-
): Promise<WaiterResult
|
|
1305
|
+
): Promise<WaiterResult<GetChangeCommandOutput>>;
|
|
1306
1306
|
}
|
|
1307
1307
|
export declare class Route53 extends Route53Client implements Route53 {}
|
|
@@ -1,11 +1,15 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
GetChangeCommandInput,
|
|
4
|
+
GetChangeCommandOutput,
|
|
5
|
+
} from "../commands/GetChangeCommand";
|
|
6
|
+
import { Route53ServiceException } from "../models/Route53ServiceException";
|
|
3
7
|
import { Route53Client } from "../Route53Client";
|
|
4
8
|
export declare const waitForResourceRecordSetsChanged: (
|
|
5
9
|
params: WaiterConfiguration<Route53Client>,
|
|
6
10
|
input: GetChangeCommandInput
|
|
7
|
-
) => Promise<WaiterResult
|
|
11
|
+
) => Promise<WaiterResult<GetChangeCommandOutput | Route53ServiceException>>;
|
|
8
12
|
export declare const waitUntilResourceRecordSetsChanged: (
|
|
9
13
|
params: WaiterConfiguration<Route53Client>,
|
|
10
14
|
input: GetChangeCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
15
|
+
) => Promise<WaiterResult<GetChangeCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type GetChangeCommandInput } from "../commands/GetChangeCommand";
|
|
2
|
+
import { type GetChangeCommandInput, type GetChangeCommandOutput } from "../commands/GetChangeCommand";
|
|
3
|
+
import type { Route53ServiceException } from "../models/Route53ServiceException";
|
|
3
4
|
import type { Route53Client } from "../Route53Client";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilResourceRecordSetsChanged instead. waitForResourceRecordSetsChanged does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForResourceRecordSetsChanged: (params: WaiterConfiguration<Route53Client>, input: GetChangeCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForResourceRecordSetsChanged: (params: WaiterConfiguration<Route53Client>, input: GetChangeCommandInput) => Promise<WaiterResult<GetChangeCommandOutput | Route53ServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to GetChangeCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilResourceRecordSetsChanged: (params: WaiterConfiguration<Route53Client>, input: GetChangeCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilResourceRecordSetsChanged: (params: WaiterConfiguration<Route53Client>, input: GetChangeCommandInput) => Promise<WaiterResult<GetChangeCommandOutput>>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-route-53",
|
|
3
3
|
"description": "AWS SDK for JavaScript Route 53 Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.1038.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:types' 'yarn:build:es' && yarn build:cjs",
|
|
7
7
|
"build:cjs": "node ../../scripts/compilation/inline client-route-53",
|
|
@@ -27,18 +27,18 @@
|
|
|
27
27
|
"dependencies": {
|
|
28
28
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
29
29
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
30
|
-
"@aws-sdk/core": "^3.974.
|
|
31
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
30
|
+
"@aws-sdk/core": "^3.974.6",
|
|
31
|
+
"@aws-sdk/credential-provider-node": "^3.972.37",
|
|
32
32
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
33
33
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
34
34
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
35
35
|
"@aws-sdk/middleware-sdk-route53": "^3.972.12",
|
|
36
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
36
|
+
"@aws-sdk/middleware-user-agent": "^3.972.36",
|
|
37
37
|
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
38
38
|
"@aws-sdk/types": "^3.973.8",
|
|
39
39
|
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
40
40
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
41
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
41
|
+
"@aws-sdk/util-user-agent-node": "^3.973.22",
|
|
42
42
|
"@smithy/config-resolver": "^4.4.17",
|
|
43
43
|
"@smithy/core": "^3.23.17",
|
|
44
44
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
@@ -46,7 +46,7 @@
|
|
|
46
46
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
47
47
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
48
48
|
"@smithy/middleware-endpoint": "^4.4.32",
|
|
49
|
-
"@smithy/middleware-retry": "^4.5.
|
|
49
|
+
"@smithy/middleware-retry": "^4.5.6",
|
|
50
50
|
"@smithy/middleware-serde": "^4.2.20",
|
|
51
51
|
"@smithy/middleware-stack": "^4.2.14",
|
|
52
52
|
"@smithy/node-config-provider": "^4.3.14",
|
|
@@ -62,9 +62,9 @@
|
|
|
62
62
|
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
63
63
|
"@smithy/util-endpoints": "^3.4.2",
|
|
64
64
|
"@smithy/util-middleware": "^4.2.14",
|
|
65
|
-
"@smithy/util-retry": "^4.3.
|
|
65
|
+
"@smithy/util-retry": "^4.3.5",
|
|
66
66
|
"@smithy/util-utf8": "^4.2.2",
|
|
67
|
-
"@smithy/util-waiter": "^4.
|
|
67
|
+
"@smithy/util-waiter": "^4.3.0",
|
|
68
68
|
"tslib": "^2.6.2"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|