@aws-sdk/client-payment-cryptography 3.883.0 → 3.886.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +40 -0
- package/dist-cjs/index.js +336 -169
- package/dist-es/PaymentCryptography.js +10 -0
- package/dist-es/commands/AddKeyReplicationRegionsCommand.js +22 -0
- package/dist-es/commands/DisableDefaultKeyReplicationRegionsCommand.js +22 -0
- package/dist-es/commands/EnableDefaultKeyReplicationRegionsCommand.js +22 -0
- package/dist-es/commands/GetDefaultKeyReplicationRegionsCommand.js +22 -0
- package/dist-es/commands/GetParametersForExportCommand.js +1 -2
- package/dist-es/commands/GetParametersForImportCommand.js +1 -2
- package/dist-es/commands/GetPublicKeyCertificateCommand.js +1 -2
- package/dist-es/commands/RemoveKeyReplicationRegionsCommand.js +22 -0
- package/dist-es/commands/index.js +5 -0
- package/dist-es/models/models_0.js +112 -134
- package/dist-es/protocols/Aws_json1_0.js +112 -3
- package/dist-types/PaymentCryptography.d.ts +36 -0
- package/dist-types/PaymentCryptographyClient.d.ts +7 -2
- package/dist-types/commands/AddKeyReplicationRegionsCommand.d.ts +135 -0
- package/dist-types/commands/CreateAliasCommand.d.ts +8 -8
- package/dist-types/commands/CreateKeyCommand.d.ts +20 -8
- package/dist-types/commands/DeleteAliasCommand.d.ts +7 -7
- package/dist-types/commands/DeleteKeyCommand.d.ts +16 -7
- package/dist-types/commands/DisableDefaultKeyReplicationRegionsCommand.d.ts +97 -0
- package/dist-types/commands/EnableDefaultKeyReplicationRegionsCommand.d.ts +97 -0
- package/dist-types/commands/ExportKeyCommand.d.ts +7 -7
- package/dist-types/commands/GetAliasCommand.d.ts +6 -6
- package/dist-types/commands/GetDefaultKeyReplicationRegionsCommand.d.ts +93 -0
- package/dist-types/commands/GetKeyCommand.d.ts +16 -7
- package/dist-types/commands/GetParametersForExportCommand.d.ts +8 -8
- package/dist-types/commands/GetParametersForImportCommand.d.ts +8 -8
- package/dist-types/commands/GetPublicKeyCertificateCommand.d.ts +6 -6
- package/dist-types/commands/ImportKeyCommand.d.ts +20 -8
- package/dist-types/commands/ListAliasesCommand.d.ts +6 -6
- package/dist-types/commands/ListKeysCommand.d.ts +8 -6
- package/dist-types/commands/ListTagsForResourceCommand.d.ts +6 -6
- package/dist-types/commands/RemoveKeyReplicationRegionsCommand.d.ts +135 -0
- package/dist-types/commands/RestoreKeyCommand.d.ts +17 -8
- package/dist-types/commands/StartKeyUsageCommand.d.ts +17 -8
- package/dist-types/commands/StopKeyUsageCommand.d.ts +17 -8
- package/dist-types/commands/TagResourceCommand.d.ts +8 -8
- package/dist-types/commands/UntagResourceCommand.d.ts +7 -7
- package/dist-types/commands/UpdateAliasCommand.d.ts +7 -7
- package/dist-types/commands/index.d.ts +5 -0
- package/dist-types/models/models_0.d.ts +538 -364
- package/dist-types/protocols/Aws_json1_0.d.ts +45 -0
- package/dist-types/ts3.4/PaymentCryptography.d.ts +98 -0
- package/dist-types/ts3.4/PaymentCryptographyClient.d.ts +30 -0
- package/dist-types/ts3.4/commands/AddKeyReplicationRegionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/DisableDefaultKeyReplicationRegionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/EnableDefaultKeyReplicationRegionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/GetDefaultKeyReplicationRegionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/RemoveKeyReplicationRegionsCommand.d.ts +51 -0
- package/dist-types/ts3.4/commands/index.d.ts +5 -0
- package/dist-types/ts3.4/models/models_0.d.ts +159 -120
- package/dist-types/ts3.4/protocols/Aws_json1_0.d.ts +60 -0
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -203,6 +203,14 @@ see LICENSE for more information.
|
|
|
203
203
|
|
|
204
204
|
## Client Commands (Operations List)
|
|
205
205
|
|
|
206
|
+
<details>
|
|
207
|
+
<summary>
|
|
208
|
+
AddKeyReplicationRegions
|
|
209
|
+
</summary>
|
|
210
|
+
|
|
211
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/payment-cryptography/command/AddKeyReplicationRegionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/AddKeyReplicationRegionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/AddKeyReplicationRegionsCommandOutput/)
|
|
212
|
+
|
|
213
|
+
</details>
|
|
206
214
|
<details>
|
|
207
215
|
<summary>
|
|
208
216
|
CreateAlias
|
|
@@ -234,6 +242,22 @@ DeleteKey
|
|
|
234
242
|
|
|
235
243
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/payment-cryptography/command/DeleteKeyCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/DeleteKeyCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/DeleteKeyCommandOutput/)
|
|
236
244
|
|
|
245
|
+
</details>
|
|
246
|
+
<details>
|
|
247
|
+
<summary>
|
|
248
|
+
DisableDefaultKeyReplicationRegions
|
|
249
|
+
</summary>
|
|
250
|
+
|
|
251
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/payment-cryptography/command/DisableDefaultKeyReplicationRegionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/DisableDefaultKeyReplicationRegionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/DisableDefaultKeyReplicationRegionsCommandOutput/)
|
|
252
|
+
|
|
253
|
+
</details>
|
|
254
|
+
<details>
|
|
255
|
+
<summary>
|
|
256
|
+
EnableDefaultKeyReplicationRegions
|
|
257
|
+
</summary>
|
|
258
|
+
|
|
259
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/payment-cryptography/command/EnableDefaultKeyReplicationRegionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/EnableDefaultKeyReplicationRegionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/EnableDefaultKeyReplicationRegionsCommandOutput/)
|
|
260
|
+
|
|
237
261
|
</details>
|
|
238
262
|
<details>
|
|
239
263
|
<summary>
|
|
@@ -250,6 +274,14 @@ GetAlias
|
|
|
250
274
|
|
|
251
275
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/payment-cryptography/command/GetAliasCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/GetAliasCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/GetAliasCommandOutput/)
|
|
252
276
|
|
|
277
|
+
</details>
|
|
278
|
+
<details>
|
|
279
|
+
<summary>
|
|
280
|
+
GetDefaultKeyReplicationRegions
|
|
281
|
+
</summary>
|
|
282
|
+
|
|
283
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/payment-cryptography/command/GetDefaultKeyReplicationRegionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/GetDefaultKeyReplicationRegionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/GetDefaultKeyReplicationRegionsCommandOutput/)
|
|
284
|
+
|
|
253
285
|
</details>
|
|
254
286
|
<details>
|
|
255
287
|
<summary>
|
|
@@ -314,6 +346,14 @@ ListTagsForResource
|
|
|
314
346
|
|
|
315
347
|
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/payment-cryptography/command/ListTagsForResourceCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/ListTagsForResourceCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/ListTagsForResourceCommandOutput/)
|
|
316
348
|
|
|
349
|
+
</details>
|
|
350
|
+
<details>
|
|
351
|
+
<summary>
|
|
352
|
+
RemoveKeyReplicationRegions
|
|
353
|
+
</summary>
|
|
354
|
+
|
|
355
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/client/payment-cryptography/command/RemoveKeyReplicationRegionsCommand/) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/RemoveKeyReplicationRegionsCommandInput/) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/Package/-aws-sdk-client-payment-cryptography/Interface/RemoveKeyReplicationRegionsCommandOutput/)
|
|
356
|
+
|
|
317
357
|
</details>
|
|
318
358
|
<details>
|
|
319
359
|
<summary>
|