@aws-sdk/client-payment-cryptography 3.349.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 (163) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +369 -0
  3. package/dist-cjs/PaymentCryptography.js +51 -0
  4. package/dist-cjs/PaymentCryptographyClient.js +41 -0
  5. package/dist-cjs/commands/CreateAliasCommand.js +46 -0
  6. package/dist-cjs/commands/CreateKeyCommand.js +46 -0
  7. package/dist-cjs/commands/DeleteAliasCommand.js +46 -0
  8. package/dist-cjs/commands/DeleteKeyCommand.js +46 -0
  9. package/dist-cjs/commands/ExportKeyCommand.js +47 -0
  10. package/dist-cjs/commands/GetAliasCommand.js +46 -0
  11. package/dist-cjs/commands/GetKeyCommand.js +46 -0
  12. package/dist-cjs/commands/GetParametersForExportCommand.js +47 -0
  13. package/dist-cjs/commands/GetParametersForImportCommand.js +47 -0
  14. package/dist-cjs/commands/GetPublicKeyCertificateCommand.js +47 -0
  15. package/dist-cjs/commands/ImportKeyCommand.js +47 -0
  16. package/dist-cjs/commands/ListAliasesCommand.js +46 -0
  17. package/dist-cjs/commands/ListKeysCommand.js +46 -0
  18. package/dist-cjs/commands/ListTagsForResourceCommand.js +46 -0
  19. package/dist-cjs/commands/RestoreKeyCommand.js +46 -0
  20. package/dist-cjs/commands/StartKeyUsageCommand.js +46 -0
  21. package/dist-cjs/commands/StopKeyUsageCommand.js +46 -0
  22. package/dist-cjs/commands/TagResourceCommand.js +46 -0
  23. package/dist-cjs/commands/UntagResourceCommand.js +46 -0
  24. package/dist-cjs/commands/UpdateAliasCommand.js +46 -0
  25. package/dist-cjs/commands/index.js +23 -0
  26. package/dist-cjs/endpoint/EndpointParameters.js +12 -0
  27. package/dist-cjs/endpoint/endpointResolver.js +12 -0
  28. package/dist-cjs/endpoint/ruleset.js +7 -0
  29. package/dist-cjs/index.js +11 -0
  30. package/dist-cjs/models/PaymentCryptographyServiceException.js +12 -0
  31. package/dist-cjs/models/index.js +4 -0
  32. package/dist-cjs/models/models_0.js +291 -0
  33. package/dist-cjs/pagination/Interfaces.js +2 -0
  34. package/dist-cjs/pagination/ListAliasesPaginator.js +29 -0
  35. package/dist-cjs/pagination/ListKeysPaginator.js +29 -0
  36. package/dist-cjs/pagination/ListTagsForResourcePaginator.js +29 -0
  37. package/dist-cjs/pagination/index.js +7 -0
  38. package/dist-cjs/protocols/Aws_json1_0.js +1396 -0
  39. package/dist-cjs/runtimeConfig.browser.js +39 -0
  40. package/dist-cjs/runtimeConfig.js +48 -0
  41. package/dist-cjs/runtimeConfig.native.js +15 -0
  42. package/dist-cjs/runtimeConfig.shared.js +21 -0
  43. package/dist-es/PaymentCryptography.js +47 -0
  44. package/dist-es/PaymentCryptographyClient.js +37 -0
  45. package/dist-es/commands/CreateAliasCommand.js +42 -0
  46. package/dist-es/commands/CreateKeyCommand.js +42 -0
  47. package/dist-es/commands/DeleteAliasCommand.js +42 -0
  48. package/dist-es/commands/DeleteKeyCommand.js +42 -0
  49. package/dist-es/commands/ExportKeyCommand.js +43 -0
  50. package/dist-es/commands/GetAliasCommand.js +42 -0
  51. package/dist-es/commands/GetKeyCommand.js +42 -0
  52. package/dist-es/commands/GetParametersForExportCommand.js +43 -0
  53. package/dist-es/commands/GetParametersForImportCommand.js +43 -0
  54. package/dist-es/commands/GetPublicKeyCertificateCommand.js +43 -0
  55. package/dist-es/commands/ImportKeyCommand.js +43 -0
  56. package/dist-es/commands/ListAliasesCommand.js +42 -0
  57. package/dist-es/commands/ListKeysCommand.js +42 -0
  58. package/dist-es/commands/ListTagsForResourceCommand.js +42 -0
  59. package/dist-es/commands/RestoreKeyCommand.js +42 -0
  60. package/dist-es/commands/StartKeyUsageCommand.js +42 -0
  61. package/dist-es/commands/StopKeyUsageCommand.js +42 -0
  62. package/dist-es/commands/TagResourceCommand.js +42 -0
  63. package/dist-es/commands/UntagResourceCommand.js +42 -0
  64. package/dist-es/commands/UpdateAliasCommand.js +42 -0
  65. package/dist-es/commands/index.js +20 -0
  66. package/dist-es/endpoint/EndpointParameters.js +8 -0
  67. package/dist-es/endpoint/endpointResolver.js +8 -0
  68. package/dist-es/endpoint/ruleset.js +4 -0
  69. package/dist-es/index.js +6 -0
  70. package/dist-es/models/PaymentCryptographyServiceException.js +8 -0
  71. package/dist-es/models/index.js +1 -0
  72. package/dist-es/models/models_0.js +267 -0
  73. package/dist-es/pagination/Interfaces.js +1 -0
  74. package/dist-es/pagination/ListAliasesPaginator.js +25 -0
  75. package/dist-es/pagination/ListKeysPaginator.js +25 -0
  76. package/dist-es/pagination/ListTagsForResourcePaginator.js +25 -0
  77. package/dist-es/pagination/index.js +4 -0
  78. package/dist-es/protocols/Aws_json1_0.js +1353 -0
  79. package/dist-es/runtimeConfig.browser.js +34 -0
  80. package/dist-es/runtimeConfig.js +43 -0
  81. package/dist-es/runtimeConfig.native.js +11 -0
  82. package/dist-es/runtimeConfig.shared.js +17 -0
  83. package/dist-types/PaymentCryptography.d.ts +154 -0
  84. package/dist-types/PaymentCryptographyClient.d.ts +186 -0
  85. package/dist-types/commands/CreateAliasCommand.d.ts +130 -0
  86. package/dist-types/commands/CreateKeyCommand.d.ts +175 -0
  87. package/dist-types/commands/DeleteAliasCommand.d.ts +120 -0
  88. package/dist-types/commands/DeleteKeyCommand.d.ts +149 -0
  89. package/dist-types/commands/ExportKeyCommand.d.ts +153 -0
  90. package/dist-types/commands/GetAliasCommand.d.ts +121 -0
  91. package/dist-types/commands/GetKeyCommand.d.ts +142 -0
  92. package/dist-types/commands/GetParametersForExportCommand.d.ts +120 -0
  93. package/dist-types/commands/GetParametersForImportCommand.d.ts +120 -0
  94. package/dist-types/commands/GetPublicKeyCertificateCommand.d.ts +95 -0
  95. package/dist-types/commands/ImportKeyCommand.d.ts +301 -0
  96. package/dist-types/commands/ListAliasesCommand.d.ts +127 -0
  97. package/dist-types/commands/ListKeysCommand.d.ts +143 -0
  98. package/dist-types/commands/ListTagsForResourceCommand.d.ts +119 -0
  99. package/dist-types/commands/RestoreKeyCommand.d.ts +150 -0
  100. package/dist-types/commands/StartKeyUsageCommand.d.ts +138 -0
  101. package/dist-types/commands/StopKeyUsageCommand.d.ts +144 -0
  102. package/dist-types/commands/TagResourceCommand.d.ts +122 -0
  103. package/dist-types/commands/UntagResourceCommand.d.ts +115 -0
  104. package/dist-types/commands/UpdateAliasCommand.d.ts +125 -0
  105. package/dist-types/commands/index.d.ts +20 -0
  106. package/dist-types/endpoint/EndpointParameters.d.ts +20 -0
  107. package/dist-types/endpoint/endpointResolver.d.ts +5 -0
  108. package/dist-types/endpoint/ruleset.d.ts +2 -0
  109. package/dist-types/index.d.ts +15 -0
  110. package/dist-types/models/PaymentCryptographyServiceException.d.ts +13 -0
  111. package/dist-types/models/index.d.ts +1 -0
  112. package/dist-types/models/models_0.d.ts +1222 -0
  113. package/dist-types/pagination/Interfaces.d.ts +8 -0
  114. package/dist-types/pagination/ListAliasesPaginator.d.ts +7 -0
  115. package/dist-types/pagination/ListKeysPaginator.d.ts +7 -0
  116. package/dist-types/pagination/ListTagsForResourcePaginator.d.ts +7 -0
  117. package/dist-types/pagination/index.d.ts +4 -0
  118. package/dist-types/protocols/Aws_json1_0.d.ts +182 -0
  119. package/dist-types/runtimeConfig.browser.d.ts +42 -0
  120. package/dist-types/runtimeConfig.d.ts +42 -0
  121. package/dist-types/runtimeConfig.native.d.ts +41 -0
  122. package/dist-types/runtimeConfig.shared.d.ts +18 -0
  123. package/dist-types/ts3.4/PaymentCryptography.d.ts +347 -0
  124. package/dist-types/ts3.4/PaymentCryptographyClient.d.ts +235 -0
  125. package/dist-types/ts3.4/commands/CreateAliasCommand.d.ts +35 -0
  126. package/dist-types/ts3.4/commands/CreateKeyCommand.d.ts +35 -0
  127. package/dist-types/ts3.4/commands/DeleteAliasCommand.d.ts +35 -0
  128. package/dist-types/ts3.4/commands/DeleteKeyCommand.d.ts +35 -0
  129. package/dist-types/ts3.4/commands/ExportKeyCommand.d.ts +35 -0
  130. package/dist-types/ts3.4/commands/GetAliasCommand.d.ts +35 -0
  131. package/dist-types/ts3.4/commands/GetKeyCommand.d.ts +33 -0
  132. package/dist-types/ts3.4/commands/GetParametersForExportCommand.d.ts +42 -0
  133. package/dist-types/ts3.4/commands/GetParametersForImportCommand.d.ts +42 -0
  134. package/dist-types/ts3.4/commands/GetPublicKeyCertificateCommand.d.ts +42 -0
  135. package/dist-types/ts3.4/commands/ImportKeyCommand.d.ts +35 -0
  136. package/dist-types/ts3.4/commands/ListAliasesCommand.d.ts +35 -0
  137. package/dist-types/ts3.4/commands/ListKeysCommand.d.ts +35 -0
  138. package/dist-types/ts3.4/commands/ListTagsForResourceCommand.d.ts +39 -0
  139. package/dist-types/ts3.4/commands/RestoreKeyCommand.d.ts +35 -0
  140. package/dist-types/ts3.4/commands/StartKeyUsageCommand.d.ts +35 -0
  141. package/dist-types/ts3.4/commands/StopKeyUsageCommand.d.ts +35 -0
  142. package/dist-types/ts3.4/commands/TagResourceCommand.d.ts +35 -0
  143. package/dist-types/ts3.4/commands/UntagResourceCommand.d.ts +35 -0
  144. package/dist-types/ts3.4/commands/UpdateAliasCommand.d.ts +35 -0
  145. package/dist-types/ts3.4/commands/index.d.ts +20 -0
  146. package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +32 -0
  147. package/dist-types/ts3.4/endpoint/endpointResolver.d.ts +8 -0
  148. package/dist-types/ts3.4/endpoint/ruleset.d.ts +2 -0
  149. package/dist-types/ts3.4/index.d.ts +6 -0
  150. package/dist-types/ts3.4/models/PaymentCryptographyServiceException.d.ts +8 -0
  151. package/dist-types/ts3.4/models/index.d.ts +1 -0
  152. package/dist-types/ts3.4/models/models_0.d.ts +490 -0
  153. package/dist-types/ts3.4/pagination/Interfaces.d.ts +6 -0
  154. package/dist-types/ts3.4/pagination/ListAliasesPaginator.d.ts +11 -0
  155. package/dist-types/ts3.4/pagination/ListKeysPaginator.d.ts +11 -0
  156. package/dist-types/ts3.4/pagination/ListTagsForResourcePaginator.d.ts +11 -0
  157. package/dist-types/ts3.4/pagination/index.d.ts +4 -0
  158. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +245 -0
  159. package/dist-types/ts3.4/runtimeConfig.browser.d.ts +96 -0
  160. package/dist-types/ts3.4/runtimeConfig.d.ts +93 -0
  161. package/dist-types/ts3.4/runtimeConfig.native.d.ts +87 -0
  162. package/dist-types/ts3.4/runtimeConfig.shared.d.ts +20 -0
  163. package/package.json +99 -0
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { DeleteKeyInput, DeleteKeyOutput } from "../models/models_0";
10
+ import {
11
+ PaymentCryptographyClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PaymentCryptographyClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface DeleteKeyCommandInput extends DeleteKeyInput {}
17
+ export interface DeleteKeyCommandOutput
18
+ extends DeleteKeyOutput,
19
+ __MetadataBearer {}
20
+ export declare class DeleteKeyCommand extends $Command<
21
+ DeleteKeyCommandInput,
22
+ DeleteKeyCommandOutput,
23
+ PaymentCryptographyClientResolvedConfig
24
+ > {
25
+ readonly input: DeleteKeyCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: DeleteKeyCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PaymentCryptographyClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<DeleteKeyCommandInput, DeleteKeyCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { ExportKeyInput, ExportKeyOutput } from "../models/models_0";
10
+ import {
11
+ PaymentCryptographyClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PaymentCryptographyClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface ExportKeyCommandInput extends ExportKeyInput {}
17
+ export interface ExportKeyCommandOutput
18
+ extends ExportKeyOutput,
19
+ __MetadataBearer {}
20
+ export declare class ExportKeyCommand extends $Command<
21
+ ExportKeyCommandInput,
22
+ ExportKeyCommandOutput,
23
+ PaymentCryptographyClientResolvedConfig
24
+ > {
25
+ readonly input: ExportKeyCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: ExportKeyCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PaymentCryptographyClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ExportKeyCommandInput, ExportKeyCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { GetAliasInput, GetAliasOutput } from "../models/models_0";
10
+ import {
11
+ PaymentCryptographyClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PaymentCryptographyClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface GetAliasCommandInput extends GetAliasInput {}
17
+ export interface GetAliasCommandOutput
18
+ extends GetAliasOutput,
19
+ __MetadataBearer {}
20
+ export declare class GetAliasCommand extends $Command<
21
+ GetAliasCommandInput,
22
+ GetAliasCommandOutput,
23
+ PaymentCryptographyClientResolvedConfig
24
+ > {
25
+ readonly input: GetAliasCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: GetAliasCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PaymentCryptographyClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<GetAliasCommandInput, GetAliasCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,33 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { GetKeyInput, GetKeyOutput } from "../models/models_0";
10
+ import {
11
+ PaymentCryptographyClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PaymentCryptographyClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface GetKeyCommandInput extends GetKeyInput {}
17
+ export interface GetKeyCommandOutput extends GetKeyOutput, __MetadataBearer {}
18
+ export declare class GetKeyCommand extends $Command<
19
+ GetKeyCommandInput,
20
+ GetKeyCommandOutput,
21
+ PaymentCryptographyClientResolvedConfig
22
+ > {
23
+ readonly input: GetKeyCommandInput;
24
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
25
+ constructor(input: GetKeyCommandInput);
26
+ resolveMiddleware(
27
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
28
+ configuration: PaymentCryptographyClientResolvedConfig,
29
+ options?: __HttpHandlerOptions
30
+ ): Handler<GetKeyCommandInput, GetKeyCommandOutput>;
31
+ private serialize;
32
+ private deserialize;
33
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ GetParametersForExportInput,
11
+ GetParametersForExportOutput,
12
+ } from "../models/models_0";
13
+ import {
14
+ PaymentCryptographyClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../PaymentCryptographyClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetParametersForExportCommandInput
20
+ extends GetParametersForExportInput {}
21
+ export interface GetParametersForExportCommandOutput
22
+ extends GetParametersForExportOutput,
23
+ __MetadataBearer {}
24
+ export declare class GetParametersForExportCommand extends $Command<
25
+ GetParametersForExportCommandInput,
26
+ GetParametersForExportCommandOutput,
27
+ PaymentCryptographyClientResolvedConfig
28
+ > {
29
+ readonly input: GetParametersForExportCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: GetParametersForExportCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: PaymentCryptographyClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ GetParametersForExportCommandInput,
38
+ GetParametersForExportCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ GetParametersForImportInput,
11
+ GetParametersForImportOutput,
12
+ } from "../models/models_0";
13
+ import {
14
+ PaymentCryptographyClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../PaymentCryptographyClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetParametersForImportCommandInput
20
+ extends GetParametersForImportInput {}
21
+ export interface GetParametersForImportCommandOutput
22
+ extends GetParametersForImportOutput,
23
+ __MetadataBearer {}
24
+ export declare class GetParametersForImportCommand extends $Command<
25
+ GetParametersForImportCommandInput,
26
+ GetParametersForImportCommandOutput,
27
+ PaymentCryptographyClientResolvedConfig
28
+ > {
29
+ readonly input: GetParametersForImportCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: GetParametersForImportCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: PaymentCryptographyClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ GetParametersForImportCommandInput,
38
+ GetParametersForImportCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,42 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ GetPublicKeyCertificateInput,
11
+ GetPublicKeyCertificateOutput,
12
+ } from "../models/models_0";
13
+ import {
14
+ PaymentCryptographyClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../PaymentCryptographyClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface GetPublicKeyCertificateCommandInput
20
+ extends GetPublicKeyCertificateInput {}
21
+ export interface GetPublicKeyCertificateCommandOutput
22
+ extends GetPublicKeyCertificateOutput,
23
+ __MetadataBearer {}
24
+ export declare class GetPublicKeyCertificateCommand extends $Command<
25
+ GetPublicKeyCertificateCommandInput,
26
+ GetPublicKeyCertificateCommandOutput,
27
+ PaymentCryptographyClientResolvedConfig
28
+ > {
29
+ readonly input: GetPublicKeyCertificateCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: GetPublicKeyCertificateCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: PaymentCryptographyClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<
37
+ GetPublicKeyCertificateCommandInput,
38
+ GetPublicKeyCertificateCommandOutput
39
+ >;
40
+ private serialize;
41
+ private deserialize;
42
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { ImportKeyInput, ImportKeyOutput } from "../models/models_0";
10
+ import {
11
+ PaymentCryptographyClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PaymentCryptographyClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface ImportKeyCommandInput extends ImportKeyInput {}
17
+ export interface ImportKeyCommandOutput
18
+ extends ImportKeyOutput,
19
+ __MetadataBearer {}
20
+ export declare class ImportKeyCommand extends $Command<
21
+ ImportKeyCommandInput,
22
+ ImportKeyCommandOutput,
23
+ PaymentCryptographyClientResolvedConfig
24
+ > {
25
+ readonly input: ImportKeyCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: ImportKeyCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PaymentCryptographyClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ImportKeyCommandInput, ImportKeyCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { ListAliasesInput, ListAliasesOutput } from "../models/models_0";
10
+ import {
11
+ PaymentCryptographyClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PaymentCryptographyClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface ListAliasesCommandInput extends ListAliasesInput {}
17
+ export interface ListAliasesCommandOutput
18
+ extends ListAliasesOutput,
19
+ __MetadataBearer {}
20
+ export declare class ListAliasesCommand extends $Command<
21
+ ListAliasesCommandInput,
22
+ ListAliasesCommandOutput,
23
+ PaymentCryptographyClientResolvedConfig
24
+ > {
25
+ readonly input: ListAliasesCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: ListAliasesCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PaymentCryptographyClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListAliasesCommandInput, ListAliasesCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { ListKeysInput, ListKeysOutput } from "../models/models_0";
10
+ import {
11
+ PaymentCryptographyClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PaymentCryptographyClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface ListKeysCommandInput extends ListKeysInput {}
17
+ export interface ListKeysCommandOutput
18
+ extends ListKeysOutput,
19
+ __MetadataBearer {}
20
+ export declare class ListKeysCommand extends $Command<
21
+ ListKeysCommandInput,
22
+ ListKeysCommandOutput,
23
+ PaymentCryptographyClientResolvedConfig
24
+ > {
25
+ readonly input: ListKeysCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: ListKeysCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PaymentCryptographyClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<ListKeysCommandInput, ListKeysCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,39 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import {
10
+ ListTagsForResourceInput,
11
+ ListTagsForResourceOutput,
12
+ } from "../models/models_0";
13
+ import {
14
+ PaymentCryptographyClientResolvedConfig,
15
+ ServiceInputTypes,
16
+ ServiceOutputTypes,
17
+ } from "../PaymentCryptographyClient";
18
+ export { __MetadataBearer, $Command };
19
+ export interface ListTagsForResourceCommandInput
20
+ extends ListTagsForResourceInput {}
21
+ export interface ListTagsForResourceCommandOutput
22
+ extends ListTagsForResourceOutput,
23
+ __MetadataBearer {}
24
+ export declare class ListTagsForResourceCommand extends $Command<
25
+ ListTagsForResourceCommandInput,
26
+ ListTagsForResourceCommandOutput,
27
+ PaymentCryptographyClientResolvedConfig
28
+ > {
29
+ readonly input: ListTagsForResourceCommandInput;
30
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
31
+ constructor(input: ListTagsForResourceCommandInput);
32
+ resolveMiddleware(
33
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
34
+ configuration: PaymentCryptographyClientResolvedConfig,
35
+ options?: __HttpHandlerOptions
36
+ ): Handler<ListTagsForResourceCommandInput, ListTagsForResourceCommandOutput>;
37
+ private serialize;
38
+ private deserialize;
39
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { RestoreKeyInput, RestoreKeyOutput } from "../models/models_0";
10
+ import {
11
+ PaymentCryptographyClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PaymentCryptographyClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface RestoreKeyCommandInput extends RestoreKeyInput {}
17
+ export interface RestoreKeyCommandOutput
18
+ extends RestoreKeyOutput,
19
+ __MetadataBearer {}
20
+ export declare class RestoreKeyCommand extends $Command<
21
+ RestoreKeyCommandInput,
22
+ RestoreKeyCommandOutput,
23
+ PaymentCryptographyClientResolvedConfig
24
+ > {
25
+ readonly input: RestoreKeyCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: RestoreKeyCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PaymentCryptographyClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<RestoreKeyCommandInput, RestoreKeyCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { StartKeyUsageInput, StartKeyUsageOutput } from "../models/models_0";
10
+ import {
11
+ PaymentCryptographyClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PaymentCryptographyClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface StartKeyUsageCommandInput extends StartKeyUsageInput {}
17
+ export interface StartKeyUsageCommandOutput
18
+ extends StartKeyUsageOutput,
19
+ __MetadataBearer {}
20
+ export declare class StartKeyUsageCommand extends $Command<
21
+ StartKeyUsageCommandInput,
22
+ StartKeyUsageCommandOutput,
23
+ PaymentCryptographyClientResolvedConfig
24
+ > {
25
+ readonly input: StartKeyUsageCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: StartKeyUsageCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PaymentCryptographyClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<StartKeyUsageCommandInput, StartKeyUsageCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { StopKeyUsageInput, StopKeyUsageOutput } from "../models/models_0";
10
+ import {
11
+ PaymentCryptographyClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PaymentCryptographyClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface StopKeyUsageCommandInput extends StopKeyUsageInput {}
17
+ export interface StopKeyUsageCommandOutput
18
+ extends StopKeyUsageOutput,
19
+ __MetadataBearer {}
20
+ export declare class StopKeyUsageCommand extends $Command<
21
+ StopKeyUsageCommandInput,
22
+ StopKeyUsageCommandOutput,
23
+ PaymentCryptographyClientResolvedConfig
24
+ > {
25
+ readonly input: StopKeyUsageCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: StopKeyUsageCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PaymentCryptographyClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<StopKeyUsageCommandInput, StopKeyUsageCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { TagResourceInput, TagResourceOutput } from "../models/models_0";
10
+ import {
11
+ PaymentCryptographyClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PaymentCryptographyClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface TagResourceCommandInput extends TagResourceInput {}
17
+ export interface TagResourceCommandOutput
18
+ extends TagResourceOutput,
19
+ __MetadataBearer {}
20
+ export declare class TagResourceCommand extends $Command<
21
+ TagResourceCommandInput,
22
+ TagResourceCommandOutput,
23
+ PaymentCryptographyClientResolvedConfig
24
+ > {
25
+ readonly input: TagResourceCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: TagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PaymentCryptographyClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<TagResourceCommandInput, TagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { UntagResourceInput, UntagResourceOutput } from "../models/models_0";
10
+ import {
11
+ PaymentCryptographyClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PaymentCryptographyClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface UntagResourceCommandInput extends UntagResourceInput {}
17
+ export interface UntagResourceCommandOutput
18
+ extends UntagResourceOutput,
19
+ __MetadataBearer {}
20
+ export declare class UntagResourceCommand extends $Command<
21
+ UntagResourceCommandInput,
22
+ UntagResourceCommandOutput,
23
+ PaymentCryptographyClientResolvedConfig
24
+ > {
25
+ readonly input: UntagResourceCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: UntagResourceCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PaymentCryptographyClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UntagResourceCommandInput, UntagResourceCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,35 @@
1
+ import { EndpointParameterInstructions } from "@aws-sdk/middleware-endpoint";
2
+ import { Command as $Command } from "@aws-sdk/smithy-client";
3
+ import {
4
+ Handler,
5
+ HttpHandlerOptions as __HttpHandlerOptions,
6
+ MetadataBearer as __MetadataBearer,
7
+ MiddlewareStack,
8
+ } from "@aws-sdk/types";
9
+ import { UpdateAliasInput, UpdateAliasOutput } from "../models/models_0";
10
+ import {
11
+ PaymentCryptographyClientResolvedConfig,
12
+ ServiceInputTypes,
13
+ ServiceOutputTypes,
14
+ } from "../PaymentCryptographyClient";
15
+ export { __MetadataBearer, $Command };
16
+ export interface UpdateAliasCommandInput extends UpdateAliasInput {}
17
+ export interface UpdateAliasCommandOutput
18
+ extends UpdateAliasOutput,
19
+ __MetadataBearer {}
20
+ export declare class UpdateAliasCommand extends $Command<
21
+ UpdateAliasCommandInput,
22
+ UpdateAliasCommandOutput,
23
+ PaymentCryptographyClientResolvedConfig
24
+ > {
25
+ readonly input: UpdateAliasCommandInput;
26
+ static getEndpointParameterInstructions(): EndpointParameterInstructions;
27
+ constructor(input: UpdateAliasCommandInput);
28
+ resolveMiddleware(
29
+ clientStack: MiddlewareStack<ServiceInputTypes, ServiceOutputTypes>,
30
+ configuration: PaymentCryptographyClientResolvedConfig,
31
+ options?: __HttpHandlerOptions
32
+ ): Handler<UpdateAliasCommandInput, UpdateAliasCommandOutput>;
33
+ private serialize;
34
+ private deserialize;
35
+ }
@@ -0,0 +1,20 @@
1
+ export * from "./CreateAliasCommand";
2
+ export * from "./CreateKeyCommand";
3
+ export * from "./DeleteAliasCommand";
4
+ export * from "./DeleteKeyCommand";
5
+ export * from "./ExportKeyCommand";
6
+ export * from "./GetAliasCommand";
7
+ export * from "./GetKeyCommand";
8
+ export * from "./GetParametersForExportCommand";
9
+ export * from "./GetParametersForImportCommand";
10
+ export * from "./GetPublicKeyCertificateCommand";
11
+ export * from "./ImportKeyCommand";
12
+ export * from "./ListAliasesCommand";
13
+ export * from "./ListKeysCommand";
14
+ export * from "./ListTagsForResourceCommand";
15
+ export * from "./RestoreKeyCommand";
16
+ export * from "./StartKeyUsageCommand";
17
+ export * from "./StopKeyUsageCommand";
18
+ export * from "./TagResourceCommand";
19
+ export * from "./UntagResourceCommand";
20
+ export * from "./UpdateAliasCommand";