@aws-sdk/client-pca-connector-ad 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/ListConnectorsPaginator.js +2 -24
- package/dist-cjs/pagination/ListDirectoryRegistrationsPaginator.js +2 -24
- package/dist-cjs/pagination/ListServicePrincipalNamesPaginator.js +2 -24
- package/dist-cjs/pagination/ListTemplateGroupAccessControlEntriesPaginator.js +2 -24
- package/dist-cjs/pagination/ListTemplatesPaginator.js +2 -24
- package/dist-es/pagination/ListConnectorsPaginator.js +2 -23
- package/dist-es/pagination/ListDirectoryRegistrationsPaginator.js +2 -23
- package/dist-es/pagination/ListServicePrincipalNamesPaginator.js +2 -23
- package/dist-es/pagination/ListTemplateGroupAccessControlEntriesPaginator.js +2 -23
- package/dist-es/pagination/ListTemplatesPaginator.js +2 -23
- package/dist-types/pagination/ListConnectorsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListDirectoryRegistrationsPaginator.d.ts +1 -1
- package/dist-types/pagination/ListServicePrincipalNamesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListTemplateGroupAccessControlEntriesPaginator.d.ts +1 -1
- package/dist-types/pagination/ListTemplatesPaginator.d.ts +1 -1
- package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListDirectoryRegistrationsPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListServicePrincipalNamesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListTemplateGroupAccessControlEntriesPaginator.d.ts +3 -3
- package/dist-types/ts3.4/pagination/ListTemplatesPaginator.d.ts +3 -3
- package/package.json +5 -5
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListConnectors = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListConnectorsCommand_1 = require("../commands/ListConnectorsCommand");
|
|
5
6
|
const PcaConnectorAdClient_1 = require("../PcaConnectorAdClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListConnectorsCommand_1.ListConnectorsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListConnectors(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof PcaConnectorAdClient_1.PcaConnectorAdClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected PcaConnectorAd | PcaConnectorAdClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListConnectors = paginateListConnectors;
|
|
7
|
+
exports.paginateListConnectors = (0, core_1.createPaginator)(PcaConnectorAdClient_1.PcaConnectorAdClient, ListConnectorsCommand_1.ListConnectorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListDirectoryRegistrations = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListDirectoryRegistrationsCommand_1 = require("../commands/ListDirectoryRegistrationsCommand");
|
|
5
6
|
const PcaConnectorAdClient_1 = require("../PcaConnectorAdClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListDirectoryRegistrationsCommand_1.ListDirectoryRegistrationsCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListDirectoryRegistrations(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof PcaConnectorAdClient_1.PcaConnectorAdClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected PcaConnectorAd | PcaConnectorAdClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListDirectoryRegistrations = paginateListDirectoryRegistrations;
|
|
7
|
+
exports.paginateListDirectoryRegistrations = (0, core_1.createPaginator)(PcaConnectorAdClient_1.PcaConnectorAdClient, ListDirectoryRegistrationsCommand_1.ListDirectoryRegistrationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListServicePrincipalNames = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListServicePrincipalNamesCommand_1 = require("../commands/ListServicePrincipalNamesCommand");
|
|
5
6
|
const PcaConnectorAdClient_1 = require("../PcaConnectorAdClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListServicePrincipalNamesCommand_1.ListServicePrincipalNamesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListServicePrincipalNames(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof PcaConnectorAdClient_1.PcaConnectorAdClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected PcaConnectorAd | PcaConnectorAdClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListServicePrincipalNames = paginateListServicePrincipalNames;
|
|
7
|
+
exports.paginateListServicePrincipalNames = (0, core_1.createPaginator)(PcaConnectorAdClient_1.PcaConnectorAdClient, ListServicePrincipalNamesCommand_1.ListServicePrincipalNamesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListTemplateGroupAccessControlEntries = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListTemplateGroupAccessControlEntriesCommand_1 = require("../commands/ListTemplateGroupAccessControlEntriesCommand");
|
|
5
6
|
const PcaConnectorAdClient_1 = require("../PcaConnectorAdClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListTemplateGroupAccessControlEntriesCommand_1.ListTemplateGroupAccessControlEntriesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListTemplateGroupAccessControlEntries(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof PcaConnectorAdClient_1.PcaConnectorAdClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected PcaConnectorAd | PcaConnectorAdClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListTemplateGroupAccessControlEntries = paginateListTemplateGroupAccessControlEntries;
|
|
7
|
+
exports.paginateListTemplateGroupAccessControlEntries = (0, core_1.createPaginator)(PcaConnectorAdClient_1.PcaConnectorAdClient, ListTemplateGroupAccessControlEntriesCommand_1.ListTemplateGroupAccessControlEntriesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,29 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.paginateListTemplates = void 0;
|
|
4
|
+
const core_1 = require("@smithy/core");
|
|
4
5
|
const ListTemplatesCommand_1 = require("../commands/ListTemplatesCommand");
|
|
5
6
|
const PcaConnectorAdClient_1 = require("../PcaConnectorAdClient");
|
|
6
|
-
|
|
7
|
-
return await client.send(new ListTemplatesCommand_1.ListTemplatesCommand(input), ...args);
|
|
8
|
-
};
|
|
9
|
-
async function* paginateListTemplates(config, input, ...additionalArguments) {
|
|
10
|
-
let token = config.startingToken || undefined;
|
|
11
|
-
let hasNext = true;
|
|
12
|
-
let page;
|
|
13
|
-
while (hasNext) {
|
|
14
|
-
input.NextToken = token;
|
|
15
|
-
input["MaxResults"] = config.pageSize;
|
|
16
|
-
if (config.client instanceof PcaConnectorAdClient_1.PcaConnectorAdClient) {
|
|
17
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
18
|
-
}
|
|
19
|
-
else {
|
|
20
|
-
throw new Error("Invalid client, expected PcaConnectorAd | PcaConnectorAdClient");
|
|
21
|
-
}
|
|
22
|
-
yield page;
|
|
23
|
-
const prevToken = token;
|
|
24
|
-
token = page.NextToken;
|
|
25
|
-
hasNext = !!(token && (!config.stopOnSameToken || token !== prevToken));
|
|
26
|
-
}
|
|
27
|
-
return undefined;
|
|
28
|
-
}
|
|
29
|
-
exports.paginateListTemplates = paginateListTemplates;
|
|
7
|
+
exports.paginateListTemplates = (0, core_1.createPaginator)(PcaConnectorAdClient_1.PcaConnectorAdClient, ListTemplatesCommand_1.ListTemplatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListConnectorsCommand, } from "../commands/ListConnectorsCommand";
|
|
2
3
|
import { PcaConnectorAdClient } from "../PcaConnectorAdClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListConnectorsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListConnectors(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["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof PcaConnectorAdClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected PcaConnectorAd | PcaConnectorAdClient");
|
|
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 paginateListConnectors = createPaginator(PcaConnectorAdClient, ListConnectorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListDirectoryRegistrationsCommand, } from "../commands/ListDirectoryRegistrationsCommand";
|
|
2
3
|
import { PcaConnectorAdClient } from "../PcaConnectorAdClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListDirectoryRegistrationsCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListDirectoryRegistrations(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["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof PcaConnectorAdClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected PcaConnectorAd | PcaConnectorAdClient");
|
|
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 paginateListDirectoryRegistrations = createPaginator(PcaConnectorAdClient, ListDirectoryRegistrationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListServicePrincipalNamesCommand, } from "../commands/ListServicePrincipalNamesCommand";
|
|
2
3
|
import { PcaConnectorAdClient } from "../PcaConnectorAdClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListServicePrincipalNamesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListServicePrincipalNames(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["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof PcaConnectorAdClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected PcaConnectorAd | PcaConnectorAdClient");
|
|
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 paginateListServicePrincipalNames = createPaginator(PcaConnectorAdClient, ListServicePrincipalNamesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListTemplateGroupAccessControlEntriesCommand, } from "../commands/ListTemplateGroupAccessControlEntriesCommand";
|
|
2
3
|
import { PcaConnectorAdClient } from "../PcaConnectorAdClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListTemplateGroupAccessControlEntriesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListTemplateGroupAccessControlEntries(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["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof PcaConnectorAdClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected PcaConnectorAd | PcaConnectorAdClient");
|
|
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 paginateListTemplateGroupAccessControlEntries = createPaginator(PcaConnectorAdClient, ListTemplateGroupAccessControlEntriesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -1,25 +1,4 @@
|
|
|
1
|
+
import { createPaginator } from "@smithy/core";
|
|
1
2
|
import { ListTemplatesCommand, } from "../commands/ListTemplatesCommand";
|
|
2
3
|
import { PcaConnectorAdClient } from "../PcaConnectorAdClient";
|
|
3
|
-
const
|
|
4
|
-
return await client.send(new ListTemplatesCommand(input), ...args);
|
|
5
|
-
};
|
|
6
|
-
export async function* paginateListTemplates(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["MaxResults"] = config.pageSize;
|
|
13
|
-
if (config.client instanceof PcaConnectorAdClient) {
|
|
14
|
-
page = await makePagedClientRequest(config.client, input, ...additionalArguments);
|
|
15
|
-
}
|
|
16
|
-
else {
|
|
17
|
-
throw new Error("Invalid client, expected PcaConnectorAd | PcaConnectorAdClient");
|
|
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 paginateListTemplates = createPaginator(PcaConnectorAdClient, ListTemplatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
@@ -4,4 +4,4 @@ import { PcaConnectorAdPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListConnectors: (config: PcaConnectorAdPaginationConfiguration, input: ListConnectorsCommandInput, ...rest: any[]) => Paginator<ListConnectorsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { PcaConnectorAdPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDirectoryRegistrations: (config: PcaConnectorAdPaginationConfiguration, input: ListDirectoryRegistrationsCommandInput, ...rest: any[]) => Paginator<ListDirectoryRegistrationsCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { PcaConnectorAdPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListServicePrincipalNames: (config: PcaConnectorAdPaginationConfiguration, input: ListServicePrincipalNamesCommandInput, ...rest: any[]) => Paginator<ListServicePrincipalNamesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { PcaConnectorAdPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListTemplateGroupAccessControlEntries: (config: PcaConnectorAdPaginationConfiguration, input: ListTemplateGroupAccessControlEntriesCommandInput, ...rest: any[]) => Paginator<ListTemplateGroupAccessControlEntriesCommandOutput>;
|
|
@@ -4,4 +4,4 @@ import { PcaConnectorAdPaginationConfiguration } from "./Interfaces";
|
|
|
4
4
|
/**
|
|
5
5
|
* @public
|
|
6
6
|
*/
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListTemplates: (config: PcaConnectorAdPaginationConfiguration, input: ListTemplatesCommandInput, ...rest: any[]) => Paginator<ListTemplatesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListConnectorsCommandOutput,
|
|
5
5
|
} from "../commands/ListConnectorsCommand";
|
|
6
6
|
import { PcaConnectorAdPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListConnectors: (
|
|
8
8
|
config: PcaConnectorAdPaginationConfiguration,
|
|
9
9
|
input: ListConnectorsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListConnectorsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListDirectoryRegistrationsCommandOutput,
|
|
5
5
|
} from "../commands/ListDirectoryRegistrationsCommand";
|
|
6
6
|
import { PcaConnectorAdPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListDirectoryRegistrations: (
|
|
8
8
|
config: PcaConnectorAdPaginationConfiguration,
|
|
9
9
|
input: ListDirectoryRegistrationsCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListDirectoryRegistrationsCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListServicePrincipalNamesCommandOutput,
|
|
5
5
|
} from "../commands/ListServicePrincipalNamesCommand";
|
|
6
6
|
import { PcaConnectorAdPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListServicePrincipalNames: (
|
|
8
8
|
config: PcaConnectorAdPaginationConfiguration,
|
|
9
9
|
input: ListServicePrincipalNamesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListServicePrincipalNamesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListTemplateGroupAccessControlEntriesCommandOutput,
|
|
5
5
|
} from "../commands/ListTemplateGroupAccessControlEntriesCommand";
|
|
6
6
|
import { PcaConnectorAdPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListTemplateGroupAccessControlEntries: (
|
|
8
8
|
config: PcaConnectorAdPaginationConfiguration,
|
|
9
9
|
input: ListTemplateGroupAccessControlEntriesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListTemplateGroupAccessControlEntriesCommandOutput>;
|
|
@@ -4,8 +4,8 @@ import {
|
|
|
4
4
|
ListTemplatesCommandOutput,
|
|
5
5
|
} from "../commands/ListTemplatesCommand";
|
|
6
6
|
import { PcaConnectorAdPaginationConfiguration } from "./Interfaces";
|
|
7
|
-
export declare
|
|
7
|
+
export declare const paginateListTemplates: (
|
|
8
8
|
config: PcaConnectorAdPaginationConfiguration,
|
|
9
9
|
input: ListTemplatesCommandInput,
|
|
10
|
-
...
|
|
11
|
-
)
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListTemplatesCommandOutput>;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pca-connector-ad",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pca Connector Ad 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,17 +20,17 @@
|
|
|
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",
|