@aws-sdk/client-pca-connector-scep 3.595.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/LICENSE +201 -0
- package/README.md +305 -0
- package/dist-cjs/PcaConnectorScep.js +35 -0
- package/dist-cjs/PcaConnectorScepClient.js +56 -0
- package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
- package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
- package/dist-cjs/commands/CreateChallengeCommand.js +29 -0
- package/dist-cjs/commands/CreateConnectorCommand.js +28 -0
- package/dist-cjs/commands/DeleteChallengeCommand.js +28 -0
- package/dist-cjs/commands/DeleteConnectorCommand.js +28 -0
- package/dist-cjs/commands/GetChallengeMetadataCommand.js +28 -0
- package/dist-cjs/commands/GetChallengePasswordCommand.js +29 -0
- package/dist-cjs/commands/GetConnectorCommand.js +28 -0
- package/dist-cjs/commands/ListChallengeMetadataCommand.js +28 -0
- package/dist-cjs/commands/ListConnectorsCommand.js +28 -0
- package/dist-cjs/commands/ListTagsForResourceCommand.js +28 -0
- package/dist-cjs/commands/TagResourceCommand.js +28 -0
- package/dist-cjs/commands/UntagResourceCommand.js +28 -0
- package/dist-cjs/commands/index.js +15 -0
- package/dist-cjs/endpoint/EndpointParameters.js +18 -0
- package/dist-cjs/endpoint/endpointResolver.js +14 -0
- package/dist-cjs/endpoint/ruleset.js +7 -0
- package/dist-cjs/extensionConfiguration.js +2 -0
- package/dist-cjs/index.js +11 -0
- package/dist-cjs/models/PcaConnectorScepServiceException.js +12 -0
- package/dist-cjs/models/index.js +4 -0
- package/dist-cjs/models/models_0.js +177 -0
- package/dist-cjs/pagination/Interfaces.js +2 -0
- package/dist-cjs/pagination/ListChallengeMetadataPaginator.js +7 -0
- package/dist-cjs/pagination/ListConnectorsPaginator.js +7 -0
- package/dist-cjs/pagination/index.js +6 -0
- package/dist-cjs/protocols/Aws_restJson1.js +565 -0
- package/dist-cjs/runtimeConfig.browser.js +39 -0
- package/dist-cjs/runtimeConfig.js +49 -0
- package/dist-cjs/runtimeConfig.native.js +15 -0
- package/dist-cjs/runtimeConfig.shared.js +34 -0
- package/dist-cjs/runtimeExtensions.js +25 -0
- package/dist-es/PcaConnectorScep.js +31 -0
- package/dist-es/PcaConnectorScepClient.js +52 -0
- package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
- package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
- package/dist-es/commands/CreateChallengeCommand.js +25 -0
- package/dist-es/commands/CreateConnectorCommand.js +24 -0
- package/dist-es/commands/DeleteChallengeCommand.js +24 -0
- package/dist-es/commands/DeleteConnectorCommand.js +24 -0
- package/dist-es/commands/GetChallengeMetadataCommand.js +24 -0
- package/dist-es/commands/GetChallengePasswordCommand.js +25 -0
- package/dist-es/commands/GetConnectorCommand.js +24 -0
- package/dist-es/commands/ListChallengeMetadataCommand.js +24 -0
- package/dist-es/commands/ListConnectorsCommand.js +24 -0
- package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
- package/dist-es/commands/TagResourceCommand.js +24 -0
- package/dist-es/commands/UntagResourceCommand.js +24 -0
- package/dist-es/commands/index.js +12 -0
- package/dist-es/endpoint/EndpointParameters.js +14 -0
- package/dist-es/endpoint/endpointResolver.js +10 -0
- package/dist-es/endpoint/ruleset.js +4 -0
- package/dist-es/extensionConfiguration.js +1 -0
- package/dist-es/index.js +6 -0
- package/dist-es/models/PcaConnectorScepServiceException.js +8 -0
- package/dist-es/models/index.js +1 -0
- package/dist-es/models/models_0.js +163 -0
- package/dist-es/pagination/Interfaces.js +1 -0
- package/dist-es/pagination/ListChallengeMetadataPaginator.js +4 -0
- package/dist-es/pagination/ListConnectorsPaginator.js +4 -0
- package/dist-es/pagination/index.js +3 -0
- package/dist-es/protocols/Aws_restJson1.js +538 -0
- package/dist-es/runtimeConfig.browser.js +34 -0
- package/dist-es/runtimeConfig.js +44 -0
- package/dist-es/runtimeConfig.native.js +11 -0
- package/dist-es/runtimeConfig.shared.js +30 -0
- package/dist-es/runtimeExtensions.js +21 -0
- package/dist-types/PcaConnectorScep.d.ts +99 -0
- package/dist-types/PcaConnectorScepClient.d.ts +187 -0
- package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
- package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
- package/dist-types/commands/CreateChallengeCommand.d.ts +101 -0
- package/dist-types/commands/CreateConnectorCommand.d.ts +97 -0
- package/dist-types/commands/DeleteChallengeCommand.d.ts +82 -0
- package/dist-types/commands/DeleteConnectorCommand.d.ts +82 -0
- package/dist-types/commands/GetChallengeMetadataCommand.d.ts +85 -0
- package/dist-types/commands/GetChallengePasswordCommand.d.ts +80 -0
- package/dist-types/commands/GetConnectorCommand.d.ts +100 -0
- package/dist-types/commands/ListChallengeMetadataCommand.d.ts +90 -0
- package/dist-types/commands/ListConnectorsCommand.d.ts +101 -0
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +86 -0
- package/dist-types/commands/TagResourceCommand.d.ts +81 -0
- package/dist-types/commands/UntagResourceCommand.d.ts +81 -0
- package/dist-types/commands/index.d.ts +12 -0
- package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
- package/dist-types/endpoint/endpointResolver.d.ts +5 -0
- package/dist-types/endpoint/ruleset.d.ts +2 -0
- package/dist-types/extensionConfiguration.d.ts +9 -0
- package/dist-types/index.d.ts +18 -0
- package/dist-types/models/PcaConnectorScepServiceException.d.ts +14 -0
- package/dist-types/models/index.d.ts +1 -0
- package/dist-types/models/models_0.d.ts +763 -0
- package/dist-types/pagination/Interfaces.d.ts +8 -0
- package/dist-types/pagination/ListChallengeMetadataPaginator.d.ts +7 -0
- package/dist-types/pagination/ListConnectorsPaginator.d.ts +7 -0
- package/dist-types/pagination/index.d.ts +3 -0
- package/dist-types/protocols/Aws_restJson1.d.ts +110 -0
- package/dist-types/runtimeConfig.browser.d.ts +45 -0
- package/dist-types/runtimeConfig.d.ts +45 -0
- package/dist-types/runtimeConfig.native.d.ts +44 -0
- package/dist-types/runtimeConfig.shared.d.ts +21 -0
- package/dist-types/runtimeExtensions.d.ts +17 -0
- package/dist-types/ts3.4/PcaConnectorScep.d.ts +212 -0
- package/dist-types/ts3.4/PcaConnectorScepClient.d.ts +195 -0
- package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
- package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
- package/dist-types/ts3.4/commands/CreateChallengeCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/CreateConnectorCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/DeleteChallengeCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/DeleteConnectorCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/GetChallengeMetadataCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/GetChallengePasswordCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/GetConnectorCommand.d.ts +36 -0
- package/dist-types/ts3.4/commands/ListChallengeMetadataCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +39 -0
- package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +40 -0
- package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
- package/dist-types/ts3.4/commands/index.d.ts +12 -0
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
- package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
- package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
- package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
- package/dist-types/ts3.4/index.d.ts +9 -0
- package/dist-types/ts3.4/models/PcaConnectorScepServiceException.d.ts +9 -0
- package/dist-types/ts3.4/models/index.d.ts +1 -0
- package/dist-types/ts3.4/models/models_0.d.ts +257 -0
- package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
- package/dist-types/ts3.4/pagination/ListChallengeMetadataPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +11 -0
- package/dist-types/ts3.4/pagination/index.d.ts +3 -0
- package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -0
- package/dist-types/ts3.4/runtimeConfig.browser.d.ts +87 -0
- package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
- package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
- package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
- package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
- package/package.json +103 -0
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { TagResourceRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
PcaConnectorScepClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../PcaConnectorScepClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface TagResourceCommandInput extends TagResourceRequest {}
|
|
12
|
+
export interface TagResourceCommandOutput extends __MetadataBearer {}
|
|
13
|
+
declare const TagResourceCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: TagResourceCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
TagResourceCommandInput,
|
|
18
|
+
TagResourceCommandOutput,
|
|
19
|
+
PcaConnectorScepClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (
|
|
24
|
+
__0_0: TagResourceCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
TagResourceCommandInput,
|
|
27
|
+
TagResourceCommandOutput,
|
|
28
|
+
PcaConnectorScepClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
32
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
|
+
};
|
|
34
|
+
export declare class TagResourceCommand extends TagResourceCommand_base {}
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
import { Command as $Command } from "@smithy/smithy-client";
|
|
2
|
+
import { MetadataBearer as __MetadataBearer } from "@smithy/types";
|
|
3
|
+
import { UntagResourceRequest } from "../models/models_0";
|
|
4
|
+
import {
|
|
5
|
+
PcaConnectorScepClientResolvedConfig,
|
|
6
|
+
ServiceInputTypes,
|
|
7
|
+
ServiceOutputTypes,
|
|
8
|
+
} from "../PcaConnectorScepClient";
|
|
9
|
+
export { __MetadataBearer };
|
|
10
|
+
export { $Command };
|
|
11
|
+
export interface UntagResourceCommandInput extends UntagResourceRequest {}
|
|
12
|
+
export interface UntagResourceCommandOutput extends __MetadataBearer {}
|
|
13
|
+
declare const UntagResourceCommand_base: {
|
|
14
|
+
new (
|
|
15
|
+
input: UntagResourceCommandInput
|
|
16
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
17
|
+
UntagResourceCommandInput,
|
|
18
|
+
UntagResourceCommandOutput,
|
|
19
|
+
PcaConnectorScepClientResolvedConfig,
|
|
20
|
+
ServiceInputTypes,
|
|
21
|
+
ServiceOutputTypes
|
|
22
|
+
>;
|
|
23
|
+
new (
|
|
24
|
+
__0_0: UntagResourceCommandInput
|
|
25
|
+
): import("@smithy/smithy-client").CommandImpl<
|
|
26
|
+
UntagResourceCommandInput,
|
|
27
|
+
UntagResourceCommandOutput,
|
|
28
|
+
PcaConnectorScepClientResolvedConfig,
|
|
29
|
+
ServiceInputTypes,
|
|
30
|
+
ServiceOutputTypes
|
|
31
|
+
>;
|
|
32
|
+
getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
|
|
33
|
+
};
|
|
34
|
+
export declare class UntagResourceCommand extends UntagResourceCommand_base {}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
export * from "./CreateChallengeCommand";
|
|
2
|
+
export * from "./CreateConnectorCommand";
|
|
3
|
+
export * from "./DeleteChallengeCommand";
|
|
4
|
+
export * from "./DeleteConnectorCommand";
|
|
5
|
+
export * from "./GetChallengeMetadataCommand";
|
|
6
|
+
export * from "./GetChallengePasswordCommand";
|
|
7
|
+
export * from "./GetConnectorCommand";
|
|
8
|
+
export * from "./ListChallengeMetadataCommand";
|
|
9
|
+
export * from "./ListConnectorsCommand";
|
|
10
|
+
export * from "./ListTagsForResourceCommand";
|
|
11
|
+
export * from "./TagResourceCommand";
|
|
12
|
+
export * from "./UntagResourceCommand";
|
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import {
|
|
2
|
+
Endpoint,
|
|
3
|
+
EndpointParameters as __EndpointParameters,
|
|
4
|
+
EndpointV2,
|
|
5
|
+
Provider,
|
|
6
|
+
} from "@smithy/types";
|
|
7
|
+
export interface ClientInputEndpointParameters {
|
|
8
|
+
region?: string | Provider<string>;
|
|
9
|
+
useDualstackEndpoint?: boolean | Provider<boolean>;
|
|
10
|
+
useFipsEndpoint?: boolean | Provider<boolean>;
|
|
11
|
+
endpoint?:
|
|
12
|
+
| string
|
|
13
|
+
| Provider<string>
|
|
14
|
+
| Endpoint
|
|
15
|
+
| Provider<Endpoint>
|
|
16
|
+
| EndpointV2
|
|
17
|
+
| Provider<EndpointV2>;
|
|
18
|
+
}
|
|
19
|
+
export type ClientResolvedEndpointParameters = ClientInputEndpointParameters & {
|
|
20
|
+
defaultSigningName: string;
|
|
21
|
+
};
|
|
22
|
+
export declare const resolveClientEndpointParameters: <T>(
|
|
23
|
+
options: T & ClientInputEndpointParameters
|
|
24
|
+
) => T &
|
|
25
|
+
ClientInputEndpointParameters & {
|
|
26
|
+
defaultSigningName: string;
|
|
27
|
+
};
|
|
28
|
+
export declare const commonParams: {
|
|
29
|
+
readonly UseFIPS: {
|
|
30
|
+
readonly type: "builtInParams";
|
|
31
|
+
readonly name: "useFipsEndpoint";
|
|
32
|
+
};
|
|
33
|
+
readonly Endpoint: {
|
|
34
|
+
readonly type: "builtInParams";
|
|
35
|
+
readonly name: "endpoint";
|
|
36
|
+
};
|
|
37
|
+
readonly Region: {
|
|
38
|
+
readonly type: "builtInParams";
|
|
39
|
+
readonly name: "region";
|
|
40
|
+
};
|
|
41
|
+
readonly UseDualStack: {
|
|
42
|
+
readonly type: "builtInParams";
|
|
43
|
+
readonly name: "useDualstackEndpoint";
|
|
44
|
+
};
|
|
45
|
+
};
|
|
46
|
+
export interface EndpointParameters extends __EndpointParameters {
|
|
47
|
+
Region?: string;
|
|
48
|
+
UseDualStack?: boolean;
|
|
49
|
+
UseFIPS?: boolean;
|
|
50
|
+
Endpoint?: string;
|
|
51
|
+
}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { AwsRegionExtensionConfiguration } from "@aws-sdk/types";
|
|
2
|
+
import { HttpHandlerExtensionConfiguration } from "@smithy/protocol-http";
|
|
3
|
+
import { DefaultExtensionConfiguration } from "@smithy/types";
|
|
4
|
+
import { HttpAuthExtensionConfiguration } from "./auth/httpAuthExtensionConfiguration";
|
|
5
|
+
export interface PcaConnectorScepExtensionConfiguration
|
|
6
|
+
extends HttpHandlerExtensionConfiguration,
|
|
7
|
+
DefaultExtensionConfiguration,
|
|
8
|
+
AwsRegionExtensionConfiguration,
|
|
9
|
+
HttpAuthExtensionConfiguration {}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
export * from "./PcaConnectorScepClient";
|
|
2
|
+
export * from "./PcaConnectorScep";
|
|
3
|
+
export { ClientInputEndpointParameters } from "./endpoint/EndpointParameters";
|
|
4
|
+
export { RuntimeExtension } from "./runtimeExtensions";
|
|
5
|
+
export { PcaConnectorScepExtensionConfiguration } from "./extensionConfiguration";
|
|
6
|
+
export * from "./commands";
|
|
7
|
+
export * from "./pagination";
|
|
8
|
+
export * from "./models";
|
|
9
|
+
export { PcaConnectorScepServiceException } from "./models/PcaConnectorScepServiceException";
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import {
|
|
2
|
+
ServiceException as __ServiceException,
|
|
3
|
+
ServiceExceptionOptions as __ServiceExceptionOptions,
|
|
4
|
+
} from "@smithy/smithy-client";
|
|
5
|
+
export { __ServiceExceptionOptions };
|
|
6
|
+
export { __ServiceException };
|
|
7
|
+
export declare class PcaConnectorScepServiceException extends __ServiceException {
|
|
8
|
+
constructor(options: __ServiceExceptionOptions);
|
|
9
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from "./models_0";
|
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
import { ExceptionOptionType as __ExceptionOptionType } from "@smithy/smithy-client";
|
|
2
|
+
import { PcaConnectorScepServiceException as __BaseException } from "./PcaConnectorScepServiceException";
|
|
3
|
+
export declare class AccessDeniedException extends __BaseException {
|
|
4
|
+
readonly name: "AccessDeniedException";
|
|
5
|
+
readonly $fault: "client";
|
|
6
|
+
Message: string | undefined;
|
|
7
|
+
constructor(
|
|
8
|
+
opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
|
|
9
|
+
);
|
|
10
|
+
}
|
|
11
|
+
export declare class BadRequestException extends __BaseException {
|
|
12
|
+
readonly name: "BadRequestException";
|
|
13
|
+
readonly $fault: "client";
|
|
14
|
+
Message: string | undefined;
|
|
15
|
+
constructor(
|
|
16
|
+
opts: __ExceptionOptionType<BadRequestException, __BaseException>
|
|
17
|
+
);
|
|
18
|
+
}
|
|
19
|
+
export interface Challenge {
|
|
20
|
+
Arn?: string;
|
|
21
|
+
ConnectorArn?: string;
|
|
22
|
+
CreatedAt?: Date;
|
|
23
|
+
UpdatedAt?: Date;
|
|
24
|
+
Password?: string;
|
|
25
|
+
}
|
|
26
|
+
export interface ChallengeMetadata {
|
|
27
|
+
Arn?: string;
|
|
28
|
+
ConnectorArn?: string;
|
|
29
|
+
CreatedAt?: Date;
|
|
30
|
+
UpdatedAt?: Date;
|
|
31
|
+
}
|
|
32
|
+
export interface ChallengeMetadataSummary {
|
|
33
|
+
Arn?: string;
|
|
34
|
+
ConnectorArn?: string;
|
|
35
|
+
CreatedAt?: Date;
|
|
36
|
+
UpdatedAt?: Date;
|
|
37
|
+
}
|
|
38
|
+
export declare class ConflictException extends __BaseException {
|
|
39
|
+
readonly name: "ConflictException";
|
|
40
|
+
readonly $fault: "client";
|
|
41
|
+
Message: string | undefined;
|
|
42
|
+
ResourceId: string | undefined;
|
|
43
|
+
ResourceType: string | undefined;
|
|
44
|
+
constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
|
|
45
|
+
}
|
|
46
|
+
export interface CreateChallengeRequest {
|
|
47
|
+
ConnectorArn: string | undefined;
|
|
48
|
+
ClientToken?: string;
|
|
49
|
+
Tags?: Record<string, string>;
|
|
50
|
+
}
|
|
51
|
+
export interface CreateChallengeResponse {
|
|
52
|
+
Challenge?: Challenge;
|
|
53
|
+
}
|
|
54
|
+
export declare class InternalServerException extends __BaseException {
|
|
55
|
+
readonly name: "InternalServerException";
|
|
56
|
+
readonly $fault: "server";
|
|
57
|
+
$retryable: {};
|
|
58
|
+
Message: string | undefined;
|
|
59
|
+
constructor(
|
|
60
|
+
opts: __ExceptionOptionType<InternalServerException, __BaseException>
|
|
61
|
+
);
|
|
62
|
+
}
|
|
63
|
+
export declare class ResourceNotFoundException extends __BaseException {
|
|
64
|
+
readonly name: "ResourceNotFoundException";
|
|
65
|
+
readonly $fault: "client";
|
|
66
|
+
Message: string | undefined;
|
|
67
|
+
ResourceId: string | undefined;
|
|
68
|
+
ResourceType: string | undefined;
|
|
69
|
+
constructor(
|
|
70
|
+
opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
|
|
71
|
+
);
|
|
72
|
+
}
|
|
73
|
+
export declare class ServiceQuotaExceededException extends __BaseException {
|
|
74
|
+
readonly name: "ServiceQuotaExceededException";
|
|
75
|
+
readonly $fault: "client";
|
|
76
|
+
Message: string | undefined;
|
|
77
|
+
ResourceType: string | undefined;
|
|
78
|
+
ServiceCode: string | undefined;
|
|
79
|
+
QuotaCode: string | undefined;
|
|
80
|
+
constructor(
|
|
81
|
+
opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
|
|
82
|
+
);
|
|
83
|
+
}
|
|
84
|
+
export declare class ThrottlingException extends __BaseException {
|
|
85
|
+
readonly name: "ThrottlingException";
|
|
86
|
+
readonly $fault: "client";
|
|
87
|
+
$retryable: {
|
|
88
|
+
throttling: boolean;
|
|
89
|
+
};
|
|
90
|
+
Message: string | undefined;
|
|
91
|
+
constructor(
|
|
92
|
+
opts: __ExceptionOptionType<ThrottlingException, __BaseException>
|
|
93
|
+
);
|
|
94
|
+
}
|
|
95
|
+
export declare const ValidationExceptionReason: {
|
|
96
|
+
readonly CA_CERT_VALIDITY_TOO_SHORT: "CA_CERT_VALIDITY_TOO_SHORT";
|
|
97
|
+
readonly INVALID_CA_USAGE_MODE: "INVALID_CA_USAGE_MODE";
|
|
98
|
+
readonly INVALID_CONNECTOR_TYPE: "INVALID_CONNECTOR_TYPE";
|
|
99
|
+
readonly INVALID_STATE: "INVALID_STATE";
|
|
100
|
+
readonly NO_CLIENT_TOKEN: "NO_CLIENT_TOKEN";
|
|
101
|
+
readonly OTHER: "OTHER";
|
|
102
|
+
readonly UNKNOWN_OPERATION: "UNKNOWN_OPERATION";
|
|
103
|
+
};
|
|
104
|
+
export type ValidationExceptionReason =
|
|
105
|
+
(typeof ValidationExceptionReason)[keyof typeof ValidationExceptionReason];
|
|
106
|
+
export declare class ValidationException extends __BaseException {
|
|
107
|
+
readonly name: "ValidationException";
|
|
108
|
+
readonly $fault: "client";
|
|
109
|
+
Message: string | undefined;
|
|
110
|
+
Reason?: ValidationExceptionReason;
|
|
111
|
+
constructor(
|
|
112
|
+
opts: __ExceptionOptionType<ValidationException, __BaseException>
|
|
113
|
+
);
|
|
114
|
+
}
|
|
115
|
+
export interface DeleteChallengeRequest {
|
|
116
|
+
ChallengeArn: string | undefined;
|
|
117
|
+
}
|
|
118
|
+
export interface GetChallengeMetadataRequest {
|
|
119
|
+
ChallengeArn: string | undefined;
|
|
120
|
+
}
|
|
121
|
+
export interface GetChallengeMetadataResponse {
|
|
122
|
+
ChallengeMetadata?: ChallengeMetadata;
|
|
123
|
+
}
|
|
124
|
+
export interface GetChallengePasswordRequest {
|
|
125
|
+
ChallengeArn: string | undefined;
|
|
126
|
+
}
|
|
127
|
+
export interface GetChallengePasswordResponse {
|
|
128
|
+
Password?: string;
|
|
129
|
+
}
|
|
130
|
+
export interface ListChallengeMetadataRequest {
|
|
131
|
+
MaxResults?: number;
|
|
132
|
+
NextToken?: string;
|
|
133
|
+
ConnectorArn: string | undefined;
|
|
134
|
+
}
|
|
135
|
+
export interface ListChallengeMetadataResponse {
|
|
136
|
+
Challenges?: ChallengeMetadataSummary[];
|
|
137
|
+
NextToken?: string;
|
|
138
|
+
}
|
|
139
|
+
export interface IntuneConfiguration {
|
|
140
|
+
AzureApplicationId: string | undefined;
|
|
141
|
+
Domain: string | undefined;
|
|
142
|
+
}
|
|
143
|
+
export type MobileDeviceManagement =
|
|
144
|
+
| MobileDeviceManagement.IntuneMember
|
|
145
|
+
| MobileDeviceManagement.$UnknownMember;
|
|
146
|
+
export declare namespace MobileDeviceManagement {
|
|
147
|
+
interface IntuneMember {
|
|
148
|
+
Intune: IntuneConfiguration;
|
|
149
|
+
$unknown?: never;
|
|
150
|
+
}
|
|
151
|
+
interface $UnknownMember {
|
|
152
|
+
Intune?: never;
|
|
153
|
+
$unknown: [string, any];
|
|
154
|
+
}
|
|
155
|
+
interface Visitor<T> {
|
|
156
|
+
Intune: (value: IntuneConfiguration) => T;
|
|
157
|
+
_: (name: string, value: any) => T;
|
|
158
|
+
}
|
|
159
|
+
const visit: <T>(value: MobileDeviceManagement, visitor: Visitor<T>) => T;
|
|
160
|
+
}
|
|
161
|
+
export interface OpenIdConfiguration {
|
|
162
|
+
Issuer?: string;
|
|
163
|
+
Subject?: string;
|
|
164
|
+
Audience?: string;
|
|
165
|
+
}
|
|
166
|
+
export declare const ConnectorStatus: {
|
|
167
|
+
readonly ACTIVE: "ACTIVE";
|
|
168
|
+
readonly CREATING: "CREATING";
|
|
169
|
+
readonly DELETING: "DELETING";
|
|
170
|
+
readonly FAILED: "FAILED";
|
|
171
|
+
};
|
|
172
|
+
export type ConnectorStatus =
|
|
173
|
+
(typeof ConnectorStatus)[keyof typeof ConnectorStatus];
|
|
174
|
+
export declare const ConnectorStatusReason: {
|
|
175
|
+
readonly INTERNAL_FAILURE: "INTERNAL_FAILURE";
|
|
176
|
+
readonly PRIVATECA_ACCESS_DENIED: "PRIVATECA_ACCESS_DENIED";
|
|
177
|
+
readonly PRIVATECA_INVALID_STATE: "PRIVATECA_INVALID_STATE";
|
|
178
|
+
readonly PRIVATECA_RESOURCE_NOT_FOUND: "PRIVATECA_RESOURCE_NOT_FOUND";
|
|
179
|
+
};
|
|
180
|
+
export type ConnectorStatusReason =
|
|
181
|
+
(typeof ConnectorStatusReason)[keyof typeof ConnectorStatusReason];
|
|
182
|
+
export declare const ConnectorType: {
|
|
183
|
+
readonly GENERAL_PURPOSE: "GENERAL_PURPOSE";
|
|
184
|
+
readonly INTUNE: "INTUNE";
|
|
185
|
+
};
|
|
186
|
+
export type ConnectorType = (typeof ConnectorType)[keyof typeof ConnectorType];
|
|
187
|
+
export interface Connector {
|
|
188
|
+
Arn?: string;
|
|
189
|
+
CertificateAuthorityArn?: string;
|
|
190
|
+
Type?: ConnectorType;
|
|
191
|
+
MobileDeviceManagement?: MobileDeviceManagement;
|
|
192
|
+
OpenIdConfiguration?: OpenIdConfiguration;
|
|
193
|
+
Status?: ConnectorStatus;
|
|
194
|
+
StatusReason?: ConnectorStatusReason;
|
|
195
|
+
Endpoint?: string;
|
|
196
|
+
CreatedAt?: Date;
|
|
197
|
+
UpdatedAt?: Date;
|
|
198
|
+
}
|
|
199
|
+
export interface ConnectorSummary {
|
|
200
|
+
Arn?: string;
|
|
201
|
+
CertificateAuthorityArn?: string;
|
|
202
|
+
Type?: ConnectorType;
|
|
203
|
+
MobileDeviceManagement?: MobileDeviceManagement;
|
|
204
|
+
OpenIdConfiguration?: OpenIdConfiguration;
|
|
205
|
+
Status?: ConnectorStatus;
|
|
206
|
+
StatusReason?: ConnectorStatusReason;
|
|
207
|
+
Endpoint?: string;
|
|
208
|
+
CreatedAt?: Date;
|
|
209
|
+
UpdatedAt?: Date;
|
|
210
|
+
}
|
|
211
|
+
export interface CreateConnectorRequest {
|
|
212
|
+
CertificateAuthorityArn: string | undefined;
|
|
213
|
+
MobileDeviceManagement?: MobileDeviceManagement;
|
|
214
|
+
ClientToken?: string;
|
|
215
|
+
Tags?: Record<string, string>;
|
|
216
|
+
}
|
|
217
|
+
export interface CreateConnectorResponse {
|
|
218
|
+
ConnectorArn?: string;
|
|
219
|
+
}
|
|
220
|
+
export interface DeleteConnectorRequest {
|
|
221
|
+
ConnectorArn: string | undefined;
|
|
222
|
+
}
|
|
223
|
+
export interface GetConnectorRequest {
|
|
224
|
+
ConnectorArn: string | undefined;
|
|
225
|
+
}
|
|
226
|
+
export interface GetConnectorResponse {
|
|
227
|
+
Connector?: Connector;
|
|
228
|
+
}
|
|
229
|
+
export interface ListConnectorsRequest {
|
|
230
|
+
MaxResults?: number;
|
|
231
|
+
NextToken?: string;
|
|
232
|
+
}
|
|
233
|
+
export interface ListConnectorsResponse {
|
|
234
|
+
Connectors?: ConnectorSummary[];
|
|
235
|
+
NextToken?: string;
|
|
236
|
+
}
|
|
237
|
+
export interface ListTagsForResourceRequest {
|
|
238
|
+
ResourceArn: string | undefined;
|
|
239
|
+
}
|
|
240
|
+
export interface ListTagsForResourceResponse {
|
|
241
|
+
Tags?: Record<string, string>;
|
|
242
|
+
}
|
|
243
|
+
export interface TagResourceRequest {
|
|
244
|
+
ResourceArn: string | undefined;
|
|
245
|
+
Tags: Record<string, string> | undefined;
|
|
246
|
+
}
|
|
247
|
+
export interface UntagResourceRequest {
|
|
248
|
+
ResourceArn: string | undefined;
|
|
249
|
+
TagKeys: string[] | undefined;
|
|
250
|
+
}
|
|
251
|
+
export declare const ChallengeFilterSensitiveLog: (obj: Challenge) => any;
|
|
252
|
+
export declare const CreateChallengeResponseFilterSensitiveLog: (
|
|
253
|
+
obj: CreateChallengeResponse
|
|
254
|
+
) => any;
|
|
255
|
+
export declare const GetChallengePasswordResponseFilterSensitiveLog: (
|
|
256
|
+
obj: GetChallengePasswordResponse
|
|
257
|
+
) => any;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListChallengeMetadataCommandInput,
|
|
4
|
+
ListChallengeMetadataCommandOutput,
|
|
5
|
+
} from "../commands/ListChallengeMetadataCommand";
|
|
6
|
+
import { PcaConnectorScepPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListChallengeMetadata: (
|
|
8
|
+
config: PcaConnectorScepPaginationConfiguration,
|
|
9
|
+
input: ListChallengeMetadataCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListChallengeMetadataCommandOutput>;
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
import { Paginator } from "@smithy/types";
|
|
2
|
+
import {
|
|
3
|
+
ListConnectorsCommandInput,
|
|
4
|
+
ListConnectorsCommandOutput,
|
|
5
|
+
} from "../commands/ListConnectorsCommand";
|
|
6
|
+
import { PcaConnectorScepPaginationConfiguration } from "./Interfaces";
|
|
7
|
+
export declare const paginateListConnectors: (
|
|
8
|
+
config: PcaConnectorScepPaginationConfiguration,
|
|
9
|
+
input: ListConnectorsCommandInput,
|
|
10
|
+
...rest: any[]
|
|
11
|
+
) => Paginator<ListConnectorsCommandOutput>;
|
|
@@ -0,0 +1,149 @@
|
|
|
1
|
+
import {
|
|
2
|
+
HttpRequest as __HttpRequest,
|
|
3
|
+
HttpResponse as __HttpResponse,
|
|
4
|
+
} from "@smithy/protocol-http";
|
|
5
|
+
import { SerdeContext as __SerdeContext } from "@smithy/types";
|
|
6
|
+
import {
|
|
7
|
+
CreateChallengeCommandInput,
|
|
8
|
+
CreateChallengeCommandOutput,
|
|
9
|
+
} from "../commands/CreateChallengeCommand";
|
|
10
|
+
import {
|
|
11
|
+
CreateConnectorCommandInput,
|
|
12
|
+
CreateConnectorCommandOutput,
|
|
13
|
+
} from "../commands/CreateConnectorCommand";
|
|
14
|
+
import {
|
|
15
|
+
DeleteChallengeCommandInput,
|
|
16
|
+
DeleteChallengeCommandOutput,
|
|
17
|
+
} from "../commands/DeleteChallengeCommand";
|
|
18
|
+
import {
|
|
19
|
+
DeleteConnectorCommandInput,
|
|
20
|
+
DeleteConnectorCommandOutput,
|
|
21
|
+
} from "../commands/DeleteConnectorCommand";
|
|
22
|
+
import {
|
|
23
|
+
GetChallengeMetadataCommandInput,
|
|
24
|
+
GetChallengeMetadataCommandOutput,
|
|
25
|
+
} from "../commands/GetChallengeMetadataCommand";
|
|
26
|
+
import {
|
|
27
|
+
GetChallengePasswordCommandInput,
|
|
28
|
+
GetChallengePasswordCommandOutput,
|
|
29
|
+
} from "../commands/GetChallengePasswordCommand";
|
|
30
|
+
import {
|
|
31
|
+
GetConnectorCommandInput,
|
|
32
|
+
GetConnectorCommandOutput,
|
|
33
|
+
} from "../commands/GetConnectorCommand";
|
|
34
|
+
import {
|
|
35
|
+
ListChallengeMetadataCommandInput,
|
|
36
|
+
ListChallengeMetadataCommandOutput,
|
|
37
|
+
} from "../commands/ListChallengeMetadataCommand";
|
|
38
|
+
import {
|
|
39
|
+
ListConnectorsCommandInput,
|
|
40
|
+
ListConnectorsCommandOutput,
|
|
41
|
+
} from "../commands/ListConnectorsCommand";
|
|
42
|
+
import {
|
|
43
|
+
ListTagsForResourceCommandInput,
|
|
44
|
+
ListTagsForResourceCommandOutput,
|
|
45
|
+
} from "../commands/ListTagsForResourceCommand";
|
|
46
|
+
import {
|
|
47
|
+
TagResourceCommandInput,
|
|
48
|
+
TagResourceCommandOutput,
|
|
49
|
+
} from "../commands/TagResourceCommand";
|
|
50
|
+
import {
|
|
51
|
+
UntagResourceCommandInput,
|
|
52
|
+
UntagResourceCommandOutput,
|
|
53
|
+
} from "../commands/UntagResourceCommand";
|
|
54
|
+
export declare const se_CreateChallengeCommand: (
|
|
55
|
+
input: CreateChallengeCommandInput,
|
|
56
|
+
context: __SerdeContext
|
|
57
|
+
) => Promise<__HttpRequest>;
|
|
58
|
+
export declare const se_CreateConnectorCommand: (
|
|
59
|
+
input: CreateConnectorCommandInput,
|
|
60
|
+
context: __SerdeContext
|
|
61
|
+
) => Promise<__HttpRequest>;
|
|
62
|
+
export declare const se_DeleteChallengeCommand: (
|
|
63
|
+
input: DeleteChallengeCommandInput,
|
|
64
|
+
context: __SerdeContext
|
|
65
|
+
) => Promise<__HttpRequest>;
|
|
66
|
+
export declare const se_DeleteConnectorCommand: (
|
|
67
|
+
input: DeleteConnectorCommandInput,
|
|
68
|
+
context: __SerdeContext
|
|
69
|
+
) => Promise<__HttpRequest>;
|
|
70
|
+
export declare const se_GetChallengeMetadataCommand: (
|
|
71
|
+
input: GetChallengeMetadataCommandInput,
|
|
72
|
+
context: __SerdeContext
|
|
73
|
+
) => Promise<__HttpRequest>;
|
|
74
|
+
export declare const se_GetChallengePasswordCommand: (
|
|
75
|
+
input: GetChallengePasswordCommandInput,
|
|
76
|
+
context: __SerdeContext
|
|
77
|
+
) => Promise<__HttpRequest>;
|
|
78
|
+
export declare const se_GetConnectorCommand: (
|
|
79
|
+
input: GetConnectorCommandInput,
|
|
80
|
+
context: __SerdeContext
|
|
81
|
+
) => Promise<__HttpRequest>;
|
|
82
|
+
export declare const se_ListChallengeMetadataCommand: (
|
|
83
|
+
input: ListChallengeMetadataCommandInput,
|
|
84
|
+
context: __SerdeContext
|
|
85
|
+
) => Promise<__HttpRequest>;
|
|
86
|
+
export declare const se_ListConnectorsCommand: (
|
|
87
|
+
input: ListConnectorsCommandInput,
|
|
88
|
+
context: __SerdeContext
|
|
89
|
+
) => Promise<__HttpRequest>;
|
|
90
|
+
export declare const se_ListTagsForResourceCommand: (
|
|
91
|
+
input: ListTagsForResourceCommandInput,
|
|
92
|
+
context: __SerdeContext
|
|
93
|
+
) => Promise<__HttpRequest>;
|
|
94
|
+
export declare const se_TagResourceCommand: (
|
|
95
|
+
input: TagResourceCommandInput,
|
|
96
|
+
context: __SerdeContext
|
|
97
|
+
) => Promise<__HttpRequest>;
|
|
98
|
+
export declare const se_UntagResourceCommand: (
|
|
99
|
+
input: UntagResourceCommandInput,
|
|
100
|
+
context: __SerdeContext
|
|
101
|
+
) => Promise<__HttpRequest>;
|
|
102
|
+
export declare const de_CreateChallengeCommand: (
|
|
103
|
+
output: __HttpResponse,
|
|
104
|
+
context: __SerdeContext
|
|
105
|
+
) => Promise<CreateChallengeCommandOutput>;
|
|
106
|
+
export declare const de_CreateConnectorCommand: (
|
|
107
|
+
output: __HttpResponse,
|
|
108
|
+
context: __SerdeContext
|
|
109
|
+
) => Promise<CreateConnectorCommandOutput>;
|
|
110
|
+
export declare const de_DeleteChallengeCommand: (
|
|
111
|
+
output: __HttpResponse,
|
|
112
|
+
context: __SerdeContext
|
|
113
|
+
) => Promise<DeleteChallengeCommandOutput>;
|
|
114
|
+
export declare const de_DeleteConnectorCommand: (
|
|
115
|
+
output: __HttpResponse,
|
|
116
|
+
context: __SerdeContext
|
|
117
|
+
) => Promise<DeleteConnectorCommandOutput>;
|
|
118
|
+
export declare const de_GetChallengeMetadataCommand: (
|
|
119
|
+
output: __HttpResponse,
|
|
120
|
+
context: __SerdeContext
|
|
121
|
+
) => Promise<GetChallengeMetadataCommandOutput>;
|
|
122
|
+
export declare const de_GetChallengePasswordCommand: (
|
|
123
|
+
output: __HttpResponse,
|
|
124
|
+
context: __SerdeContext
|
|
125
|
+
) => Promise<GetChallengePasswordCommandOutput>;
|
|
126
|
+
export declare const de_GetConnectorCommand: (
|
|
127
|
+
output: __HttpResponse,
|
|
128
|
+
context: __SerdeContext
|
|
129
|
+
) => Promise<GetConnectorCommandOutput>;
|
|
130
|
+
export declare const de_ListChallengeMetadataCommand: (
|
|
131
|
+
output: __HttpResponse,
|
|
132
|
+
context: __SerdeContext
|
|
133
|
+
) => Promise<ListChallengeMetadataCommandOutput>;
|
|
134
|
+
export declare const de_ListConnectorsCommand: (
|
|
135
|
+
output: __HttpResponse,
|
|
136
|
+
context: __SerdeContext
|
|
137
|
+
) => Promise<ListConnectorsCommandOutput>;
|
|
138
|
+
export declare const de_ListTagsForResourceCommand: (
|
|
139
|
+
output: __HttpResponse,
|
|
140
|
+
context: __SerdeContext
|
|
141
|
+
) => Promise<ListTagsForResourceCommandOutput>;
|
|
142
|
+
export declare const de_TagResourceCommand: (
|
|
143
|
+
output: __HttpResponse,
|
|
144
|
+
context: __SerdeContext
|
|
145
|
+
) => Promise<TagResourceCommandOutput>;
|
|
146
|
+
export declare const de_UntagResourceCommand: (
|
|
147
|
+
output: __HttpResponse,
|
|
148
|
+
context: __SerdeContext
|
|
149
|
+
) => Promise<UntagResourceCommandOutput>;
|