@aws-sdk/client-payment-cryptography 3.883.0 → 3.887.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 (55) hide show
  1. package/README.md +40 -0
  2. package/dist-cjs/index.js +336 -169
  3. package/dist-es/PaymentCryptography.js +10 -0
  4. package/dist-es/commands/AddKeyReplicationRegionsCommand.js +22 -0
  5. package/dist-es/commands/DisableDefaultKeyReplicationRegionsCommand.js +22 -0
  6. package/dist-es/commands/EnableDefaultKeyReplicationRegionsCommand.js +22 -0
  7. package/dist-es/commands/GetDefaultKeyReplicationRegionsCommand.js +22 -0
  8. package/dist-es/commands/GetParametersForExportCommand.js +1 -2
  9. package/dist-es/commands/GetParametersForImportCommand.js +1 -2
  10. package/dist-es/commands/GetPublicKeyCertificateCommand.js +1 -2
  11. package/dist-es/commands/RemoveKeyReplicationRegionsCommand.js +22 -0
  12. package/dist-es/commands/index.js +5 -0
  13. package/dist-es/models/models_0.js +112 -134
  14. package/dist-es/protocols/Aws_json1_0.js +112 -3
  15. package/dist-types/PaymentCryptography.d.ts +36 -0
  16. package/dist-types/PaymentCryptographyClient.d.ts +7 -2
  17. package/dist-types/commands/AddKeyReplicationRegionsCommand.d.ts +135 -0
  18. package/dist-types/commands/CreateAliasCommand.d.ts +8 -8
  19. package/dist-types/commands/CreateKeyCommand.d.ts +20 -8
  20. package/dist-types/commands/DeleteAliasCommand.d.ts +7 -7
  21. package/dist-types/commands/DeleteKeyCommand.d.ts +16 -7
  22. package/dist-types/commands/DisableDefaultKeyReplicationRegionsCommand.d.ts +97 -0
  23. package/dist-types/commands/EnableDefaultKeyReplicationRegionsCommand.d.ts +97 -0
  24. package/dist-types/commands/ExportKeyCommand.d.ts +7 -7
  25. package/dist-types/commands/GetAliasCommand.d.ts +6 -6
  26. package/dist-types/commands/GetDefaultKeyReplicationRegionsCommand.d.ts +93 -0
  27. package/dist-types/commands/GetKeyCommand.d.ts +16 -7
  28. package/dist-types/commands/GetParametersForExportCommand.d.ts +8 -8
  29. package/dist-types/commands/GetParametersForImportCommand.d.ts +8 -8
  30. package/dist-types/commands/GetPublicKeyCertificateCommand.d.ts +6 -6
  31. package/dist-types/commands/ImportKeyCommand.d.ts +20 -8
  32. package/dist-types/commands/ListAliasesCommand.d.ts +6 -6
  33. package/dist-types/commands/ListKeysCommand.d.ts +8 -6
  34. package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -6
  35. package/dist-types/commands/RemoveKeyReplicationRegionsCommand.d.ts +135 -0
  36. package/dist-types/commands/RestoreKeyCommand.d.ts +17 -8
  37. package/dist-types/commands/StartKeyUsageCommand.d.ts +17 -8
  38. package/dist-types/commands/StopKeyUsageCommand.d.ts +17 -8
  39. package/dist-types/commands/TagResourceCommand.d.ts +8 -8
  40. package/dist-types/commands/UntagResourceCommand.d.ts +7 -7
  41. package/dist-types/commands/UpdateAliasCommand.d.ts +7 -7
  42. package/dist-types/commands/index.d.ts +5 -0
  43. package/dist-types/models/models_0.d.ts +538 -364
  44. package/dist-types/protocols/Aws_json1_0.d.ts +45 -0
  45. package/dist-types/ts3.4/PaymentCryptography.d.ts +98 -0
  46. package/dist-types/ts3.4/PaymentCryptographyClient.d.ts +30 -0
  47. package/dist-types/ts3.4/commands/AddKeyReplicationRegionsCommand.d.ts +51 -0
  48. package/dist-types/ts3.4/commands/DisableDefaultKeyReplicationRegionsCommand.d.ts +51 -0
  49. package/dist-types/ts3.4/commands/EnableDefaultKeyReplicationRegionsCommand.d.ts +51 -0
  50. package/dist-types/ts3.4/commands/GetDefaultKeyReplicationRegionsCommand.d.ts +51 -0
  51. package/dist-types/ts3.4/commands/RemoveKeyReplicationRegionsCommand.d.ts +51 -0
  52. package/dist-types/ts3.4/commands/index.d.ts +5 -0
  53. package/dist-types/ts3.4/models/models_0.d.ts +159 -120
  54. package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +60 -0
  55. package/package.json +37 -37
