@aws-sdk/client-kms 3.279.0 → 3.282.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 +409 -6
- package/dist-cjs/endpoint/ruleset.js +3 -3
- package/dist-es/endpoint/ruleset.js +3 -3
- package/dist-types/KMS.d.ts +17 -78
- package/dist-types/KMSClient.d.ts +6 -6
- package/dist-types/commands/CancelKeyDeletionCommand.d.ts +6 -0
- package/dist-types/commands/ConnectCustomKeyStoreCommand.d.ts +6 -1
- package/dist-types/commands/CreateAliasCommand.d.ts +6 -1
- package/dist-types/commands/CreateCustomKeyStoreCommand.d.ts +6 -0
- package/dist-types/commands/CreateGrantCommand.d.ts +6 -0
- package/dist-types/commands/CreateKeyCommand.d.ts +6 -4
- package/dist-types/commands/DecryptCommand.d.ts +11 -5
- package/dist-types/commands/DeleteAliasCommand.d.ts +6 -0
- package/dist-types/commands/DeleteCustomKeyStoreCommand.d.ts +6 -1
- package/dist-types/commands/DeleteImportedKeyMaterialCommand.d.ts +6 -1
- package/dist-types/commands/DescribeCustomKeyStoresCommand.d.ts +6 -0
- package/dist-types/commands/DescribeKeyCommand.d.ts +6 -1
- package/dist-types/commands/DisableKeyCommand.d.ts +6 -1
- package/dist-types/commands/DisableKeyRotationCommand.d.ts +6 -1
- package/dist-types/commands/DisconnectCustomKeyStoreCommand.d.ts +6 -1
- package/dist-types/commands/EnableKeyCommand.d.ts +6 -1
- package/dist-types/commands/EnableKeyRotationCommand.d.ts +6 -1
- package/dist-types/commands/EncryptCommand.d.ts +6 -3
- package/dist-types/commands/GenerateDataKeyCommand.d.ts +8 -8
- package/dist-types/commands/GenerateDataKeyPairCommand.d.ts +6 -6
- package/dist-types/commands/GenerateDataKeyPairWithoutPlaintextCommand.d.ts +6 -2
- package/dist-types/commands/GenerateDataKeyWithoutPlaintextCommand.d.ts +6 -6
- package/dist-types/commands/GenerateMacCommand.d.ts +6 -0
- package/dist-types/commands/GenerateRandomCommand.d.ts +6 -1
- package/dist-types/commands/GetKeyPolicyCommand.d.ts +6 -1
- package/dist-types/commands/GetKeyRotationStatusCommand.d.ts +6 -1
- package/dist-types/commands/GetParametersForImportCommand.d.ts +6 -1
- package/dist-types/commands/GetPublicKeyCommand.d.ts +6 -2
- package/dist-types/commands/ImportKeyMaterialCommand.d.ts +6 -1
- package/dist-types/commands/ListAliasesCommand.d.ts +6 -2
- package/dist-types/commands/ListGrantsCommand.d.ts +6 -1
- package/dist-types/commands/ListKeyPoliciesCommand.d.ts +6 -1
- package/dist-types/commands/ListKeysCommand.d.ts +6 -1
- package/dist-types/commands/ListResourceTagsCommand.d.ts +6 -1
- package/dist-types/commands/ListRetirableGrantsCommand.d.ts +6 -1
- package/dist-types/commands/PutKeyPolicyCommand.d.ts +6 -1
- package/dist-types/commands/ReEncryptCommand.d.ts +6 -3
- package/dist-types/commands/ReplicateKeyCommand.d.ts +6 -0
- package/dist-types/commands/RetireGrantCommand.d.ts +6 -0
- package/dist-types/commands/RevokeGrantCommand.d.ts +6 -0
- package/dist-types/commands/ScheduleKeyDeletionCommand.d.ts +6 -2
- package/dist-types/commands/SignCommand.d.ts +6 -1
- package/dist-types/commands/TagResourceCommand.d.ts +6 -1
- package/dist-types/commands/UntagResourceCommand.d.ts +6 -2
- package/dist-types/commands/UpdateAliasCommand.d.ts +6 -0
- package/dist-types/commands/UpdateCustomKeyStoreCommand.d.ts +6 -0
- package/dist-types/commands/UpdateKeyDescriptionCommand.d.ts +6 -1
- package/dist-types/commands/UpdatePrimaryRegionCommand.d.ts +6 -0
- package/dist-types/commands/VerifyCommand.d.ts +10 -2
- package/dist-types/commands/VerifyMacCommand.d.ts +6 -1
- package/dist-types/endpoint/EndpointParameters.d.ts +1 -1
- package/dist-types/models/models_0.d.ts +123 -125
- package/dist-types/ts3.4/endpoint/EndpointParameters.d.ts +1 -1
- package/package.json +17 -17
package/README.md
CHANGED
|
@@ -39,12 +39,12 @@ and later support these modes.</p>
|
|
|
39
39
|
<p>
|
|
40
40
|
<b>Signing Requests</b>
|
|
41
41
|
</p>
|
|
42
|
-
<p>Requests must be signed
|
|
43
|
-
recommend that you
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
<p>All KMS
|
|
42
|
+
<p>Requests must be signed using an access key ID and a secret access key. We strongly
|
|
43
|
+
recommend that you do not use your Amazon Web Services account root access key ID and secret access key for
|
|
44
|
+
everyday work. You can use the access key ID and secret access key for an IAM user or you
|
|
45
|
+
can use the Security Token Service (STS) to generate temporary security credentials and use those to sign
|
|
46
|
+
requests. </p>
|
|
47
|
+
<p>All KMS requests must be signed with <a href="https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html">Signature Version 4</a>.</p>
|
|
48
48
|
<p>
|
|
49
49
|
<b>Logging API Requests</b>
|
|
50
50
|
</p>
|
|
@@ -298,3 +298,406 @@ To contribute to client you can check our [generate clients scripts](https://git
|
|
|
298
298
|
This SDK is distributed under the
|
|
299
299
|
[Apache License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0),
|
|
300
300
|
see LICENSE for more information.
|
|
301
|
+
|
|
302
|
+
## Client Commands (Operations List)
|
|
303
|
+
|
|
304
|
+
<details>
|
|
305
|
+
<summary>
|
|
306
|
+
CancelKeyDeletion
|
|
307
|
+
</summary>
|
|
308
|
+
|
|
309
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/cancelkeydeletioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/cancelkeydeletioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/cancelkeydeletioncommandoutput.html)
|
|
310
|
+
|
|
311
|
+
</details>
|
|
312
|
+
<details>
|
|
313
|
+
<summary>
|
|
314
|
+
ConnectCustomKeyStore
|
|
315
|
+
</summary>
|
|
316
|
+
|
|
317
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/connectcustomkeystorecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/connectcustomkeystorecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/connectcustomkeystorecommandoutput.html)
|
|
318
|
+
|
|
319
|
+
</details>
|
|
320
|
+
<details>
|
|
321
|
+
<summary>
|
|
322
|
+
CreateAlias
|
|
323
|
+
</summary>
|
|
324
|
+
|
|
325
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/createaliascommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/createaliascommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/createaliascommandoutput.html)
|
|
326
|
+
|
|
327
|
+
</details>
|
|
328
|
+
<details>
|
|
329
|
+
<summary>
|
|
330
|
+
CreateCustomKeyStore
|
|
331
|
+
</summary>
|
|
332
|
+
|
|
333
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/createcustomkeystorecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/createcustomkeystorecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/createcustomkeystorecommandoutput.html)
|
|
334
|
+
|
|
335
|
+
</details>
|
|
336
|
+
<details>
|
|
337
|
+
<summary>
|
|
338
|
+
CreateGrant
|
|
339
|
+
</summary>
|
|
340
|
+
|
|
341
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/creategrantcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/creategrantcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/creategrantcommandoutput.html)
|
|
342
|
+
|
|
343
|
+
</details>
|
|
344
|
+
<details>
|
|
345
|
+
<summary>
|
|
346
|
+
CreateKey
|
|
347
|
+
</summary>
|
|
348
|
+
|
|
349
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/createkeycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/createkeycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/createkeycommandoutput.html)
|
|
350
|
+
|
|
351
|
+
</details>
|
|
352
|
+
<details>
|
|
353
|
+
<summary>
|
|
354
|
+
Decrypt
|
|
355
|
+
</summary>
|
|
356
|
+
|
|
357
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/decryptcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/decryptcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/decryptcommandoutput.html)
|
|
358
|
+
|
|
359
|
+
</details>
|
|
360
|
+
<details>
|
|
361
|
+
<summary>
|
|
362
|
+
DeleteAlias
|
|
363
|
+
</summary>
|
|
364
|
+
|
|
365
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/deletealiascommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/deletealiascommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/deletealiascommandoutput.html)
|
|
366
|
+
|
|
367
|
+
</details>
|
|
368
|
+
<details>
|
|
369
|
+
<summary>
|
|
370
|
+
DeleteCustomKeyStore
|
|
371
|
+
</summary>
|
|
372
|
+
|
|
373
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/deletecustomkeystorecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/deletecustomkeystorecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/deletecustomkeystorecommandoutput.html)
|
|
374
|
+
|
|
375
|
+
</details>
|
|
376
|
+
<details>
|
|
377
|
+
<summary>
|
|
378
|
+
DeleteImportedKeyMaterial
|
|
379
|
+
</summary>
|
|
380
|
+
|
|
381
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/deleteimportedkeymaterialcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/deleteimportedkeymaterialcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/deleteimportedkeymaterialcommandoutput.html)
|
|
382
|
+
|
|
383
|
+
</details>
|
|
384
|
+
<details>
|
|
385
|
+
<summary>
|
|
386
|
+
DescribeCustomKeyStores
|
|
387
|
+
</summary>
|
|
388
|
+
|
|
389
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/describecustomkeystorescommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/describecustomkeystorescommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/describecustomkeystorescommandoutput.html)
|
|
390
|
+
|
|
391
|
+
</details>
|
|
392
|
+
<details>
|
|
393
|
+
<summary>
|
|
394
|
+
DescribeKey
|
|
395
|
+
</summary>
|
|
396
|
+
|
|
397
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/describekeycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/describekeycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/describekeycommandoutput.html)
|
|
398
|
+
|
|
399
|
+
</details>
|
|
400
|
+
<details>
|
|
401
|
+
<summary>
|
|
402
|
+
DisableKey
|
|
403
|
+
</summary>
|
|
404
|
+
|
|
405
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/disablekeycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/disablekeycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/disablekeycommandoutput.html)
|
|
406
|
+
|
|
407
|
+
</details>
|
|
408
|
+
<details>
|
|
409
|
+
<summary>
|
|
410
|
+
DisableKeyRotation
|
|
411
|
+
</summary>
|
|
412
|
+
|
|
413
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/disablekeyrotationcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/disablekeyrotationcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/disablekeyrotationcommandoutput.html)
|
|
414
|
+
|
|
415
|
+
</details>
|
|
416
|
+
<details>
|
|
417
|
+
<summary>
|
|
418
|
+
DisconnectCustomKeyStore
|
|
419
|
+
</summary>
|
|
420
|
+
|
|
421
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/disconnectcustomkeystorecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/disconnectcustomkeystorecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/disconnectcustomkeystorecommandoutput.html)
|
|
422
|
+
|
|
423
|
+
</details>
|
|
424
|
+
<details>
|
|
425
|
+
<summary>
|
|
426
|
+
EnableKey
|
|
427
|
+
</summary>
|
|
428
|
+
|
|
429
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/enablekeycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/enablekeycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/enablekeycommandoutput.html)
|
|
430
|
+
|
|
431
|
+
</details>
|
|
432
|
+
<details>
|
|
433
|
+
<summary>
|
|
434
|
+
EnableKeyRotation
|
|
435
|
+
</summary>
|
|
436
|
+
|
|
437
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/enablekeyrotationcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/enablekeyrotationcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/enablekeyrotationcommandoutput.html)
|
|
438
|
+
|
|
439
|
+
</details>
|
|
440
|
+
<details>
|
|
441
|
+
<summary>
|
|
442
|
+
Encrypt
|
|
443
|
+
</summary>
|
|
444
|
+
|
|
445
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/encryptcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/encryptcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/encryptcommandoutput.html)
|
|
446
|
+
|
|
447
|
+
</details>
|
|
448
|
+
<details>
|
|
449
|
+
<summary>
|
|
450
|
+
GenerateDataKey
|
|
451
|
+
</summary>
|
|
452
|
+
|
|
453
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/generatedatakeycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/generatedatakeycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/generatedatakeycommandoutput.html)
|
|
454
|
+
|
|
455
|
+
</details>
|
|
456
|
+
<details>
|
|
457
|
+
<summary>
|
|
458
|
+
GenerateDataKeyPair
|
|
459
|
+
</summary>
|
|
460
|
+
|
|
461
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/generatedatakeypaircommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/generatedatakeypaircommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/generatedatakeypaircommandoutput.html)
|
|
462
|
+
|
|
463
|
+
</details>
|
|
464
|
+
<details>
|
|
465
|
+
<summary>
|
|
466
|
+
GenerateDataKeyPairWithoutPlaintext
|
|
467
|
+
</summary>
|
|
468
|
+
|
|
469
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/generatedatakeypairwithoutplaintextcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/generatedatakeypairwithoutplaintextcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/generatedatakeypairwithoutplaintextcommandoutput.html)
|
|
470
|
+
|
|
471
|
+
</details>
|
|
472
|
+
<details>
|
|
473
|
+
<summary>
|
|
474
|
+
GenerateDataKeyWithoutPlaintext
|
|
475
|
+
</summary>
|
|
476
|
+
|
|
477
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/generatedatakeywithoutplaintextcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/generatedatakeywithoutplaintextcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/generatedatakeywithoutplaintextcommandoutput.html)
|
|
478
|
+
|
|
479
|
+
</details>
|
|
480
|
+
<details>
|
|
481
|
+
<summary>
|
|
482
|
+
GenerateMac
|
|
483
|
+
</summary>
|
|
484
|
+
|
|
485
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/generatemaccommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/generatemaccommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/generatemaccommandoutput.html)
|
|
486
|
+
|
|
487
|
+
</details>
|
|
488
|
+
<details>
|
|
489
|
+
<summary>
|
|
490
|
+
GenerateRandom
|
|
491
|
+
</summary>
|
|
492
|
+
|
|
493
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/generaterandomcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/generaterandomcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/generaterandomcommandoutput.html)
|
|
494
|
+
|
|
495
|
+
</details>
|
|
496
|
+
<details>
|
|
497
|
+
<summary>
|
|
498
|
+
GetKeyPolicy
|
|
499
|
+
</summary>
|
|
500
|
+
|
|
501
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/getkeypolicycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/getkeypolicycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/getkeypolicycommandoutput.html)
|
|
502
|
+
|
|
503
|
+
</details>
|
|
504
|
+
<details>
|
|
505
|
+
<summary>
|
|
506
|
+
GetKeyRotationStatus
|
|
507
|
+
</summary>
|
|
508
|
+
|
|
509
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/getkeyrotationstatuscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/getkeyrotationstatuscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/getkeyrotationstatuscommandoutput.html)
|
|
510
|
+
|
|
511
|
+
</details>
|
|
512
|
+
<details>
|
|
513
|
+
<summary>
|
|
514
|
+
GetParametersForImport
|
|
515
|
+
</summary>
|
|
516
|
+
|
|
517
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/getparametersforimportcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/getparametersforimportcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/getparametersforimportcommandoutput.html)
|
|
518
|
+
|
|
519
|
+
</details>
|
|
520
|
+
<details>
|
|
521
|
+
<summary>
|
|
522
|
+
GetPublicKey
|
|
523
|
+
</summary>
|
|
524
|
+
|
|
525
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/getpublickeycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/getpublickeycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/getpublickeycommandoutput.html)
|
|
526
|
+
|
|
527
|
+
</details>
|
|
528
|
+
<details>
|
|
529
|
+
<summary>
|
|
530
|
+
ImportKeyMaterial
|
|
531
|
+
</summary>
|
|
532
|
+
|
|
533
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/importkeymaterialcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/importkeymaterialcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/importkeymaterialcommandoutput.html)
|
|
534
|
+
|
|
535
|
+
</details>
|
|
536
|
+
<details>
|
|
537
|
+
<summary>
|
|
538
|
+
ListAliases
|
|
539
|
+
</summary>
|
|
540
|
+
|
|
541
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/listaliasescommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/listaliasescommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/listaliasescommandoutput.html)
|
|
542
|
+
|
|
543
|
+
</details>
|
|
544
|
+
<details>
|
|
545
|
+
<summary>
|
|
546
|
+
ListGrants
|
|
547
|
+
</summary>
|
|
548
|
+
|
|
549
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/listgrantscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/listgrantscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/listgrantscommandoutput.html)
|
|
550
|
+
|
|
551
|
+
</details>
|
|
552
|
+
<details>
|
|
553
|
+
<summary>
|
|
554
|
+
ListKeyPolicies
|
|
555
|
+
</summary>
|
|
556
|
+
|
|
557
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/listkeypoliciescommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/listkeypoliciescommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/listkeypoliciescommandoutput.html)
|
|
558
|
+
|
|
559
|
+
</details>
|
|
560
|
+
<details>
|
|
561
|
+
<summary>
|
|
562
|
+
ListKeys
|
|
563
|
+
</summary>
|
|
564
|
+
|
|
565
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/listkeyscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/listkeyscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/listkeyscommandoutput.html)
|
|
566
|
+
|
|
567
|
+
</details>
|
|
568
|
+
<details>
|
|
569
|
+
<summary>
|
|
570
|
+
ListResourceTags
|
|
571
|
+
</summary>
|
|
572
|
+
|
|
573
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/listresourcetagscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/listresourcetagscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/listresourcetagscommandoutput.html)
|
|
574
|
+
|
|
575
|
+
</details>
|
|
576
|
+
<details>
|
|
577
|
+
<summary>
|
|
578
|
+
ListRetirableGrants
|
|
579
|
+
</summary>
|
|
580
|
+
|
|
581
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/listretirablegrantscommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/listretirablegrantscommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/listretirablegrantscommandoutput.html)
|
|
582
|
+
|
|
583
|
+
</details>
|
|
584
|
+
<details>
|
|
585
|
+
<summary>
|
|
586
|
+
PutKeyPolicy
|
|
587
|
+
</summary>
|
|
588
|
+
|
|
589
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/putkeypolicycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/putkeypolicycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/putkeypolicycommandoutput.html)
|
|
590
|
+
|
|
591
|
+
</details>
|
|
592
|
+
<details>
|
|
593
|
+
<summary>
|
|
594
|
+
ReEncrypt
|
|
595
|
+
</summary>
|
|
596
|
+
|
|
597
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/reencryptcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/reencryptcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/reencryptcommandoutput.html)
|
|
598
|
+
|
|
599
|
+
</details>
|
|
600
|
+
<details>
|
|
601
|
+
<summary>
|
|
602
|
+
ReplicateKey
|
|
603
|
+
</summary>
|
|
604
|
+
|
|
605
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/replicatekeycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/replicatekeycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/replicatekeycommandoutput.html)
|
|
606
|
+
|
|
607
|
+
</details>
|
|
608
|
+
<details>
|
|
609
|
+
<summary>
|
|
610
|
+
RetireGrant
|
|
611
|
+
</summary>
|
|
612
|
+
|
|
613
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/retiregrantcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/retiregrantcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/retiregrantcommandoutput.html)
|
|
614
|
+
|
|
615
|
+
</details>
|
|
616
|
+
<details>
|
|
617
|
+
<summary>
|
|
618
|
+
RevokeGrant
|
|
619
|
+
</summary>
|
|
620
|
+
|
|
621
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/revokegrantcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/revokegrantcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/revokegrantcommandoutput.html)
|
|
622
|
+
|
|
623
|
+
</details>
|
|
624
|
+
<details>
|
|
625
|
+
<summary>
|
|
626
|
+
ScheduleKeyDeletion
|
|
627
|
+
</summary>
|
|
628
|
+
|
|
629
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/schedulekeydeletioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/schedulekeydeletioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/schedulekeydeletioncommandoutput.html)
|
|
630
|
+
|
|
631
|
+
</details>
|
|
632
|
+
<details>
|
|
633
|
+
<summary>
|
|
634
|
+
Sign
|
|
635
|
+
</summary>
|
|
636
|
+
|
|
637
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/signcommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/signcommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/signcommandoutput.html)
|
|
638
|
+
|
|
639
|
+
</details>
|
|
640
|
+
<details>
|
|
641
|
+
<summary>
|
|
642
|
+
TagResource
|
|
643
|
+
</summary>
|
|
644
|
+
|
|
645
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/tagresourcecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/tagresourcecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/tagresourcecommandoutput.html)
|
|
646
|
+
|
|
647
|
+
</details>
|
|
648
|
+
<details>
|
|
649
|
+
<summary>
|
|
650
|
+
UntagResource
|
|
651
|
+
</summary>
|
|
652
|
+
|
|
653
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/untagresourcecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/untagresourcecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/untagresourcecommandoutput.html)
|
|
654
|
+
|
|
655
|
+
</details>
|
|
656
|
+
<details>
|
|
657
|
+
<summary>
|
|
658
|
+
UpdateAlias
|
|
659
|
+
</summary>
|
|
660
|
+
|
|
661
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/updatealiascommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/updatealiascommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/updatealiascommandoutput.html)
|
|
662
|
+
|
|
663
|
+
</details>
|
|
664
|
+
<details>
|
|
665
|
+
<summary>
|
|
666
|
+
UpdateCustomKeyStore
|
|
667
|
+
</summary>
|
|
668
|
+
|
|
669
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/updatecustomkeystorecommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/updatecustomkeystorecommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/updatecustomkeystorecommandoutput.html)
|
|
670
|
+
|
|
671
|
+
</details>
|
|
672
|
+
<details>
|
|
673
|
+
<summary>
|
|
674
|
+
UpdateKeyDescription
|
|
675
|
+
</summary>
|
|
676
|
+
|
|
677
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/updatekeydescriptioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/updatekeydescriptioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/updatekeydescriptioncommandoutput.html)
|
|
678
|
+
|
|
679
|
+
</details>
|
|
680
|
+
<details>
|
|
681
|
+
<summary>
|
|
682
|
+
UpdatePrimaryRegion
|
|
683
|
+
</summary>
|
|
684
|
+
|
|
685
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/updateprimaryregioncommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/updateprimaryregioncommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/updateprimaryregioncommandoutput.html)
|
|
686
|
+
|
|
687
|
+
</details>
|
|
688
|
+
<details>
|
|
689
|
+
<summary>
|
|
690
|
+
Verify
|
|
691
|
+
</summary>
|
|
692
|
+
|
|
693
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/verifycommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/verifycommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/verifycommandoutput.html)
|
|
694
|
+
|
|
695
|
+
</details>
|
|
696
|
+
<details>
|
|
697
|
+
<summary>
|
|
698
|
+
VerifyMac
|
|
699
|
+
</summary>
|
|
700
|
+
|
|
701
|
+
[Command API Reference](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/classes/verifymaccommand.html) / [Input](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/verifymaccommandinput.html) / [Output](https://docs.aws.amazon.com/AWSJavaScriptSDK/v3/latest/clients/client-kms/interfaces/verifymaccommandoutput.html)
|
|
702
|
+
|
|
703
|
+
</details>
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
exports.ruleSet = void 0;
|
|
4
|
-
const q = "
|
|
5
|
-
const a =
|
|
6
|
-
const _data = { version: "1.0", parameters: { Region:
|
|
4
|
+
const q = "required", r = "fn", s = "argv", t = "ref";
|
|
5
|
+
const a = "isSet", b = "tree", c = "error", d = "endpoint", e = "PartitionResult", f = { [q]: false, "type": "String" }, g = { [q]: true, "default": false, "type": "Boolean" }, h = { [t]: "Endpoint" }, i = { [r]: "booleanEquals", [s]: [{ [t]: "UseFIPS" }, true] }, j = { [r]: "booleanEquals", [s]: [{ [t]: "UseDualStack" }, true] }, k = {}, l = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsFIPS"] }] }, m = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsDualStack"] }] }, n = [i], o = [j], p = [{ [t]: "Region" }];
|
|
6
|
+
const _data = { version: "1.0", parameters: { Region: f, UseDualStack: g, UseFIPS: g, Endpoint: f }, rules: [{ conditions: [{ [r]: a, [s]: [h] }], type: b, rules: [{ conditions: n, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, { type: b, rules: [{ conditions: o, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: c }, { endpoint: { url: h, properties: k, headers: k }, type: d }] }] }, { type: b, rules: [{ conditions: [{ [r]: a, [s]: p }], type: b, rules: [{ conditions: [{ [r]: "aws.partition", [s]: p, assign: e }], type: b, rules: [{ conditions: [i, j], type: b, rules: [{ conditions: [l, m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://kms-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: c }] }, { conditions: n, type: b, rules: [{ conditions: [l], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://kms-fips.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: c }] }, { conditions: o, type: b, rules: [{ conditions: [m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://kms.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: c }] }, { type: b, rules: [{ endpoint: { url: "https://kms.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }] }, { error: "Invalid Configuration: Missing Region", type: c }] }] };
|
|
7
7
|
exports.ruleSet = _data;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
const q = "
|
|
2
|
-
const a =
|
|
3
|
-
const _data = { version: "1.0", parameters: { Region:
|
|
1
|
+
const q = "required", r = "fn", s = "argv", t = "ref";
|
|
2
|
+
const a = "isSet", b = "tree", c = "error", d = "endpoint", e = "PartitionResult", f = { [q]: false, "type": "String" }, g = { [q]: true, "default": false, "type": "Boolean" }, h = { [t]: "Endpoint" }, i = { [r]: "booleanEquals", [s]: [{ [t]: "UseFIPS" }, true] }, j = { [r]: "booleanEquals", [s]: [{ [t]: "UseDualStack" }, true] }, k = {}, l = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsFIPS"] }] }, m = { [r]: "booleanEquals", [s]: [true, { [r]: "getAttr", [s]: [{ [t]: e }, "supportsDualStack"] }] }, n = [i], o = [j], p = [{ [t]: "Region" }];
|
|
3
|
+
const _data = { version: "1.0", parameters: { Region: f, UseDualStack: g, UseFIPS: g, Endpoint: f }, rules: [{ conditions: [{ [r]: a, [s]: [h] }], type: b, rules: [{ conditions: n, error: "Invalid Configuration: FIPS and custom endpoint are not supported", type: c }, { type: b, rules: [{ conditions: o, error: "Invalid Configuration: Dualstack and custom endpoint are not supported", type: c }, { endpoint: { url: h, properties: k, headers: k }, type: d }] }] }, { type: b, rules: [{ conditions: [{ [r]: a, [s]: p }], type: b, rules: [{ conditions: [{ [r]: "aws.partition", [s]: p, assign: e }], type: b, rules: [{ conditions: [i, j], type: b, rules: [{ conditions: [l, m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://kms-fips.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS and DualStack are enabled, but this partition does not support one or both", type: c }] }, { conditions: n, type: b, rules: [{ conditions: [l], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://kms-fips.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "FIPS is enabled but this partition does not support FIPS", type: c }] }, { conditions: o, type: b, rules: [{ conditions: [m], type: b, rules: [{ type: b, rules: [{ endpoint: { url: "https://kms.{Region}.{PartitionResult#dualStackDnsSuffix}", properties: k, headers: k }, type: d }] }] }, { error: "DualStack is enabled but this partition does not support DualStack", type: c }] }, { type: b, rules: [{ endpoint: { url: "https://kms.{Region}.{PartitionResult#dnsSuffix}", properties: k, headers: k }, type: d }] }] }] }, { error: "Invalid Configuration: Missing Region", type: c }] }] };
|
|
4
4
|
export const ruleSet = _data;
|