aws-sdk-backup 1.82.0 → 1.84.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-backup/client.rb +272 -1
- data/lib/aws-sdk-backup/client_api.rb +121 -0
- data/lib/aws-sdk-backup/types.rb +468 -6
- data/lib/aws-sdk-backup.rb +1 -1
- data/sig/client.rbs +70 -3
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +79 -0
- metadata +4 -4
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -122,7 +124,12 @@ module Aws
|
|
122
124
|
},
|
123
125
|
]?,
|
124
126
|
enable_continuous_backup: bool?,
|
125
|
-
schedule_expression_timezone: ::String
|
127
|
+
schedule_expression_timezone: ::String?,
|
128
|
+
index_actions: Array[
|
129
|
+
{
|
130
|
+
resource_types: Array[::String]?
|
131
|
+
},
|
132
|
+
]?
|
126
133
|
},
|
127
134
|
],
|
128
135
|
advanced_backup_settings: Array[
|
@@ -583,6 +590,8 @@ module Aws
|
|
583
590
|
def is_parent: () -> bool
|
584
591
|
def resource_name: () -> ::String
|
585
592
|
def vault_type: () -> ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT")
|
593
|
+
def index_status: () -> ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
594
|
+
def index_status_message: () -> ::String
|
586
595
|
end
|
587
596
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_recovery_point-instance_method
|
588
597
|
def describe_recovery_point: (
|
@@ -772,6 +781,25 @@ module Aws
|
|
772
781
|
) -> _GetLegalHoldResponseSuccess
|
773
782
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLegalHoldResponseSuccess
|
774
783
|
|
784
|
+
interface _GetRecoveryPointIndexDetailsResponseSuccess
|
785
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetRecoveryPointIndexDetailsOutput]
|
786
|
+
def recovery_point_arn: () -> ::String
|
787
|
+
def backup_vault_arn: () -> ::String
|
788
|
+
def source_resource_arn: () -> ::String
|
789
|
+
def index_creation_date: () -> ::Time
|
790
|
+
def index_deletion_date: () -> ::Time
|
791
|
+
def index_completion_date: () -> ::Time
|
792
|
+
def index_status: () -> ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
793
|
+
def index_status_message: () -> ::String
|
794
|
+
def total_items_indexed: () -> ::Integer
|
795
|
+
end
|
796
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#get_recovery_point_index_details-instance_method
|
797
|
+
def get_recovery_point_index_details: (
|
798
|
+
backup_vault_name: ::String,
|
799
|
+
recovery_point_arn: ::String
|
800
|
+
) -> _GetRecoveryPointIndexDetailsResponseSuccess
|
801
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRecoveryPointIndexDetailsResponseSuccess
|
802
|
+
|
775
803
|
interface _GetRecoveryPointRestoreMetadataResponseSuccess
|
776
804
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetRecoveryPointRestoreMetadataOutput]
|
777
805
|
def backup_vault_arn: () -> ::String
|
@@ -998,6 +1026,23 @@ module Aws
|
|
998
1026
|
) -> _ListFrameworksResponseSuccess
|
999
1027
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFrameworksResponseSuccess
|
1000
1028
|
|
1029
|
+
interface _ListIndexedRecoveryPointsResponseSuccess
|
1030
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListIndexedRecoveryPointsOutput]
|
1031
|
+
def indexed_recovery_points: () -> ::Array[Types::IndexedRecoveryPoint]
|
1032
|
+
def next_token: () -> ::String
|
1033
|
+
end
|
1034
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_indexed_recovery_points-instance_method
|
1035
|
+
def list_indexed_recovery_points: (
|
1036
|
+
?next_token: ::String,
|
1037
|
+
?max_results: ::Integer,
|
1038
|
+
?source_resource_arn: ::String,
|
1039
|
+
?created_before: ::Time,
|
1040
|
+
?created_after: ::Time,
|
1041
|
+
?resource_type: ::String,
|
1042
|
+
?index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
1043
|
+
) -> _ListIndexedRecoveryPointsResponseSuccess
|
1044
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIndexedRecoveryPointsResponseSuccess
|
1045
|
+
|
1001
1046
|
interface _ListLegalHoldsResponseSuccess
|
1002
1047
|
include ::Seahorse::Client::_ResponseSuccess[Types::ListLegalHoldsOutput]
|
1003
1048
|
def next_token: () -> ::String
|
@@ -1255,7 +1300,8 @@ module Aws
|
|
1255
1300
|
opt_in_to_archive_for_supported_resources: bool?
|
1256
1301
|
},
|
1257
1302
|
?recovery_point_tags: Hash[::String, ::String],
|
1258
|
-
?backup_options: Hash[::String, ::String]
|
1303
|
+
?backup_options: Hash[::String, ::String],
|
1304
|
+
?index: ("ENABLED" | "DISABLED")
|
1259
1305
|
) -> _StartBackupJobResponseSuccess
|
1260
1306
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartBackupJobResponseSuccess
|
1261
1307
|
|
@@ -1363,7 +1409,12 @@ module Aws
|
|
1363
1409
|
},
|
1364
1410
|
]?,
|
1365
1411
|
enable_continuous_backup: bool?,
|
1366
|
-
schedule_expression_timezone: ::String
|
1412
|
+
schedule_expression_timezone: ::String?,
|
1413
|
+
index_actions: Array[
|
1414
|
+
{
|
1415
|
+
resource_types: Array[::String]?
|
1416
|
+
},
|
1417
|
+
]?
|
1367
1418
|
},
|
1368
1419
|
],
|
1369
1420
|
advanced_backup_settings: Array[
|
@@ -1412,6 +1463,22 @@ module Aws
|
|
1412
1463
|
) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1413
1464
|
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
|
1414
1465
|
|
1466
|
+
interface _UpdateRecoveryPointIndexSettingsResponseSuccess
|
1467
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRecoveryPointIndexSettingsOutput]
|
1468
|
+
def backup_vault_name: () -> ::String
|
1469
|
+
def recovery_point_arn: () -> ::String
|
1470
|
+
def index_status: () -> ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
1471
|
+
def index: () -> ("ENABLED" | "DISABLED")
|
1472
|
+
end
|
1473
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_recovery_point_index_settings-instance_method
|
1474
|
+
def update_recovery_point_index_settings: (
|
1475
|
+
backup_vault_name: ::String,
|
1476
|
+
recovery_point_arn: ::String,
|
1477
|
+
?iam_role_arn: ::String,
|
1478
|
+
index: ("ENABLED" | "DISABLED")
|
1479
|
+
) -> _UpdateRecoveryPointIndexSettingsResponseSuccess
|
1480
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRecoveryPointIndexSettingsResponseSuccess
|
1481
|
+
|
1415
1482
|
interface _UpdateRecoveryPointLifecycleResponseSuccess
|
1416
1483
|
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRecoveryPointLifecycleOutput]
|
1417
1484
|
def backup_vault_arn: () -> ::String
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -110,6 +110,7 @@ module Aws::Backup
|
|
110
110
|
attr_accessor copy_actions: ::Array[Types::CopyAction]
|
111
111
|
attr_accessor enable_continuous_backup: bool
|
112
112
|
attr_accessor schedule_expression_timezone: ::String
|
113
|
+
attr_accessor index_actions: ::Array[Types::IndexAction]
|
113
114
|
SENSITIVE: [:recovery_point_tags]
|
114
115
|
end
|
115
116
|
|
@@ -124,6 +125,7 @@ module Aws::Backup
|
|
124
125
|
attr_accessor copy_actions: ::Array[Types::CopyAction]
|
125
126
|
attr_accessor enable_continuous_backup: bool
|
126
127
|
attr_accessor schedule_expression_timezone: ::String
|
128
|
+
attr_accessor index_actions: ::Array[Types::IndexAction]
|
127
129
|
SENSITIVE: [:recovery_point_tags]
|
128
130
|
end
|
129
131
|
|
@@ -632,6 +634,8 @@ module Aws::Backup
|
|
632
634
|
attr_accessor is_parent: bool
|
633
635
|
attr_accessor resource_name: ::String
|
634
636
|
attr_accessor vault_type: ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT")
|
637
|
+
attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
638
|
+
attr_accessor index_status_message: ::String
|
635
639
|
SENSITIVE: []
|
636
640
|
end
|
637
641
|
|
@@ -829,6 +833,25 @@ module Aws::Backup
|
|
829
833
|
SENSITIVE: []
|
830
834
|
end
|
831
835
|
|
836
|
+
class GetRecoveryPointIndexDetailsInput
|
837
|
+
attr_accessor backup_vault_name: ::String
|
838
|
+
attr_accessor recovery_point_arn: ::String
|
839
|
+
SENSITIVE: []
|
840
|
+
end
|
841
|
+
|
842
|
+
class GetRecoveryPointIndexDetailsOutput
|
843
|
+
attr_accessor recovery_point_arn: ::String
|
844
|
+
attr_accessor backup_vault_arn: ::String
|
845
|
+
attr_accessor source_resource_arn: ::String
|
846
|
+
attr_accessor index_creation_date: ::Time
|
847
|
+
attr_accessor index_deletion_date: ::Time
|
848
|
+
attr_accessor index_completion_date: ::Time
|
849
|
+
attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
850
|
+
attr_accessor index_status_message: ::String
|
851
|
+
attr_accessor total_items_indexed: ::Integer
|
852
|
+
SENSITIVE: []
|
853
|
+
end
|
854
|
+
|
832
855
|
class GetRecoveryPointRestoreMetadataInput
|
833
856
|
attr_accessor backup_vault_name: ::String
|
834
857
|
attr_accessor recovery_point_arn: ::String
|
@@ -893,6 +916,24 @@ module Aws::Backup
|
|
893
916
|
SENSITIVE: []
|
894
917
|
end
|
895
918
|
|
919
|
+
class IndexAction
|
920
|
+
attr_accessor resource_types: ::Array[::String]
|
921
|
+
SENSITIVE: []
|
922
|
+
end
|
923
|
+
|
924
|
+
class IndexedRecoveryPoint
|
925
|
+
attr_accessor recovery_point_arn: ::String
|
926
|
+
attr_accessor source_resource_arn: ::String
|
927
|
+
attr_accessor iam_role_arn: ::String
|
928
|
+
attr_accessor backup_creation_date: ::Time
|
929
|
+
attr_accessor resource_type: ::String
|
930
|
+
attr_accessor index_creation_date: ::Time
|
931
|
+
attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
932
|
+
attr_accessor index_status_message: ::String
|
933
|
+
attr_accessor backup_vault_arn: ::String
|
934
|
+
SENSITIVE: []
|
935
|
+
end
|
936
|
+
|
896
937
|
class InvalidParameterValueException
|
897
938
|
attr_accessor code: ::String
|
898
939
|
attr_accessor message: ::String
|
@@ -1108,6 +1149,23 @@ module Aws::Backup
|
|
1108
1149
|
SENSITIVE: []
|
1109
1150
|
end
|
1110
1151
|
|
1152
|
+
class ListIndexedRecoveryPointsInput
|
1153
|
+
attr_accessor next_token: ::String
|
1154
|
+
attr_accessor max_results: ::Integer
|
1155
|
+
attr_accessor source_resource_arn: ::String
|
1156
|
+
attr_accessor created_before: ::Time
|
1157
|
+
attr_accessor created_after: ::Time
|
1158
|
+
attr_accessor resource_type: ::String
|
1159
|
+
attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
1160
|
+
SENSITIVE: []
|
1161
|
+
end
|
1162
|
+
|
1163
|
+
class ListIndexedRecoveryPointsOutput
|
1164
|
+
attr_accessor indexed_recovery_points: ::Array[Types::IndexedRecoveryPoint]
|
1165
|
+
attr_accessor next_token: ::String
|
1166
|
+
SENSITIVE: []
|
1167
|
+
end
|
1168
|
+
|
1111
1169
|
class ListLegalHoldsInput
|
1112
1170
|
attr_accessor next_token: ::String
|
1113
1171
|
attr_accessor max_results: ::Integer
|
@@ -1388,6 +1446,8 @@ module Aws::Backup
|
|
1388
1446
|
attr_accessor is_parent: bool
|
1389
1447
|
attr_accessor resource_name: ::String
|
1390
1448
|
attr_accessor vault_type: ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT")
|
1449
|
+
attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
1450
|
+
attr_accessor index_status_message: ::String
|
1391
1451
|
SENSITIVE: []
|
1392
1452
|
end
|
1393
1453
|
|
@@ -1403,6 +1463,8 @@ module Aws::Backup
|
|
1403
1463
|
attr_accessor parent_recovery_point_arn: ::String
|
1404
1464
|
attr_accessor resource_name: ::String
|
1405
1465
|
attr_accessor vault_type: ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT")
|
1466
|
+
attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
1467
|
+
attr_accessor index_status_message: ::String
|
1406
1468
|
SENSITIVE: []
|
1407
1469
|
end
|
1408
1470
|
|
@@ -1638,6 +1700,7 @@ module Aws::Backup
|
|
1638
1700
|
attr_accessor lifecycle: Types::Lifecycle
|
1639
1701
|
attr_accessor recovery_point_tags: ::Hash[::String, ::String]
|
1640
1702
|
attr_accessor backup_options: ::Hash[::String, ::String]
|
1703
|
+
attr_accessor index: ("ENABLED" | "DISABLED")
|
1641
1704
|
SENSITIVE: [:recovery_point_tags]
|
1642
1705
|
end
|
1643
1706
|
|
@@ -1744,6 +1807,22 @@ module Aws::Backup
|
|
1744
1807
|
SENSITIVE: []
|
1745
1808
|
end
|
1746
1809
|
|
1810
|
+
class UpdateRecoveryPointIndexSettingsInput
|
1811
|
+
attr_accessor backup_vault_name: ::String
|
1812
|
+
attr_accessor recovery_point_arn: ::String
|
1813
|
+
attr_accessor iam_role_arn: ::String
|
1814
|
+
attr_accessor index: ("ENABLED" | "DISABLED")
|
1815
|
+
SENSITIVE: []
|
1816
|
+
end
|
1817
|
+
|
1818
|
+
class UpdateRecoveryPointIndexSettingsOutput
|
1819
|
+
attr_accessor backup_vault_name: ::String
|
1820
|
+
attr_accessor recovery_point_arn: ::String
|
1821
|
+
attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
1822
|
+
attr_accessor index: ("ENABLED" | "DISABLED")
|
1823
|
+
SENSITIVE: []
|
1824
|
+
end
|
1825
|
+
|
1747
1826
|
class UpdateRecoveryPointLifecycleInput
|
1748
1827
|
attr_accessor backup_vault_name: ::String
|
1749
1828
|
attr_accessor recovery_point_arn: ::String
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-backup
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.84.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:
|
11
|
+
date: 2025-01-15 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.216.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.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|