aws-sdk-kms 1.94.0 → 1.118.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.
- checksums.yaml +4 -4
- data/CHANGELOG.md +120 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kms/client.rb +1152 -777
- data/lib/aws-sdk-kms/client_api.rb +41 -4
- data/lib/aws-sdk-kms/customizations.rb +0 -8
- data/lib/aws-sdk-kms/endpoint_parameters.rb +13 -10
- data/lib/aws-sdk-kms/endpoint_provider.rb +13 -17
- data/lib/aws-sdk-kms/endpoints.rb +2 -581
- data/lib/aws-sdk-kms/plugins/endpoints.rb +1 -112
- data/lib/aws-sdk-kms/types.rb +707 -330
- data/lib/aws-sdk-kms.rb +1 -1
- data/sig/client.rbs +41 -17
- data/sig/resource.rbs +3 -0
- data/sig/types.rbs +47 -16
- metadata +6 -9
data/lib/aws-sdk-kms.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -18,6 +18,7 @@ module Aws
|
|
|
18
18
|
?account_id: String,
|
|
19
19
|
?active_endpoint_cache: bool,
|
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
|
21
|
+
?auth_scheme_preference: Array[String],
|
|
21
22
|
?client_side_monitoring: bool,
|
|
22
23
|
?client_side_monitoring_client_id: String,
|
|
23
24
|
?client_side_monitoring_host: String,
|
|
@@ -39,7 +40,9 @@ module Aws
|
|
|
39
40
|
?logger: untyped,
|
|
40
41
|
?max_attempts: Integer,
|
|
41
42
|
?profile: String,
|
|
43
|
+
?request_checksum_calculation: String,
|
|
42
44
|
?request_min_compression_size_bytes: Integer,
|
|
45
|
+
?response_checksum_validation: String,
|
|
43
46
|
?retry_backoff: Proc,
|
|
44
47
|
?retry_base_delay: Float,
|
|
45
48
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
|
@@ -116,6 +119,7 @@ module Aws
|
|
|
116
119
|
?xks_proxy_uri_endpoint: ::String,
|
|
117
120
|
?xks_proxy_uri_path: ::String,
|
|
118
121
|
?xks_proxy_vpc_endpoint_service_name: ::String,
|
|
122
|
+
?xks_proxy_vpc_endpoint_service_owner: ::String,
|
|
119
123
|
?xks_proxy_authentication_credential: {
|
|
120
124
|
access_key_id: ::String,
|
|
121
125
|
raw_secret_access_key: ::String
|
|
@@ -155,7 +159,7 @@ module Aws
|
|
|
155
159
|
?description: ::String,
|
|
156
160
|
?key_usage: ("SIGN_VERIFY" | "ENCRYPT_DECRYPT" | "GENERATE_VERIFY_MAC" | "KEY_AGREEMENT"),
|
|
157
161
|
?customer_master_key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2"),
|
|
158
|
-
?key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2"),
|
|
162
|
+
?key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87" | "ECC_NIST_EDWARDS25519"),
|
|
159
163
|
?origin: ("AWS_KMS" | "EXTERNAL" | "AWS_CLOUDHSM" | "EXTERNAL_KEY_STORE"),
|
|
160
164
|
?custom_key_store_id: ::String,
|
|
161
165
|
?bypass_policy_lockout_safety_check: bool,
|
|
@@ -176,6 +180,7 @@ module Aws
|
|
|
176
180
|
def plaintext: () -> ::String
|
|
177
181
|
def encryption_algorithm: () -> ("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")
|
|
178
182
|
def ciphertext_for_recipient: () -> ::String
|
|
183
|
+
def key_material_id: () -> ::String
|
|
179
184
|
end
|
|
180
185
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KMS/Client.html#decrypt-instance_method
|
|
181
186
|
def decrypt: (
|
|
@@ -207,11 +212,17 @@ module Aws
|
|
|
207
212
|
) -> _DeleteCustomKeyStoreResponseSuccess
|
|
208
213
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteCustomKeyStoreResponseSuccess
|
|
209
214
|
|
|
215
|
+
interface _DeleteImportedKeyMaterialResponseSuccess
|
|
216
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteImportedKeyMaterialResponse]
|
|
217
|
+
def key_id: () -> ::String
|
|
218
|
+
def key_material_id: () -> ::String
|
|
219
|
+
end
|
|
210
220
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KMS/Client.html#delete_imported_key_material-instance_method
|
|
211
221
|
def delete_imported_key_material: (
|
|
212
|
-
key_id: ::String
|
|
213
|
-
|
|
214
|
-
|
|
222
|
+
key_id: ::String,
|
|
223
|
+
?key_material_id: ::String
|
|
224
|
+
) -> _DeleteImportedKeyMaterialResponseSuccess
|
|
225
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteImportedKeyMaterialResponseSuccess
|
|
215
226
|
|
|
216
227
|
interface _DeriveSharedSecretResponseSuccess
|
|
217
228
|
include ::Seahorse::Client::_ResponseSuccess[Types::DeriveSharedSecretResponse]
|
|
@@ -318,6 +329,7 @@ module Aws
|
|
|
318
329
|
def plaintext: () -> ::String
|
|
319
330
|
def key_id: () -> ::String
|
|
320
331
|
def ciphertext_for_recipient: () -> ::String
|
|
332
|
+
def key_material_id: () -> ::String
|
|
321
333
|
end
|
|
322
334
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KMS/Client.html#generate_data_key-instance_method
|
|
323
335
|
def generate_data_key: (
|
|
@@ -340,14 +352,15 @@ module Aws
|
|
|
340
352
|
def private_key_plaintext: () -> ::String
|
|
341
353
|
def public_key: () -> ::String
|
|
342
354
|
def key_id: () -> ::String
|
|
343
|
-
def key_pair_spec: () -> ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2")
|
|
355
|
+
def key_pair_spec: () -> ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2" | "ECC_NIST_EDWARDS25519")
|
|
344
356
|
def ciphertext_for_recipient: () -> ::String
|
|
357
|
+
def key_material_id: () -> ::String
|
|
345
358
|
end
|
|
346
359
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KMS/Client.html#generate_data_key_pair-instance_method
|
|
347
360
|
def generate_data_key_pair: (
|
|
348
361
|
?encryption_context: Hash[::String, ::String],
|
|
349
362
|
key_id: ::String,
|
|
350
|
-
key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2"),
|
|
363
|
+
key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2" | "ECC_NIST_EDWARDS25519"),
|
|
351
364
|
?grant_tokens: Array[::String],
|
|
352
365
|
?recipient: {
|
|
353
366
|
key_encryption_algorithm: ("RSAES_OAEP_SHA_256")?,
|
|
@@ -362,13 +375,14 @@ module Aws
|
|
|
362
375
|
def private_key_ciphertext_blob: () -> ::String
|
|
363
376
|
def public_key: () -> ::String
|
|
364
377
|
def key_id: () -> ::String
|
|
365
|
-
def key_pair_spec: () -> ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2")
|
|
378
|
+
def key_pair_spec: () -> ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2" | "ECC_NIST_EDWARDS25519")
|
|
379
|
+
def key_material_id: () -> ::String
|
|
366
380
|
end
|
|
367
381
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KMS/Client.html#generate_data_key_pair_without_plaintext-instance_method
|
|
368
382
|
def generate_data_key_pair_without_plaintext: (
|
|
369
383
|
?encryption_context: Hash[::String, ::String],
|
|
370
384
|
key_id: ::String,
|
|
371
|
-
key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2"),
|
|
385
|
+
key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2" | "ECC_NIST_EDWARDS25519"),
|
|
372
386
|
?grant_tokens: Array[::String],
|
|
373
387
|
?dry_run: bool
|
|
374
388
|
) -> _GenerateDataKeyPairWithoutPlaintextResponseSuccess
|
|
@@ -378,6 +392,7 @@ module Aws
|
|
|
378
392
|
include ::Seahorse::Client::_ResponseSuccess[Types::GenerateDataKeyWithoutPlaintextResponse]
|
|
379
393
|
def ciphertext_blob: () -> ::String
|
|
380
394
|
def key_id: () -> ::String
|
|
395
|
+
def key_material_id: () -> ::String
|
|
381
396
|
end
|
|
382
397
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KMS/Client.html#generate_data_key_without_plaintext-instance_method
|
|
383
398
|
def generate_data_key_without_plaintext: (
|
|
@@ -468,10 +483,10 @@ module Aws
|
|
|
468
483
|
def key_id: () -> ::String
|
|
469
484
|
def public_key: () -> ::String
|
|
470
485
|
def customer_master_key_spec: () -> ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2")
|
|
471
|
-
def key_spec: () -> ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2")
|
|
486
|
+
def key_spec: () -> ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87" | "ECC_NIST_EDWARDS25519")
|
|
472
487
|
def key_usage: () -> ("SIGN_VERIFY" | "ENCRYPT_DECRYPT" | "GENERATE_VERIFY_MAC" | "KEY_AGREEMENT")
|
|
473
488
|
def encryption_algorithms: () -> ::Array[("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")]
|
|
474
|
-
def signing_algorithms: () -> ::Array[("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA")]
|
|
489
|
+
def signing_algorithms: () -> ::Array[("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512")]
|
|
475
490
|
def key_agreement_algorithms: () -> ::Array[("ECDH")]
|
|
476
491
|
end
|
|
477
492
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KMS/Client.html#get_public_key-instance_method
|
|
@@ -483,6 +498,8 @@ module Aws
|
|
|
483
498
|
|
|
484
499
|
interface _ImportKeyMaterialResponseSuccess
|
|
485
500
|
include ::Seahorse::Client::_ResponseSuccess[Types::ImportKeyMaterialResponse]
|
|
501
|
+
def key_id: () -> ::String
|
|
502
|
+
def key_material_id: () -> ::String
|
|
486
503
|
end
|
|
487
504
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KMS/Client.html#import_key_material-instance_method
|
|
488
505
|
def import_key_material: (
|
|
@@ -490,7 +507,10 @@ module Aws
|
|
|
490
507
|
import_token: ::String,
|
|
491
508
|
encrypted_key_material: ::String,
|
|
492
509
|
?valid_to: ::Time,
|
|
493
|
-
?expiration_model: ("KEY_MATERIAL_EXPIRES" | "KEY_MATERIAL_DOES_NOT_EXPIRE")
|
|
510
|
+
?expiration_model: ("KEY_MATERIAL_EXPIRES" | "KEY_MATERIAL_DOES_NOT_EXPIRE"),
|
|
511
|
+
?import_type: ("NEW_KEY_MATERIAL" | "EXISTING_KEY_MATERIAL"),
|
|
512
|
+
?key_material_description: ::String,
|
|
513
|
+
?key_material_id: ::String
|
|
494
514
|
) -> _ImportKeyMaterialResponseSuccess
|
|
495
515
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportKeyMaterialResponseSuccess
|
|
496
516
|
|
|
@@ -547,6 +567,7 @@ module Aws
|
|
|
547
567
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KMS/Client.html#list_key_rotations-instance_method
|
|
548
568
|
def list_key_rotations: (
|
|
549
569
|
key_id: ::String,
|
|
570
|
+
?include_key_material: ("ALL_KEY_MATERIAL" | "ROTATIONS_ONLY"),
|
|
550
571
|
?limit: ::Integer,
|
|
551
572
|
?marker: ::String
|
|
552
573
|
) -> _ListKeyRotationsResponseSuccess
|
|
@@ -609,6 +630,8 @@ module Aws
|
|
|
609
630
|
def key_id: () -> ::String
|
|
610
631
|
def source_encryption_algorithm: () -> ("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")
|
|
611
632
|
def destination_encryption_algorithm: () -> ("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")
|
|
633
|
+
def source_key_material_id: () -> ::String
|
|
634
|
+
def destination_key_material_id: () -> ::String
|
|
612
635
|
end
|
|
613
636
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KMS/Client.html#re_encrypt-instance_method
|
|
614
637
|
def re_encrypt: (
|
|
@@ -691,15 +714,15 @@ module Aws
|
|
|
691
714
|
include ::Seahorse::Client::_ResponseSuccess[Types::SignResponse]
|
|
692
715
|
def key_id: () -> ::String
|
|
693
716
|
def signature: () -> ::String
|
|
694
|
-
def signing_algorithm: () -> ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA")
|
|
717
|
+
def signing_algorithm: () -> ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512")
|
|
695
718
|
end
|
|
696
719
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KMS/Client.html#sign-instance_method
|
|
697
720
|
def sign: (
|
|
698
721
|
key_id: ::String,
|
|
699
722
|
message: ::String,
|
|
700
|
-
?message_type: ("RAW" | "DIGEST"),
|
|
723
|
+
?message_type: ("RAW" | "DIGEST" | "EXTERNAL_MU"),
|
|
701
724
|
?grant_tokens: Array[::String],
|
|
702
|
-
signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA"),
|
|
725
|
+
signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512"),
|
|
703
726
|
?dry_run: bool
|
|
704
727
|
) -> _SignResponseSuccess
|
|
705
728
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SignResponseSuccess
|
|
@@ -742,6 +765,7 @@ module Aws
|
|
|
742
765
|
?xks_proxy_uri_endpoint: ::String,
|
|
743
766
|
?xks_proxy_uri_path: ::String,
|
|
744
767
|
?xks_proxy_vpc_endpoint_service_name: ::String,
|
|
768
|
+
?xks_proxy_vpc_endpoint_service_owner: ::String,
|
|
745
769
|
?xks_proxy_authentication_credential: {
|
|
746
770
|
access_key_id: ::String,
|
|
747
771
|
raw_secret_access_key: ::String
|
|
@@ -768,15 +792,15 @@ module Aws
|
|
|
768
792
|
include ::Seahorse::Client::_ResponseSuccess[Types::VerifyResponse]
|
|
769
793
|
def key_id: () -> ::String
|
|
770
794
|
def signature_valid: () -> bool
|
|
771
|
-
def signing_algorithm: () -> ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA")
|
|
795
|
+
def signing_algorithm: () -> ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512")
|
|
772
796
|
end
|
|
773
797
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/KMS/Client.html#verify-instance_method
|
|
774
798
|
def verify: (
|
|
775
799
|
key_id: ::String,
|
|
776
800
|
message: ::String,
|
|
777
|
-
?message_type: ("RAW" | "DIGEST"),
|
|
801
|
+
?message_type: ("RAW" | "DIGEST" | "EXTERNAL_MU"),
|
|
778
802
|
signature: ::String,
|
|
779
|
-
signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA"),
|
|
803
|
+
signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512"),
|
|
780
804
|
?grant_tokens: Array[::String],
|
|
781
805
|
?dry_run: bool
|
|
782
806
|
) -> _VerifyResponseSuccess
|
data/sig/resource.rbs
CHANGED
|
@@ -18,6 +18,7 @@ module Aws
|
|
|
18
18
|
?account_id: String,
|
|
19
19
|
?active_endpoint_cache: bool,
|
|
20
20
|
?adaptive_retry_wait_to_fill: bool,
|
|
21
|
+
?auth_scheme_preference: Array[String],
|
|
21
22
|
?client_side_monitoring: bool,
|
|
22
23
|
?client_side_monitoring_client_id: String,
|
|
23
24
|
?client_side_monitoring_host: String,
|
|
@@ -39,7 +40,9 @@ module Aws
|
|
|
39
40
|
?logger: untyped,
|
|
40
41
|
?max_attempts: Integer,
|
|
41
42
|
?profile: String,
|
|
43
|
+
?request_checksum_calculation: String,
|
|
42
44
|
?request_min_compression_size_bytes: Integer,
|
|
45
|
+
?response_checksum_validation: String,
|
|
43
46
|
?retry_backoff: Proc,
|
|
44
47
|
?retry_base_delay: Float,
|
|
45
48
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
|
@@ -85,6 +85,7 @@ module Aws::KMS
|
|
|
85
85
|
attr_accessor xks_proxy_uri_endpoint: ::String
|
|
86
86
|
attr_accessor xks_proxy_uri_path: ::String
|
|
87
87
|
attr_accessor xks_proxy_vpc_endpoint_service_name: ::String
|
|
88
|
+
attr_accessor xks_proxy_vpc_endpoint_service_owner: ::String
|
|
88
89
|
attr_accessor xks_proxy_authentication_credential: Types::XksProxyAuthenticationCredentialType
|
|
89
90
|
attr_accessor xks_proxy_connectivity: ("PUBLIC_ENDPOINT" | "VPC_ENDPOINT_SERVICE")
|
|
90
91
|
SENSITIVE: [:key_store_password]
|
|
@@ -118,7 +119,7 @@ module Aws::KMS
|
|
|
118
119
|
attr_accessor description: ::String
|
|
119
120
|
attr_accessor key_usage: ("SIGN_VERIFY" | "ENCRYPT_DECRYPT" | "GENERATE_VERIFY_MAC" | "KEY_AGREEMENT")
|
|
120
121
|
attr_accessor customer_master_key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2")
|
|
121
|
-
attr_accessor key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2")
|
|
122
|
+
attr_accessor key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87" | "ECC_NIST_EDWARDS25519")
|
|
122
123
|
attr_accessor origin: ("AWS_KMS" | "EXTERNAL" | "AWS_CLOUDHSM" | "EXTERNAL_KEY_STORE")
|
|
123
124
|
attr_accessor custom_key_store_id: ::String
|
|
124
125
|
attr_accessor bypass_policy_lockout_safety_check: bool
|
|
@@ -182,6 +183,7 @@ module Aws::KMS
|
|
|
182
183
|
attr_accessor plaintext: ::String
|
|
183
184
|
attr_accessor encryption_algorithm: ("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")
|
|
184
185
|
attr_accessor ciphertext_for_recipient: ::String
|
|
186
|
+
attr_accessor key_material_id: ::String
|
|
185
187
|
SENSITIVE: [:plaintext]
|
|
186
188
|
end
|
|
187
189
|
|
|
@@ -200,6 +202,13 @@ module Aws::KMS
|
|
|
200
202
|
|
|
201
203
|
class DeleteImportedKeyMaterialRequest
|
|
202
204
|
attr_accessor key_id: ::String
|
|
205
|
+
attr_accessor key_material_id: ::String
|
|
206
|
+
SENSITIVE: []
|
|
207
|
+
end
|
|
208
|
+
|
|
209
|
+
class DeleteImportedKeyMaterialResponse
|
|
210
|
+
attr_accessor key_id: ::String
|
|
211
|
+
attr_accessor key_material_id: ::String
|
|
203
212
|
SENSITIVE: []
|
|
204
213
|
end
|
|
205
214
|
|
|
@@ -317,7 +326,7 @@ module Aws::KMS
|
|
|
317
326
|
class GenerateDataKeyPairRequest
|
|
318
327
|
attr_accessor encryption_context: ::Hash[::String, ::String]
|
|
319
328
|
attr_accessor key_id: ::String
|
|
320
|
-
attr_accessor key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2")
|
|
329
|
+
attr_accessor key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2" | "ECC_NIST_EDWARDS25519")
|
|
321
330
|
attr_accessor grant_tokens: ::Array[::String]
|
|
322
331
|
attr_accessor recipient: Types::RecipientInfo
|
|
323
332
|
attr_accessor dry_run: bool
|
|
@@ -329,15 +338,16 @@ module Aws::KMS
|
|
|
329
338
|
attr_accessor private_key_plaintext: ::String
|
|
330
339
|
attr_accessor public_key: ::String
|
|
331
340
|
attr_accessor key_id: ::String
|
|
332
|
-
attr_accessor key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2")
|
|
341
|
+
attr_accessor key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2" | "ECC_NIST_EDWARDS25519")
|
|
333
342
|
attr_accessor ciphertext_for_recipient: ::String
|
|
343
|
+
attr_accessor key_material_id: ::String
|
|
334
344
|
SENSITIVE: [:private_key_plaintext]
|
|
335
345
|
end
|
|
336
346
|
|
|
337
347
|
class GenerateDataKeyPairWithoutPlaintextRequest
|
|
338
348
|
attr_accessor encryption_context: ::Hash[::String, ::String]
|
|
339
349
|
attr_accessor key_id: ::String
|
|
340
|
-
attr_accessor key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2")
|
|
350
|
+
attr_accessor key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2" | "ECC_NIST_EDWARDS25519")
|
|
341
351
|
attr_accessor grant_tokens: ::Array[::String]
|
|
342
352
|
attr_accessor dry_run: bool
|
|
343
353
|
SENSITIVE: []
|
|
@@ -347,7 +357,8 @@ module Aws::KMS
|
|
|
347
357
|
attr_accessor private_key_ciphertext_blob: ::String
|
|
348
358
|
attr_accessor public_key: ::String
|
|
349
359
|
attr_accessor key_id: ::String
|
|
350
|
-
attr_accessor key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2")
|
|
360
|
+
attr_accessor key_pair_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SM2" | "ECC_NIST_EDWARDS25519")
|
|
361
|
+
attr_accessor key_material_id: ::String
|
|
351
362
|
SENSITIVE: []
|
|
352
363
|
end
|
|
353
364
|
|
|
@@ -367,6 +378,7 @@ module Aws::KMS
|
|
|
367
378
|
attr_accessor plaintext: ::String
|
|
368
379
|
attr_accessor key_id: ::String
|
|
369
380
|
attr_accessor ciphertext_for_recipient: ::String
|
|
381
|
+
attr_accessor key_material_id: ::String
|
|
370
382
|
SENSITIVE: [:plaintext]
|
|
371
383
|
end
|
|
372
384
|
|
|
@@ -383,6 +395,7 @@ module Aws::KMS
|
|
|
383
395
|
class GenerateDataKeyWithoutPlaintextResponse
|
|
384
396
|
attr_accessor ciphertext_blob: ::String
|
|
385
397
|
attr_accessor key_id: ::String
|
|
398
|
+
attr_accessor key_material_id: ::String
|
|
386
399
|
SENSITIVE: []
|
|
387
400
|
end
|
|
388
401
|
|
|
@@ -466,10 +479,10 @@ module Aws::KMS
|
|
|
466
479
|
attr_accessor key_id: ::String
|
|
467
480
|
attr_accessor public_key: ::String
|
|
468
481
|
attr_accessor customer_master_key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2")
|
|
469
|
-
attr_accessor key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2")
|
|
482
|
+
attr_accessor key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87" | "ECC_NIST_EDWARDS25519")
|
|
470
483
|
attr_accessor key_usage: ("SIGN_VERIFY" | "ENCRYPT_DECRYPT" | "GENERATE_VERIFY_MAC" | "KEY_AGREEMENT")
|
|
471
484
|
attr_accessor encryption_algorithms: ::Array[("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")]
|
|
472
|
-
attr_accessor signing_algorithms: ::Array[("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA")]
|
|
485
|
+
attr_accessor signing_algorithms: ::Array[("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512")]
|
|
473
486
|
attr_accessor key_agreement_algorithms: ::Array[("ECDH")]
|
|
474
487
|
SENSITIVE: []
|
|
475
488
|
end
|
|
@@ -499,10 +512,16 @@ module Aws::KMS
|
|
|
499
512
|
attr_accessor encrypted_key_material: ::String
|
|
500
513
|
attr_accessor valid_to: ::Time
|
|
501
514
|
attr_accessor expiration_model: ("KEY_MATERIAL_EXPIRES" | "KEY_MATERIAL_DOES_NOT_EXPIRE")
|
|
515
|
+
attr_accessor import_type: ("NEW_KEY_MATERIAL" | "EXISTING_KEY_MATERIAL")
|
|
516
|
+
attr_accessor key_material_description: ::String
|
|
517
|
+
attr_accessor key_material_id: ::String
|
|
502
518
|
SENSITIVE: []
|
|
503
519
|
end
|
|
504
520
|
|
|
505
|
-
class ImportKeyMaterialResponse
|
|
521
|
+
class ImportKeyMaterialResponse
|
|
522
|
+
attr_accessor key_id: ::String
|
|
523
|
+
attr_accessor key_material_id: ::String
|
|
524
|
+
SENSITIVE: []
|
|
506
525
|
end
|
|
507
526
|
|
|
508
527
|
class IncorrectKeyException
|
|
@@ -603,15 +622,16 @@ module Aws::KMS
|
|
|
603
622
|
attr_accessor expiration_model: ("KEY_MATERIAL_EXPIRES" | "KEY_MATERIAL_DOES_NOT_EXPIRE")
|
|
604
623
|
attr_accessor key_manager: ("AWS" | "CUSTOMER")
|
|
605
624
|
attr_accessor customer_master_key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2")
|
|
606
|
-
attr_accessor key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2")
|
|
625
|
+
attr_accessor key_spec: ("RSA_2048" | "RSA_3072" | "RSA_4096" | "ECC_NIST_P256" | "ECC_NIST_P384" | "ECC_NIST_P521" | "ECC_SECG_P256K1" | "SYMMETRIC_DEFAULT" | "HMAC_224" | "HMAC_256" | "HMAC_384" | "HMAC_512" | "SM2" | "ML_DSA_44" | "ML_DSA_65" | "ML_DSA_87" | "ECC_NIST_EDWARDS25519")
|
|
607
626
|
attr_accessor encryption_algorithms: ::Array[("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")]
|
|
608
|
-
attr_accessor signing_algorithms: ::Array[("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA")]
|
|
627
|
+
attr_accessor signing_algorithms: ::Array[("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512")]
|
|
609
628
|
attr_accessor key_agreement_algorithms: ::Array[("ECDH")]
|
|
610
629
|
attr_accessor multi_region: bool
|
|
611
630
|
attr_accessor multi_region_configuration: Types::MultiRegionConfiguration
|
|
612
631
|
attr_accessor pending_deletion_window_in_days: ::Integer
|
|
613
632
|
attr_accessor mac_algorithms: ::Array[("HMAC_SHA_224" | "HMAC_SHA_256" | "HMAC_SHA_384" | "HMAC_SHA_512")]
|
|
614
633
|
attr_accessor xks_key_configuration: Types::XksKeyConfigurationType
|
|
634
|
+
attr_accessor current_key_material_id: ::String
|
|
615
635
|
SENSITIVE: []
|
|
616
636
|
end
|
|
617
637
|
|
|
@@ -671,6 +691,7 @@ module Aws::KMS
|
|
|
671
691
|
|
|
672
692
|
class ListKeyRotationsRequest
|
|
673
693
|
attr_accessor key_id: ::String
|
|
694
|
+
attr_accessor include_key_material: ("ALL_KEY_MATERIAL" | "ROTATIONS_ONLY")
|
|
674
695
|
attr_accessor limit: ::Integer
|
|
675
696
|
attr_accessor marker: ::String
|
|
676
697
|
SENSITIVE: []
|
|
@@ -767,6 +788,8 @@ module Aws::KMS
|
|
|
767
788
|
attr_accessor key_id: ::String
|
|
768
789
|
attr_accessor source_encryption_algorithm: ("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")
|
|
769
790
|
attr_accessor destination_encryption_algorithm: ("SYMMETRIC_DEFAULT" | "RSAES_OAEP_SHA_1" | "RSAES_OAEP_SHA_256" | "SM2PKE")
|
|
791
|
+
attr_accessor source_key_material_id: ::String
|
|
792
|
+
attr_accessor destination_key_material_id: ::String
|
|
770
793
|
SENSITIVE: []
|
|
771
794
|
end
|
|
772
795
|
|
|
@@ -820,6 +843,12 @@ module Aws::KMS
|
|
|
820
843
|
|
|
821
844
|
class RotationsListEntry
|
|
822
845
|
attr_accessor key_id: ::String
|
|
846
|
+
attr_accessor key_material_id: ::String
|
|
847
|
+
attr_accessor key_material_description: ::String
|
|
848
|
+
attr_accessor import_state: ("IMPORTED" | "PENDING_IMPORT")
|
|
849
|
+
attr_accessor key_material_state: ("NON_CURRENT" | "CURRENT" | "PENDING_ROTATION" | "PENDING_MULTI_REGION_IMPORT_AND_ROTATION")
|
|
850
|
+
attr_accessor expiration_model: ("KEY_MATERIAL_EXPIRES" | "KEY_MATERIAL_DOES_NOT_EXPIRE")
|
|
851
|
+
attr_accessor valid_to: ::Time
|
|
823
852
|
attr_accessor rotation_date: ::Time
|
|
824
853
|
attr_accessor rotation_type: ("AUTOMATIC" | "ON_DEMAND")
|
|
825
854
|
SENSITIVE: []
|
|
@@ -842,9 +871,9 @@ module Aws::KMS
|
|
|
842
871
|
class SignRequest
|
|
843
872
|
attr_accessor key_id: ::String
|
|
844
873
|
attr_accessor message: ::String
|
|
845
|
-
attr_accessor message_type: ("RAW" | "DIGEST")
|
|
874
|
+
attr_accessor message_type: ("RAW" | "DIGEST" | "EXTERNAL_MU")
|
|
846
875
|
attr_accessor grant_tokens: ::Array[::String]
|
|
847
|
-
attr_accessor signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA")
|
|
876
|
+
attr_accessor signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512")
|
|
848
877
|
attr_accessor dry_run: bool
|
|
849
878
|
SENSITIVE: [:message]
|
|
850
879
|
end
|
|
@@ -852,7 +881,7 @@ module Aws::KMS
|
|
|
852
881
|
class SignResponse
|
|
853
882
|
attr_accessor key_id: ::String
|
|
854
883
|
attr_accessor signature: ::String
|
|
855
|
-
attr_accessor signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA")
|
|
884
|
+
attr_accessor signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512")
|
|
856
885
|
SENSITIVE: []
|
|
857
886
|
end
|
|
858
887
|
|
|
@@ -898,6 +927,7 @@ module Aws::KMS
|
|
|
898
927
|
attr_accessor xks_proxy_uri_endpoint: ::String
|
|
899
928
|
attr_accessor xks_proxy_uri_path: ::String
|
|
900
929
|
attr_accessor xks_proxy_vpc_endpoint_service_name: ::String
|
|
930
|
+
attr_accessor xks_proxy_vpc_endpoint_service_owner: ::String
|
|
901
931
|
attr_accessor xks_proxy_authentication_credential: Types::XksProxyAuthenticationCredentialType
|
|
902
932
|
attr_accessor xks_proxy_connectivity: ("PUBLIC_ENDPOINT" | "VPC_ENDPOINT_SERVICE")
|
|
903
933
|
SENSITIVE: [:key_store_password]
|
|
@@ -938,9 +968,9 @@ module Aws::KMS
|
|
|
938
968
|
class VerifyRequest
|
|
939
969
|
attr_accessor key_id: ::String
|
|
940
970
|
attr_accessor message: ::String
|
|
941
|
-
attr_accessor message_type: ("RAW" | "DIGEST")
|
|
971
|
+
attr_accessor message_type: ("RAW" | "DIGEST" | "EXTERNAL_MU")
|
|
942
972
|
attr_accessor signature: ::String
|
|
943
|
-
attr_accessor signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA")
|
|
973
|
+
attr_accessor signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512")
|
|
944
974
|
attr_accessor grant_tokens: ::Array[::String]
|
|
945
975
|
attr_accessor dry_run: bool
|
|
946
976
|
SENSITIVE: [:message]
|
|
@@ -949,7 +979,7 @@ module Aws::KMS
|
|
|
949
979
|
class VerifyResponse
|
|
950
980
|
attr_accessor key_id: ::String
|
|
951
981
|
attr_accessor signature_valid: bool
|
|
952
|
-
attr_accessor signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA")
|
|
982
|
+
attr_accessor signing_algorithm: ("RSASSA_PSS_SHA_256" | "RSASSA_PSS_SHA_384" | "RSASSA_PSS_SHA_512" | "RSASSA_PKCS1_V1_5_SHA_256" | "RSASSA_PKCS1_V1_5_SHA_384" | "RSASSA_PKCS1_V1_5_SHA_512" | "ECDSA_SHA_256" | "ECDSA_SHA_384" | "ECDSA_SHA_512" | "SM2DSA" | "ML_DSA_SHAKE_256" | "ED25519_SHA_512" | "ED25519_PH_SHA_512")
|
|
953
983
|
SENSITIVE: []
|
|
954
984
|
end
|
|
955
985
|
|
|
@@ -985,6 +1015,7 @@ module Aws::KMS
|
|
|
985
1015
|
attr_accessor uri_endpoint: ::String
|
|
986
1016
|
attr_accessor uri_path: ::String
|
|
987
1017
|
attr_accessor vpc_endpoint_service_name: ::String
|
|
1018
|
+
attr_accessor vpc_endpoint_service_owner: ::String
|
|
988
1019
|
SENSITIVE: [:access_key_id]
|
|
989
1020
|
end
|
|
990
1021
|
|
metadata
CHANGED
|
@@ -1,14 +1,13 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-kms
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.118.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
8
|
-
autorequire:
|
|
9
8
|
bindir: bin
|
|
10
9
|
cert_chain: []
|
|
11
|
-
date:
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
12
11
|
dependencies:
|
|
13
12
|
- !ruby/object:Gem::Dependency
|
|
14
13
|
name: aws-sdk-core
|
|
@@ -19,7 +18,7 @@ dependencies:
|
|
|
19
18
|
version: '3'
|
|
20
19
|
- - ">="
|
|
21
20
|
- !ruby/object:Gem::Version
|
|
22
|
-
version: 3.
|
|
21
|
+
version: 3.239.1
|
|
23
22
|
type: :runtime
|
|
24
23
|
prerelease: false
|
|
25
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -29,7 +28,7 @@ dependencies:
|
|
|
29
28
|
version: '3'
|
|
30
29
|
- - ">="
|
|
31
30
|
- !ruby/object:Gem::Version
|
|
32
|
-
version: 3.
|
|
31
|
+
version: 3.239.1
|
|
33
32
|
- !ruby/object:Gem::Dependency
|
|
34
33
|
name: aws-sigv4
|
|
35
34
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -77,7 +76,6 @@ licenses:
|
|
|
77
76
|
metadata:
|
|
78
77
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kms
|
|
79
78
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-kms/CHANGELOG.md
|
|
80
|
-
post_install_message:
|
|
81
79
|
rdoc_options: []
|
|
82
80
|
require_paths:
|
|
83
81
|
- lib
|
|
@@ -85,15 +83,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
|
85
83
|
requirements:
|
|
86
84
|
- - ">="
|
|
87
85
|
- !ruby/object:Gem::Version
|
|
88
|
-
version: '2.
|
|
86
|
+
version: '2.7'
|
|
89
87
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
90
88
|
requirements:
|
|
91
89
|
- - ">="
|
|
92
90
|
- !ruby/object:Gem::Version
|
|
93
91
|
version: '0'
|
|
94
92
|
requirements: []
|
|
95
|
-
rubygems_version: 3.
|
|
96
|
-
signing_key:
|
|
93
|
+
rubygems_version: 3.6.7
|
|
97
94
|
specification_version: 4
|
|
98
95
|
summary: AWS SDK for Ruby - KMS
|
|
99
96
|
test_files: []
|