@aws-sdk/client-directory-service 3.477.0 → 3.478.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-cjs/pagination/DescribeClientAuthenticationSettingsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeDirectoriesPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeDomainControllersPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeLDAPSSettingsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeRegionsPaginator.js +2 -23
- package/dist-cjs/pagination/DescribeSharedDirectoriesPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeSnapshotsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeTrustsPaginator.js +2 -24
- package/dist-cjs/pagination/DescribeUpdateDirectoryPaginator.js +2 -23
- package/dist-cjs/pagination/ListCertificatesPaginator.js +2 -24
- package/dist-cjs/pagination/ListIpRoutesPaginator.js +2 -24
- package/dist-cjs/pagination/ListLogSubscriptionsPaginator.js +2 -24
- package/dist-cjs/pagination/ListSchemaExtensionsPaginator.js +2 -24
- package/dist-cjs/pagination/ListTagsForResourcePaginator.js +2 -24
- package/dist-es/pagination/DescribeClientAuthenticationSettingsPaginator.js +2 -23
- package/dist-es/pagination/DescribeDirectoriesPaginator.js +2 -23
- package/dist-es/pagination/DescribeDomainControllersPaginator.js +2 -23
- package/dist-es/pagination/DescribeLDAPSSettingsPaginator.js +2 -23
- package/dist-es/pagination/DescribeRegionsPaginator.js +2 -22
- package/dist-es/pagination/DescribeSharedDirectoriesPaginator.js +2 -23
- package/dist-es/pagination/DescribeSnapshotsPaginator.js +2 -23
- package/dist-es/pagination/DescribeTrustsPaginator.js +2 -23
- package/dist-es/pagination/DescribeUpdateDirectoryPaginator.js +2 -22
- package/dist-es/pagination/ListCertificatesPaginator.js +2 -23
- package/dist-es/pagination/ListIpRoutesPaginator.js +2 -23
- package/dist-es/pagination/ListLogSubscriptionsPaginator.js +2 -23
- package/dist-es/pagination/ListSchemaExtensionsPaginator.js +2 -23
- package/dist-es/pagination/ListTagsForResourcePaginator.js +2 -23
- package/dist-types/pagination/DescribeClientAuthenticationSettingsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeDirectoriesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeDomainControllersPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeLDAPSSettingsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeRegionsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeSharedDirectoriesPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeSnapshotsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeTrustsPaginator.d.ts +1 -1
- package/dist-types/pagination/DescribeUpdateDirectoryPaginator.d.ts +1 -1
- package/dist-types/pagination/ListCertificatesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListIpRoutesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListLogSubscriptionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListSchemaExtensionsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +1 -1
- package/dist-types/ts3.4/pagination/DescribeClientAuthenticationSettingsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeDirectoriesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeDomainControllersPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeLDAPSSettingsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeRegionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeSharedDirectoriesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeSnapshotsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeTrustsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/DescribeUpdateDirectoryPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListCertificatesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListIpRoutesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListLogSubscriptionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListSchemaExtensionsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +3 -3
- package/package.json +6 -5
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { DescribeSnapshotsCommand, } from "../commands/DescribeSnapshotsCommand";
|
|
2
3
|
import { DirectoryServiceClient } from "../DirectoryServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeSnapshotsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeSnapshots(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["Limit"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof DirectoryServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected DirectoryService | DirectoryServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeSnapshots = createPaginator(DirectoryServiceClient, DescribeSnapshotsCommand, "NextToken", "NextToken", "Limit");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { DescribeTrustsCommand, } from "../commands/DescribeTrustsCommand";
|
|
2
3
|
import { DirectoryServiceClient } from "../DirectoryServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeTrustsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeTrusts(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["Limit"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof DirectoryServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected DirectoryService | DirectoryServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateDescribeTrusts = createPaginator(DirectoryServiceClient, DescribeTrustsCommand, "NextToken", "NextToken", "Limit");
|
|
@@ -1,24 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { DescribeUpdateDirectoryCommand, } from "../commands/DescribeUpdateDirectoryCommand";
|
|
2
3
|
import { DirectoryServiceClient } from "../DirectoryServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new DescribeUpdateDirectoryCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateDescribeUpdateDirectory(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
if (config.client instanceof DirectoryServiceClient) {
|
|
13
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
14
|
-
}
|
|
15
|
-
else {
|
|
16
|
-
throw new Error("Invalid client, expected DirectoryService | DirectoryServiceClient");
|
|
17
|
-
}
|
|
18
|
-
yield page;
|
|
19
|
-
const prevToken = token;
|
|
20
|
-
token = page.NextToken;
|
|
21
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
22
|
-
}
|
|
23
|
-
return undefined;
|
|
24
|
-
}
|
|
4
|
+
export const paginateDescribeUpdateDirectory = createPaginator(DirectoryServiceClient, DescribeUpdateDirectoryCommand, "NextToken", "NextToken", "");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListCertificatesCommand, } from "../commands/ListCertificatesCommand";
|
|
2
3
|
import { DirectoryServiceClient } from "../DirectoryServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListCertificatesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListCertificates(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["Limit"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof DirectoryServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected DirectoryService | DirectoryServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListCertificates = createPaginator(DirectoryServiceClient, ListCertificatesCommand, "NextToken", "NextToken", "Limit");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListIpRoutesCommand, } from "../commands/ListIpRoutesCommand";
|
|
2
3
|
import { DirectoryServiceClient } from "../DirectoryServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListIpRoutesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListIpRoutes(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["Limit"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof DirectoryServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected DirectoryService | DirectoryServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListIpRoutes = createPaginator(DirectoryServiceClient, ListIpRoutesCommand, "NextToken", "NextToken", "Limit");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListLogSubscriptionsCommand, } from "../commands/ListLogSubscriptionsCommand";
|
|
2
3
|
import { DirectoryServiceClient } from "../DirectoryServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListLogSubscriptionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListLogSubscriptions(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["Limit"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof DirectoryServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected DirectoryService | DirectoryServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListLogSubscriptions = createPaginator(DirectoryServiceClient, ListLogSubscriptionsCommand, "NextToken", "NextToken", "Limit");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListSchemaExtensionsCommand, } from "../commands/ListSchemaExtensionsCommand";
|
|
2
3
|
import { DirectoryServiceClient } from "../DirectoryServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListSchemaExtensionsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListSchemaExtensions(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["Limit"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof DirectoryServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected DirectoryService | DirectoryServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListSchemaExtensions = createPaginator(DirectoryServiceClient, ListSchemaExtensionsCommand, "NextToken", "NextToken", "Limit");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListTagsForResourceCommand, } from "../commands/ListTagsForResourceCommand";
|
|
2
3
|
import { DirectoryServiceClient } from "../DirectoryServiceClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListTagsForResourceCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListTagsForResource(config, input, ...additionalArguments) {
|
|
7
|
-
let token = config.startingToken || undefined;
|
|
8
|
-
let hasNext = true;
|
|
9
|
-
let page;
|
|
10
|
-
while (hasNext) {
|
|
11
|
-
input.NextToken = token;
|
|
12
|
-
input["Limit"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof DirectoryServiceClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected DirectoryService | DirectoryServiceClient");
|
|
18
|
-
}
|
|
19
|
-
yield page;
|
|
20
|
-
const prevToken = token;
|
|
21
|
-
token = page.NextToken;
|
|
22
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
23
|
-
}
|
|
24
|
-
return undefined;
|
|
25
|
-
}
|
|
4
|
+
export const paginateListTagsForResource = createPaginator(DirectoryServiceClient, ListTagsForResourceCommand, "NextToken", "NextToken", "Limit");
|
|
@@ -4,4 +4,4 @@ import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeClientAuthenticationSettings: (config: DirectoryServicePaginationConfiguration, input: DescribeClientAuthenticationSettingsCommandInput, ...rest: any[]) => Paginator<DescribeClientAuthenticationSettingsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeDirectories: (config: DirectoryServicePaginationConfiguration, input: DescribeDirectoriesCommandInput, ...rest: any[]) => Paginator<DescribeDirectoriesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeDomainControllers: (config: DirectoryServicePaginationConfiguration, input: DescribeDomainControllersCommandInput, ...rest: any[]) => Paginator<DescribeDomainControllersCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeLDAPSSettings: (config: DirectoryServicePaginationConfiguration, input: DescribeLDAPSSettingsCommandInput, ...rest: any[]) => Paginator<DescribeLDAPSSettingsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeRegions: (config: DirectoryServicePaginationConfiguration, input: DescribeRegionsCommandInput, ...rest: any[]) => Paginator<DescribeRegionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeSharedDirectories: (config: DirectoryServicePaginationConfiguration, input: DescribeSharedDirectoriesCommandInput, ...rest: any[]) => Paginator<DescribeSharedDirectoriesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeSnapshots: (config: DirectoryServicePaginationConfiguration, input: DescribeSnapshotsCommandInput, ...rest: any[]) => Paginator<DescribeSnapshotsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeTrusts: (config: DirectoryServicePaginationConfiguration, input: DescribeTrustsCommandInput, ...rest: any[]) => Paginator<DescribeTrustsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeUpdateDirectory: (config: DirectoryServicePaginationConfiguration, input: DescribeUpdateDirectoryCommandInput, ...rest: any[]) => Paginator<DescribeUpdateDirectoryCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListCertificates: (config: DirectoryServicePaginationConfiguration, input: ListCertificatesCommandInput, ...rest: any[]) => Paginator<ListCertificatesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListIpRoutes: (config: DirectoryServicePaginationConfiguration, input: ListIpRoutesCommandInput, ...rest: any[]) => Paginator<ListIpRoutesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListLogSubscriptions: (config: DirectoryServicePaginationConfiguration, input: ListLogSubscriptionsCommandInput, ...rest: any[]) => Paginator<ListLogSubscriptionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListSchemaExtensions: (config: DirectoryServicePaginationConfiguration, input: ListSchemaExtensionsCommandInput, ...rest: any[]) => Paginator<ListSchemaExtensionsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListTagsForResource: (config: DirectoryServicePaginationConfiguration, input: ListTagsForResourceCommandInput, ...rest: any[]) => Paginator<ListTagsForResourceCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeClientAuthenticationSettingsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeClientAuthenticationSettingsCommand";
|
|
6
6
|
import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeClientAuthenticationSettings: (
|
|
8
8
|
config: DirectoryServicePaginationConfiguration,
|
|
9
9
|
input: DescribeClientAuthenticationSettingsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeClientAuthenticationSettingsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeDirectoriesCommandOutput,
|
|
5
5
|
} from "../commands/DescribeDirectoriesCommand";
|
|
6
6
|
import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeDirectories: (
|
|
8
8
|
config: DirectoryServicePaginationConfiguration,
|
|
9
9
|
input: DescribeDirectoriesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeDirectoriesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeDomainControllersCommandOutput,
|
|
5
5
|
} from "../commands/DescribeDomainControllersCommand";
|
|
6
6
|
import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeDomainControllers: (
|
|
8
8
|
config: DirectoryServicePaginationConfiguration,
|
|
9
9
|
input: DescribeDomainControllersCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeDomainControllersCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeLDAPSSettingsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeLDAPSSettingsCommand";
|
|
6
6
|
import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeLDAPSSettings: (
|
|
8
8
|
config: DirectoryServicePaginationConfiguration,
|
|
9
9
|
input: DescribeLDAPSSettingsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeLDAPSSettingsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeRegionsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeRegionsCommand";
|
|
6
6
|
import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeRegions: (
|
|
8
8
|
config: DirectoryServicePaginationConfiguration,
|
|
9
9
|
input: DescribeRegionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeRegionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeSharedDirectoriesCommandOutput,
|
|
5
5
|
} from "../commands/DescribeSharedDirectoriesCommand";
|
|
6
6
|
import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeSharedDirectories: (
|
|
8
8
|
config: DirectoryServicePaginationConfiguration,
|
|
9
9
|
input: DescribeSharedDirectoriesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeSharedDirectoriesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeSnapshotsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeSnapshotsCommand";
|
|
6
6
|
import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeSnapshots: (
|
|
8
8
|
config: DirectoryServicePaginationConfiguration,
|
|
9
9
|
input: DescribeSnapshotsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeSnapshotsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeTrustsCommandOutput,
|
|
5
5
|
} from "../commands/DescribeTrustsCommand";
|
|
6
6
|
import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeTrusts: (
|
|
8
8
|
config: DirectoryServicePaginationConfiguration,
|
|
9
9
|
input: DescribeTrustsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeTrustsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
DescribeUpdateDirectoryCommandOutput,
|
|
5
5
|
} from "../commands/DescribeUpdateDirectoryCommand";
|
|
6
6
|
import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateDescribeUpdateDirectory: (
|
|
8
8
|
config: DirectoryServicePaginationConfiguration,
|
|
9
9
|
input: DescribeUpdateDirectoryCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<DescribeUpdateDirectoryCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListCertificatesCommandOutput,
|
|
5
5
|
} from "../commands/ListCertificatesCommand";
|
|
6
6
|
import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListCertificates: (
|
|
8
8
|
config: DirectoryServicePaginationConfiguration,
|
|
9
9
|
input: ListCertificatesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListCertificatesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListIpRoutesCommandOutput,
|
|
5
5
|
} from "../commands/ListIpRoutesCommand";
|
|
6
6
|
import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListIpRoutes: (
|
|
8
8
|
config: DirectoryServicePaginationConfiguration,
|
|
9
9
|
input: ListIpRoutesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListIpRoutesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListLogSubscriptionsCommandOutput,
|
|
5
5
|
} from "../commands/ListLogSubscriptionsCommand";
|
|
6
6
|
import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListLogSubscriptions: (
|
|
8
8
|
config: DirectoryServicePaginationConfiguration,
|
|
9
9
|
input: ListLogSubscriptionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListLogSubscriptionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListSchemaExtensionsCommandOutput,
|
|
5
5
|
} from "../commands/ListSchemaExtensionsCommand";
|
|
6
6
|
import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListSchemaExtensions: (
|
|
8
8
|
config: DirectoryServicePaginationConfiguration,
|
|
9
9
|
input: ListSchemaExtensionsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListSchemaExtensionsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListTagsForResourceCommandOutput,
|
|
5
5
|
} from "../commands/ListTagsForResourceCommand";
|
|
6
6
|
import { DirectoryServicePaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListTagsForResource: (
|
|
8
8
|
config: DirectoryServicePaginationConfiguration,
|
|
9
9
|
input: ListTagsForResourceCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListTagsForResourceCommandOutput>;
|
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.478.0",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
7
7
|
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
@@ -20,20 +20,21 @@
|
|
|
20
20
|
"dependencies": {
|
|
21
21
|
"@aws-crypto/sha256-browser": "3.0.0",
|
|
22
22
|
"@aws-crypto/sha256-js": "3.0.0",
|
|
23
|
-
"@aws-sdk/client-sts": "3.
|
|
23
|
+
"@aws-sdk/client-sts": "3.478.0",
|
|
24
24
|
"@aws-sdk/core": "3.477.0",
|
|
25
|
-
"@aws-sdk/credential-provider-node": "3.
|
|
25
|
+
"@aws-sdk/credential-provider-node": "3.478.0",
|
|
26
26
|
"@aws-sdk/middleware-host-header": "3.468.0",
|
|
27
27
|
"@aws-sdk/middleware-logger": "3.468.0",
|
|
28
28
|
"@aws-sdk/middleware-recursion-detection": "3.468.0",
|
|
29
29
|
"@aws-sdk/middleware-signing": "3.468.0",
|
|
30
|
-
"@aws-sdk/middleware-user-agent": "3.
|
|
30
|
+
"@aws-sdk/middleware-user-agent": "3.478.0",
|
|
31
31
|
"@aws-sdk/region-config-resolver": "3.470.0",
|
|
32
32
|
"@aws-sdk/types": "3.468.0",
|
|
33
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
+
"@aws-sdk/util-endpoints": "3.478.0",
|
|
34
34
|
"@aws-sdk/util-user-agent-browser": "3.468.0",
|
|
35
35
|
"@aws-sdk/util-user-agent-node": "3.470.0",
|
|
36
36
|
"@smithy/config-resolver": "^2.0.21",
|
|
37
|
+
"@smithy/core": "^1.2.0",
|
|
37
38
|
"@smithy/fetch-http-handler": "^2.3.1",
|
|
38
39
|
"@smithy/hash-node": "^2.0.17",
|
|
39
40
|
"@smithy/invalid-dependency": "^2.0.15",
|