aws-sdk-backup 1.101.0 → 1.103.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/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
 
@@ -124,6 +133,7 @@ module Aws::Backup
124
133
  attr_accessor enable_continuous_backup: bool
125
134
  attr_accessor schedule_expression_timezone: ::String
126
135
  attr_accessor index_actions: ::Array[Types::IndexAction]
136
+ attr_accessor scan_actions: ::Array[Types::ScanAction]
127
137
  SENSITIVE: [:recovery_point_tags]
128
138
  end
129
139
 
@@ -140,6 +150,7 @@ module Aws::Backup
140
150
  attr_accessor enable_continuous_backup: bool
141
151
  attr_accessor schedule_expression_timezone: ::String
142
152
  attr_accessor index_actions: ::Array[Types::IndexAction]
153
+ attr_accessor scan_actions: ::Array[Types::ScanAction]
143
154
  SENSITIVE: [:recovery_point_tags]
144
155
  end
145
156
 
@@ -448,6 +459,20 @@ module Aws::Backup
448
459
  SENSITIVE: []
449
460
  end
450
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
+
451
476
  class DateRange
452
477
  attr_accessor from_date: ::Time
453
478
  attr_accessor to_date: ::Time
@@ -520,6 +545,14 @@ module Aws::Backup
520
545
  SENSITIVE: []
521
546
  end
522
547
 
548
+ class DeleteTieringConfigurationInput
549
+ attr_accessor tiering_configuration_name: ::String
550
+ SENSITIVE: []
551
+ end
552
+
553
+ class DeleteTieringConfigurationOutput < Aws::EmptyStructure
554
+ end
555
+
523
556
  class DependencyFailureException
524
557
  attr_accessor code: ::String
525
558
  attr_accessor message: ::String
@@ -686,6 +719,7 @@ module Aws::Backup
686
719
  attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
687
720
  attr_accessor index_status_message: ::String
688
721
  attr_accessor encryption_key_type: ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
722
+ attr_accessor scan_results: ::Array[Types::ScanResult]
689
723
  SENSITIVE: []
690
724
  end
691
725
 
@@ -750,6 +784,35 @@ module Aws::Backup
750
784
  SENSITIVE: []
751
785
  end
752
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
813
+ SENSITIVE: []
814
+ end
815
+
753
816
  class DisassociateBackupVaultMpaApprovalTeamInput
754
817
  attr_accessor backup_vault_name: ::String
755
818
  attr_accessor requester_comment: ::String
@@ -978,6 +1041,16 @@ module Aws::Backup
978
1041
  SENSITIVE: []
979
1042
  end
980
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
+
981
1054
  class IndexAction
982
1055
  attr_accessor resource_types: ::Array[::String]
983
1056
  SENSITIVE: []
@@ -1453,6 +1526,47 @@ module Aws::Backup
1453
1526
  SENSITIVE: []
1454
1527
  end
1455
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
+
1456
1570
  class ListTagsInput
1457
1571
  attr_accessor resource_arn: ::String
1458
1572
  attr_accessor next_token: ::String
@@ -1466,6 +1580,18 @@ module Aws::Backup
1466
1580
  SENSITIVE: [:tags]
1467
1581
  end
1468
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
+
1469
1595
  class MissingParameterValueException
1470
1596
  attr_accessor code: ::String
1471
1597
  attr_accessor message: ::String
@@ -1546,6 +1672,7 @@ module Aws::Backup
1546
1672
  attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
1547
1673
  attr_accessor index_status_message: ::String
1548
1674
  attr_accessor encryption_key_type: ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
1675
+ attr_accessor aggregated_scan_result: Types::AggregatedScanResult
1549
1676
  SENSITIVE: []
1550
1677
  end
1551
1678
 
@@ -1564,6 +1691,7 @@ module Aws::Backup
1564
1691
  attr_accessor index_status: ("PENDING" | "ACTIVE" | "FAILED" | "DELETING")
1565
1692
  attr_accessor index_status_message: ::String
1566
1693
  attr_accessor encryption_key_type: ("AWS_OWNED_KMS_KEY" | "CUSTOMER_MANAGED_KMS_KEY")
1694
+ attr_accessor aggregated_scan_result: Types::AggregatedScanResult
1567
1695
  SENSITIVE: []
1568
1696
  end
1569
1697
 
@@ -1650,6 +1778,13 @@ module Aws::Backup
1650
1778
  SENSITIVE: []
1651
1779
  end
1652
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
+
1653
1788
  class RestoreAccessBackupVaultListMember
1654
1789
  attr_accessor restore_access_backup_vault_arn: ::String
1655
1790
  attr_accessor creation_date: ::Time
@@ -1805,6 +1940,77 @@ module Aws::Backup
1805
1940
  SENSITIVE: [:requester_comment]
1806
1941
  end
1807
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
+
1808
2014
  class ScheduledPlanExecutionMember
1809
2015
  attr_accessor execution_time: ::Time
1810
2016
  attr_accessor rule_id: ::String
@@ -1886,6 +2092,24 @@ module Aws::Backup
1886
2092
  SENSITIVE: []
1887
2093
  end
1888
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
+
1889
2113
  class StopBackupJobInput
1890
2114
  attr_accessor backup_job_id: ::String
1891
2115
  SENSITIVE: []
@@ -1897,6 +2121,39 @@ module Aws::Backup
1897
2121
  SENSITIVE: [:tags]
1898
2122
  end
1899
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
+
1900
2157
  class UntagResourceInput
1901
2158
  attr_accessor resource_arn: ::String
1902
2159
  attr_accessor tag_key_list: ::Array[::String]
@@ -1915,6 +2172,7 @@ module Aws::Backup
1915
2172
  attr_accessor creation_date: ::Time
1916
2173
  attr_accessor version_id: ::String
1917
2174
  attr_accessor advanced_backup_settings: ::Array[Types::AdvancedBackupSetting]
2175
+ attr_accessor scan_settings: ::Array[Types::ScanSetting]
1918
2176
  SENSITIVE: []
1919
2177
  end
1920
2178
 
@@ -2020,5 +2278,19 @@ module Aws::Backup
2020
2278
  attr_accessor update_time: ::Time
2021
2279
  SENSITIVE: []
2022
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
2023
2295
  end
2024
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.101.0
4
+ version: 1.103.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services