@@ -8,96 +8,9 @@ export declare class AccessDeniedException extends __BaseException {
8
8
  opts: __ExceptionOptionType<AccessDeniedException, __BaseException>
9
9
  );
10
10
  }
11
- export interface Alias {
12
- AliasName: string | undefined;
13
- KeyArn?: string | undefined;
14
- }
15
- export declare class ConflictException extends __BaseException {
16
- readonly name: "ConflictException";
17
- readonly $fault: "client";
18
- Message?: string | undefined;
19
- constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
20
- }
21
- export interface CreateAliasInput {
22
- AliasName: string | undefined;
23
- KeyArn?: string | undefined;
24
- }
25
- export interface CreateAliasOutput {
26
- Alias: Alias | undefined;
27
- }
28
- export declare class InternalServerException extends __BaseException {
29
- readonly name: "InternalServerException";
30
- readonly $fault: "server";
31
- Message?: string | undefined;
32
- constructor(
33
- opts: __ExceptionOptionType<InternalServerException, __BaseException>
34
- );
35
- }
36
- export declare class ResourceNotFoundException extends __BaseException {
37
- readonly name: "ResourceNotFoundException";
38
- readonly $fault: "client";
39
- ResourceId?: string | undefined;
40
- constructor(
41
- opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
42
- );
43
- }
44
- export declare class ServiceQuotaExceededException extends __BaseException {
45
- readonly name: "ServiceQuotaExceededException";
46
- readonly $fault: "client";
47
- Message?: string | undefined;
48
- constructor(
49
- opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
50
- );
51
- }
52
- export declare class ServiceUnavailableException extends __BaseException {
53
- readonly name: "ServiceUnavailableException";
54
- readonly $fault: "server";
55
- Message?: string | undefined;
56
- constructor(
57
- opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
58
- );
59
- }
60
- export declare class ThrottlingException extends __BaseException {
61
- readonly name: "ThrottlingException";
62
- readonly $fault: "client";
63
- Message?: string | undefined;
64
- constructor(
65
- opts: __ExceptionOptionType<ThrottlingException, __BaseException>
66
- );
67
- }
68
- export declare class ValidationException extends __BaseException {
69
- readonly name: "ValidationException";
70
- readonly $fault: "client";
71
- Message?: string | undefined;
72
- constructor(
73
- opts: __ExceptionOptionType<ValidationException, __BaseException>
74
- );
75
- }
76
- export interface DeleteAliasInput {
77
- AliasName: string | undefined;
78
- }
79
- export interface DeleteAliasOutput {}
80
- export interface GetAliasInput {
81
- AliasName: string | undefined;
82
- }
83
- export interface GetAliasOutput {
84
- Alias: Alias | undefined;
85
- }
86
- export interface ListAliasesInput {
87
- KeyArn?: string | undefined;
88
- NextToken?: string | undefined;
89
- MaxResults?: number | undefined;
90
- }
91
- export interface ListAliasesOutput {
92
- Aliases: Alias[] | undefined;
93
- NextToken?: string | undefined;
94
- }
95
- export interface UpdateAliasInput {
96
- AliasName: string | undefined;
97
- KeyArn?: string | undefined;
98
- }
99
- export interface UpdateAliasOutput {
100
- Alias: Alias | undefined;
11
+ export interface AddKeyReplicationRegionsInput {
12
+ KeyIdentifier: string | undefined;
13
+ ReplicationRegions: string[] | undefined;
101
14
  }
102
15
  export declare const DeriveKeyUsage: {
103
16
  readonly TR31_B0_BASE_DERIVATION_KEY: "TR31_B0_BASE_DERIVATION_KEY";
@@ -194,21 +107,10 @@ export declare const KeyCheckValueAlgorithm: {
194
107
  readonly ANSI_X9_24: "ANSI_X9_24";
195
108
  readonly CMAC: "CMAC";
196
109
  readonly HMAC: "HMAC";
110
+ readonly SHA_1: "SHA_1";
197
111
  };
198
112
  export type KeyCheckValueAlgorithm =
199
113
  (typeof KeyCheckValueAlgorithm)[keyof typeof KeyCheckValueAlgorithm];
200
- export interface Tag {
201
- Key: string | undefined;
202
- Value: string | undefined;
203
- }
204
- export interface CreateKeyInput {
205
- KeyAttributes: KeyAttributes | undefined;
206
- KeyCheckValueAlgorithm?: KeyCheckValueAlgorithm | undefined;
207
- Exportable: boolean | undefined;
208
- Enabled?: boolean | undefined;
209
- Tags?: Tag[] | undefined;
210
- DeriveKeyUsage?: DeriveKeyUsage | undefined;
211
- }
212
114
  export declare const KeyOrigin: {
213
115
  readonly AWS_PAYMENT_CRYPTOGRAPHY: "AWS_PAYMENT_CRYPTOGRAPHY";
214
116
  readonly EXTERNAL: "EXTERNAL";
@@ -221,6 +123,24 @@ export declare const KeyState: {
221
123
  readonly DELETE_PENDING: "DELETE_PENDING";
222
124
  };
223
125
  export type KeyState = (typeof KeyState)[keyof typeof KeyState];
126
+ export declare const MultiRegionKeyType: {
127
+ readonly PRIMARY: "PRIMARY";
128
+ readonly REPLICA: "REPLICA";
129
+ };
130
+ export type MultiRegionKeyType =
131
+ (typeof MultiRegionKeyType)[keyof typeof MultiRegionKeyType];
132
+ export declare const KeyReplicationState: {
133
+ readonly DELETE_IN_PROGRESS: "DELETE_IN_PROGRESS";
134
+ readonly FAILED: "FAILED";
135
+ readonly IN_PROGRESS: "IN_PROGRESS";
136
+ readonly SYNCHRONIZED: "SYNCHRONIZED";
137
+ };
138
+ export type KeyReplicationState =
139
+ (typeof KeyReplicationState)[keyof typeof KeyReplicationState];
140
+ export interface ReplicationStatusType {
141
+ Status: KeyReplicationState | undefined;
142
+ StatusMessage?: string | undefined;
143
+ }
224
144
  export interface Key {
225
145
  KeyArn: string | undefined;
226
146
  KeyAttributes: KeyAttributes | undefined;
@@ -236,6 +156,117 @@ export interface Key {
236
156
  DeletePendingTimestamp?: Date | undefined;
237
157
  DeleteTimestamp?: Date | undefined;
238
158
  DeriveKeyUsage?: DeriveKeyUsage | undefined;
159
+ MultiRegionKeyType?: MultiRegionKeyType | undefined;
160
+ PrimaryRegion?: string | undefined;
161
+ ReplicationStatus?: Record<string, ReplicationStatusType> | undefined;
162
+ UsingDefaultReplicationRegions?: boolean | undefined;
163
+ }
164
+ export interface AddKeyReplicationRegionsOutput {
165
+ Key: Key | undefined;
166
+ }
167
+ export declare class ConflictException extends __BaseException {
168
+ readonly name: "ConflictException";
169
+ readonly $fault: "client";
170
+ Message?: string | undefined;
171
+ constructor(opts: __ExceptionOptionType<ConflictException, __BaseException>);
172
+ }
173
+ export declare class InternalServerException extends __BaseException {
174
+ readonly name: "InternalServerException";
175
+ readonly $fault: "server";
176
+ Message?: string | undefined;
177
+ constructor(
178
+ opts: __ExceptionOptionType<InternalServerException, __BaseException>
179
+ );
180
+ }
181
+ export declare class ResourceNotFoundException extends __BaseException {
182
+ readonly name: "ResourceNotFoundException";
183
+ readonly $fault: "client";
184
+ ResourceId?: string | undefined;
185
+ constructor(
186
+ opts: __ExceptionOptionType<ResourceNotFoundException, __BaseException>
187
+ );
188
+ }
189
+ export declare class ServiceQuotaExceededException extends __BaseException {
190
+ readonly name: "ServiceQuotaExceededException";
191
+ readonly $fault: "client";
192
+ Message?: string | undefined;
193
+ constructor(
194
+ opts: __ExceptionOptionType<ServiceQuotaExceededException, __BaseException>
195
+ );
196
+ }
197
+ export declare class ThrottlingException extends __BaseException {
198
+ readonly name: "ThrottlingException";
199
+ readonly $fault: "client";
200
+ Message?: string | undefined;
201
+ constructor(
202
+ opts: __ExceptionOptionType<ThrottlingException, __BaseException>
203
+ );
204
+ }
205
+ export declare class ValidationException extends __BaseException {
206
+ readonly name: "ValidationException";
207
+ readonly $fault: "client";
208
+ Message?: string | undefined;
209
+ constructor(
210
+ opts: __ExceptionOptionType<ValidationException, __BaseException>
211
+ );
212
+ }
213
+ export interface Alias {
214
+ AliasName: string | undefined;
215
+ KeyArn?: string | undefined;
216
+ }
217
+ export interface CreateAliasInput {
218
+ AliasName: string | undefined;
219
+ KeyArn?: string | undefined;
220
+ }
221
+ export interface CreateAliasOutput {
222
+ Alias: Alias | undefined;
223
+ }
224
+ export declare class ServiceUnavailableException extends __BaseException {
225
+ readonly name: "ServiceUnavailableException";
226
+ readonly $fault: "server";
227
+ Message?: string | undefined;
228
+ constructor(
229
+ opts: __ExceptionOptionType<ServiceUnavailableException, __BaseException>
230
+ );
231
+ }
232
+ export interface DeleteAliasInput {
233
+ AliasName: string | undefined;
234
+ }
235
+ export interface DeleteAliasOutput {}
236
+ export interface GetAliasInput {
237
+ AliasName: string | undefined;
238
+ }
239
+ export interface GetAliasOutput {
240
+ Alias: Alias | undefined;
241
+ }
242
+ export interface ListAliasesInput {
243
+ KeyArn?: string | undefined;
244
+ NextToken?: string | undefined;
245
+ MaxResults?: number | undefined;
246
+ }
247
+ export interface ListAliasesOutput {
248
+ Aliases: Alias[] | undefined;
249
+ NextToken?: string | undefined;
250
+ }
251
+ export interface UpdateAliasInput {
252
+ AliasName: string | undefined;
253
+ KeyArn?: string | undefined;
254
+ }
255
+ export interface UpdateAliasOutput {
256
+ Alias: Alias | undefined;
257
+ }
258
+ export interface Tag {
259
+ Key: string | undefined;
260
+ Value: string | undefined;
261
+ }
262
+ export interface CreateKeyInput {
263
+ KeyAttributes: KeyAttributes | undefined;
264
+ KeyCheckValueAlgorithm?: KeyCheckValueAlgorithm | undefined;
265
+ Exportable: boolean | undefined;
266
+ Enabled?: boolean | undefined;
267
+ Tags?: Tag[] | undefined;
268
+ DeriveKeyUsage?: DeriveKeyUsage | undefined;
269
+ ReplicationRegions?: string[] | undefined;
239
270
  }
240
271
  export interface CreateKeyOutput {
241
272
  Key: Key | undefined;
@@ -268,6 +299,18 @@ export declare namespace DiffieHellmanDerivationData {
268
299
  visitor: Visitor<T>
269
300
  ) => T;
270
301
  }
302
+ export interface DisableDefaultKeyReplicationRegionsInput {
303
+ ReplicationRegions: string[] | undefined;
304
+ }
305
+ export interface DisableDefaultKeyReplicationRegionsOutput {
306
+ EnabledReplicationRegions: string[] | undefined;
307
+ }
308
+ export interface EnableDefaultKeyReplicationRegionsInput {
309
+ ReplicationRegions: string[] | undefined;
310
+ }
311
+ export interface EnableDefaultKeyReplicationRegionsOutput {
312
+ EnabledReplicationRegions: string[] | undefined;
313
+ }
271
314
  export interface ExportDukptInitialKey {
272
315
  KeySerialNumber: string | undefined;
273
316
  }
@@ -425,6 +468,10 @@ export interface WrappedKey {
425
468
  export interface ExportKeyOutput {
426
469
  WrappedKey?: WrappedKey | undefined;
427
470
  }
471
+ export interface GetDefaultKeyReplicationRegionsInput {}
472
+ export interface GetDefaultKeyReplicationRegionsOutput {
473
+ EnabledReplicationRegions: string[] | undefined;
474
+ }
428
475
  export interface GetKeyInput {
429
476
  KeyIdentifier: string | undefined;
430
477
  }
@@ -595,6 +642,7 @@ export interface ImportKeyInput {
595
642
  KeyCheckValueAlgorithm?: KeyCheckValueAlgorithm | undefined;
596
643
  Enabled?: boolean | undefined;
597
644
  Tags?: Tag[] | undefined;
645
+ ReplicationRegions?: string[] | undefined;
598
646
  }
599
647
  export interface ImportKeyOutput {
600
648
  Key: Key | undefined;
@@ -611,11 +659,20 @@ export interface KeySummary {
611
659
  KeyCheckValue: string | undefined;
612
660
  Exportable: boolean | undefined;
613
661
  Enabled: boolean | undefined;
662
+ MultiRegionKeyType?: MultiRegionKeyType | undefined;
663
+ PrimaryRegion?: string | undefined;
614
664
  }
615
665
  export interface ListKeysOutput {
616
666
  Keys: KeySummary[] | undefined;
617
667
  NextToken?: string | undefined;
618
668
  }
669
+ export interface RemoveKeyReplicationRegionsInput {
670
+ KeyIdentifier: string | undefined;
671
+ ReplicationRegions: string[] | undefined;
672
+ }
673
+ export interface RemoveKeyReplicationRegionsOutput {
674
+ Key: Key | undefined;
675
+ }
619
676
  export interface RestoreKeyInput {
620
677
  KeyIdentifier: string | undefined;
621
678
  }
@@ -659,9 +716,6 @@ export declare const KeyBlockHeadersFilterSensitiveLog: (
659
716
  export declare const ExportDiffieHellmanTr31KeyBlockFilterSensitiveLog: (
660
717
  obj: ExportDiffieHellmanTr31KeyBlock
661
718
  ) => any;
662
- export declare const ExportKeyCryptogramFilterSensitiveLog: (
663
- obj: ExportKeyCryptogram
664
- ) => any;
665
719
  export declare const ExportTr31KeyBlockFilterSensitiveLog: (
666
720
  obj: ExportTr31KeyBlock
667
721
  ) => any;
@@ -678,33 +732,18 @@ export declare const WrappedKeyFilterSensitiveLog: (obj: WrappedKey) => any;
678
732
  export declare const ExportKeyOutputFilterSensitiveLog: (
679
733
  obj: ExportKeyOutput
680
734
  ) => any;
681
- export declare const GetParametersForExportOutputFilterSensitiveLog: (
682
- obj: GetParametersForExportOutput
683
- ) => any;
684
- export declare const GetParametersForImportOutputFilterSensitiveLog: (
685
- obj: GetParametersForImportOutput
686
- ) => any;
687
- export declare const GetPublicKeyCertificateOutputFilterSensitiveLog: (
688
- obj: GetPublicKeyCertificateOutput
689
- ) => any;
690
735
  export declare const ImportDiffieHellmanTr31KeyBlockFilterSensitiveLog: (
691
736
  obj: ImportDiffieHellmanTr31KeyBlock
692
737
  ) => any;
693
738
  export declare const ImportKeyCryptogramFilterSensitiveLog: (
694
739
  obj: ImportKeyCryptogram
695
740
  ) => any;
696
- export declare const RootCertificatePublicKeyFilterSensitiveLog: (
697
- obj: RootCertificatePublicKey
698
- ) => any;
699
741
  export declare const ImportTr31KeyBlockFilterSensitiveLog: (
700
742
  obj: ImportTr31KeyBlock
701
743
  ) => any;
702
744
  export declare const ImportTr34KeyBlockFilterSensitiveLog: (
703
745
  obj: ImportTr34KeyBlock
704
746
  ) => any;
705
- export declare const TrustedCertificatePublicKeyFilterSensitiveLog: (
706
- obj: TrustedCertificatePublicKey
707
- ) => any;
708
747
  export declare const ImportKeyMaterialFilterSensitiveLog: (
709
748
  obj: ImportKeyMaterial
710
749
  ) => any;
@@ -3,6 +3,10 @@ import {
3
3
  HttpResponse as __HttpResponse,
4
4
  } from "@smithy/protocol-http";
5
5
  import { SerdeContext as __SerdeContext } from "@smithy/types";
6
+ import {
7
+ AddKeyReplicationRegionsCommandInput,
8
+ AddKeyReplicationRegionsCommandOutput,
9
+ } from "../commands/AddKeyReplicationRegionsCommand";
6
10
  import {
7
11
  CreateAliasCommandInput,
8
12
  CreateAliasCommandOutput,
@@ -19,6 +23,14 @@ import {
19
23
  DeleteKeyCommandInput,
20
24
  DeleteKeyCommandOutput,
21
25
  } from "../commands/DeleteKeyCommand";
26
+ import {
27
+ DisableDefaultKeyReplicationRegionsCommandInput,
28
+ DisableDefaultKeyReplicationRegionsCommandOutput,
29
+ } from "../commands/DisableDefaultKeyReplicationRegionsCommand";
30
+ import {
31
+ EnableDefaultKeyReplicationRegionsCommandInput,
32
+ EnableDefaultKeyReplicationRegionsCommandOutput,
33
+ } from "../commands/EnableDefaultKeyReplicationRegionsCommand";
22
34
  import {
23
35
  ExportKeyCommandInput,
24
36
  ExportKeyCommandOutput,
@@ -27,6 +39,10 @@ import {
27
39
  GetAliasCommandInput,
28
40
  GetAliasCommandOutput,
29
41
  } from "../commands/GetAliasCommand";
42
+ import {
43
+ GetDefaultKeyReplicationRegionsCommandInput,
44
+ GetDefaultKeyReplicationRegionsCommandOutput,
45
+ } from "../commands/GetDefaultKeyReplicationRegionsCommand";
30
46
  import {
31
47
  GetKeyCommandInput,
32
48
  GetKeyCommandOutput,
@@ -59,6 +75,10 @@ import {
59
75
  ListTagsForResourceCommandInput,
60
76
  ListTagsForResourceCommandOutput,
61
77
  } from "../commands/ListTagsForResourceCommand";
78
+ import {
79
+ RemoveKeyReplicationRegionsCommandInput,
80
+ RemoveKeyReplicationRegionsCommandOutput,
81
+ } from "../commands/RemoveKeyReplicationRegionsCommand";
62
82
  import {
63
83
  RestoreKeyCommandInput,
64
84
  RestoreKeyCommandOutput,
@@ -83,6 +103,10 @@ import {
83
103
  UpdateAliasCommandInput,
84
104
  UpdateAliasCommandOutput,
85
105
  } from "../commands/UpdateAliasCommand";
106
+ export declare const se_AddKeyReplicationRegionsCommand: (
107
+ input: AddKeyReplicationRegionsCommandInput,
108
+ context: __SerdeContext
109
+ ) => Promise<__HttpRequest>;
86
110
  export declare const se_CreateAliasCommand: (
87
111
  input: CreateAliasCommandInput,
88
112
  context: __SerdeContext
@@ -99,6 +123,14 @@ export declare const se_DeleteKeyCommand: (
99
123
  input: DeleteKeyCommandInput,
100
124
  context: __SerdeContext
101
125
  ) => Promise<__HttpRequest>;
126
+ export declare const se_DisableDefaultKeyReplicationRegionsCommand: (
127
+ input: DisableDefaultKeyReplicationRegionsCommandInput,
128
+ context: __SerdeContext
129
+ ) => Promise<__HttpRequest>;
130
+ export declare const se_EnableDefaultKeyReplicationRegionsCommand: (
131
+ input: EnableDefaultKeyReplicationRegionsCommandInput,
132
+ context: __SerdeContext
133
+ ) => Promise<__HttpRequest>;
102
134
  export declare const se_ExportKeyCommand: (
103
135
  input: ExportKeyCommandInput,
104
136
  context: __SerdeContext
@@ -107,6 +139,10 @@ export declare const se_GetAliasCommand: (
107
139
  input: GetAliasCommandInput,
108
140
  context: __SerdeContext
109
141
  ) => Promise<__HttpRequest>;
142
+ export declare const se_GetDefaultKeyReplicationRegionsCommand: (
143
+ input: GetDefaultKeyReplicationRegionsCommandInput,
144
+ context: __SerdeContext
145
+ ) => Promise<__HttpRequest>;
110
146
  export declare const se_GetKeyCommand: (
111
147
  input: GetKeyCommandInput,
112
148
  context: __SerdeContext
@@ -139,6 +175,10 @@ export declare const se_ListTagsForResourceCommand: (
139
175
  input: ListTagsForResourceCommandInput,
140
176
  context: __SerdeContext
141
177
  ) => Promise<__HttpRequest>;
178
+ export declare const se_RemoveKeyReplicationRegionsCommand: (
179
+ input: RemoveKeyReplicationRegionsCommandInput,
180
+ context: __SerdeContext
181
+ ) => Promise<__HttpRequest>;
142
182
  export declare const se_RestoreKeyCommand: (
143
183
  input: RestoreKeyCommandInput,
144
184
  context: __SerdeContext
@@ -163,6 +203,10 @@ export declare const se_UpdateAliasCommand: (
163
203
  input: UpdateAliasCommandInput,
164
204
  context: __SerdeContext
165
205
  ) => Promise<__HttpRequest>;
206
+ export declare const de_AddKeyReplicationRegionsCommand: (
207
+ output: __HttpResponse,
208
+ context: __SerdeContext
209
+ ) => Promise<AddKeyReplicationRegionsCommandOutput>;
166
210
  export declare const de_CreateAliasCommand: (
167
211
  output: __HttpResponse,
168
212
  context: __SerdeContext
@@ -179,6 +223,14 @@ export declare const de_DeleteKeyCommand: (
179
223
  output: __HttpResponse,
180
224
  context: __SerdeContext
181
225
  ) => Promise<DeleteKeyCommandOutput>;
226
+ export declare const de_DisableDefaultKeyReplicationRegionsCommand: (
227
+ output: __HttpResponse,
228
+ context: __SerdeContext
229
+ ) => Promise<DisableDefaultKeyReplicationRegionsCommandOutput>;
230
+ export declare const de_EnableDefaultKeyReplicationRegionsCommand: (
231
+ output: __HttpResponse,
232
+ context: __SerdeContext
233
+ ) => Promise<EnableDefaultKeyReplicationRegionsCommandOutput>;
182
234
  export declare const de_ExportKeyCommand: (
183
235
  output: __HttpResponse,
184
236
  context: __SerdeContext
@@ -187,6 +239,10 @@ export declare const de_GetAliasCommand: (
187
239
  output: __HttpResponse,
188
240
  context: __SerdeContext
189
241
  ) => Promise<GetAliasCommandOutput>;
242
+ export declare const de_GetDefaultKeyReplicationRegionsCommand: (
243
+ output: __HttpResponse,
244
+ context: __SerdeContext
245
+ ) => Promise<GetDefaultKeyReplicationRegionsCommandOutput>;
190
246
  export declare const de_GetKeyCommand: (
191
247
  output: __HttpResponse,
192
248
  context: __SerdeContext
@@ -219,6 +275,10 @@ export declare const de_ListTagsForResourceCommand: (
219
275
  output: __HttpResponse,
220
276
  context: __SerdeContext
221
277
  ) => Promise<ListTagsForResourceCommandOutput>;
278
+ export declare const de_RemoveKeyReplicationRegionsCommand: (
279
+ output: __HttpResponse,
280
+ context: __SerdeContext
281
+ ) => Promise<RemoveKeyReplicationRegionsCommandOutput>;
222
282
  export declare const de_RestoreKeyCommand: (
223
283
  output: __HttpResponse,
224
284
  context: __SerdeContext
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@aws-sdk/client-payment-cryptography",
3
3
  "description": "AWS SDK for JavaScript Payment Cryptography Client for Node.js, Browser and React Native",
4
- "version": "3.883.0",
4
+ "version": "3.887.0",
5
5
  "scripts": {
6
6
  "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
7
7
  "build:cjs": "node ../../scripts/compilation/inline client-payment-cryptography",
@@ -20,42 +20,42 @@
20
20
  "dependencies": {
21
21
  "@aws-crypto/sha256-browser": "5.2.0",
22
22
  "@aws-crypto/sha256-js": "5.2.0",
23
- "@aws-sdk/core": "3.883.0",
24
- "@aws-sdk/credential-provider-node": "3.883.0",
25
- "@aws-sdk/middleware-host-header": "3.873.0",
26
- "@aws-sdk/middleware-logger": "3.876.0",
27
- "@aws-sdk/middleware-recursion-detection": "3.873.0",
28
- "@aws-sdk/middleware-user-agent": "3.883.0",
29
- "@aws-sdk/region-config-resolver": "3.873.0",
30
- "@aws-sdk/types": "3.862.0",
31
- "@aws-sdk/util-endpoints": "3.879.0",
32
- "@aws-sdk/util-user-agent-browser": "3.873.0",
33
- "@aws-sdk/util-user-agent-node": "3.883.0",
34
- "@smithy/config-resolver": "^4.1.5",
35
- "@smithy/core": "^3.9.2",
36
- "@smithy/fetch-http-handler": "^5.1.1",
37
- "@smithy/hash-node": "^4.0.5",
38
- "@smithy/invalid-dependency": "^4.0.5",
39
- "@smithy/middleware-content-length": "^4.0.5",
40
- "@smithy/middleware-endpoint": "^4.1.21",
41
- "@smithy/middleware-retry": "^4.1.22",
42
- "@smithy/middleware-serde": "^4.0.9",
43
- "@smithy/middleware-stack": "^4.0.5",
44
- "@smithy/node-config-provider": "^4.1.4",
45
- "@smithy/node-http-handler": "^4.1.1",
46
- "@smithy/protocol-http": "^5.1.3",
47
- "@smithy/smithy-client": "^4.5.2",
48
- "@smithy/types": "^4.3.2",
49
- "@smithy/url-parser": "^4.0.5",
50
- "@smithy/util-base64": "^4.0.0",
51
- "@smithy/util-body-length-browser": "^4.0.0",
52
- "@smithy/util-body-length-node": "^4.0.0",
53
- "@smithy/util-defaults-mode-browser": "^4.0.29",
54
- "@smithy/util-defaults-mode-node": "^4.0.29",
55
- "@smithy/util-endpoints": "^3.0.7",
56
- "@smithy/util-middleware": "^4.0.5",
57
- "@smithy/util-retry": "^4.0.7",
58
- "@smithy/util-utf8": "^4.0.0",
23
+ "@aws-sdk/core": "3.887.0",
24
+ "@aws-sdk/credential-provider-node": "3.887.0",
25
+ "@aws-sdk/middleware-host-header": "3.887.0",
26
+ "@aws-sdk/middleware-logger": "3.887.0",
27
+ "@aws-sdk/middleware-recursion-detection": "3.887.0",
28
+ "@aws-sdk/middleware-user-agent": "3.887.0",
29
+ "@aws-sdk/region-config-resolver": "3.887.0",
30
+ "@aws-sdk/types": "3.887.0",
31
+ "@aws-sdk/util-endpoints": "3.887.0",
32
+ "@aws-sdk/util-user-agent-browser": "3.887.0",
33
+ "@aws-sdk/util-user-agent-node": "3.887.0",
34
+ "@smithy/config-resolver": "^4.2.1",
35
+ "@smithy/core": "^3.11.0",
36
+ "@smithy/fetch-http-handler": "^5.2.1",
37
+ "@smithy/hash-node": "^4.1.1",
38
+ "@smithy/invalid-dependency": "^4.1.1",
39
+ "@smithy/middleware-content-length": "^4.1.1",
40
+ "@smithy/middleware-endpoint": "^4.2.1",
41
+ "@smithy/middleware-retry": "^4.2.1",
42
+ "@smithy/middleware-serde": "^4.1.1",
43
+ "@smithy/middleware-stack": "^4.1.1",
44
+ "@smithy/node-config-provider": "^4.2.1",
45
+ "@smithy/node-http-handler": "^4.2.1",
46
+ "@smithy/protocol-http": "^5.2.1",
47
+ "@smithy/smithy-client": "^4.6.1",
48
+ "@smithy/types": "^4.5.0",
49
+ "@smithy/url-parser": "^4.1.1",
50
+ "@smithy/util-base64": "^4.1.0",
51
+ "@smithy/util-body-length-browser": "^4.1.0",
52
+ "@smithy/util-body-length-node": "^4.1.0",
53
+ "@smithy/util-defaults-mode-browser": "^4.1.1",
54
+ "@smithy/util-defaults-mode-node": "^4.1.1",
55
+ "@smithy/util-endpoints": "^3.1.1",
56
+ "@smithy/util-middleware": "^4.1.1",
57
+ "@smithy/util-retry": "^4.1.1",
58
+ "@smithy/util-utf8": "^4.1.0",
59
59
  "tslib": "^2.6.2"
60
60
  },
61
61
  "devDependencies": {