aws-sdk-kms 1.78.0 → 1.80.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-kms/client.rb +422 -70
- data/lib/aws-sdk-kms/client_api.rb +85 -0
- data/lib/aws-sdk-kms/endpoints.rb +28 -0
- data/lib/aws-sdk-kms/errors.rb +16 -0
- data/lib/aws-sdk-kms/plugins/endpoints.rb +4 -0
- data/lib/aws-sdk-kms/types.rb +231 -14
- data/lib/aws-sdk-kms.rb +1 -1
- data/sig/client.rbs +30 -1
- data/sig/errors.rbs +3 -0
- data/sig/types.rbs +41 -0
- metadata +4 -4
data/sig/errors.rbs
CHANGED
@@ -29,6 +29,9 @@ module Aws
|
|
29
29
|
class CloudHsmClusterNotRelatedException < ::Aws::Errors::ServiceError
|
30
30
|
def message: () -> ::String
|
31
31
|
end
|
32
|
+
class ConflictException < ::Aws::Errors::ServiceError
|
33
|
+
def message: () -> ::String
|
34
|
+
end
|
32
35
|
class CustomKeyStoreHasCMKsException < ::Aws::Errors::ServiceError
|
33
36
|
def message: () -> ::String
|
34
37
|
end
|
data/sig/types.rbs
CHANGED
@@ -57,6 +57,11 @@ module Aws::KMS
|
|
57
57
|
SENSITIVE: []
|
58
58
|
end
|
59
59
|
|
60
|
+
class ConflictException
|
61
|
+
attr_accessor message: ::String
|
62
|
+
SENSITIVE: []
|
63
|
+
end
|
64
|
+
|
60
65
|
class ConnectCustomKeyStoreRequest
|
61
66
|
attr_accessor custom_key_store_id: ::String
|
62
67
|
SENSITIVE: []
|
@@ -264,6 +269,7 @@ module Aws::KMS
|
|
264
269
|
|
265
270
|
class EnableKeyRotationRequest
|
266
271
|
attr_accessor key_id: ::String
|
272
|
+
attr_accessor rotation_period_in_days: ::Integer
|
267
273
|
SENSITIVE: []
|
268
274
|
end
|
269
275
|
|
@@ -409,6 +415,10 @@ module Aws::KMS
|
|
409
415
|
|
410
416
|
class GetKeyRotationStatusResponse
|
411
417
|
attr_accessor key_rotation_enabled: bool
|
418
|
+
attr_accessor key_id: ::String
|
419
|
+
attr_accessor rotation_period_in_days: ::Integer
|
420
|
+
attr_accessor next_rotation_date: ::Time
|
421
|
+
attr_accessor on_demand_rotation_start_date: ::Time
|
412
422
|
SENSITIVE: []
|
413
423
|
end
|
414
424
|
|
@@ -638,6 +648,20 @@ module Aws::KMS
|
|
638
648
|
SENSITIVE: []
|
639
649
|
end
|
640
650
|
|
651
|
+
class ListKeyRotationsRequest
|
652
|
+
attr_accessor key_id: ::String
|
653
|
+
attr_accessor limit: ::Integer
|
654
|
+
attr_accessor marker: ::String
|
655
|
+
SENSITIVE: []
|
656
|
+
end
|
657
|
+
|
658
|
+
class ListKeyRotationsResponse
|
659
|
+
attr_accessor rotations: ::Array[Types::RotationsListEntry]
|
660
|
+
attr_accessor next_marker: ::String
|
661
|
+
attr_accessor truncated: bool
|
662
|
+
SENSITIVE: []
|
663
|
+
end
|
664
|
+
|
641
665
|
class ListKeysRequest
|
642
666
|
attr_accessor limit: ::Integer
|
643
667
|
attr_accessor marker: ::String
|
@@ -763,6 +787,23 @@ module Aws::KMS
|
|
763
787
|
SENSITIVE: []
|
764
788
|
end
|
765
789
|
|
790
|
+
class RotateKeyOnDemandRequest
|
791
|
+
attr_accessor key_id: ::String
|
792
|
+
SENSITIVE: []
|
793
|
+
end
|
794
|
+
|
795
|
+
class RotateKeyOnDemandResponse
|
796
|
+
attr_accessor key_id: ::String
|
797
|
+
SENSITIVE: []
|
798
|
+
end
|
799
|
+
|
800
|
+
class RotationsListEntry
|
801
|
+
attr_accessor key_id: ::String
|
802
|
+
attr_accessor rotation_date: ::Time
|
803
|
+
attr_accessor rotation_type: ("AUTOMATIC" | "ON_DEMAND")
|
804
|
+
SENSITIVE: []
|
805
|
+
end
|
806
|
+
|
766
807
|
class ScheduleKeyDeletionRequest
|
767
808
|
attr_accessor key_id: ::String
|
768
809
|
attr_accessor pending_window_in_days: ::Integer
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
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.80.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-04-25 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.193.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|