aws-sdk-backupsearch 1.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-backupsearch/client.rb +1187 -0
- data/lib/aws-sdk-backupsearch/client_api.rb +600 -0
- data/lib/aws-sdk-backupsearch/customizations.rb +0 -0
- data/lib/aws-sdk-backupsearch/endpoint_parameters.rb +59 -0
- data/lib/aws-sdk-backupsearch/endpoint_provider.rb +35 -0
- data/lib/aws-sdk-backupsearch/endpoints.rb +20 -0
- data/lib/aws-sdk-backupsearch/errors.rb +222 -0
- data/lib/aws-sdk-backupsearch/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-backupsearch/resource.rb +26 -0
- data/lib/aws-sdk-backupsearch/types.rb +1468 -0
- data/lib/aws-sdk-backupsearch/waiters.rb +15 -0
- data/lib/aws-sdk-backupsearch.rb +62 -0
- data/sig/client.rbs +319 -0
- data/sig/errors.rbs +49 -0
- data/sig/resource.rbs +82 -0
- data/sig/types.rbs +375 -0
- data/sig/waiters.rbs +13 -0
- metadata +100 -0
data/sig/types.rbs
ADDED
@@ -0,0 +1,375 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::BackupSearch
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class BackupCreationTimeFilter
|
17
|
+
attr_accessor created_after: ::Time
|
18
|
+
attr_accessor created_before: ::Time
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class ConflictException
|
23
|
+
attr_accessor message: ::String
|
24
|
+
attr_accessor resource_id: ::String
|
25
|
+
attr_accessor resource_type: ::String
|
26
|
+
SENSITIVE: []
|
27
|
+
end
|
28
|
+
|
29
|
+
class CurrentSearchProgress
|
30
|
+
attr_accessor recovery_points_scanned_count: ::Integer
|
31
|
+
attr_accessor items_scanned_count: ::Integer
|
32
|
+
attr_accessor items_matched_count: ::Integer
|
33
|
+
SENSITIVE: []
|
34
|
+
end
|
35
|
+
|
36
|
+
class EBSItemFilter
|
37
|
+
attr_accessor file_paths: ::Array[Types::StringCondition]
|
38
|
+
attr_accessor sizes: ::Array[Types::LongCondition]
|
39
|
+
attr_accessor creation_times: ::Array[Types::TimeCondition]
|
40
|
+
attr_accessor last_modification_times: ::Array[Types::TimeCondition]
|
41
|
+
SENSITIVE: []
|
42
|
+
end
|
43
|
+
|
44
|
+
class EBSResultItem
|
45
|
+
attr_accessor backup_resource_arn: ::String
|
46
|
+
attr_accessor source_resource_arn: ::String
|
47
|
+
attr_accessor backup_vault_name: ::String
|
48
|
+
attr_accessor file_system_identifier: ::String
|
49
|
+
attr_accessor file_path: ::String
|
50
|
+
attr_accessor file_size: ::Integer
|
51
|
+
attr_accessor creation_time: ::Time
|
52
|
+
attr_accessor last_modified_time: ::Time
|
53
|
+
SENSITIVE: [:file_path]
|
54
|
+
end
|
55
|
+
|
56
|
+
class ExportJobSummary
|
57
|
+
attr_accessor export_job_identifier: ::String
|
58
|
+
attr_accessor export_job_arn: ::String
|
59
|
+
attr_accessor status: ("RUNNING" | "FAILED" | "COMPLETED")
|
60
|
+
attr_accessor creation_time: ::Time
|
61
|
+
attr_accessor completion_time: ::Time
|
62
|
+
attr_accessor status_message: ::String
|
63
|
+
attr_accessor search_job_arn: ::String
|
64
|
+
SENSITIVE: []
|
65
|
+
end
|
66
|
+
|
67
|
+
class ExportSpecification
|
68
|
+
attr_accessor s3_export_specification: Types::S3ExportSpecification
|
69
|
+
attr_accessor unknown: untyped
|
70
|
+
SENSITIVE: []
|
71
|
+
|
72
|
+
class S3ExportSpecification < ExportSpecification
|
73
|
+
end
|
74
|
+
class Unknown < ExportSpecification
|
75
|
+
end
|
76
|
+
end
|
77
|
+
|
78
|
+
class GetSearchJobInput
|
79
|
+
attr_accessor search_job_identifier: ::String
|
80
|
+
SENSITIVE: []
|
81
|
+
end
|
82
|
+
|
83
|
+
class GetSearchJobOutput
|
84
|
+
attr_accessor name: ::String
|
85
|
+
attr_accessor search_scope_summary: Types::SearchScopeSummary
|
86
|
+
attr_accessor current_search_progress: Types::CurrentSearchProgress
|
87
|
+
attr_accessor status_message: ::String
|
88
|
+
attr_accessor encryption_key_arn: ::String
|
89
|
+
attr_accessor completion_time: ::Time
|
90
|
+
attr_accessor status: ("RUNNING" | "COMPLETED" | "STOPPING" | "STOPPED" | "FAILED")
|
91
|
+
attr_accessor search_scope: Types::SearchScope
|
92
|
+
attr_accessor item_filters: Types::ItemFilters
|
93
|
+
attr_accessor creation_time: ::Time
|
94
|
+
attr_accessor search_job_identifier: ::String
|
95
|
+
attr_accessor search_job_arn: ::String
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class GetSearchResultExportJobInput
|
100
|
+
attr_accessor export_job_identifier: ::String
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class GetSearchResultExportJobOutput
|
105
|
+
attr_accessor export_job_identifier: ::String
|
106
|
+
attr_accessor export_job_arn: ::String
|
107
|
+
attr_accessor status: ("RUNNING" | "FAILED" | "COMPLETED")
|
108
|
+
attr_accessor creation_time: ::Time
|
109
|
+
attr_accessor completion_time: ::Time
|
110
|
+
attr_accessor status_message: ::String
|
111
|
+
attr_accessor export_specification: Types::ExportSpecification
|
112
|
+
attr_accessor search_job_arn: ::String
|
113
|
+
SENSITIVE: []
|
114
|
+
end
|
115
|
+
|
116
|
+
class InternalServerException
|
117
|
+
attr_accessor message: ::String
|
118
|
+
attr_accessor retry_after_seconds: ::Integer
|
119
|
+
SENSITIVE: []
|
120
|
+
end
|
121
|
+
|
122
|
+
class ItemFilters
|
123
|
+
attr_accessor s3_item_filters: ::Array[Types::S3ItemFilter]
|
124
|
+
attr_accessor ebs_item_filters: ::Array[Types::EBSItemFilter]
|
125
|
+
SENSITIVE: []
|
126
|
+
end
|
127
|
+
|
128
|
+
class ListSearchJobBackupsInput
|
129
|
+
attr_accessor search_job_identifier: ::String
|
130
|
+
attr_accessor next_token: ::String
|
131
|
+
attr_accessor max_results: ::Integer
|
132
|
+
SENSITIVE: []
|
133
|
+
end
|
134
|
+
|
135
|
+
class ListSearchJobBackupsOutput
|
136
|
+
attr_accessor results: ::Array[Types::SearchJobBackupsResult]
|
137
|
+
attr_accessor next_token: ::String
|
138
|
+
SENSITIVE: []
|
139
|
+
end
|
140
|
+
|
141
|
+
class ListSearchJobResultsInput
|
142
|
+
attr_accessor search_job_identifier: ::String
|
143
|
+
attr_accessor next_token: ::String
|
144
|
+
attr_accessor max_results: ::Integer
|
145
|
+
SENSITIVE: []
|
146
|
+
end
|
147
|
+
|
148
|
+
class ListSearchJobResultsOutput
|
149
|
+
attr_accessor results: ::Array[Types::ResultItem]
|
150
|
+
attr_accessor next_token: ::String
|
151
|
+
SENSITIVE: []
|
152
|
+
end
|
153
|
+
|
154
|
+
class ListSearchJobsInput
|
155
|
+
attr_accessor by_status: ("RUNNING" | "COMPLETED" | "STOPPING" | "STOPPED" | "FAILED")
|
156
|
+
attr_accessor next_token: ::String
|
157
|
+
attr_accessor max_results: ::Integer
|
158
|
+
SENSITIVE: []
|
159
|
+
end
|
160
|
+
|
161
|
+
class ListSearchJobsOutput
|
162
|
+
attr_accessor search_jobs: ::Array[Types::SearchJobSummary]
|
163
|
+
attr_accessor next_token: ::String
|
164
|
+
SENSITIVE: []
|
165
|
+
end
|
166
|
+
|
167
|
+
class ListSearchResultExportJobsInput
|
168
|
+
attr_accessor status: ("RUNNING" | "FAILED" | "COMPLETED")
|
169
|
+
attr_accessor search_job_identifier: ::String
|
170
|
+
attr_accessor next_token: ::String
|
171
|
+
attr_accessor max_results: ::Integer
|
172
|
+
SENSITIVE: []
|
173
|
+
end
|
174
|
+
|
175
|
+
class ListSearchResultExportJobsOutput
|
176
|
+
attr_accessor export_jobs: ::Array[Types::ExportJobSummary]
|
177
|
+
attr_accessor next_token: ::String
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
181
|
+
class ListTagsForResourceRequest
|
182
|
+
attr_accessor resource_arn: ::String
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class ListTagsForResourceResponse
|
187
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class LongCondition
|
192
|
+
attr_accessor value: ::Integer
|
193
|
+
attr_accessor operator: ("EQUALS_TO" | "NOT_EQUALS_TO" | "LESS_THAN_EQUAL_TO" | "GREATER_THAN_EQUAL_TO")
|
194
|
+
SENSITIVE: []
|
195
|
+
end
|
196
|
+
|
197
|
+
class ResourceNotFoundException
|
198
|
+
attr_accessor message: ::String
|
199
|
+
attr_accessor resource_id: ::String
|
200
|
+
attr_accessor resource_type: ::String
|
201
|
+
SENSITIVE: []
|
202
|
+
end
|
203
|
+
|
204
|
+
class ResultItem
|
205
|
+
attr_accessor s3_result_item: Types::S3ResultItem
|
206
|
+
attr_accessor ebs_result_item: Types::EBSResultItem
|
207
|
+
attr_accessor unknown: untyped
|
208
|
+
SENSITIVE: []
|
209
|
+
|
210
|
+
class S3ResultItem < ResultItem
|
211
|
+
end
|
212
|
+
class EbsResultItem < ResultItem
|
213
|
+
end
|
214
|
+
class Unknown < ResultItem
|
215
|
+
end
|
216
|
+
end
|
217
|
+
|
218
|
+
class S3ExportSpecification
|
219
|
+
attr_accessor destination_bucket: ::String
|
220
|
+
attr_accessor destination_prefix: ::String
|
221
|
+
SENSITIVE: []
|
222
|
+
end
|
223
|
+
|
224
|
+
class S3ItemFilter
|
225
|
+
attr_accessor object_keys: ::Array[Types::StringCondition]
|
226
|
+
attr_accessor sizes: ::Array[Types::LongCondition]
|
227
|
+
attr_accessor creation_times: ::Array[Types::TimeCondition]
|
228
|
+
attr_accessor version_ids: ::Array[Types::StringCondition]
|
229
|
+
attr_accessor etags: ::Array[Types::StringCondition]
|
230
|
+
SENSITIVE: []
|
231
|
+
end
|
232
|
+
|
233
|
+
class S3ResultItem
|
234
|
+
attr_accessor backup_resource_arn: ::String
|
235
|
+
attr_accessor source_resource_arn: ::String
|
236
|
+
attr_accessor backup_vault_name: ::String
|
237
|
+
attr_accessor object_key: ::String
|
238
|
+
attr_accessor object_size: ::Integer
|
239
|
+
attr_accessor creation_time: ::Time
|
240
|
+
attr_accessor etag: ::String
|
241
|
+
attr_accessor version_id: ::String
|
242
|
+
SENSITIVE: [:object_key]
|
243
|
+
end
|
244
|
+
|
245
|
+
class SearchJobBackupsResult
|
246
|
+
attr_accessor status: ("RUNNING" | "COMPLETED" | "STOPPING" | "STOPPED" | "FAILED")
|
247
|
+
attr_accessor status_message: ::String
|
248
|
+
attr_accessor resource_type: ("S3" | "EBS")
|
249
|
+
attr_accessor backup_resource_arn: ::String
|
250
|
+
attr_accessor source_resource_arn: ::String
|
251
|
+
attr_accessor index_creation_time: ::Time
|
252
|
+
attr_accessor backup_creation_time: ::Time
|
253
|
+
SENSITIVE: []
|
254
|
+
end
|
255
|
+
|
256
|
+
class SearchJobSummary
|
257
|
+
attr_accessor search_job_identifier: ::String
|
258
|
+
attr_accessor search_job_arn: ::String
|
259
|
+
attr_accessor name: ::String
|
260
|
+
attr_accessor status: ("RUNNING" | "COMPLETED" | "STOPPING" | "STOPPED" | "FAILED")
|
261
|
+
attr_accessor creation_time: ::Time
|
262
|
+
attr_accessor completion_time: ::Time
|
263
|
+
attr_accessor search_scope_summary: Types::SearchScopeSummary
|
264
|
+
attr_accessor status_message: ::String
|
265
|
+
SENSITIVE: []
|
266
|
+
end
|
267
|
+
|
268
|
+
class SearchScope
|
269
|
+
attr_accessor backup_resource_types: ::Array[("S3" | "EBS")]
|
270
|
+
attr_accessor backup_resource_creation_time: Types::BackupCreationTimeFilter
|
271
|
+
attr_accessor source_resource_arns: ::Array[::String]
|
272
|
+
attr_accessor backup_resource_arns: ::Array[::String]
|
273
|
+
attr_accessor backup_resource_tags: ::Hash[::String, ::String]
|
274
|
+
SENSITIVE: []
|
275
|
+
end
|
276
|
+
|
277
|
+
class SearchScopeSummary
|
278
|
+
attr_accessor total_recovery_points_to_scan_count: ::Integer
|
279
|
+
attr_accessor total_items_to_scan_count: ::Integer
|
280
|
+
SENSITIVE: []
|
281
|
+
end
|
282
|
+
|
283
|
+
class ServiceQuotaExceededException
|
284
|
+
attr_accessor message: ::String
|
285
|
+
attr_accessor resource_id: ::String
|
286
|
+
attr_accessor resource_type: ::String
|
287
|
+
attr_accessor service_code: ::String
|
288
|
+
attr_accessor quota_code: ::String
|
289
|
+
SENSITIVE: []
|
290
|
+
end
|
291
|
+
|
292
|
+
class StartSearchJobInput
|
293
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
294
|
+
attr_accessor name: ::String
|
295
|
+
attr_accessor encryption_key_arn: ::String
|
296
|
+
attr_accessor client_token: ::String
|
297
|
+
attr_accessor search_scope: Types::SearchScope
|
298
|
+
attr_accessor item_filters: Types::ItemFilters
|
299
|
+
SENSITIVE: []
|
300
|
+
end
|
301
|
+
|
302
|
+
class StartSearchJobOutput
|
303
|
+
attr_accessor search_job_arn: ::String
|
304
|
+
attr_accessor creation_time: ::Time
|
305
|
+
attr_accessor search_job_identifier: ::String
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class StartSearchResultExportJobInput
|
310
|
+
attr_accessor search_job_identifier: ::String
|
311
|
+
attr_accessor export_specification: Types::ExportSpecification
|
312
|
+
attr_accessor client_token: ::String
|
313
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
314
|
+
attr_accessor role_arn: ::String
|
315
|
+
SENSITIVE: []
|
316
|
+
end
|
317
|
+
|
318
|
+
class StartSearchResultExportJobOutput
|
319
|
+
attr_accessor export_job_arn: ::String
|
320
|
+
attr_accessor export_job_identifier: ::String
|
321
|
+
SENSITIVE: []
|
322
|
+
end
|
323
|
+
|
324
|
+
class StopSearchJobInput
|
325
|
+
attr_accessor search_job_identifier: ::String
|
326
|
+
SENSITIVE: []
|
327
|
+
end
|
328
|
+
|
329
|
+
class StopSearchJobOutput < Aws::EmptyStructure
|
330
|
+
end
|
331
|
+
|
332
|
+
class StringCondition
|
333
|
+
attr_accessor value: ::String
|
334
|
+
attr_accessor operator: ("EQUALS_TO" | "NOT_EQUALS_TO" | "CONTAINS" | "DOES_NOT_CONTAIN" | "BEGINS_WITH" | "ENDS_WITH" | "DOES_NOT_BEGIN_WITH" | "DOES_NOT_END_WITH")
|
335
|
+
SENSITIVE: []
|
336
|
+
end
|
337
|
+
|
338
|
+
class TagResourceRequest
|
339
|
+
attr_accessor resource_arn: ::String
|
340
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
341
|
+
SENSITIVE: []
|
342
|
+
end
|
343
|
+
|
344
|
+
class TagResourceResponse < Aws::EmptyStructure
|
345
|
+
end
|
346
|
+
|
347
|
+
class ThrottlingException
|
348
|
+
attr_accessor message: ::String
|
349
|
+
attr_accessor service_code: ::String
|
350
|
+
attr_accessor quota_code: ::String
|
351
|
+
attr_accessor retry_after_seconds: ::Integer
|
352
|
+
SENSITIVE: []
|
353
|
+
end
|
354
|
+
|
355
|
+
class TimeCondition
|
356
|
+
attr_accessor value: ::Time
|
357
|
+
attr_accessor operator: ("EQUALS_TO" | "NOT_EQUALS_TO" | "LESS_THAN_EQUAL_TO" | "GREATER_THAN_EQUAL_TO")
|
358
|
+
SENSITIVE: []
|
359
|
+
end
|
360
|
+
|
361
|
+
class UntagResourceRequest
|
362
|
+
attr_accessor resource_arn: ::String
|
363
|
+
attr_accessor tag_keys: ::Array[::String]
|
364
|
+
SENSITIVE: []
|
365
|
+
end
|
366
|
+
|
367
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
368
|
+
end
|
369
|
+
|
370
|
+
class ValidationException
|
371
|
+
attr_accessor message: ::String
|
372
|
+
SENSITIVE: []
|
373
|
+
end
|
374
|
+
end
|
375
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,13 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws
|
9
|
+
module BackupSearch
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
metadata
ADDED
@@ -0,0 +1,100 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: aws-sdk-backupsearch
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 1.0.0
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Amazon Web Services
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2024-12-17 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: aws-sdk-core
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - "~>"
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '3'
|
20
|
+
- - ">="
|
21
|
+
- !ruby/object:Gem::Version
|
22
|
+
version: 3.210.0
|
23
|
+
type: :runtime
|
24
|
+
prerelease: false
|
25
|
+
version_requirements: !ruby/object:Gem::Requirement
|
26
|
+
requirements:
|
27
|
+
- - "~>"
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '3'
|
30
|
+
- - ">="
|
31
|
+
- !ruby/object:Gem::Version
|
32
|
+
version: 3.210.0
|
33
|
+
- !ruby/object:Gem::Dependency
|
34
|
+
name: aws-sigv4
|
35
|
+
requirement: !ruby/object:Gem::Requirement
|
36
|
+
requirements:
|
37
|
+
- - "~>"
|
38
|
+
- !ruby/object:Gem::Version
|
39
|
+
version: '1.5'
|
40
|
+
type: :runtime
|
41
|
+
prerelease: false
|
42
|
+
version_requirements: !ruby/object:Gem::Requirement
|
43
|
+
requirements:
|
44
|
+
- - "~>"
|
45
|
+
- !ruby/object:Gem::Version
|
46
|
+
version: '1.5'
|
47
|
+
description: Official AWS Ruby gem for AWS Backup Search. This gem is part of the
|
48
|
+
AWS SDK for Ruby.
|
49
|
+
email:
|
50
|
+
- aws-dr-rubygems@amazon.com
|
51
|
+
executables: []
|
52
|
+
extensions: []
|
53
|
+
extra_rdoc_files: []
|
54
|
+
files:
|
55
|
+
- CHANGELOG.md
|
56
|
+
- LICENSE.txt
|
57
|
+
- VERSION
|
58
|
+
- lib/aws-sdk-backupsearch.rb
|
59
|
+
- lib/aws-sdk-backupsearch/client.rb
|
60
|
+
- lib/aws-sdk-backupsearch/client_api.rb
|
61
|
+
- lib/aws-sdk-backupsearch/customizations.rb
|
62
|
+
- lib/aws-sdk-backupsearch/endpoint_parameters.rb
|
63
|
+
- lib/aws-sdk-backupsearch/endpoint_provider.rb
|
64
|
+
- lib/aws-sdk-backupsearch/endpoints.rb
|
65
|
+
- lib/aws-sdk-backupsearch/errors.rb
|
66
|
+
- lib/aws-sdk-backupsearch/plugins/endpoints.rb
|
67
|
+
- lib/aws-sdk-backupsearch/resource.rb
|
68
|
+
- lib/aws-sdk-backupsearch/types.rb
|
69
|
+
- lib/aws-sdk-backupsearch/waiters.rb
|
70
|
+
- sig/client.rbs
|
71
|
+
- sig/errors.rbs
|
72
|
+
- sig/resource.rbs
|
73
|
+
- sig/types.rbs
|
74
|
+
- sig/waiters.rbs
|
75
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
76
|
+
licenses:
|
77
|
+
- Apache-2.0
|
78
|
+
metadata:
|
79
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-backupsearch
|
80
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-backupsearch/CHANGELOG.md
|
81
|
+
post_install_message:
|
82
|
+
rdoc_options: []
|
83
|
+
require_paths:
|
84
|
+
- lib
|
85
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
86
|
+
requirements:
|
87
|
+
- - ">="
|
88
|
+
- !ruby/object:Gem::Version
|
89
|
+
version: '2.5'
|
90
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
91
|
+
requirements:
|
92
|
+
- - ">="
|
93
|
+
- !ruby/object:Gem::Version
|
94
|
+
version: '0'
|
95
|
+
requirements: []
|
96
|
+
rubygems_version: 3.4.10
|
97
|
+
signing_key:
|
98
|
+
specification_version: 4
|
99
|
+
summary: AWS SDK for Ruby - AWS Backup Search
|
100
|
+
test_files: []
|