@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,8 @@
1
+ import { PaginationConfiguration } from "@smithy/types";
2
+ import { PcaConnectorScepClient } from "../PcaConnectorScepClient";
3
+ /**
4
+ * @public
5
+ */
6
+ export interface PcaConnectorScepPaginationConfiguration extends PaginationConfiguration {
7
+ client: PcaConnectorScepClient;
8
+ }
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListChallengeMetadataCommandInput, ListChallengeMetadataCommandOutput } from "../commands/ListChallengeMetadataCommand";
3
+ import { PcaConnectorScepPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListChallengeMetadata: (config: PcaConnectorScepPaginationConfiguration, input: ListChallengeMetadataCommandInput, ...rest: any[]) => Paginator<ListChallengeMetadataCommandOutput>;
@@ -0,0 +1,7 @@
1
+ import { Paginator } from "@smithy/types";
2
+ import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "../commands/ListConnectorsCommand";
3
+ import { PcaConnectorScepPaginationConfiguration } from "./Interfaces";
4
+ /**
5
+ * @public
6
+ */
7
+ export declare const paginateListConnectors: (config: PcaConnectorScepPaginationConfiguration, input: ListConnectorsCommandInput, ...rest: any[]) => Paginator<ListConnectorsCommandOutput>;
@@ -0,0 +1,3 @@
1
+ export * from "./Interfaces";
2
+ export * from "./ListChallengeMetadataPaginator";
3
+ export * from "./ListConnectorsPaginator";
@@ -0,0 +1,110 @@
1
+ import { HttpRequest as __HttpRequest, HttpResponse as __HttpResponse } from "@smithy/protocol-http";
2
+ import { SerdeContext as __SerdeContext } from "@smithy/types";
3
+ import { CreateChallengeCommandInput, CreateChallengeCommandOutput } from "../commands/CreateChallengeCommand";
4
+ import { CreateConnectorCommandInput, CreateConnectorCommandOutput } from "../commands/CreateConnectorCommand";
5
+ import { DeleteChallengeCommandInput, DeleteChallengeCommandOutput } from "../commands/DeleteChallengeCommand";
6
+ import { DeleteConnectorCommandInput, DeleteConnectorCommandOutput } from "../commands/DeleteConnectorCommand";
7
+ import { GetChallengeMetadataCommandInput, GetChallengeMetadataCommandOutput } from "../commands/GetChallengeMetadataCommand";
8
+ import { GetChallengePasswordCommandInput, GetChallengePasswordCommandOutput } from "../commands/GetChallengePasswordCommand";
9
+ import { GetConnectorCommandInput, GetConnectorCommandOutput } from "../commands/GetConnectorCommand";
10
+ import { ListChallengeMetadataCommandInput, ListChallengeMetadataCommandOutput } from "../commands/ListChallengeMetadataCommand";
11
+ import { ListConnectorsCommandInput, ListConnectorsCommandOutput } from "../commands/ListConnectorsCommand";
12
+ import { ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput } from "../commands/ListTagsForResourceCommand";
13
+ import { TagResourceCommandInput, TagResourceCommandOutput } from "../commands/TagResourceCommand";
14
+ import { UntagResourceCommandInput, UntagResourceCommandOutput } from "../commands/UntagResourceCommand";
15
+ /**
16
+ * serializeAws_restJson1CreateChallengeCommand
17
+ */
18
+ export declare const se_CreateChallengeCommand: (input: CreateChallengeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
19
+ /**
20
+ * serializeAws_restJson1CreateConnectorCommand
21
+ */
22
+ export declare const se_CreateConnectorCommand: (input: CreateConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
23
+ /**
24
+ * serializeAws_restJson1DeleteChallengeCommand
25
+ */
26
+ export declare const se_DeleteChallengeCommand: (input: DeleteChallengeCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
27
+ /**
28
+ * serializeAws_restJson1DeleteConnectorCommand
29
+ */
30
+ export declare const se_DeleteConnectorCommand: (input: DeleteConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
31
+ /**
32
+ * serializeAws_restJson1GetChallengeMetadataCommand
33
+ */
34
+ export declare const se_GetChallengeMetadataCommand: (input: GetChallengeMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
35
+ /**
36
+ * serializeAws_restJson1GetChallengePasswordCommand
37
+ */
38
+ export declare const se_GetChallengePasswordCommand: (input: GetChallengePasswordCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
39
+ /**
40
+ * serializeAws_restJson1GetConnectorCommand
41
+ */
42
+ export declare const se_GetConnectorCommand: (input: GetConnectorCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
43
+ /**
44
+ * serializeAws_restJson1ListChallengeMetadataCommand
45
+ */
46
+ export declare const se_ListChallengeMetadataCommand: (input: ListChallengeMetadataCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
47
+ /**
48
+ * serializeAws_restJson1ListConnectorsCommand
49
+ */
50
+ export declare const se_ListConnectorsCommand: (input: ListConnectorsCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
51
+ /**
52
+ * serializeAws_restJson1ListTagsForResourceCommand
53
+ */
54
+ export declare const se_ListTagsForResourceCommand: (input: ListTagsForResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
55
+ /**
56
+ * serializeAws_restJson1TagResourceCommand
57
+ */
58
+ export declare const se_TagResourceCommand: (input: TagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
59
+ /**
60
+ * serializeAws_restJson1UntagResourceCommand
61
+ */
62
+ export declare const se_UntagResourceCommand: (input: UntagResourceCommandInput, context: __SerdeContext) => Promise<__HttpRequest>;
63
+ /**
64
+ * deserializeAws_restJson1CreateChallengeCommand
65
+ */
66
+ export declare const de_CreateChallengeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateChallengeCommandOutput>;
67
+ /**
68
+ * deserializeAws_restJson1CreateConnectorCommand
69
+ */
70
+ export declare const de_CreateConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<CreateConnectorCommandOutput>;
71
+ /**
72
+ * deserializeAws_restJson1DeleteChallengeCommand
73
+ */
74
+ export declare const de_DeleteChallengeCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteChallengeCommandOutput>;
75
+ /**
76
+ * deserializeAws_restJson1DeleteConnectorCommand
77
+ */
78
+ export declare const de_DeleteConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<DeleteConnectorCommandOutput>;
79
+ /**
80
+ * deserializeAws_restJson1GetChallengeMetadataCommand
81
+ */
82
+ export declare const de_GetChallengeMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChallengeMetadataCommandOutput>;
83
+ /**
84
+ * deserializeAws_restJson1GetChallengePasswordCommand
85
+ */
86
+ export declare const de_GetChallengePasswordCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetChallengePasswordCommandOutput>;
87
+ /**
88
+ * deserializeAws_restJson1GetConnectorCommand
89
+ */
90
+ export declare const de_GetConnectorCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<GetConnectorCommandOutput>;
91
+ /**
92
+ * deserializeAws_restJson1ListChallengeMetadataCommand
93
+ */
94
+ export declare const de_ListChallengeMetadataCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListChallengeMetadataCommandOutput>;
95
+ /**
96
+ * deserializeAws_restJson1ListConnectorsCommand
97
+ */
98
+ export declare const de_ListConnectorsCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListConnectorsCommandOutput>;
99
+ /**
100
+ * deserializeAws_restJson1ListTagsForResourceCommand
101
+ */
102
+ export declare const de_ListTagsForResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<ListTagsForResourceCommandOutput>;
103
+ /**
104
+ * deserializeAws_restJson1TagResourceCommand
105
+ */
106
+ export declare const de_TagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<TagResourceCommandOutput>;
107
+ /**
108
+ * deserializeAws_restJson1UntagResourceCommand
109
+ */
110
+ export declare const de_UntagResourceCommand: (output: __HttpResponse, context: __SerdeContext) => Promise<UntagResourceCommandOutput>;
@@ -0,0 +1,45 @@
1
+ import { FetchHttpHandler as RequestHandler } from "@smithy/fetch-http-handler";
2
+ import { PcaConnectorScepClientConfig } from "./PcaConnectorScepClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: PcaConnectorScepClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<any>;
14
+ requestHandler: import("@smithy/protocol-http").HttpHandler<any> | RequestHandler;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ base64Decoder: import("@smithy/types").Decoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
+ utf8Decoder: import("@smithy/types").Decoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
+ disableHostPrefix: boolean;
27
+ serviceId: string;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
31
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
32
+ logger?: import("@smithy/types").Logger | undefined;
33
+ }) => import("@smithy/types").EndpointV2;
34
+ tls?: boolean | undefined;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
36
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
37
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
38
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PcaConnectorScepHttpAuthSchemeProvider;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ };
@@ -0,0 +1,45 @@
1
+ import { NodeHttpHandler as RequestHandler } from "@smithy/node-http-handler";
2
+ import { PcaConnectorScepClientConfig } from "./PcaConnectorScepClient";
3
+ /**
4
+ * @internal
5
+ */
6
+ export declare const getRuntimeConfig: (config: PcaConnectorScepClientConfig) => {
7
+ runtime: string;
8
+ defaultsMode: import("@smithy/types").Provider<import("@smithy/smithy-client").ResolvedDefaultsMode>;
9
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
10
+ credentialDefaultProvider: (init?: import("@aws-sdk/credential-provider-node").DefaultProviderInit | undefined) => import("@smithy/types").MemoizedProvider<import("@smithy/types").AwsCredentialIdentity>;
11
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
12
+ maxAttempts: number | import("@smithy/types").Provider<number>;
13
+ region: string | import("@smithy/types").Provider<string>;
14
+ requestHandler: RequestHandler | import("@smithy/protocol-http").HttpHandler<any>;
15
+ retryMode: string | import("@smithy/types").Provider<string>;
16
+ sha256: import("@smithy/types").HashConstructor;
17
+ streamCollector: import("@smithy/types").StreamCollector;
18
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
19
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ apiVersion: string;
21
+ urlParser: import("@smithy/types").UrlParser;
22
+ base64Decoder: import("@smithy/types").Decoder;
23
+ base64Encoder: (_input: string | Uint8Array) => string;
24
+ utf8Decoder: import("@smithy/types").Decoder;
25
+ utf8Encoder: (input: string | Uint8Array) => string;
26
+ disableHostPrefix: boolean;
27
+ serviceId: string;
28
+ logger: import("@smithy/types").Logger;
29
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
30
+ endpoint?: ((string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>) & (string | import("@smithy/types").Provider<string> | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2>)) | undefined;
31
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
32
+ logger?: import("@smithy/types").Logger | undefined;
33
+ }) => import("@smithy/types").EndpointV2;
34
+ tls?: boolean | undefined;
35
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
36
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
37
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
38
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PcaConnectorScepHttpAuthSchemeProvider;
39
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
40
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
41
+ signingEscapePath?: boolean | undefined;
42
+ systemClockOffset?: number | undefined;
43
+ signingRegion?: string | undefined;
44
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
45
+ };
@@ -0,0 +1,44 @@
1
+ import { PcaConnectorScepClientConfig } from "./PcaConnectorScepClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: PcaConnectorScepClientConfig) => {
6
+ runtime: string;
7
+ sha256: import("@smithy/types").HashConstructor;
8
+ requestHandler: import("@smithy/types").NodeHttpHandlerOptions | import("@smithy/types").FetchHttpHandlerOptions | Record<string, unknown> | import("@smithy/protocol-http").HttpHandler<any> | import("@smithy/fetch-http-handler").FetchHttpHandler;
9
+ apiVersion: string;
10
+ urlParser: import("@smithy/types").UrlParser;
11
+ bodyLengthChecker: import("@smithy/types").BodyLengthCalculator;
12
+ streamCollector: import("@smithy/types").StreamCollector;
13
+ base64Decoder: import("@smithy/types").Decoder;
14
+ base64Encoder: (_input: string | Uint8Array) => string;
15
+ utf8Decoder: import("@smithy/types").Decoder;
16
+ utf8Encoder: (input: string | Uint8Array) => string;
17
+ disableHostPrefix: boolean;
18
+ serviceId: string;
19
+ useDualstackEndpoint: boolean | import("@smithy/types").Provider<boolean>;
20
+ useFipsEndpoint: boolean | import("@smithy/types").Provider<boolean>;
21
+ region: string | import("@smithy/types").Provider<any>;
22
+ defaultUserAgentProvider: import("@smithy/types").Provider<import("@smithy/types").UserAgent>;
23
+ credentialDefaultProvider: (input: any) => import("@smithy/types").AwsCredentialIdentityProvider;
24
+ maxAttempts: number | import("@smithy/types").Provider<number>;
25
+ retryMode: string | import("@smithy/types").Provider<string>;
26
+ logger: import("@smithy/types").Logger;
27
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
28
+ defaultsMode: import("@smithy/smithy-client").DefaultsMode | import("@smithy/types").Provider<import("@smithy/smithy-client").DefaultsMode>;
29
+ endpoint?: string | import("@smithy/types").Endpoint | import("@smithy/types").Provider<import("@smithy/types").Endpoint> | import("@smithy/types").EndpointV2 | import("@smithy/types").Provider<import("@smithy/types").EndpointV2> | undefined;
30
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
31
+ logger?: import("@smithy/types").Logger | undefined;
32
+ }) => import("@smithy/types").EndpointV2;
33
+ tls?: boolean | undefined;
34
+ retryStrategy?: import("@smithy/types").RetryStrategy | import("@smithy/types").RetryStrategyV2 | undefined;
35
+ customUserAgent?: string | import("@smithy/types").UserAgent | undefined;
36
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
37
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PcaConnectorScepHttpAuthSchemeProvider;
38
+ credentials?: import("@smithy/types").AwsCredentialIdentity | import("@smithy/types").AwsCredentialIdentityProvider | undefined;
39
+ signer?: import("@smithy/types").RequestSigner | ((authScheme?: import("@smithy/types").AuthScheme | undefined) => Promise<import("@smithy/types").RequestSigner>) | undefined;
40
+ signingEscapePath?: boolean | undefined;
41
+ systemClockOffset?: number | undefined;
42
+ signingRegion?: string | undefined;
43
+ signerConstructor?: (new (options: import("@smithy/signature-v4").SignatureV4Init & import("@smithy/signature-v4").SignatureV4CryptoInit) => import("@smithy/types").RequestSigner) | undefined;
44
+ };
@@ -0,0 +1,21 @@
1
+ import { PcaConnectorScepClientConfig } from "./PcaConnectorScepClient";
2
+ /**
3
+ * @internal
4
+ */
5
+ export declare const getRuntimeConfig: (config: PcaConnectorScepClientConfig) => {
6
+ apiVersion: string;
7
+ base64Decoder: import("@smithy/types").Decoder;
8
+ base64Encoder: (_input: string | Uint8Array) => string;
9
+ disableHostPrefix: boolean;
10
+ endpointProvider: (endpointParams: import("./endpoint/EndpointParameters").EndpointParameters, context?: {
11
+ logger?: import("@smithy/types").Logger | undefined;
12
+ }) => import("@smithy/types").EndpointV2;
13
+ extensions: import("./runtimeExtensions").RuntimeExtension[];
14
+ httpAuthSchemeProvider: import("./auth/httpAuthSchemeProvider").PcaConnectorScepHttpAuthSchemeProvider;
15
+ httpAuthSchemes: import("@smithy/types").HttpAuthScheme[];
16
+ logger: import("@smithy/types").Logger;
17
+ serviceId: string;
18
+ urlParser: import("@smithy/types").UrlParser;
19
+ utf8Decoder: import("@smithy/types").Decoder;
20
+ utf8Encoder: (input: string | Uint8Array) => string;
21
+ };
@@ -0,0 +1,17 @@
1
+ import { PcaConnectorScepExtensionConfiguration } from "./extensionConfiguration";
2
+ /**
3
+ * @public
4
+ */
5
+ export interface RuntimeExtension {
6
+ configure(extensionConfiguration: PcaConnectorScepExtensionConfiguration): void;
7
+ }
8
+ /**
9
+ * @public
10
+ */
11
+ export interface RuntimeExtensionsConfig {
12
+ extensions: RuntimeExtension[];
13
+ }
14
+ /**
15
+ * @internal
16
+ */
17
+ export declare const resolveRuntimeExtensions: (runtimeConfig: any, extensions: RuntimeExtension[]) => any;
@@ -0,0 +1,212 @@
1
+ import { HttpHandlerOptions as __HttpHandlerOptions } from "@smithy/types";
2
+ import {
3
+ CreateChallengeCommandInput,
4
+ CreateChallengeCommandOutput,
5
+ } from "./commands/CreateChallengeCommand";
6
+ import {
7
+ CreateConnectorCommandInput,
8
+ CreateConnectorCommandOutput,
9
+ } from "./commands/CreateConnectorCommand";
10
+ import {
11
+ DeleteChallengeCommandInput,
12
+ DeleteChallengeCommandOutput,
13
+ } from "./commands/DeleteChallengeCommand";
14
+ import {
15
+ DeleteConnectorCommandInput,
16
+ DeleteConnectorCommandOutput,
17
+ } from "./commands/DeleteConnectorCommand";
18
+ import {
19
+ GetChallengeMetadataCommandInput,
20
+ GetChallengeMetadataCommandOutput,
21
+ } from "./commands/GetChallengeMetadataCommand";
22
+ import {
23
+ GetChallengePasswordCommandInput,
24
+ GetChallengePasswordCommandOutput,
25
+ } from "./commands/GetChallengePasswordCommand";
26
+ import {
27
+ GetConnectorCommandInput,
28
+ GetConnectorCommandOutput,
29
+ } from "./commands/GetConnectorCommand";
30
+ import {
31
+ ListChallengeMetadataCommandInput,
32
+ ListChallengeMetadataCommandOutput,
33
+ } from "./commands/ListChallengeMetadataCommand";
34
+ import {
35
+ ListConnectorsCommandInput,
36
+ ListConnectorsCommandOutput,
37
+ } from "./commands/ListConnectorsCommand";
38
+ import {
39
+ ListTagsForResourceCommandInput,
40
+ ListTagsForResourceCommandOutput,
41
+ } from "./commands/ListTagsForResourceCommand";
42
+ import {
43
+ TagResourceCommandInput,
44
+ TagResourceCommandOutput,
45
+ } from "./commands/TagResourceCommand";
46
+ import {
47
+ UntagResourceCommandInput,
48
+ UntagResourceCommandOutput,
49
+ } from "./commands/UntagResourceCommand";
50
+ import { PcaConnectorScepClient } from "./PcaConnectorScepClient";
51
+ export interface PcaConnectorScep {
52
+ createChallenge(
53
+ args: CreateChallengeCommandInput,
54
+ options?: __HttpHandlerOptions
55
+ ): Promise<CreateChallengeCommandOutput>;
56
+ createChallenge(
57
+ args: CreateChallengeCommandInput,
58
+ cb: (err: any, data?: CreateChallengeCommandOutput) => void
59
+ ): void;
60
+ createChallenge(
61
+ args: CreateChallengeCommandInput,
62
+ options: __HttpHandlerOptions,
63
+ cb: (err: any, data?: CreateChallengeCommandOutput) => void
64
+ ): void;
65
+ createConnector(
66
+ args: CreateConnectorCommandInput,
67
+ options?: __HttpHandlerOptions
68
+ ): Promise<CreateConnectorCommandOutput>;
69
+ createConnector(
70
+ args: CreateConnectorCommandInput,
71
+ cb: (err: any, data?: CreateConnectorCommandOutput) => void
72
+ ): void;
73
+ createConnector(
74
+ args: CreateConnectorCommandInput,
75
+ options: __HttpHandlerOptions,
76
+ cb: (err: any, data?: CreateConnectorCommandOutput) => void
77
+ ): void;
78
+ deleteChallenge(
79
+ args: DeleteChallengeCommandInput,
80
+ options?: __HttpHandlerOptions
81
+ ): Promise<DeleteChallengeCommandOutput>;
82
+ deleteChallenge(
83
+ args: DeleteChallengeCommandInput,
84
+ cb: (err: any, data?: DeleteChallengeCommandOutput) => void
85
+ ): void;
86
+ deleteChallenge(
87
+ args: DeleteChallengeCommandInput,
88
+ options: __HttpHandlerOptions,
89
+ cb: (err: any, data?: DeleteChallengeCommandOutput) => void
90
+ ): void;
91
+ deleteConnector(
92
+ args: DeleteConnectorCommandInput,
93
+ options?: __HttpHandlerOptions
94
+ ): Promise<DeleteConnectorCommandOutput>;
95
+ deleteConnector(
96
+ args: DeleteConnectorCommandInput,
97
+ cb: (err: any, data?: DeleteConnectorCommandOutput) => void
98
+ ): void;
99
+ deleteConnector(
100
+ args: DeleteConnectorCommandInput,
101
+ options: __HttpHandlerOptions,
102
+ cb: (err: any, data?: DeleteConnectorCommandOutput) => void
103
+ ): void;
104
+ getChallengeMetadata(
105
+ args: GetChallengeMetadataCommandInput,
106
+ options?: __HttpHandlerOptions
107
+ ): Promise<GetChallengeMetadataCommandOutput>;
108
+ getChallengeMetadata(
109
+ args: GetChallengeMetadataCommandInput,
110
+ cb: (err: any, data?: GetChallengeMetadataCommandOutput) => void
111
+ ): void;
112
+ getChallengeMetadata(
113
+ args: GetChallengeMetadataCommandInput,
114
+ options: __HttpHandlerOptions,
115
+ cb: (err: any, data?: GetChallengeMetadataCommandOutput) => void
116
+ ): void;
117
+ getChallengePassword(
118
+ args: GetChallengePasswordCommandInput,
119
+ options?: __HttpHandlerOptions
120
+ ): Promise<GetChallengePasswordCommandOutput>;
121
+ getChallengePassword(
122
+ args: GetChallengePasswordCommandInput,
123
+ cb: (err: any, data?: GetChallengePasswordCommandOutput) => void
124
+ ): void;
125
+ getChallengePassword(
126
+ args: GetChallengePasswordCommandInput,
127
+ options: __HttpHandlerOptions,
128
+ cb: (err: any, data?: GetChallengePasswordCommandOutput) => void
129
+ ): void;
130
+ getConnector(
131
+ args: GetConnectorCommandInput,
132
+ options?: __HttpHandlerOptions
133
+ ): Promise<GetConnectorCommandOutput>;
134
+ getConnector(
135
+ args: GetConnectorCommandInput,
136
+ cb: (err: any, data?: GetConnectorCommandOutput) => void
137
+ ): void;
138
+ getConnector(
139
+ args: GetConnectorCommandInput,
140
+ options: __HttpHandlerOptions,
141
+ cb: (err: any, data?: GetConnectorCommandOutput) => void
142
+ ): void;
143
+ listChallengeMetadata(
144
+ args: ListChallengeMetadataCommandInput,
145
+ options?: __HttpHandlerOptions
146
+ ): Promise<ListChallengeMetadataCommandOutput>;
147
+ listChallengeMetadata(
148
+ args: ListChallengeMetadataCommandInput,
149
+ cb: (err: any, data?: ListChallengeMetadataCommandOutput) => void
150
+ ): void;
151
+ listChallengeMetadata(
152
+ args: ListChallengeMetadataCommandInput,
153
+ options: __HttpHandlerOptions,
154
+ cb: (err: any, data?: ListChallengeMetadataCommandOutput) => void
155
+ ): void;
156
+ listConnectors(): Promise<ListConnectorsCommandOutput>;
157
+ listConnectors(
158
+ args: ListConnectorsCommandInput,
159
+ options?: __HttpHandlerOptions
160
+ ): Promise<ListConnectorsCommandOutput>;
161
+ listConnectors(
162
+ args: ListConnectorsCommandInput,
163
+ cb: (err: any, data?: ListConnectorsCommandOutput) => void
164
+ ): void;
165
+ listConnectors(
166
+ args: ListConnectorsCommandInput,
167
+ options: __HttpHandlerOptions,
168
+ cb: (err: any, data?: ListConnectorsCommandOutput) => void
169
+ ): void;
170
+ listTagsForResource(
171
+ args: ListTagsForResourceCommandInput,
172
+ options?: __HttpHandlerOptions
173
+ ): Promise<ListTagsForResourceCommandOutput>;
174
+ listTagsForResource(
175
+ args: ListTagsForResourceCommandInput,
176
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
177
+ ): void;
178
+ listTagsForResource(
179
+ args: ListTagsForResourceCommandInput,
180
+ options: __HttpHandlerOptions,
181
+ cb: (err: any, data?: ListTagsForResourceCommandOutput) => void
182
+ ): void;
183
+ tagResource(
184
+ args: TagResourceCommandInput,
185
+ options?: __HttpHandlerOptions
186
+ ): Promise<TagResourceCommandOutput>;
187
+ tagResource(
188
+ args: TagResourceCommandInput,
189
+ cb: (err: any, data?: TagResourceCommandOutput) => void
190
+ ): void;
191
+ tagResource(
192
+ args: TagResourceCommandInput,
193
+ options: __HttpHandlerOptions,
194
+ cb: (err: any, data?: TagResourceCommandOutput) => void
195
+ ): void;
196
+ untagResource(
197
+ args: UntagResourceCommandInput,
198
+ options?: __HttpHandlerOptions
199
+ ): Promise<UntagResourceCommandOutput>;
200
+ untagResource(
201
+ args: UntagResourceCommandInput,
202
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
203
+ ): void;
204
+ untagResource(
205
+ args: UntagResourceCommandInput,
206
+ options: __HttpHandlerOptions,
207
+ cb: (err: any, data?: UntagResourceCommandOutput) => void
208
+ ): void;
209
+ }
210
+ export declare class PcaConnectorScep
211
+ extends PcaConnectorScepClient
212
+ implements PcaConnectorScep {}