@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.
Files changed (143) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +305 -0
  3. package/dist-cjs/PcaConnectorScep.js +35 -0
  4. package/dist-cjs/PcaConnectorScepClient.js +56 -0
  5. package/dist-cjs/auth/httpAuthExtensionConfiguration.js +43 -0
  6. package/dist-cjs/auth/httpAuthSchemeProvider.js +47 -0
  7. package/dist-cjs/commands/CreateChallengeCommand.js +29 -0
  8. package/dist-cjs/commands/CreateConnectorCommand.js +28 -0
  9. package/dist-cjs/commands/DeleteChallengeCommand.js +28 -0
  10. package/dist-cjs/commands/DeleteConnectorCommand.js +28 -0
  11. package/dist-cjs/commands/GetChallengeMetadataCommand.js +28 -0
  12. package/dist-cjs/commands/GetChallengePasswordCommand.js +29 -0
  13. package/dist-cjs/commands/GetConnectorCommand.js +28 -0
  14. package/dist-cjs/commands/ListChallengeMetadataCommand.js +28 -0
  15. package/dist-cjs/commands/ListConnectorsCommand.js +28 -0
  16. package/dist-cjs/commands/ListTagsForResourceCommand.js +28 -0
  17. package/dist-cjs/commands/TagResourceCommand.js +28 -0
  18. package/dist-cjs/commands/UntagResourceCommand.js +28 -0
  19. package/dist-cjs/commands/index.js +15 -0
  20. package/dist-cjs/endpoint/EndpointParameters.js +18 -0
  21. package/dist-cjs/endpoint/endpointResolver.js +14 -0
  22. package/dist-cjs/endpoint/ruleset.js +7 -0
  23. package/dist-cjs/extensionConfiguration.js +2 -0
  24. package/dist-cjs/index.js +11 -0
  25. package/dist-cjs/models/PcaConnectorScepServiceException.js +12 -0
  26. package/dist-cjs/models/index.js +4 -0
  27. package/dist-cjs/models/models_0.js +177 -0
  28. package/dist-cjs/pagination/Interfaces.js +2 -0
  29. package/dist-cjs/pagination/ListChallengeMetadataPaginator.js +7 -0
  30. package/dist-cjs/pagination/ListConnectorsPaginator.js +7 -0
  31. package/dist-cjs/pagination/index.js +6 -0
  32. package/dist-cjs/protocols/Aws_restJson1.js +565 -0
  33. package/dist-cjs/runtimeConfig.browser.js +39 -0
  34. package/dist-cjs/runtimeConfig.js +49 -0
  35. package/dist-cjs/runtimeConfig.native.js +15 -0
  36. package/dist-cjs/runtimeConfig.shared.js +34 -0
  37. package/dist-cjs/runtimeExtensions.js +25 -0
  38. package/dist-es/PcaConnectorScep.js +31 -0
  39. package/dist-es/PcaConnectorScepClient.js +52 -0
  40. package/dist-es/auth/httpAuthExtensionConfiguration.js +38 -0
  41. package/dist-es/auth/httpAuthSchemeProvider.js +41 -0
  42. package/dist-es/commands/CreateChallengeCommand.js +25 -0
  43. package/dist-es/commands/CreateConnectorCommand.js +24 -0
  44. package/dist-es/commands/DeleteChallengeCommand.js +24 -0
  45. package/dist-es/commands/DeleteConnectorCommand.js +24 -0
  46. package/dist-es/commands/GetChallengeMetadataCommand.js +24 -0
  47. package/dist-es/commands/GetChallengePasswordCommand.js +25 -0
  48. package/dist-es/commands/GetConnectorCommand.js +24 -0
  49. package/dist-es/commands/ListChallengeMetadataCommand.js +24 -0
  50. package/dist-es/commands/ListConnectorsCommand.js +24 -0
  51. package/dist-es/commands/ListTagsForResourceCommand.js +24 -0
  52. package/dist-es/commands/TagResourceCommand.js +24 -0
  53. package/dist-es/commands/UntagResourceCommand.js +24 -0
  54. package/dist-es/commands/index.js +12 -0
  55. package/dist-es/endpoint/EndpointParameters.js +14 -0
  56. package/dist-es/endpoint/endpointResolver.js +10 -0
  57. package/dist-es/endpoint/ruleset.js +4 -0
  58. package/dist-es/extensionConfiguration.js +1 -0
  59. package/dist-es/index.js +6 -0
  60. package/dist-es/models/PcaConnectorScepServiceException.js +8 -0
  61. package/dist-es/models/index.js +1 -0
  62. package/dist-es/models/models_0.js +163 -0
  63. package/dist-es/pagination/Interfaces.js +1 -0
  64. package/dist-es/pagination/ListChallengeMetadataPaginator.js +4 -0
  65. package/dist-es/pagination/ListConnectorsPaginator.js +4 -0
  66. package/dist-es/pagination/index.js +3 -0
  67. package/dist-es/protocols/Aws_restJson1.js +538 -0
  68. package/dist-es/runtimeConfig.browser.js +34 -0
  69. package/dist-es/runtimeConfig.js +44 -0
  70. package/dist-es/runtimeConfig.native.js +11 -0
  71. package/dist-es/runtimeConfig.shared.js +30 -0
  72. package/dist-es/runtimeExtensions.js +21 -0
  73. package/dist-types/PcaConnectorScep.d.ts +99 -0
  74. package/dist-types/PcaConnectorScepClient.d.ts +187 -0
  75. package/dist-types/auth/httpAuthExtensionConfiguration.d.ts +29 -0
  76. package/dist-types/auth/httpAuthSchemeProvider.d.ts +61 -0
  77. package/dist-types/commands/CreateChallengeCommand.d.ts +101 -0
  78. package/dist-types/commands/CreateConnectorCommand.d.ts +97 -0
  79. package/dist-types/commands/DeleteChallengeCommand.d.ts +82 -0
  80. package/dist-types/commands/DeleteConnectorCommand.d.ts +82 -0
  81. package/dist-types/commands/GetChallengeMetadataCommand.d.ts +85 -0
  82. package/dist-types/commands/GetChallengePasswordCommand.d.ts +80 -0
  83. package/dist-types/commands/GetConnectorCommand.d.ts +100 -0
  84. package/dist-types/commands/ListChallengeMetadataCommand.d.ts +90 -0
  85. package/dist-types/commands/ListConnectorsCommand.d.ts +101 -0
  86. package/dist-types/commands/ListTagsForResourceCommand.d.ts +86 -0
  87. package/dist-types/commands/TagResourceCommand.d.ts +81 -0
  88. package/dist-types/commands/UntagResourceCommand.d.ts +81 -0
  89. package/dist-types/commands/index.d.ts +12 -0
  90. package/dist-types/endpoint/EndpointParameters.d.ts +40 -0
  91. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  92. package/dist-types/endpoint/ruleset.d.ts +2 -0
  93. package/dist-types/extensionConfiguration.d.ts +9 -0
  94. package/dist-types/index.d.ts +18 -0
  95. package/dist-types/models/PcaConnectorScepServiceException.d.ts +14 -0
  96. package/dist-types/models/index.d.ts +1 -0
  97. package/dist-types/models/models_0.d.ts +763 -0
  98. package/dist-types/pagination/Interfaces.d.ts +8 -0
  99. package/dist-types/pagination/ListChallengeMetadataPaginator.d.ts +7 -0
  100. package/dist-types/pagination/ListConnectorsPaginator.d.ts +7 -0
  101. package/dist-types/pagination/index.d.ts +3 -0
  102. package/dist-types/protocols/Aws_restJson1.d.ts +110 -0
  103. package/dist-types/runtimeConfig.browser.d.ts +45 -0
  104. package/dist-types/runtimeConfig.d.ts +45 -0
  105. package/dist-types/runtimeConfig.native.d.ts +44 -0
  106. package/dist-types/runtimeConfig.shared.d.ts +21 -0
  107. package/dist-types/runtimeExtensions.d.ts +17 -0
  108. package/dist-types/ts3.4/PcaConnectorScep.d.ts +212 -0
  109. package/dist-types/ts3.4/PcaConnectorScepClient.d.ts +195 -0
  110. package/dist-types/ts3.4/auth/httpAuthExtensionConfiguration.d.ts +32 -0
  111. package/dist-types/ts3.4/auth/httpAuthSchemeProvider.d.ts +44 -0
  112. package/dist-types/ts3.4/commands/CreateChallengeCommand.d.ts +39 -0
  113. package/dist-types/ts3.4/commands/CreateConnectorCommand.d.ts +39 -0
  114. package/dist-types/ts3.4/commands/DeleteChallengeCommand.d.ts +34 -0
  115. package/dist-types/ts3.4/commands/DeleteConnectorCommand.d.ts +34 -0
  116. package/dist-types/ts3.4/commands/GetChallengeMetadataCommand.d.ts +40 -0
  117. package/dist-types/ts3.4/commands/GetChallengePasswordCommand.d.ts +40 -0
  118. package/dist-types/ts3.4/commands/GetConnectorCommand.d.ts +36 -0
  119. package/dist-types/ts3.4/commands/ListChallengeMetadataCommand.d.ts +40 -0
  120. package/dist-types/ts3.4/commands/ListConnectorsCommand.d.ts +39 -0
  121. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +40 -0
  122. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +34 -0
  123. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +34 -0
  124. package/dist-types/ts3.4/commands/index.d.ts +12 -0
  125. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +51 -0
  126. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  127. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  128. package/dist-types/ts3.4/extensionConfiguration.d.ts +9 -0
  129. package/dist-types/ts3.4/index.d.ts +9 -0
  130. package/dist-types/ts3.4/models/PcaConnectorScepServiceException.d.ts +9 -0
  131. package/dist-types/ts3.4/models/index.d.ts +1 -0
  132. package/dist-types/ts3.4/models/models_0.d.ts +257 -0
  133. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  134. package/dist-types/ts3.4/pagination/ListChallengeMetadataPaginator.d.ts +11 -0
  135. package/dist-types/ts3.4/pagination/ListConnectorsPaginator.d.ts +11 -0
  136. package/dist-types/ts3.4/pagination/index.d.ts +3 -0
  137. package/dist-types/ts3.4/protocols/Aws_restJson1.d.ts +149 -0
  138. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +87 -0
  139. package/dist-types/ts3.4/runtimeConfig.d.ts +91 -0
  140. package/dist-types/ts3.4/runtimeConfig.native.d.ts +81 -0
  141. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +23 -0
  142. package/dist-types/ts3.4/runtimeExtensions.d.ts +13 -0
  143. package/package.json +103 -0
