aws-sdk-backup 1.82.0 → 1.83.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.
data/sig/client.rbs CHANGED
@@ -122,7 +122,12 @@ module Aws
122
122
  },
123
123
  ]?,
124
124
  enable_continuous_backup: bool?,
125
- schedule_expression_timezone: ::String?
125
+ schedule_expression_timezone: ::String?,
126
+ index_actions: Array[
127
+ {
128
+ resource_types: Array[::String]?
129
+ },
130
+ ]?
126
131
  },
127
132
  ],
128
133
  advanced_backup_settings: Array[
@@ -583,6 +588,8 @@ module Aws
583
588
  def is_parent: () -> bool
584
589
  def resource_name: () -> ::String
585
590
  def vault_type: () -> ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT")
591
+ def index_status: () -> ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
592
+ def index_status_message: () -> ::String
586
593
  end
587
594
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#describe_recovery_point-instance_method
588
595
  def describe_recovery_point: (
@@ -772,6 +779,25 @@ module Aws
772
779
  ) -> _GetLegalHoldResponseSuccess
773
780
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetLegalHoldResponseSuccess
774
781
 
782
+ interface _GetRecoveryPointIndexDetailsResponseSuccess
783
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetRecoveryPointIndexDetailsOutput]
784
+ def recovery_point_arn: () -> ::String
785
+ def backup_vault_arn: () -> ::String
786
+ def source_resource_arn: () -> ::String
787
+ def index_creation_date: () -> ::Time
788
+ def index_deletion_date: () -> ::Time
789
+ def index_completion_date: () -> ::Time
790
+ def index_status: () -> ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
791
+ def index_status_message: () -> ::String
792
+ def total_items_indexed: () -> ::Integer
793
+ end
794
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#get_recovery_point_index_details-instance_method
795
+ def get_recovery_point_index_details: (
796
+ backup_vault_name: ::String,
797
+ recovery_point_arn: ::String
798
+ ) -> _GetRecoveryPointIndexDetailsResponseSuccess
799
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetRecoveryPointIndexDetailsResponseSuccess
800
+
775
801
  interface _GetRecoveryPointRestoreMetadataResponseSuccess
776
802
  include ::Seahorse::Client::_ResponseSuccess[Types::GetRecoveryPointRestoreMetadataOutput]
777
803
  def backup_vault_arn: () -> ::String
@@ -998,6 +1024,23 @@ module Aws
998
1024
  ) -> _ListFrameworksResponseSuccess
999
1025
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFrameworksResponseSuccess
1000
1026
 
1027
+ interface _ListIndexedRecoveryPointsResponseSuccess
1028
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListIndexedRecoveryPointsOutput]
1029
+ def indexed_recovery_points: () -> ::Array[Types::IndexedRecoveryPoint]
1030
+ def next_token: () -> ::String
1031
+ end
1032
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#list_indexed_recovery_points-instance_method
1033
+ def list_indexed_recovery_points: (
1034
+ ?next_token: ::String,
1035
+ ?max_results: ::Integer,
1036
+ ?source_resource_arn: ::String,
1037
+ ?created_before: ::Time,
1038
+ ?created_after: ::Time,
1039
+ ?resource_type: ::String,
1040
+ ?index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
1041
+ ) -> _ListIndexedRecoveryPointsResponseSuccess
1042
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListIndexedRecoveryPointsResponseSuccess
1043
+
1001
1044
  interface _ListLegalHoldsResponseSuccess
1002
1045
  include ::Seahorse::Client::_ResponseSuccess[Types::ListLegalHoldsOutput]
1003
1046
  def next_token: () -> ::String
@@ -1255,7 +1298,8 @@ module Aws
1255
1298
  opt_in_to_archive_for_supported_resources: bool?
1256
1299
  },
1257
1300
  ?recovery_point_tags: Hash[::String, ::String],
1258
- ?backup_options: Hash[::String, ::String]
1301
+ ?backup_options: Hash[::String, ::String],
1302
+ ?index: ("ENABLED" | "DISABLED")
1259
1303
  ) -> _StartBackupJobResponseSuccess
1260
1304
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartBackupJobResponseSuccess
1261
1305
 
@@ -1363,7 +1407,12 @@ module Aws
1363
1407
  },
1364
1408
  ]?,
1365
1409
  enable_continuous_backup: bool?,
1366
- schedule_expression_timezone: ::String?
1410
+ schedule_expression_timezone: ::String?,
1411
+ index_actions: Array[
1412
+ {
1413
+ resource_types: Array[::String]?
1414
+ },
1415
+ ]?
1367
1416
  },
1368
1417
  ],
1369
1418
  advanced_backup_settings: Array[
@@ -1412,6 +1461,22 @@ module Aws
1412
1461
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1413
1462
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1414
1463
 
1464
+ interface _UpdateRecoveryPointIndexSettingsResponseSuccess
1465
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRecoveryPointIndexSettingsOutput]
1466
+ def backup_vault_name: () -> ::String
1467
+ def recovery_point_arn: () -> ::String
1468
+ def index_status: () -> ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
1469
+ def index: () -> ("ENABLED" | "DISABLED")
1470
+ end
1471
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Backup/Client.html#update_recovery_point_index_settings-instance_method
1472
+ def update_recovery_point_index_settings: (
1473
+ backup_vault_name: ::String,
1474
+ recovery_point_arn: ::String,
1475
+ ?iam_role_arn: ::String,
1476
+ index: ("ENABLED" | "DISABLED")
1477
+ ) -> _UpdateRecoveryPointIndexSettingsResponseSuccess
1478
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateRecoveryPointIndexSettingsResponseSuccess
1479
+
1415
1480
  interface _UpdateRecoveryPointLifecycleResponseSuccess
1416
1481
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateRecoveryPointLifecycleOutput]
1417
1482
  def backup_vault_arn: () -> ::String
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.82.0
4
+ version: 1.83.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-06 00:00:00.000000000 Z
11
+ date: 2024-12-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core