aws-sdk-backup 1.98.0 → 1.104.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 +30 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-backup/client.rb +770 -3
- data/lib/aws-sdk-backup/client_api.rb +425 -0
- data/lib/aws-sdk-backup/types.rb +1486 -53
- data/lib/aws-sdk-backup.rb +1 -1
- data/sig/client.rbs +221 -10
- data/sig/types.rbs +289 -0
- metadata +3 -3
data/sig/types.rbs
CHANGED
|
@@ -14,6 +14,13 @@ module Aws::Backup
|
|
|
14
14
|
SENSITIVE: []
|
|
15
15
|
end
|
|
16
16
|
|
|
17
|
+
class AggregatedScanResult
|
|
18
|
+
attr_accessor failed_scan: bool
|
|
19
|
+
attr_accessor findings: ::Array[("MALWARE")]
|
|
20
|
+
attr_accessor last_computed: ::Time
|
|
21
|
+
SENSITIVE: []
|
|
22
|
+
end
|
|
23
|
+
|
|
17
24
|
class AlreadyExistsException
|
|
18
25
|
attr_accessor code: ::String
|
|
19
26
|
attr_accessor message: ::String
|
|
@@ -81,6 +88,7 @@ module Aws::Backup
|
|
|
81
88
|
attr_accessor backup_plan_name: ::String
|
|
82
89
|
attr_accessor rules: ::Array[Types::BackupRule]
|
|
83
90
|
attr_accessor advanced_backup_settings: ::Array[Types::AdvancedBackupSetting]
|
|
91
|
+
attr_accessor scan_settings: ::Array[Types::ScanSetting]
|
|
84
92
|
SENSITIVE: []
|
|
85
93
|
end
|
|
86
94
|
|
|
@@ -88,6 +96,7 @@ module Aws::Backup
|
|
|
88
96
|
attr_accessor backup_plan_name: ::String
|
|
89
97
|
attr_accessor rules: ::Array[Types::BackupRuleInput]
|
|
90
98
|
attr_accessor advanced_backup_settings: ::Array[Types::AdvancedBackupSetting]
|
|
99
|
+
attr_accessor scan_settings: ::Array[Types::ScanSetting]
|
|
91
100
|
SENSITIVE: []
|
|
92
101
|
end
|
|
93
102
|
|
|
@@ -113,6 +122,7 @@ module Aws::Backup
|
|
|
113
122
|
class BackupRule
|
|
114
123
|
attr_accessor rule_name: ::String
|
|
115
124
|
attr_accessor target_backup_vault_name: ::String
|
|
125
|
+
attr_accessor target_logically_air_gapped_backup_vault_arn: ::String
|
|
116
126
|
attr_accessor schedule_expression: ::String
|
|
117
127
|
attr_accessor start_window_minutes: ::Integer
|
|
118
128
|
attr_accessor completion_window_minutes: ::Integer
|
|
@@ -123,12 +133,14 @@ module Aws::Backup
|
|
|
123
133
|
attr_accessor enable_continuous_backup: bool
|
|
124
134
|
attr_accessor schedule_expression_timezone: ::String
|
|
125
135
|
attr_accessor index_actions: ::Array[Types::IndexAction]
|
|
136
|
+
attr_accessor scan_actions: ::Array[Types::ScanAction]
|
|
126
137
|
SENSITIVE: [:recovery_point_tags]
|
|
127
138
|
end
|
|
128
139
|
|
|
129
140
|
class BackupRuleInput
|
|
130
141
|
attr_accessor rule_name: ::String
|
|
131
142
|
attr_accessor target_backup_vault_name: ::String
|
|
143
|
+
attr_accessor target_logically_air_gapped_backup_vault_arn: ::String
|
|
132
144
|
attr_accessor schedule_expression: ::String
|
|
133
145
|
attr_accessor start_window_minutes: ::Integer
|
|
134
146
|
attr_accessor completion_window_minutes: ::Integer
|
|
@@ -138,6 +150,7 @@ module Aws::Backup
|
|
|
138
150
|
attr_accessor enable_continuous_backup: bool
|
|
139
151
|
attr_accessor schedule_expression_timezone: ::String
|
|
140
152
|
attr_accessor index_actions: ::Array[Types::IndexAction]
|
|
153
|
+
attr_accessor scan_actions: ::Array[Types::ScanAction]
|
|
141
154
|
SENSITIVE: [:recovery_point_tags]
|
|
142
155
|
end
|
|
143
156
|
|
|
@@ -174,6 +187,7 @@ module Aws::Backup
|
|
|
174
187
|
attr_accessor min_retention_days: ::Integer
|
|
175
188
|
attr_accessor max_retention_days: ::Integer
|
|
176
189
|
attr_accessor lock_date: ::Time
|
|
190
|
+
attr_accessor encryption_key_type: ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
|
|
177
191
|
SENSITIVE: []
|
|
178
192
|
end
|
|
179
193
|
|
|
@@ -260,6 +274,7 @@ module Aws::Backup
|
|
|
260
274
|
attr_accessor backup_size_in_bytes: ::Integer
|
|
261
275
|
attr_accessor iam_role_arn: ::String
|
|
262
276
|
attr_accessor created_by: Types::RecoveryPointCreator
|
|
277
|
+
attr_accessor created_by_backup_job_id: ::String
|
|
263
278
|
attr_accessor resource_type: ::String
|
|
264
279
|
attr_accessor parent_job_id: ::String
|
|
265
280
|
attr_accessor is_parent: bool
|
|
@@ -369,6 +384,7 @@ module Aws::Backup
|
|
|
369
384
|
attr_accessor creator_request_id: ::String
|
|
370
385
|
attr_accessor min_retention_days: ::Integer
|
|
371
386
|
attr_accessor max_retention_days: ::Integer
|
|
387
|
+
attr_accessor encryption_key_arn: ::String
|
|
372
388
|
SENSITIVE: [:backup_vault_tags]
|
|
373
389
|
end
|
|
374
390
|
|
|
@@ -443,6 +459,20 @@ module Aws::Backup
|
|
|
443
459
|
SENSITIVE: []
|
|
444
460
|
end
|
|
445
461
|
|
|
462
|
+
class CreateTieringConfigurationInput
|
|
463
|
+
attr_accessor tiering_configuration: Types::TieringConfigurationInputForCreate
|
|
464
|
+
attr_accessor tiering_configuration_tags: ::Hash[::String, ::String]
|
|
465
|
+
attr_accessor creator_request_id: ::String
|
|
466
|
+
SENSITIVE: [:tiering_configuration_tags]
|
|
467
|
+
end
|
|
468
|
+
|
|
469
|
+
class CreateTieringConfigurationOutput
|
|
470
|
+
attr_accessor tiering_configuration_arn: ::String
|
|
471
|
+
attr_accessor tiering_configuration_name: ::String
|
|
472
|
+
attr_accessor creation_time: ::Time
|
|
473
|
+
SENSITIVE: []
|
|
474
|
+
end
|
|
475
|
+
|
|
446
476
|
class DateRange
|
|
447
477
|
attr_accessor from_date: ::Time
|
|
448
478
|
attr_accessor to_date: ::Time
|
|
@@ -515,6 +545,14 @@ module Aws::Backup
|
|
|
515
545
|
SENSITIVE: []
|
|
516
546
|
end
|
|
517
547
|
|
|
548
|
+
class DeleteTieringConfigurationInput
|
|
549
|
+
attr_accessor tiering_configuration_name: ::String
|
|
550
|
+
SENSITIVE: []
|
|
551
|
+
end
|
|
552
|
+
|
|
553
|
+
class DeleteTieringConfigurationOutput < Aws::EmptyStructure
|
|
554
|
+
end
|
|
555
|
+
|
|
518
556
|
class DependencyFailureException
|
|
519
557
|
attr_accessor code: ::String
|
|
520
558
|
attr_accessor message: ::String
|
|
@@ -587,6 +625,7 @@ module Aws::Backup
|
|
|
587
625
|
attr_accessor mpa_approval_team_arn: ::String
|
|
588
626
|
attr_accessor mpa_session_arn: ::String
|
|
589
627
|
attr_accessor latest_mpa_approval_team_update: Types::LatestMpaApprovalTeamUpdate
|
|
628
|
+
attr_accessor encryption_key_type: ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
|
|
590
629
|
SENSITIVE: []
|
|
591
630
|
end
|
|
592
631
|
|
|
@@ -679,6 +718,8 @@ module Aws::Backup
|
|
|
679
718
|
attr_accessor vault_type: ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT" | "RESTORE_ACCESS_BACKUP_VAULT")
|
|
680
719
|
attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
681
720
|
attr_accessor index_status_message: ::String
|
|
721
|
+
attr_accessor encryption_key_type: ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
|
|
722
|
+
attr_accessor scan_results: ::Array[Types::ScanResult]
|
|
682
723
|
SENSITIVE: []
|
|
683
724
|
end
|
|
684
725
|
|
|
@@ -738,6 +779,37 @@ module Aws::Backup
|
|
|
738
779
|
attr_accessor validation_status_message: ::String
|
|
739
780
|
attr_accessor deletion_status: ("DELETING" | "FAILED" | "SUCCESSFUL")
|
|
740
781
|
attr_accessor deletion_status_message: ::String
|
|
782
|
+
attr_accessor is_parent: bool
|
|
783
|
+
attr_accessor parent_job_id: ::String
|
|
784
|
+
SENSITIVE: []
|
|
785
|
+
end
|
|
786
|
+
|
|
787
|
+
class DescribeScanJobInput
|
|
788
|
+
attr_accessor scan_job_id: ::String
|
|
789
|
+
SENSITIVE: []
|
|
790
|
+
end
|
|
791
|
+
|
|
792
|
+
class DescribeScanJobOutput
|
|
793
|
+
attr_accessor account_id: ::String
|
|
794
|
+
attr_accessor backup_vault_arn: ::String
|
|
795
|
+
attr_accessor backup_vault_name: ::String
|
|
796
|
+
attr_accessor completion_date: ::Time
|
|
797
|
+
attr_accessor created_by: Types::ScanJobCreator
|
|
798
|
+
attr_accessor creation_date: ::Time
|
|
799
|
+
attr_accessor iam_role_arn: ::String
|
|
800
|
+
attr_accessor malware_scanner: ("GUARDDUTY")
|
|
801
|
+
attr_accessor recovery_point_arn: ::String
|
|
802
|
+
attr_accessor resource_arn: ::String
|
|
803
|
+
attr_accessor resource_name: ::String
|
|
804
|
+
attr_accessor resource_type: ("EBS" | "EC2" | "S3")
|
|
805
|
+
attr_accessor scan_base_recovery_point_arn: ::String
|
|
806
|
+
attr_accessor scan_id: ::String
|
|
807
|
+
attr_accessor scan_job_id: ::String
|
|
808
|
+
attr_accessor scan_mode: ("FULL_SCAN" | "INCREMENTAL_SCAN")
|
|
809
|
+
attr_accessor scan_result: Types::ScanResultInfo
|
|
810
|
+
attr_accessor scanner_role_arn: ::String
|
|
811
|
+
attr_accessor state: ("CANCELED" | "COMPLETED" | "COMPLETED_WITH_ISSUES" | "CREATED" | "FAILED" | "RUNNING")
|
|
812
|
+
attr_accessor status_message: ::String
|
|
741
813
|
SENSITIVE: []
|
|
742
814
|
end
|
|
743
815
|
|
|
@@ -969,6 +1041,16 @@ module Aws::Backup
|
|
|
969
1041
|
SENSITIVE: []
|
|
970
1042
|
end
|
|
971
1043
|
|
|
1044
|
+
class GetTieringConfigurationInput
|
|
1045
|
+
attr_accessor tiering_configuration_name: ::String
|
|
1046
|
+
SENSITIVE: []
|
|
1047
|
+
end
|
|
1048
|
+
|
|
1049
|
+
class GetTieringConfigurationOutput
|
|
1050
|
+
attr_accessor tiering_configuration: Types::TieringConfiguration
|
|
1051
|
+
SENSITIVE: []
|
|
1052
|
+
end
|
|
1053
|
+
|
|
972
1054
|
class IndexAction
|
|
973
1055
|
attr_accessor resource_types: ::Array[::String]
|
|
974
1056
|
SENSITIVE: []
|
|
@@ -1050,6 +1132,7 @@ module Aws::Backup
|
|
|
1050
1132
|
attr_accessor move_to_cold_storage_after_days: ::Integer
|
|
1051
1133
|
attr_accessor delete_after_days: ::Integer
|
|
1052
1134
|
attr_accessor opt_in_to_archive_for_supported_resources: bool
|
|
1135
|
+
attr_accessor delete_after_event: ("DELETE_AFTER_COPY")
|
|
1053
1136
|
SENSITIVE: []
|
|
1054
1137
|
end
|
|
1055
1138
|
|
|
@@ -1199,6 +1282,7 @@ module Aws::Backup
|
|
|
1199
1282
|
attr_accessor by_complete_after: ::Time
|
|
1200
1283
|
attr_accessor by_parent_job_id: ::String
|
|
1201
1284
|
attr_accessor by_message_category: ::String
|
|
1285
|
+
attr_accessor by_source_recovery_point_arn: ::String
|
|
1202
1286
|
SENSITIVE: []
|
|
1203
1287
|
end
|
|
1204
1288
|
|
|
@@ -1407,6 +1491,7 @@ module Aws::Backup
|
|
|
1407
1491
|
attr_accessor by_complete_before: ::Time
|
|
1408
1492
|
attr_accessor by_complete_after: ::Time
|
|
1409
1493
|
attr_accessor by_restore_testing_plan_arn: ::String
|
|
1494
|
+
attr_accessor by_parent_job_id: ::String
|
|
1410
1495
|
SENSITIVE: []
|
|
1411
1496
|
end
|
|
1412
1497
|
|
|
@@ -1441,6 +1526,47 @@ module Aws::Backup
|
|
|
1441
1526
|
SENSITIVE: []
|
|
1442
1527
|
end
|
|
1443
1528
|
|
|
1529
|
+
class ListScanJobSummariesInput
|
|
1530
|
+
attr_accessor account_id: ::String
|
|
1531
|
+
attr_accessor resource_type: ::String
|
|
1532
|
+
attr_accessor malware_scanner: ("GUARDDUTY")
|
|
1533
|
+
attr_accessor scan_result_status: ("NO_THREATS_FOUND" | "THREATS_FOUND")
|
|
1534
|
+
attr_accessor state: ("CREATED" | "COMPLETED" | "COMPLETED_WITH_ISSUES" | "RUNNING" | "FAILED" | "CANCELED" | "AGGREGATE_ALL" | "ANY")
|
|
1535
|
+
attr_accessor aggregation_period: ("ONE_DAY" | "SEVEN_DAYS" | "FOURTEEN_DAYS")
|
|
1536
|
+
attr_accessor max_results: ::Integer
|
|
1537
|
+
attr_accessor next_token: ::String
|
|
1538
|
+
SENSITIVE: []
|
|
1539
|
+
end
|
|
1540
|
+
|
|
1541
|
+
class ListScanJobSummariesOutput
|
|
1542
|
+
attr_accessor scan_job_summaries: ::Array[Types::ScanJobSummary]
|
|
1543
|
+
attr_accessor aggregation_period: ::String
|
|
1544
|
+
attr_accessor next_token: ::String
|
|
1545
|
+
SENSITIVE: []
|
|
1546
|
+
end
|
|
1547
|
+
|
|
1548
|
+
class ListScanJobsInput
|
|
1549
|
+
attr_accessor by_account_id: ::String
|
|
1550
|
+
attr_accessor by_backup_vault_name: ::String
|
|
1551
|
+
attr_accessor by_complete_after: ::Time
|
|
1552
|
+
attr_accessor by_complete_before: ::Time
|
|
1553
|
+
attr_accessor by_malware_scanner: ("GUARDDUTY")
|
|
1554
|
+
attr_accessor by_recovery_point_arn: ::String
|
|
1555
|
+
attr_accessor by_resource_arn: ::String
|
|
1556
|
+
attr_accessor by_resource_type: ("EBS" | "EC2" | "S3")
|
|
1557
|
+
attr_accessor by_scan_result_status: ("NO_THREATS_FOUND" | "THREATS_FOUND")
|
|
1558
|
+
attr_accessor by_state: ("CANCELED" | "COMPLETED" | "COMPLETED_WITH_ISSUES" | "CREATED" | "FAILED" | "RUNNING")
|
|
1559
|
+
attr_accessor max_results: ::Integer
|
|
1560
|
+
attr_accessor next_token: ::String
|
|
1561
|
+
SENSITIVE: []
|
|
1562
|
+
end
|
|
1563
|
+
|
|
1564
|
+
class ListScanJobsOutput
|
|
1565
|
+
attr_accessor next_token: ::String
|
|
1566
|
+
attr_accessor scan_jobs: ::Array[Types::ScanJob]
|
|
1567
|
+
SENSITIVE: []
|
|
1568
|
+
end
|
|
1569
|
+
|
|
1444
1570
|
class ListTagsInput
|
|
1445
1571
|
attr_accessor resource_arn: ::String
|
|
1446
1572
|
attr_accessor next_token: ::String
|
|
@@ -1454,6 +1580,18 @@ module Aws::Backup
|
|
|
1454
1580
|
SENSITIVE: [:tags]
|
|
1455
1581
|
end
|
|
1456
1582
|
|
|
1583
|
+
class ListTieringConfigurationsInput
|
|
1584
|
+
attr_accessor max_results: ::Integer
|
|
1585
|
+
attr_accessor next_token: ::String
|
|
1586
|
+
SENSITIVE: []
|
|
1587
|
+
end
|
|
1588
|
+
|
|
1589
|
+
class ListTieringConfigurationsOutput
|
|
1590
|
+
attr_accessor tiering_configurations: ::Array[Types::TieringConfigurationsListMember]
|
|
1591
|
+
attr_accessor next_token: ::String
|
|
1592
|
+
SENSITIVE: []
|
|
1593
|
+
end
|
|
1594
|
+
|
|
1457
1595
|
class MissingParameterValueException
|
|
1458
1596
|
attr_accessor code: ::String
|
|
1459
1597
|
attr_accessor message: ::String
|
|
@@ -1533,6 +1671,8 @@ module Aws::Backup
|
|
|
1533
1671
|
attr_accessor vault_type: ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT" | "RESTORE_ACCESS_BACKUP_VAULT")
|
|
1534
1672
|
attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
1535
1673
|
attr_accessor index_status_message: ::String
|
|
1674
|
+
attr_accessor encryption_key_type: ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
|
|
1675
|
+
attr_accessor aggregated_scan_result: Types::AggregatedScanResult
|
|
1536
1676
|
SENSITIVE: []
|
|
1537
1677
|
end
|
|
1538
1678
|
|
|
@@ -1550,6 +1690,8 @@ module Aws::Backup
|
|
|
1550
1690
|
attr_accessor vault_type: ("BACKUP_VAULT" | "LOGICALLY_AIR_GAPPED_BACKUP_VAULT" | "RESTORE_ACCESS_BACKUP_VAULT")
|
|
1551
1691
|
attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
|
|
1552
1692
|
attr_accessor index_status_message: ::String
|
|
1693
|
+
attr_accessor encryption_key_type: ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
|
|
1694
|
+
attr_accessor aggregated_scan_result: Types::AggregatedScanResult
|
|
1553
1695
|
SENSITIVE: []
|
|
1554
1696
|
end
|
|
1555
1697
|
|
|
@@ -1636,6 +1778,13 @@ module Aws::Backup
|
|
|
1636
1778
|
SENSITIVE: []
|
|
1637
1779
|
end
|
|
1638
1780
|
|
|
1781
|
+
class ResourceSelection
|
|
1782
|
+
attr_accessor resources: ::Array[::String]
|
|
1783
|
+
attr_accessor tiering_down_settings_in_days: ::Integer
|
|
1784
|
+
attr_accessor resource_type: ::String
|
|
1785
|
+
SENSITIVE: []
|
|
1786
|
+
end
|
|
1787
|
+
|
|
1639
1788
|
class RestoreAccessBackupVaultListMember
|
|
1640
1789
|
attr_accessor restore_access_backup_vault_arn: ::String
|
|
1641
1790
|
attr_accessor creation_date: ::Time
|
|
@@ -1678,6 +1827,8 @@ module Aws::Backup
|
|
|
1678
1827
|
attr_accessor created_resource_arn: ::String
|
|
1679
1828
|
attr_accessor resource_type: ::String
|
|
1680
1829
|
attr_accessor recovery_point_creation_date: ::Time
|
|
1830
|
+
attr_accessor is_parent: bool
|
|
1831
|
+
attr_accessor parent_job_id: ::String
|
|
1681
1832
|
attr_accessor created_by: Types::RestoreJobCreator
|
|
1682
1833
|
attr_accessor validation_status: ("FAILED" | "SUCCESSFUL" | "TIMED_OUT" | "VALIDATING")
|
|
1683
1834
|
attr_accessor validation_status_message: ::String
|
|
@@ -1789,6 +1940,77 @@ module Aws::Backup
|
|
|
1789
1940
|
SENSITIVE: [:requester_comment]
|
|
1790
1941
|
end
|
|
1791
1942
|
|
|
1943
|
+
class ScanAction
|
|
1944
|
+
attr_accessor malware_scanner: ("GUARDDUTY")
|
|
1945
|
+
attr_accessor scan_mode: ("FULL_SCAN" | "INCREMENTAL_SCAN")
|
|
1946
|
+
SENSITIVE: []
|
|
1947
|
+
end
|
|
1948
|
+
|
|
1949
|
+
class ScanJob
|
|
1950
|
+
attr_accessor account_id: ::String
|
|
1951
|
+
attr_accessor backup_vault_arn: ::String
|
|
1952
|
+
attr_accessor backup_vault_name: ::String
|
|
1953
|
+
attr_accessor completion_date: ::Time
|
|
1954
|
+
attr_accessor created_by: Types::ScanJobCreator
|
|
1955
|
+
attr_accessor creation_date: ::Time
|
|
1956
|
+
attr_accessor iam_role_arn: ::String
|
|
1957
|
+
attr_accessor malware_scanner: ("GUARDDUTY")
|
|
1958
|
+
attr_accessor recovery_point_arn: ::String
|
|
1959
|
+
attr_accessor resource_arn: ::String
|
|
1960
|
+
attr_accessor resource_name: ::String
|
|
1961
|
+
attr_accessor resource_type: ("EBS" | "EC2" | "S3")
|
|
1962
|
+
attr_accessor scan_base_recovery_point_arn: ::String
|
|
1963
|
+
attr_accessor scan_id: ::String
|
|
1964
|
+
attr_accessor scan_job_id: ::String
|
|
1965
|
+
attr_accessor scan_mode: ("FULL_SCAN" | "INCREMENTAL_SCAN")
|
|
1966
|
+
attr_accessor scan_result: Types::ScanResultInfo
|
|
1967
|
+
attr_accessor scanner_role_arn: ::String
|
|
1968
|
+
attr_accessor state: ("CANCELED" | "COMPLETED" | "COMPLETED_WITH_ISSUES" | "CREATED" | "FAILED" | "RUNNING")
|
|
1969
|
+
attr_accessor status_message: ::String
|
|
1970
|
+
SENSITIVE: []
|
|
1971
|
+
end
|
|
1972
|
+
|
|
1973
|
+
class ScanJobCreator
|
|
1974
|
+
attr_accessor backup_plan_arn: ::String
|
|
1975
|
+
attr_accessor backup_plan_id: ::String
|
|
1976
|
+
attr_accessor backup_plan_version: ::String
|
|
1977
|
+
attr_accessor backup_rule_id: ::String
|
|
1978
|
+
SENSITIVE: []
|
|
1979
|
+
end
|
|
1980
|
+
|
|
1981
|
+
class ScanJobSummary
|
|
1982
|
+
attr_accessor region: ::String
|
|
1983
|
+
attr_accessor account_id: ::String
|
|
1984
|
+
attr_accessor state: ("CREATED" | "COMPLETED" | "COMPLETED_WITH_ISSUES" | "RUNNING" | "FAILED" | "CANCELED" | "AGGREGATE_ALL" | "ANY")
|
|
1985
|
+
attr_accessor resource_type: ::String
|
|
1986
|
+
attr_accessor count: ::Integer
|
|
1987
|
+
attr_accessor start_time: ::Time
|
|
1988
|
+
attr_accessor end_time: ::Time
|
|
1989
|
+
attr_accessor malware_scanner: ("GUARDDUTY")
|
|
1990
|
+
attr_accessor scan_result_status: ("NO_THREATS_FOUND" | "THREATS_FOUND")
|
|
1991
|
+
SENSITIVE: []
|
|
1992
|
+
end
|
|
1993
|
+
|
|
1994
|
+
class ScanResult
|
|
1995
|
+
attr_accessor malware_scanner: ("GUARDDUTY")
|
|
1996
|
+
attr_accessor scan_job_state: ("COMPLETED" | "COMPLETED_WITH_ISSUES" | "FAILED" | "CANCELED")
|
|
1997
|
+
attr_accessor last_scan_timestamp: ::Time
|
|
1998
|
+
attr_accessor findings: ::Array[("MALWARE")]
|
|
1999
|
+
SENSITIVE: []
|
|
2000
|
+
end
|
|
2001
|
+
|
|
2002
|
+
class ScanResultInfo
|
|
2003
|
+
attr_accessor scan_result_status: ("NO_THREATS_FOUND" | "THREATS_FOUND")
|
|
2004
|
+
SENSITIVE: []
|
|
2005
|
+
end
|
|
2006
|
+
|
|
2007
|
+
class ScanSetting
|
|
2008
|
+
attr_accessor malware_scanner: ("GUARDDUTY")
|
|
2009
|
+
attr_accessor resource_types: ::Array[::String]
|
|
2010
|
+
attr_accessor scanner_role_arn: ::String
|
|
2011
|
+
SENSITIVE: []
|
|
2012
|
+
end
|
|
2013
|
+
|
|
1792
2014
|
class ScheduledPlanExecutionMember
|
|
1793
2015
|
attr_accessor execution_time: ::Time
|
|
1794
2016
|
attr_accessor rule_id: ::String
|
|
@@ -1806,6 +2028,7 @@ module Aws::Backup
|
|
|
1806
2028
|
|
|
1807
2029
|
class StartBackupJobInput
|
|
1808
2030
|
attr_accessor backup_vault_name: ::String
|
|
2031
|
+
attr_accessor logically_air_gapped_backup_vault_arn: ::String
|
|
1809
2032
|
attr_accessor resource_arn: ::String
|
|
1810
2033
|
attr_accessor iam_role_arn: ::String
|
|
1811
2034
|
attr_accessor idempotency_token: ::String
|
|
@@ -1869,6 +2092,24 @@ module Aws::Backup
|
|
|
1869
2092
|
SENSITIVE: []
|
|
1870
2093
|
end
|
|
1871
2094
|
|
|
2095
|
+
class StartScanJobInput
|
|
2096
|
+
attr_accessor backup_vault_name: ::String
|
|
2097
|
+
attr_accessor iam_role_arn: ::String
|
|
2098
|
+
attr_accessor idempotency_token: ::String
|
|
2099
|
+
attr_accessor malware_scanner: ("GUARDDUTY")
|
|
2100
|
+
attr_accessor recovery_point_arn: ::String
|
|
2101
|
+
attr_accessor scan_base_recovery_point_arn: ::String
|
|
2102
|
+
attr_accessor scan_mode: ("FULL_SCAN" | "INCREMENTAL_SCAN")
|
|
2103
|
+
attr_accessor scanner_role_arn: ::String
|
|
2104
|
+
SENSITIVE: []
|
|
2105
|
+
end
|
|
2106
|
+
|
|
2107
|
+
class StartScanJobOutput
|
|
2108
|
+
attr_accessor creation_date: ::Time
|
|
2109
|
+
attr_accessor scan_job_id: ::String
|
|
2110
|
+
SENSITIVE: []
|
|
2111
|
+
end
|
|
2112
|
+
|
|
1872
2113
|
class StopBackupJobInput
|
|
1873
2114
|
attr_accessor backup_job_id: ::String
|
|
1874
2115
|
SENSITIVE: []
|
|
@@ -1880,6 +2121,39 @@ module Aws::Backup
|
|
|
1880
2121
|
SENSITIVE: [:tags]
|
|
1881
2122
|
end
|
|
1882
2123
|
|
|
2124
|
+
class TieringConfiguration
|
|
2125
|
+
attr_accessor tiering_configuration_name: ::String
|
|
2126
|
+
attr_accessor tiering_configuration_arn: ::String
|
|
2127
|
+
attr_accessor backup_vault_name: ::String
|
|
2128
|
+
attr_accessor resource_selection: ::Array[Types::ResourceSelection]
|
|
2129
|
+
attr_accessor creator_request_id: ::String
|
|
2130
|
+
attr_accessor creation_time: ::Time
|
|
2131
|
+
attr_accessor last_updated_time: ::Time
|
|
2132
|
+
SENSITIVE: []
|
|
2133
|
+
end
|
|
2134
|
+
|
|
2135
|
+
class TieringConfigurationInputForCreate
|
|
2136
|
+
attr_accessor tiering_configuration_name: ::String
|
|
2137
|
+
attr_accessor backup_vault_name: ::String
|
|
2138
|
+
attr_accessor resource_selection: ::Array[Types::ResourceSelection]
|
|
2139
|
+
SENSITIVE: []
|
|
2140
|
+
end
|
|
2141
|
+
|
|
2142
|
+
class TieringConfigurationInputForUpdate
|
|
2143
|
+
attr_accessor resource_selection: ::Array[Types::ResourceSelection]
|
|
2144
|
+
attr_accessor backup_vault_name: ::String
|
|
2145
|
+
SENSITIVE: []
|
|
2146
|
+
end
|
|
2147
|
+
|
|
2148
|
+
class TieringConfigurationsListMember
|
|
2149
|
+
attr_accessor tiering_configuration_arn: ::String
|
|
2150
|
+
attr_accessor tiering_configuration_name: ::String
|
|
2151
|
+
attr_accessor backup_vault_name: ::String
|
|
2152
|
+
attr_accessor creation_time: ::Time
|
|
2153
|
+
attr_accessor last_updated_time: ::Time
|
|
2154
|
+
SENSITIVE: []
|
|
2155
|
+
end
|
|
2156
|
+
|
|
1883
2157
|
class UntagResourceInput
|
|
1884
2158
|
attr_accessor resource_arn: ::String
|
|
1885
2159
|
attr_accessor tag_key_list: ::Array[::String]
|
|
@@ -1898,6 +2172,7 @@ module Aws::Backup
|
|
|
1898
2172
|
attr_accessor creation_date: ::Time
|
|
1899
2173
|
attr_accessor version_id: ::String
|
|
1900
2174
|
attr_accessor advanced_backup_settings: ::Array[Types::AdvancedBackupSetting]
|
|
2175
|
+
attr_accessor scan_settings: ::Array[Types::ScanSetting]
|
|
1901
2176
|
SENSITIVE: []
|
|
1902
2177
|
end
|
|
1903
2178
|
|
|
@@ -2003,5 +2278,19 @@ module Aws::Backup
|
|
|
2003
2278
|
attr_accessor update_time: ::Time
|
|
2004
2279
|
SENSITIVE: []
|
|
2005
2280
|
end
|
|
2281
|
+
|
|
2282
|
+
class UpdateTieringConfigurationInput
|
|
2283
|
+
attr_accessor tiering_configuration_name: ::String
|
|
2284
|
+
attr_accessor tiering_configuration: Types::TieringConfigurationInputForUpdate
|
|
2285
|
+
SENSITIVE: []
|
|
2286
|
+
end
|
|
2287
|
+
|
|
2288
|
+
class UpdateTieringConfigurationOutput
|
|
2289
|
+
attr_accessor tiering_configuration_arn: ::String
|
|
2290
|
+
attr_accessor tiering_configuration_name: ::String
|
|
2291
|
+
attr_accessor creation_time: ::Time
|
|
2292
|
+
attr_accessor last_updated_time: ::Time
|
|
2293
|
+
SENSITIVE: []
|
|
2294
|
+
end
|
|
2006
2295
|
end
|
|
2007
2296
|
end
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.104.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.239.1
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.239.1
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|