@@ -0,0 +1,195 @@
1
+ import {
2
+ HostHeaderInputConfig,
3
+ HostHeaderResolvedConfig,
4
+ } from "@aws-sdk/middleware-host-header";
5
+ import {
6
+ UserAgentInputConfig,
7
+ UserAgentResolvedConfig,
8
+ } from "@aws-sdk/middleware-user-agent";
9
+ import {
10
+ RegionInputConfig,
11
+ RegionResolvedConfig,
12
+ } from "@smithy/config-resolver";
13
+ import {
14
+ EndpointInputConfig,
15
+ EndpointResolvedConfig,
16
+ } from "@smithy/middleware-endpoint";
17
+ import {
18
+ RetryInputConfig,
19
+ RetryResolvedConfig,
20
+ } from "@smithy/middleware-retry";
21
+ import { HttpHandlerUserInput as __HttpHandlerUserInput } from "@smithy/protocol-http";
22
+ import {
23
+ Client as __Client,
24
+ DefaultsMode as __DefaultsMode,
25
+ SmithyConfiguration as __SmithyConfiguration,
26
+ SmithyResolvedConfiguration as __SmithyResolvedConfiguration,
27
+ } from "@smithy/smithy-client";
28
+ import {
29
+ AwsCredentialIdentityProvider,
30
+ BodyLengthCalculator as __BodyLengthCalculator,
31
+ CheckOptionalClientConfig as __CheckOptionalClientConfig,
32
+ ChecksumConstructor as __ChecksumConstructor,
33
+ Decoder as __Decoder,
34
+ Encoder as __Encoder,
35
+ HashConstructor as __HashConstructor,
36
+ HttpHandlerOptions as __HttpHandlerOptions,
37
+ Logger as __Logger,
38
+ Provider as __Provider,
39
+ Provider,
40
+ StreamCollector as __StreamCollector,
41
+ UrlParser as __UrlParser,
42
+ UserAgent as __UserAgent,
43
+ } from "@smithy/types";
44
+ import {
45
+ HttpAuthSchemeInputConfig,
46
+ HttpAuthSchemeResolvedConfig,
47
+ } from "./auth/httpAuthSchemeProvider";
48
+ import {
49
+ CreateChallengeCommandInput,
50
+ CreateChallengeCommandOutput,
51
+ } from "./commands/CreateChallengeCommand";
52
+ import {
53
+ CreateConnectorCommandInput,
54
+ CreateConnectorCommandOutput,
55
+ } from "./commands/CreateConnectorCommand";
56
+ import {
57
+ DeleteChallengeCommandInput,
58
+ DeleteChallengeCommandOutput,
59
+ } from "./commands/DeleteChallengeCommand";
60
+ import {
61
+ DeleteConnectorCommandInput,
62
+ DeleteConnectorCommandOutput,
63
+ } from "./commands/DeleteConnectorCommand";
64
+ import {
65
+ GetChallengeMetadataCommandInput,
66
+ GetChallengeMetadataCommandOutput,
67
+ } from "./commands/GetChallengeMetadataCommand";
68
+ import {
69
+ GetChallengePasswordCommandInput,
70
+ GetChallengePasswordCommandOutput,
71
+ } from "./commands/GetChallengePasswordCommand";
72
+ import {
73
+ GetConnectorCommandInput,
74
+ GetConnectorCommandOutput,
75
+ } from "./commands/GetConnectorCommand";
76
+ import {
77
+ ListChallengeMetadataCommandInput,
78
+ ListChallengeMetadataCommandOutput,
79
+ } from "./commands/ListChallengeMetadataCommand";
80
+ import {
81
+ ListConnectorsCommandInput,
82
+ ListConnectorsCommandOutput,
83
+ } from "./commands/ListConnectorsCommand";
84
+ import {
85
+ ListTagsForResourceCommandInput,
86
+ ListTagsForResourceCommandOutput,
87
+ } from "./commands/ListTagsForResourceCommand";
88
+ import {
89
+ TagResourceCommandInput,
90
+ TagResourceCommandOutput,
91
+ } from "./commands/TagResourceCommand";
92
+ import {
93
+ UntagResourceCommandInput,
94
+ UntagResourceCommandOutput,
95
+ } from "./commands/UntagResourceCommand";
96
+ import {
97
+ ClientInputEndpointParameters,
98
+ ClientResolvedEndpointParameters,
99
+ EndpointParameters,
100
+ } from "./endpoint/EndpointParameters";
101
+ import { RuntimeExtension, RuntimeExtensionsConfig } from "./runtimeExtensions";
102
+ export { __Client };
103
+ export type ServiceInputTypes =
104
+ | CreateChallengeCommandInput
105
+ | CreateConnectorCommandInput
106
+ | DeleteChallengeCommandInput
107
+ | DeleteConnectorCommandInput
108
+ | GetChallengeMetadataCommandInput
109
+ | GetChallengePasswordCommandInput
110
+ | GetConnectorCommandInput
111
+ | ListChallengeMetadataCommandInput
112
+ | ListConnectorsCommandInput
113
+ | ListTagsForResourceCommandInput
114
+ | TagResourceCommandInput
115
+ | UntagResourceCommandInput;
116
+ export type ServiceOutputTypes =
117
+ | CreateChallengeCommandOutput
118
+ | CreateConnectorCommandOutput
119
+ | DeleteChallengeCommandOutput
120
+ | DeleteConnectorCommandOutput
121
+ | GetChallengeMetadataCommandOutput
122
+ | GetChallengePasswordCommandOutput
123
+ | GetConnectorCommandOutput
124
+ | ListChallengeMetadataCommandOutput
125
+ | ListConnectorsCommandOutput
126
+ | ListTagsForResourceCommandOutput
127
+ | TagResourceCommandOutput
128
+ | UntagResourceCommandOutput;
129
+ export interface ClientDefaults
130
+ extends Partial<__SmithyConfiguration<__HttpHandlerOptions>> {
131
+ requestHandler?: __HttpHandlerUserInput;
132
+ sha256?: __ChecksumConstructor | __HashConstructor;
133
+ urlParser?: __UrlParser;
134
+ bodyLengthChecker?: __BodyLengthCalculator;
135
+ streamCollector?: __StreamCollector;
136
+ base64Decoder?: __Decoder;
137
+ base64Encoder?: __Encoder;
138
+ utf8Decoder?: __Decoder;
139
+ utf8Encoder?: __Encoder;
140
+ runtime?: string;
141
+ disableHostPrefix?: boolean;
142
+ serviceId?: string;
143
+ useDualstackEndpoint?: boolean | __Provider<boolean>;
144
+ useFipsEndpoint?: boolean | __Provider<boolean>;
145
+ region?: string | __Provider<string>;
146
+ defaultUserAgentProvider?: Provider<__UserAgent>;
147
+ credentialDefaultProvider?: (input: any) => AwsCredentialIdentityProvider;
148
+ maxAttempts?: number | __Provider<number>;
149
+ retryMode?: string | __Provider<string>;
150
+ logger?: __Logger;
151
+ extensions?: RuntimeExtension[];
152
+ defaultsMode?: __DefaultsMode | __Provider<__DefaultsMode>;
153
+ }
154
+ export type PcaConnectorScepClientConfigType = Partial<
155
+ __SmithyConfiguration<__HttpHandlerOptions>
156
+ > &
157
+ ClientDefaults &
158
+ RegionInputConfig &
159
+ EndpointInputConfig<EndpointParameters> &
160
+ RetryInputConfig &
161
+ HostHeaderInputConfig &
162
+ UserAgentInputConfig &
163
+ HttpAuthSchemeInputConfig &
164
+ ClientInputEndpointParameters;
165
+ export interface PcaConnectorScepClientConfig
166
+ extends PcaConnectorScepClientConfigType {}
167
+ export type PcaConnectorScepClientResolvedConfigType =
168
+ __SmithyResolvedConfiguration<__HttpHandlerOptions> &
169
+ Required<ClientDefaults> &
170
+ RuntimeExtensionsConfig &
171
+ RegionResolvedConfig &
172
+ EndpointResolvedConfig<EndpointParameters> &
173
+ RetryResolvedConfig &
174
+ HostHeaderResolvedConfig &
175
+ UserAgentResolvedConfig &
176
+ HttpAuthSchemeResolvedConfig &
177
+ ClientResolvedEndpointParameters;
178
+ export interface PcaConnectorScepClientResolvedConfig
179
+ extends PcaConnectorScepClientResolvedConfigType {}
180
+ export declare class PcaConnectorScepClient extends __Client<
181
+ __HttpHandlerOptions,
182
+ ServiceInputTypes,
183
+ ServiceOutputTypes,
184
+ PcaConnectorScepClientResolvedConfig
185
+ > {
186
+ readonly config: PcaConnectorScepClientResolvedConfig;
187
+ constructor(
188
+ ...[
189
+ configuration,
190
+ ]: __CheckOptionalClientConfig<PcaConnectorScepClientConfig>
191
+ );
192
+ destroy(): void;
193
+ private getDefaultHttpAuthSchemeParametersProvider;
194
+ private getIdentityProviderConfigProvider;
195
+ }
@@ -0,0 +1,32 @@
1
+ import {
2
+ AwsCredentialIdentity,
3
+ AwsCredentialIdentityProvider,
4
+ HttpAuthScheme,
5
+ } from "@smithy/types";
6
+ import { PcaConnectorScepHttpAuthSchemeProvider } from "./httpAuthSchemeProvider";
7
+ export interface HttpAuthExtensionConfiguration {
8
+ setHttpAuthScheme(httpAuthScheme: HttpAuthScheme): void;
9
+ httpAuthSchemes(): HttpAuthScheme[];
10
+ setHttpAuthSchemeProvider(
11
+ httpAuthSchemeProvider: PcaConnectorScepHttpAuthSchemeProvider
12
+ ): void;
13
+ httpAuthSchemeProvider(): PcaConnectorScepHttpAuthSchemeProvider;
14
+ setCredentials(
15
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider
16
+ ): void;
17
+ credentials():
18
+ | AwsCredentialIdentity
19
+ | AwsCredentialIdentityProvider
20
+ | undefined;
21
+ }
22
+ export type HttpAuthRuntimeConfig = Partial<{
23
+ httpAuthSchemes: HttpAuthScheme[];
24
+ httpAuthSchemeProvider: PcaConnectorScepHttpAuthSchemeProvider;
25
+ credentials: AwsCredentialIdentity | AwsCredentialIdentityProvider;
26
+ }>;
27
+ export declare const getHttpAuthExtensionConfiguration: (
28
+ runtimeConfig: HttpAuthRuntimeConfig
29
+ ) => HttpAuthExtensionConfiguration;
30
+ export declare const resolveHttpAuthRuntimeConfig: (
31
+ config: HttpAuthExtensionConfiguration
32
+ ) => HttpAuthRuntimeConfig;
@@ -0,0 +1,44 @@
1
+ import {
2
+ AwsSdkSigV4AuthInputConfig,
3
+ AwsSdkSigV4AuthResolvedConfig,
4
+ AwsSdkSigV4PreviouslyResolved,
5
+ } from "@aws-sdk/core";
6
+ import {
7
+ HandlerExecutionContext,
8
+ HttpAuthScheme,
9
+ HttpAuthSchemeParameters,
10
+ HttpAuthSchemeParametersProvider,
11
+ HttpAuthSchemeProvider,
12
+ } from "@smithy/types";
13
+ import { PcaConnectorScepClientResolvedConfig } from "../PcaConnectorScepClient";
14
+ export interface PcaConnectorScepHttpAuthSchemeParameters
15
+ extends HttpAuthSchemeParameters {
16
+ region?: string;
17
+ }
18
+ export interface PcaConnectorScepHttpAuthSchemeParametersProvider
19
+ extends HttpAuthSchemeParametersProvider<
20
+ PcaConnectorScepClientResolvedConfig,
21
+ HandlerExecutionContext,
22
+ PcaConnectorScepHttpAuthSchemeParameters,
23
+ object
24
+ > {}
25
+ export declare const defaultPcaConnectorScepHttpAuthSchemeParametersProvider: (
26
+ config: PcaConnectorScepClientResolvedConfig,
27
+ context: HandlerExecutionContext,
28
+ input: object
29
+ ) => Promise<PcaConnectorScepHttpAuthSchemeParameters>;
30
+ export interface PcaConnectorScepHttpAuthSchemeProvider
31
+ extends HttpAuthSchemeProvider<PcaConnectorScepHttpAuthSchemeParameters> {}
32
+ export declare const defaultPcaConnectorScepHttpAuthSchemeProvider: PcaConnectorScepHttpAuthSchemeProvider;
33
+ export interface HttpAuthSchemeInputConfig extends AwsSdkSigV4AuthInputConfig {
34
+ httpAuthSchemes?: HttpAuthScheme[];
35
+ httpAuthSchemeProvider?: PcaConnectorScepHttpAuthSchemeProvider;
36
+ }
37
+ export interface HttpAuthSchemeResolvedConfig
38
+ extends AwsSdkSigV4AuthResolvedConfig {
39
+ readonly httpAuthSchemes: HttpAuthScheme[];
40
+ readonly httpAuthSchemeProvider: PcaConnectorScepHttpAuthSchemeProvider;
41
+ }
42
+ export declare const resolveHttpAuthSchemeConfig: <T>(
43
+ config: T & HttpAuthSchemeInputConfig & AwsSdkSigV4PreviouslyResolved
44
+ ) => T & HttpAuthSchemeResolvedConfig;
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateChallengeRequest,
5
+ CreateChallengeResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PcaConnectorScepClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PcaConnectorScepClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateChallengeCommandInput extends CreateChallengeRequest {}
15
+ export interface CreateChallengeCommandOutput
16
+ extends CreateChallengeResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateChallengeCommand_base: {
19
+ new (
20
+ input: CreateChallengeCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateChallengeCommandInput,
23
+ CreateChallengeCommandOutput,
24
+ PcaConnectorScepClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CreateChallengeCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateChallengeCommandInput,
32
+ CreateChallengeCommandOutput,
33
+ PcaConnectorScepClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateChallengeCommand extends CreateChallengeCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ CreateConnectorRequest,
5
+ CreateConnectorResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PcaConnectorScepClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PcaConnectorScepClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface CreateConnectorCommandInput extends CreateConnectorRequest {}
15
+ export interface CreateConnectorCommandOutput
16
+ extends CreateConnectorResponse,
17
+ __MetadataBearer {}
18
+ declare const CreateConnectorCommand_base: {
19
+ new (
20
+ input: CreateConnectorCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ CreateConnectorCommandInput,
23
+ CreateConnectorCommandOutput,
24
+ PcaConnectorScepClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ __0_0: CreateConnectorCommandInput
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ CreateConnectorCommandInput,
32
+ CreateConnectorCommandOutput,
33
+ PcaConnectorScepClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class CreateConnectorCommand extends CreateConnectorCommand_base {}
@@ -0,0 +1,34 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeleteChallengeRequest } from "../models/models_0";
4
+ import {
5
+ PcaConnectorScepClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PcaConnectorScepClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteChallengeCommandInput extends DeleteChallengeRequest {}
12
+ export interface DeleteChallengeCommandOutput extends __MetadataBearer {}
13
+ declare const DeleteChallengeCommand_base: {
14
+ new (
15
+ input: DeleteChallengeCommandInput
16
+ ): import("@smithy/smithy-client").CommandImpl<
17
+ DeleteChallengeCommandInput,
18
+ DeleteChallengeCommandOutput,
19
+ PcaConnectorScepClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ __0_0: DeleteChallengeCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ DeleteChallengeCommandInput,
27
+ DeleteChallengeCommandOutput,
28
+ PcaConnectorScepClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class DeleteChallengeCommand extends DeleteChallengeCommand_base {}
@@ -0,0 +1,34 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { DeleteConnectorRequest } from "../models/models_0";
4
+ import {
5
+ PcaConnectorScepClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PcaConnectorScepClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface DeleteConnectorCommandInput extends DeleteConnectorRequest {}
12
+ export interface DeleteConnectorCommandOutput extends __MetadataBearer {}
13
+ declare const DeleteConnectorCommand_base: {
14
+ new (
15
+ input: DeleteConnectorCommandInput
16
+ ): import("@smithy/smithy-client").CommandImpl<
17
+ DeleteConnectorCommandInput,
18
+ DeleteConnectorCommandOutput,
19
+ PcaConnectorScepClientResolvedConfig,
20
+ ServiceInputTypes,
21
+ ServiceOutputTypes
22
+ >;
23
+ new (
24
+ __0_0: DeleteConnectorCommandInput
25
+ ): import("@smithy/smithy-client").CommandImpl<
26
+ DeleteConnectorCommandInput,
27
+ DeleteConnectorCommandOutput,
28
+ PcaConnectorScepClientResolvedConfig,
29
+ ServiceInputTypes,
30
+ ServiceOutputTypes
31
+ >;
32
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
33
+ };
34
+ export declare class DeleteConnectorCommand extends DeleteConnectorCommand_base {}
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetChallengeMetadataRequest,
5
+ GetChallengeMetadataResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PcaConnectorScepClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PcaConnectorScepClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetChallengeMetadataCommandInput
15
+ extends GetChallengeMetadataRequest {}
16
+ export interface GetChallengeMetadataCommandOutput
17
+ extends GetChallengeMetadataResponse,
18
+ __MetadataBearer {}
19
+ declare const GetChallengeMetadataCommand_base: {
20
+ new (
21
+ input: GetChallengeMetadataCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetChallengeMetadataCommandInput,
24
+ GetChallengeMetadataCommandOutput,
25
+ PcaConnectorScepClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetChallengeMetadataCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetChallengeMetadataCommandInput,
33
+ GetChallengeMetadataCommandOutput,
34
+ PcaConnectorScepClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetChallengeMetadataCommand extends GetChallengeMetadataCommand_base {}
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ GetChallengePasswordRequest,
5
+ GetChallengePasswordResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PcaConnectorScepClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PcaConnectorScepClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface GetChallengePasswordCommandInput
15
+ extends GetChallengePasswordRequest {}
16
+ export interface GetChallengePasswordCommandOutput
17
+ extends GetChallengePasswordResponse,
18
+ __MetadataBearer {}
19
+ declare const GetChallengePasswordCommand_base: {
20
+ new (
21
+ input: GetChallengePasswordCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ GetChallengePasswordCommandInput,
24
+ GetChallengePasswordCommandOutput,
25
+ PcaConnectorScepClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: GetChallengePasswordCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ GetChallengePasswordCommandInput,
33
+ GetChallengePasswordCommandOutput,
34
+ PcaConnectorScepClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class GetChallengePasswordCommand extends GetChallengePasswordCommand_base {}
@@ -0,0 +1,36 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import { GetConnectorRequest, GetConnectorResponse } from "../models/models_0";
4
+ import {
5
+ PcaConnectorScepClientResolvedConfig,
6
+ ServiceInputTypes,
7
+ ServiceOutputTypes,
8
+ } from "../PcaConnectorScepClient";
9
+ export { __MetadataBearer };
10
+ export { $Command };
11
+ export interface GetConnectorCommandInput extends GetConnectorRequest {}
12
+ export interface GetConnectorCommandOutput
13
+ extends GetConnectorResponse,
14
+ __MetadataBearer {}
15
+ declare const GetConnectorCommand_base: {
16
+ new (
17
+ input: GetConnectorCommandInput
18
+ ): import("@smithy/smithy-client").CommandImpl<
19
+ GetConnectorCommandInput,
20
+ GetConnectorCommandOutput,
21
+ PcaConnectorScepClientResolvedConfig,
22
+ ServiceInputTypes,
23
+ ServiceOutputTypes
24
+ >;
25
+ new (
26
+ __0_0: GetConnectorCommandInput
27
+ ): import("@smithy/smithy-client").CommandImpl<
28
+ GetConnectorCommandInput,
29
+ GetConnectorCommandOutput,
30
+ PcaConnectorScepClientResolvedConfig,
31
+ ServiceInputTypes,
32
+ ServiceOutputTypes
33
+ >;
34
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
35
+ };
36
+ export declare class GetConnectorCommand extends GetConnectorCommand_base {}
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListChallengeMetadataRequest,
5
+ ListChallengeMetadataResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PcaConnectorScepClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PcaConnectorScepClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListChallengeMetadataCommandInput
15
+ extends ListChallengeMetadataRequest {}
16
+ export interface ListChallengeMetadataCommandOutput
17
+ extends ListChallengeMetadataResponse,
18
+ __MetadataBearer {}
19
+ declare const ListChallengeMetadataCommand_base: {
20
+ new (
21
+ input: ListChallengeMetadataCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListChallengeMetadataCommandInput,
24
+ ListChallengeMetadataCommandOutput,
25
+ PcaConnectorScepClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListChallengeMetadataCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListChallengeMetadataCommandInput,
33
+ ListChallengeMetadataCommandOutput,
34
+ PcaConnectorScepClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListChallengeMetadataCommand extends ListChallengeMetadataCommand_base {}
@@ -0,0 +1,39 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListConnectorsRequest,
5
+ ListConnectorsResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PcaConnectorScepClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PcaConnectorScepClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListConnectorsCommandInput extends ListConnectorsRequest {}
15
+ export interface ListConnectorsCommandOutput
16
+ extends ListConnectorsResponse,
17
+ __MetadataBearer {}
18
+ declare const ListConnectorsCommand_base: {
19
+ new (
20
+ input: ListConnectorsCommandInput
21
+ ): import("@smithy/smithy-client").CommandImpl<
22
+ ListConnectorsCommandInput,
23
+ ListConnectorsCommandOutput,
24
+ PcaConnectorScepClientResolvedConfig,
25
+ ServiceInputTypes,
26
+ ServiceOutputTypes
27
+ >;
28
+ new (
29
+ ...[input]: [] | [ListConnectorsCommandInput]
30
+ ): import("@smithy/smithy-client").CommandImpl<
31
+ ListConnectorsCommandInput,
32
+ ListConnectorsCommandOutput,
33
+ PcaConnectorScepClientResolvedConfig,
34
+ ServiceInputTypes,
35
+ ServiceOutputTypes
36
+ >;
37
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
38
+ };
39
+ export declare class ListConnectorsCommand extends ListConnectorsCommand_base {}
@@ -0,0 +1,40 @@
1
+ import { Command as $Command } from "@smithy/smithy-client";
2
+ import { MetadataBearer as __MetadataBearer } from "@smithy/types";
3
+ import {
4
+ ListTagsForResourceRequest,
5
+ ListTagsForResourceResponse,
6
+ } from "../models/models_0";
7
+ import {
8
+ PcaConnectorScepClientResolvedConfig,
9
+ ServiceInputTypes,
10
+ ServiceOutputTypes,
11
+ } from "../PcaConnectorScepClient";
12
+ export { __MetadataBearer };
13
+ export { $Command };
14
+ export interface ListTagsForResourceCommandInput
15
+ extends ListTagsForResourceRequest {}
16
+ export interface ListTagsForResourceCommandOutput
17
+ extends ListTagsForResourceResponse,
18
+ __MetadataBearer {}
19
+ declare const ListTagsForResourceCommand_base: {
20
+ new (
21
+ input: ListTagsForResourceCommandInput
22
+ ): import("@smithy/smithy-client").CommandImpl<
23
+ ListTagsForResourceCommandInput,
24
+ ListTagsForResourceCommandOutput,
25
+ PcaConnectorScepClientResolvedConfig,
26
+ ServiceInputTypes,
27
+ ServiceOutputTypes
28
+ >;
29
+ new (
30
+ __0_0: ListTagsForResourceCommandInput
31
+ ): import("@smithy/smithy-client").CommandImpl<
32
+ ListTagsForResourceCommandInput,
33
+ ListTagsForResourceCommandOutput,
34
+ PcaConnectorScepClientResolvedConfig,
35
+ ServiceInputTypes,
36
+ ServiceOutputTypes
37
+ >;
38
+ getEndpointParameterInstructions(): import("@smithy/middleware-endpoint").EndpointParameterInstructions;
39
+ };
40
+ export declare class ListTagsForResourceCommand extends ListTagsForResourceCommand_base {}