@aws-sdk/client-pca-connector-ad 3.975.0 → 3.980.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/index.js +18 -11
- package/dist-es/PcaConnectorAd.js +13 -1
- package/dist-types/PcaConnectorAd.d.ts +36 -1
- package/dist-types/ts3.4/PcaConnectorAd.d.ts +40 -1
- package/package.json +18 -18
package/dist-cjs/index.js
CHANGED
|
@@ -1314,6 +1314,16 @@ class UpdateTemplateGroupAccessControlEntryCommand extends smithyClient.Command
|
|
|
1314
1314
|
.build() {
|
|
1315
1315
|
}
|
|
1316
1316
|
|
|
1317
|
+
const paginateListConnectors = core.createPaginator(PcaConnectorAdClient, ListConnectorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1318
|
+
|
|
1319
|
+
const paginateListDirectoryRegistrations = core.createPaginator(PcaConnectorAdClient, ListDirectoryRegistrationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1320
|
+
|
|
1321
|
+
const paginateListServicePrincipalNames = core.createPaginator(PcaConnectorAdClient, ListServicePrincipalNamesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1322
|
+
|
|
1323
|
+
const paginateListTemplateGroupAccessControlEntries = core.createPaginator(PcaConnectorAdClient, ListTemplateGroupAccessControlEntriesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1324
|
+
|
|
1325
|
+
const paginateListTemplates = core.createPaginator(PcaConnectorAdClient, ListTemplatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1326
|
+
|
|
1317
1327
|
const commands = {
|
|
1318
1328
|
CreateConnectorCommand,
|
|
1319
1329
|
CreateDirectoryRegistrationCommand,
|
|
@@ -1341,19 +1351,16 @@ const commands = {
|
|
|
1341
1351
|
UpdateTemplateCommand,
|
|
1342
1352
|
UpdateTemplateGroupAccessControlEntryCommand,
|
|
1343
1353
|
};
|
|
1354
|
+
const paginators = {
|
|
1355
|
+
paginateListConnectors,
|
|
1356
|
+
paginateListDirectoryRegistrations,
|
|
1357
|
+
paginateListServicePrincipalNames,
|
|
1358
|
+
paginateListTemplateGroupAccessControlEntries,
|
|
1359
|
+
paginateListTemplates,
|
|
1360
|
+
};
|
|
1344
1361
|
class PcaConnectorAd extends PcaConnectorAdClient {
|
|
1345
1362
|
}
|
|
1346
|
-
smithyClient.createAggregatedClient(commands, PcaConnectorAd);
|
|
1347
|
-
|
|
1348
|
-
const paginateListConnectors = core.createPaginator(PcaConnectorAdClient, ListConnectorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1349
|
-
|
|
1350
|
-
const paginateListDirectoryRegistrations = core.createPaginator(PcaConnectorAdClient, ListDirectoryRegistrationsCommand, "NextToken", "NextToken", "MaxResults");
|
|
1351
|
-
|
|
1352
|
-
const paginateListServicePrincipalNames = core.createPaginator(PcaConnectorAdClient, ListServicePrincipalNamesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1353
|
-
|
|
1354
|
-
const paginateListTemplateGroupAccessControlEntries = core.createPaginator(PcaConnectorAdClient, ListTemplateGroupAccessControlEntriesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1355
|
-
|
|
1356
|
-
const paginateListTemplates = core.createPaginator(PcaConnectorAdClient, ListTemplatesCommand, "NextToken", "NextToken", "MaxResults");
|
|
1363
|
+
smithyClient.createAggregatedClient(commands, PcaConnectorAd, { paginators });
|
|
1357
1364
|
|
|
1358
1365
|
const AccessRight = {
|
|
1359
1366
|
ALLOW: "ALLOW",
|
|
@@ -24,6 +24,11 @@ import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
|
24
24
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
25
25
|
import { UpdateTemplateCommand, } from "./commands/UpdateTemplateCommand";
|
|
26
26
|
import { UpdateTemplateGroupAccessControlEntryCommand, } from "./commands/UpdateTemplateGroupAccessControlEntryCommand";
|
|
27
|
+
import { paginateListConnectors } from "./pagination/ListConnectorsPaginator";
|
|
28
|
+
import { paginateListDirectoryRegistrations } from "./pagination/ListDirectoryRegistrationsPaginator";
|
|
29
|
+
import { paginateListServicePrincipalNames } from "./pagination/ListServicePrincipalNamesPaginator";
|
|
30
|
+
import { paginateListTemplateGroupAccessControlEntries, } from "./pagination/ListTemplateGroupAccessControlEntriesPaginator";
|
|
31
|
+
import { paginateListTemplates } from "./pagination/ListTemplatesPaginator";
|
|
27
32
|
import { PcaConnectorAdClient } from "./PcaConnectorAdClient";
|
|
28
33
|
const commands = {
|
|
29
34
|
CreateConnectorCommand,
|
|
@@ -52,6 +57,13 @@ const commands = {
|
|
|
52
57
|
UpdateTemplateCommand,
|
|
53
58
|
UpdateTemplateGroupAccessControlEntryCommand,
|
|
54
59
|
};
|
|
60
|
+
const paginators = {
|
|
61
|
+
paginateListConnectors,
|
|
62
|
+
paginateListDirectoryRegistrations,
|
|
63
|
+
paginateListServicePrincipalNames,
|
|
64
|
+
paginateListTemplateGroupAccessControlEntries,
|
|
65
|
+
paginateListTemplates,
|
|
66
|
+
};
|
|
55
67
|
export class PcaConnectorAd extends PcaConnectorAdClient {
|
|
56
68
|
}
|
|
57
|
-
createAggregatedClient(commands, PcaConnectorAd);
|
|
69
|
+
createAggregatedClient(commands, PcaConnectorAd, { paginators });
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
|
|
1
|
+
import type { HttpHandlerOptions as __HttpHandlerOptions, PaginationConfiguration, Paginator } from "@smithy/types";
|
|
2
2
|
import { CreateConnectorCommandInput, CreateConnectorCommandOutput } from "./commands/CreateConnectorCommand";
|
|
3
3
|
import { CreateDirectoryRegistrationCommandInput, CreateDirectoryRegistrationCommandOutput } from "./commands/CreateDirectoryRegistrationCommand";
|
|
4
4
|
import { CreateServicePrincipalNameCommandInput, CreateServicePrincipalNameCommandOutput } from "./commands/CreateServicePrincipalNameCommand";
|
|
@@ -178,6 +178,41 @@ export interface PcaConnectorAd {
|
|
|
178
178
|
updateTemplateGroupAccessControlEntry(args: UpdateTemplateGroupAccessControlEntryCommandInput, options?: __HttpHandlerOptions): Promise<UpdateTemplateGroupAccessControlEntryCommandOutput>;
|
|
179
179
|
updateTemplateGroupAccessControlEntry(args: UpdateTemplateGroupAccessControlEntryCommandInput, cb: (err: any, data?: UpdateTemplateGroupAccessControlEntryCommandOutput) => void): void;
|
|
180
180
|
updateTemplateGroupAccessControlEntry(args: UpdateTemplateGroupAccessControlEntryCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UpdateTemplateGroupAccessControlEntryCommandOutput) => void): void;
|
|
181
|
+
/**
|
|
182
|
+
* @see {@link ListConnectorsCommand}
|
|
183
|
+
* @param args - command input.
|
|
184
|
+
* @param paginationConfig - optional pagination config.
|
|
185
|
+
* @returns AsyncIterable of {@link ListConnectorsCommandOutput}.
|
|
186
|
+
*/
|
|
187
|
+
paginateListConnectors(args?: ListConnectorsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConnectorsCommandOutput>;
|
|
188
|
+
/**
|
|
189
|
+
* @see {@link ListDirectoryRegistrationsCommand}
|
|
190
|
+
* @param args - command input.
|
|
191
|
+
* @param paginationConfig - optional pagination config.
|
|
192
|
+
* @returns AsyncIterable of {@link ListDirectoryRegistrationsCommandOutput}.
|
|
193
|
+
*/
|
|
194
|
+
paginateListDirectoryRegistrations(args?: ListDirectoryRegistrationsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListDirectoryRegistrationsCommandOutput>;
|
|
195
|
+
/**
|
|
196
|
+
* @see {@link ListServicePrincipalNamesCommand}
|
|
197
|
+
* @param args - command input.
|
|
198
|
+
* @param paginationConfig - optional pagination config.
|
|
199
|
+
* @returns AsyncIterable of {@link ListServicePrincipalNamesCommandOutput}.
|
|
200
|
+
*/
|
|
201
|
+
paginateListServicePrincipalNames(args: ListServicePrincipalNamesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListServicePrincipalNamesCommandOutput>;
|
|
202
|
+
/**
|
|
203
|
+
* @see {@link ListTemplateGroupAccessControlEntriesCommand}
|
|
204
|
+
* @param args - command input.
|
|
205
|
+
* @param paginationConfig - optional pagination config.
|
|
206
|
+
* @returns AsyncIterable of {@link ListTemplateGroupAccessControlEntriesCommandOutput}.
|
|
207
|
+
*/
|
|
208
|
+
paginateListTemplateGroupAccessControlEntries(args: ListTemplateGroupAccessControlEntriesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTemplateGroupAccessControlEntriesCommandOutput>;
|
|
209
|
+
/**
|
|
210
|
+
* @see {@link ListTemplatesCommand}
|
|
211
|
+
* @param args - command input.
|
|
212
|
+
* @param paginationConfig - optional pagination config.
|
|
213
|
+
* @returns AsyncIterable of {@link ListTemplatesCommandOutput}.
|
|
214
|
+
*/
|
|
215
|
+
paginateListTemplates(args: ListTemplatesCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListTemplatesCommandOutput>;
|
|
181
216
|
}
|
|
182
217
|
/**
|
|
183
218
|
* <p>Amazon Web Services Private CA Connector for Active Directory creates a connector between Amazon Web Services Private CA and Active Directory (AD) that enables you to
|
|
@@ -1,4 +1,8 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
HttpHandlerOptions as __HttpHandlerOptions,
|
|
3
|
+
PaginationConfiguration,
|
|
4
|
+
Paginator,
|
|
5
|
+
} from "@smithy/types";
|
|
2
6
|
import {
|
|
3
7
|
CreateConnectorCommandInput,
|
|
4
8
|
CreateConnectorCommandOutput,
|
|
@@ -458,6 +462,41 @@ export interface PcaConnectorAd {
|
|
|
458
462
|
data?: UpdateTemplateGroupAccessControlEntryCommandOutput
|
|
459
463
|
) => void
|
|
460
464
|
): void;
|
|
465
|
+
paginateListConnectors(
|
|
466
|
+
args?: ListConnectorsCommandInput,
|
|
467
|
+
paginationConfig?: Pick<
|
|
468
|
+
PaginationConfiguration,
|
|
469
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
470
|
+
>
|
|
471
|
+
): Paginator<ListConnectorsCommandOutput>;
|
|
472
|
+
paginateListDirectoryRegistrations(
|
|
473
|
+
args?: ListDirectoryRegistrationsCommandInput,
|
|
474
|
+
paginationConfig?: Pick<
|
|
475
|
+
PaginationConfiguration,
|
|
476
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
477
|
+
>
|
|
478
|
+
): Paginator<ListDirectoryRegistrationsCommandOutput>;
|
|
479
|
+
paginateListServicePrincipalNames(
|
|
480
|
+
args: ListServicePrincipalNamesCommandInput,
|
|
481
|
+
paginationConfig?: Pick<
|
|
482
|
+
PaginationConfiguration,
|
|
483
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
484
|
+
>
|
|
485
|
+
): Paginator<ListServicePrincipalNamesCommandOutput>;
|
|
486
|
+
paginateListTemplateGroupAccessControlEntries(
|
|
487
|
+
args: ListTemplateGroupAccessControlEntriesCommandInput,
|
|
488
|
+
paginationConfig?: Pick<
|
|
489
|
+
PaginationConfiguration,
|
|
490
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
491
|
+
>
|
|
492
|
+
): Paginator<ListTemplateGroupAccessControlEntriesCommandOutput>;
|
|
493
|
+
paginateListTemplates(
|
|
494
|
+
args: ListTemplatesCommandInput,
|
|
495
|
+
paginationConfig?: Pick<
|
|
496
|
+
PaginationConfiguration,
|
|
497
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
498
|
+
>
|
|
499
|
+
): Paginator<ListTemplatesCommandOutput>;
|
|
461
500
|
}
|
|
462
501
|
export declare class PcaConnectorAd
|
|
463
502
|
extends PcaConnectorAdClient
|
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.980.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-pca-connector-ad",
|
|
@@ -21,38 +21,38 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@aws-crypto/sha256-browser": "5.2.0",
|
|
23
23
|
"@aws-crypto/sha256-js": "5.2.0",
|
|
24
|
-
"@aws-sdk/core": "^3.973.
|
|
25
|
-
"@aws-sdk/credential-provider-node": "^3.972.
|
|
26
|
-
"@aws-sdk/middleware-host-header": "^3.972.
|
|
27
|
-
"@aws-sdk/middleware-logger": "^3.972.
|
|
28
|
-
"@aws-sdk/middleware-recursion-detection": "^3.972.
|
|
29
|
-
"@aws-sdk/middleware-user-agent": "^3.972.
|
|
30
|
-
"@aws-sdk/region-config-resolver": "^3.972.
|
|
31
|
-
"@aws-sdk/types": "^3.973.
|
|
32
|
-
"@aws-sdk/util-endpoints": "3.
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
24
|
+
"@aws-sdk/core": "^3.973.5",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.4",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.3",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.3",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.3",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.5",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.3",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
|
+
"@aws-sdk/util-endpoints": "3.980.0",
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.3",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.3",
|
|
35
35
|
"@smithy/config-resolver": "^4.4.6",
|
|
36
|
-
"@smithy/core": "^3.
|
|
36
|
+
"@smithy/core": "^3.22.0",
|
|
37
37
|
"@smithy/fetch-http-handler": "^5.3.9",
|
|
38
38
|
"@smithy/hash-node": "^4.2.8",
|
|
39
39
|
"@smithy/invalid-dependency": "^4.2.8",
|
|
40
40
|
"@smithy/middleware-content-length": "^4.2.8",
|
|
41
|
-
"@smithy/middleware-endpoint": "^4.4.
|
|
42
|
-
"@smithy/middleware-retry": "^4.4.
|
|
41
|
+
"@smithy/middleware-endpoint": "^4.4.12",
|
|
42
|
+
"@smithy/middleware-retry": "^4.4.29",
|
|
43
43
|
"@smithy/middleware-serde": "^4.2.9",
|
|
44
44
|
"@smithy/middleware-stack": "^4.2.8",
|
|
45
45
|
"@smithy/node-config-provider": "^4.3.8",
|
|
46
46
|
"@smithy/node-http-handler": "^4.4.8",
|
|
47
47
|
"@smithy/protocol-http": "^5.3.8",
|
|
48
|
-
"@smithy/smithy-client": "^4.
|
|
48
|
+
"@smithy/smithy-client": "^4.11.1",
|
|
49
49
|
"@smithy/types": "^4.12.0",
|
|
50
50
|
"@smithy/url-parser": "^4.2.8",
|
|
51
51
|
"@smithy/util-base64": "^4.3.0",
|
|
52
52
|
"@smithy/util-body-length-browser": "^4.2.0",
|
|
53
53
|
"@smithy/util-body-length-node": "^4.2.1",
|
|
54
|
-
"@smithy/util-defaults-mode-browser": "^4.3.
|
|
55
|
-
"@smithy/util-defaults-mode-node": "^4.2.
|
|
54
|
+
"@smithy/util-defaults-mode-browser": "^4.3.28",
|
|
55
|
+
"@smithy/util-defaults-mode-node": "^4.2.31",
|
|
56
56
|
"@smithy/util-endpoints": "^3.2.8",
|
|
57
57
|
"@smithy/util-middleware": "^4.2.8",
|
|
58
58
|
"@smithy/util-retry": "^4.2.8",
|