@aws-sdk/client-directory-service 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.
|
@@ -680,7 +680,7 @@ export interface DirectoryService {
|
|
|
680
680
|
* @param args - command input.
|
|
681
681
|
* @param waiterConfig - `maxWaitTime` in seconds or waiter config object.
|
|
682
682
|
*/
|
|
683
|
-
waitUntilHybridADUpdated(args: DescribeHybridADUpdateCommandInput, waiterConfig: number | Omit<WaiterConfiguration<DirectoryService>, "client">): Promise<WaiterResult
|
|
683
|
+
waitUntilHybridADUpdated(args: DescribeHybridADUpdateCommandInput, waiterConfig: number | Omit<WaiterConfiguration<DirectoryService>, "client">): Promise<WaiterResult<DescribeHybridADUpdateCommandOutput>>;
|
|
684
684
|
}
|
|
685
685
|
/**
|
|
686
686
|
* <fullname>Directory Service</fullname>
|
|
@@ -1494,7 +1494,7 @@ export interface DirectoryService {
|
|
|
1494
1494
|
WaiterConfiguration<DirectoryService>,
|
|
1495
1495
|
Exclude<keyof WaiterConfiguration<DirectoryService>, "client">
|
|
1496
1496
|
>
|
|
1497
|
-
): Promise<WaiterResult
|
|
1497
|
+
): Promise<WaiterResult<DescribeHybridADUpdateCommandOutput>>;
|
|
1498
1498
|
}
|
|
1499
1499
|
export declare class DirectoryService
|
|
1500
1500
|
extends DirectoryServiceClient
|
|
@@ -1,11 +1,19 @@
|
|
|
1
1
|
import { WaiterConfiguration, WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import {
|
|
2
|
+
import {
|
|
3
|
+
DescribeHybridADUpdateCommandInput,
|
|
4
|
+
DescribeHybridADUpdateCommandOutput,
|
|
5
|
+
} from "../commands/DescribeHybridADUpdateCommand";
|
|
3
6
|
import { DirectoryServiceClient } from "../DirectoryServiceClient";
|
|
7
|
+
import { DirectoryServiceServiceException } from "../models/DirectoryServiceServiceException";
|
|
4
8
|
export declare const waitForHybridADUpdated: (
|
|
5
9
|
params: WaiterConfiguration<DirectoryServiceClient>,
|
|
6
10
|
input: DescribeHybridADUpdateCommandInput
|
|
7
|
-
) => Promise<
|
|
11
|
+
) => Promise<
|
|
12
|
+
WaiterResult<
|
|
13
|
+
DescribeHybridADUpdateCommandOutput | DirectoryServiceServiceException
|
|
14
|
+
>
|
|
15
|
+
>;
|
|
8
16
|
export declare const waitUntilHybridADUpdated: (
|
|
9
17
|
params: WaiterConfiguration<DirectoryServiceClient>,
|
|
10
18
|
input: DescribeHybridADUpdateCommandInput
|
|
11
|
-
) => Promise<WaiterResult
|
|
19
|
+
) => Promise<WaiterResult<DescribeHybridADUpdateCommandOutput>>;
|
|
@@ -1,14 +1,15 @@
|
|
|
1
1
|
import { type WaiterConfiguration, type WaiterResult } from "@smithy/util-waiter";
|
|
2
|
-
import { type DescribeHybridADUpdateCommandInput } from "../commands/DescribeHybridADUpdateCommand";
|
|
2
|
+
import { type DescribeHybridADUpdateCommandInput, type DescribeHybridADUpdateCommandOutput } from "../commands/DescribeHybridADUpdateCommand";
|
|
3
3
|
import type { DirectoryServiceClient } from "../DirectoryServiceClient";
|
|
4
|
+
import type { DirectoryServiceServiceException } from "../models/DirectoryServiceServiceException";
|
|
4
5
|
/**
|
|
5
6
|
*
|
|
6
7
|
* @deprecated Use waitUntilHybridADUpdated instead. waitForHybridADUpdated does not throw error in non-success cases.
|
|
7
8
|
*/
|
|
8
|
-
export declare const waitForHybridADUpdated: (params: WaiterConfiguration<DirectoryServiceClient>, input: DescribeHybridADUpdateCommandInput) => Promise<WaiterResult
|
|
9
|
+
export declare const waitForHybridADUpdated: (params: WaiterConfiguration<DirectoryServiceClient>, input: DescribeHybridADUpdateCommandInput) => Promise<WaiterResult<DescribeHybridADUpdateCommandOutput | DirectoryServiceServiceException>>;
|
|
9
10
|
/**
|
|
10
11
|
*
|
|
11
12
|
* @param params - Waiter configuration options.
|
|
12
13
|
* @param input - The input to DescribeHybridADUpdateCommand for polling.
|
|
13
14
|
*/
|
|
14
|
-
export declare const waitUntilHybridADUpdated: (params: WaiterConfiguration<DirectoryServiceClient>, input: DescribeHybridADUpdateCommandInput) => Promise<WaiterResult
|
|
15
|
+
export declare const waitUntilHybridADUpdated: (params: WaiterConfiguration<DirectoryServiceClient>, input: DescribeHybridADUpdateCommandInput) => Promise<WaiterResult<DescribeHybridADUpdateCommandOutput>>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-directory-service",
|
|
3
3
|
"description": "AWS SDK for JavaScript Directory Service 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-directory-service",
|
|
@@ -23,17 +23,17 @@
|
|
|
23
23
|
"dependencies": {
|
|
24
24
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
25
25
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
26
|
-
"@aws-sdk/core": "^3.974.
|
|
27
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
+
"@aws-sdk/core": "^3.974.6",
|
|
27
|
+
"@aws-sdk/credential-provider-node": "^3.972.37",
|
|
28
28
|
"@aws-sdk/middleware-host-header": "^3.972.10",
|
|
29
29
|
"@aws-sdk/middleware-logger": "^3.972.10",
|
|
30
30
|
"@aws-sdk/middleware-recursion-detection": "^3.972.11",
|
|
31
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
31
|
+
"@aws-sdk/middleware-user-agent": "^3.972.36",
|
|
32
32
|
"@aws-sdk/region-config-resolver": "^3.972.13",
|
|
33
33
|
"@aws-sdk/types": "^3.973.8",
|
|
34
34
|
"@aws-sdk/util-endpoints": "^3.996.8",
|
|
35
35
|
"@aws-sdk/util-user-agent-browser": "^3.972.10",
|
|
36
|
-
"@aws-sdk/util-user-agent-node": "^3.973.
|
|
36
|
+
"@aws-sdk/util-user-agent-node": "^3.973.22",
|
|
37
37
|
"@smithy/config-resolver": "^4.4.17",
|
|
38
38
|
"@smithy/core": "^3.23.17",
|
|
39
39
|
"@smithy/fetch-http-handler": "^5.3.17",
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@smithy/invalid-dependency": "^4.2.14",
|
|
42
42
|
"@smithy/middleware-content-length": "^4.2.14",
|
|
43
43
|
"@smithy/middleware-endpoint": "^4.4.32",
|
|
44
|
-
"@smithy/middleware-retry": "^4.5.
|
|
44
|
+
"@smithy/middleware-retry": "^4.5.6",
|
|
45
45
|
"@smithy/middleware-serde": "^4.2.20",
|
|
46
46
|
"@smithy/middleware-stack": "^4.2.14",
|
|
47
47
|
"@smithy/node-config-provider": "^4.3.14",
|
|
@@ -57,9 +57,9 @@
|
|
|
57
57
|
"@smithy/util-defaults-mode-node": "^4.2.54",
|
|
58
58
|
"@smithy/util-endpoints": "^3.4.2",
|
|
59
59
|
"@smithy/util-middleware": "^4.2.14",
|
|
60
|
-
"@smithy/util-retry": "^4.3.
|
|
60
|
+
"@smithy/util-retry": "^4.3.5",
|
|
61
61
|
"@smithy/util-utf8": "^4.2.2",
|
|
62
|
-
"@smithy/util-waiter": "^4.
|
|
62
|
+
"@smithy/util-waiter": "^4.3.0",
|
|
63
63
|
"tslib": "^2.6.2"
|
|
64
64
|
},
|
|
65
65
|
"devDependencies": {
|