@aws-sdk/client-pca-connector-scep 3.975.0 → 3.978.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
CHANGED
|
@@ -720,6 +720,10 @@ class UntagResourceCommand extends smithyClient.Command
|
|
|
720
720
|
.build() {
|
|
721
721
|
}
|
|
722
722
|
|
|
723
|
+
const paginateListChallengeMetadata = core.createPaginator(PcaConnectorScepClient, ListChallengeMetadataCommand, "NextToken", "NextToken", "MaxResults");
|
|
724
|
+
|
|
725
|
+
const paginateListConnectors = core.createPaginator(PcaConnectorScepClient, ListConnectorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
726
|
+
|
|
723
727
|
const commands = {
|
|
724
728
|
CreateChallengeCommand,
|
|
725
729
|
CreateConnectorCommand,
|
|
@@ -734,13 +738,13 @@ const commands = {
|
|
|
734
738
|
TagResourceCommand,
|
|
735
739
|
UntagResourceCommand,
|
|
736
740
|
};
|
|
741
|
+
const paginators = {
|
|
742
|
+
paginateListChallengeMetadata,
|
|
743
|
+
paginateListConnectors,
|
|
744
|
+
};
|
|
737
745
|
class PcaConnectorScep extends PcaConnectorScepClient {
|
|
738
746
|
}
|
|
739
|
-
smithyClient.createAggregatedClient(commands, PcaConnectorScep);
|
|
740
|
-
|
|
741
|
-
const paginateListChallengeMetadata = core.createPaginator(PcaConnectorScepClient, ListChallengeMetadataCommand, "NextToken", "NextToken", "MaxResults");
|
|
742
|
-
|
|
743
|
-
const paginateListConnectors = core.createPaginator(PcaConnectorScepClient, ListConnectorsCommand, "NextToken", "NextToken", "MaxResults");
|
|
747
|
+
smithyClient.createAggregatedClient(commands, PcaConnectorScep, { paginators });
|
|
744
748
|
|
|
745
749
|
const ValidationExceptionReason = {
|
|
746
750
|
CA_CERT_VALIDITY_TOO_SHORT: "CA_CERT_VALIDITY_TOO_SHORT",
|
|
@@ -11,6 +11,8 @@ import { ListConnectorsCommand, } from "./commands/ListConnectorsCommand";
|
|
|
11
11
|
import { ListTagsForResourceCommand, } from "./commands/ListTagsForResourceCommand";
|
|
12
12
|
import { TagResourceCommand } from "./commands/TagResourceCommand";
|
|
13
13
|
import { UntagResourceCommand, } from "./commands/UntagResourceCommand";
|
|
14
|
+
import { paginateListChallengeMetadata } from "./pagination/ListChallengeMetadataPaginator";
|
|
15
|
+
import { paginateListConnectors } from "./pagination/ListConnectorsPaginator";
|
|
14
16
|
import { PcaConnectorScepClient } from "./PcaConnectorScepClient";
|
|
15
17
|
const commands = {
|
|
16
18
|
CreateChallengeCommand,
|
|
@@ -26,6 +28,10 @@ const commands = {
|
|
|
26
28
|
TagResourceCommand,
|
|
27
29
|
UntagResourceCommand,
|
|
28
30
|
};
|
|
31
|
+
const paginators = {
|
|
32
|
+
paginateListChallengeMetadata,
|
|
33
|
+
paginateListConnectors,
|
|
34
|
+
};
|
|
29
35
|
export class PcaConnectorScep extends PcaConnectorScepClient {
|
|
30
36
|
}
|
|
31
|
-
createAggregatedClient(commands, PcaConnectorScep);
|
|
37
|
+
createAggregatedClient(commands, PcaConnectorScep, { 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 { CreateChallengeCommandInput, CreateChallengeCommandOutput } from "./commands/CreateChallengeCommand";
|
|
3
3
|
import { CreateConnectorCommandInput, CreateConnectorCommandOutput } from "./commands/CreateConnectorCommand";
|
|
4
4
|
import { DeleteChallengeCommandInput, DeleteChallengeCommandOutput } from "./commands/DeleteChallengeCommand";
|
|
@@ -86,6 +86,20 @@ export interface PcaConnectorScep {
|
|
|
86
86
|
untagResource(args: UntagResourceCommandInput, options?: __HttpHandlerOptions): Promise<UntagResourceCommandOutput>;
|
|
87
87
|
untagResource(args: UntagResourceCommandInput, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
88
88
|
untagResource(args: UntagResourceCommandInput, options: __HttpHandlerOptions, cb: (err: any, data?: UntagResourceCommandOutput) => void): void;
|
|
89
|
+
/**
|
|
90
|
+
* @see {@link ListChallengeMetadataCommand}
|
|
91
|
+
* @param args - command input.
|
|
92
|
+
* @param paginationConfig - optional pagination config.
|
|
93
|
+
* @returns AsyncIterable of {@link ListChallengeMetadataCommandOutput}.
|
|
94
|
+
*/
|
|
95
|
+
paginateListChallengeMetadata(args: ListChallengeMetadataCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListChallengeMetadataCommandOutput>;
|
|
96
|
+
/**
|
|
97
|
+
* @see {@link ListConnectorsCommand}
|
|
98
|
+
* @param args - command input.
|
|
99
|
+
* @param paginationConfig - optional pagination config.
|
|
100
|
+
* @returns AsyncIterable of {@link ListConnectorsCommandOutput}.
|
|
101
|
+
*/
|
|
102
|
+
paginateListConnectors(args?: ListConnectorsCommandInput, paginationConfig?: Omit<PaginationConfiguration, "client">): Paginator<ListConnectorsCommandOutput>;
|
|
89
103
|
}
|
|
90
104
|
/**
|
|
91
105
|
* <p>Connector for SCEP creates a connector between Amazon Web Services Private CA and your SCEP-enabled clients and devices. For more information, see <a href="https://docs.aws.amazon.com/privateca/latest/userguide/scep-connector.htmlconnector-for-scep.html">Connector for SCEP</a> in the <i>Amazon Web Services Private CA User Guide</i>.</p>
|
|
@@ -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
|
CreateChallengeCommandInput,
|
|
4
8
|
CreateChallengeCommandOutput,
|
|
@@ -206,6 +210,20 @@ export interface PcaConnectorScep {
|
|
|
206
210
|
options: __HttpHandlerOptions,
|
|
207
211
|
cb: (err: any, data?: UntagResourceCommandOutput) => void
|
|
208
212
|
): void;
|
|
213
|
+
paginateListChallengeMetadata(
|
|
214
|
+
args: ListChallengeMetadataCommandInput,
|
|
215
|
+
paginationConfig?: Pick<
|
|
216
|
+
PaginationConfiguration,
|
|
217
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
218
|
+
>
|
|
219
|
+
): Paginator<ListChallengeMetadataCommandOutput>;
|
|
220
|
+
paginateListConnectors(
|
|
221
|
+
args?: ListConnectorsCommandInput,
|
|
222
|
+
paginationConfig?: Pick<
|
|
223
|
+
PaginationConfiguration,
|
|
224
|
+
Exclude<keyof PaginationConfiguration, "client">
|
|
225
|
+
>
|
|
226
|
+
): Paginator<ListConnectorsCommandOutput>;
|
|
209
227
|
}
|
|
210
228
|
export declare class PcaConnectorScep
|
|
211
229
|
extends PcaConnectorScepClient
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/client-pca-connector-scep",
|
|
3
3
|
"description": "AWS SDK for JavaScript Pca Connector Scep Client for Node.js, Browser and React Native",
|
|
4
|
-
"version": "3.
|
|
4
|
+
"version": "3.978.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-scep",
|
|
@@ -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.
|
|
24
|
+
"@aws-sdk/core": "^3.973.4",
|
|
25
|
+
"@aws-sdk/credential-provider-node": "^3.972.2",
|
|
26
|
+
"@aws-sdk/middleware-host-header": "^3.972.2",
|
|
27
|
+
"@aws-sdk/middleware-logger": "^3.972.2",
|
|
28
|
+
"@aws-sdk/middleware-recursion-detection": "^3.972.2",
|
|
29
|
+
"@aws-sdk/middleware-user-agent": "^3.972.4",
|
|
30
|
+
"@aws-sdk/region-config-resolver": "^3.972.2",
|
|
31
|
+
"@aws-sdk/types": "^3.973.1",
|
|
32
32
|
"@aws-sdk/util-endpoints": "3.972.0",
|
|
33
|
-
"@aws-sdk/util-user-agent-browser": "^3.972.
|
|
34
|
-
"@aws-sdk/util-user-agent-node": "^3.972.
|
|
33
|
+
"@aws-sdk/util-user-agent-browser": "^3.972.2",
|
|
34
|
+
"@aws-sdk/util-user-agent-node": "^3.972.2",
|
|
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",
|