aws-sdk-importexport 1.16.0 → 1.21.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 +5 -5
- data/lib/aws-sdk-importexport.rb +9 -4
- data/lib/aws-sdk-importexport/client.rb +74 -14
- data/lib/aws-sdk-importexport/client_api.rb +2 -0
- data/lib/aws-sdk-importexport/customizations.rb +1 -0
- data/lib/aws-sdk-importexport/errors.rb +44 -20
- data/lib/aws-sdk-importexport/resource.rb +3 -0
- data/lib/aws-sdk-importexport/types.rb +36 -0
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
|
-
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
2
|
+
SHA256:
|
3
|
+
metadata.gz: 9a164802c92f8bcb41f36235f64a1937bc1f82b7d7f442b5b50c3a28e9ab7056
|
4
|
+
data.tar.gz: d1aed2018e367f3dfa5d5feaaa63c5fee1991b492cca9042081e369142ca0e59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e68ed3c684d79504e1b55500f89afa7588b63d79779b98279ea616f3cb5d04de8a95473f77e247a8d7387d82053930c41251754987379d976fb61b90c5956557
|
7
|
+
data.tar.gz: c425024f49a2b48935b7a627c062e2e7c60cdba54f13cedea80006020b91cafa13ad7d97c18acff8c8546193456a7f6573f0b655fe48898740bd1917d8f7e1e6
|
data/lib/aws-sdk-importexport.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,17 +26,20 @@ require_relative 'aws-sdk-importexport/customizations'
|
|
24
26
|
# methods each accept a hash of request parameters and return a response
|
25
27
|
# structure.
|
26
28
|
#
|
29
|
+
# import_export = Aws::ImportExport::Client.new
|
30
|
+
# resp = import_export.cancel_job(params)
|
31
|
+
#
|
27
32
|
# See {Client} for more information.
|
28
33
|
#
|
29
34
|
# # Errors
|
30
35
|
#
|
31
|
-
# Errors returned from AWS Import/Export
|
32
|
-
# extend {Errors::ServiceError}.
|
36
|
+
# Errors returned from AWS Import/Export are defined in the
|
37
|
+
# {Errors} module and all extend {Errors::ServiceError}.
|
33
38
|
#
|
34
39
|
# begin
|
35
40
|
# # do stuff
|
36
41
|
# rescue Aws::ImportExport::Errors::ServiceError
|
37
|
-
# # rescues all
|
42
|
+
# # rescues all AWS Import/Export API errors
|
38
43
|
# end
|
39
44
|
#
|
40
45
|
# See {Errors} for more information.
|
@@ -42,6 +47,6 @@ require_relative 'aws-sdk-importexport/customizations'
|
|
42
47
|
# @service
|
43
48
|
module Aws::ImportExport
|
44
49
|
|
45
|
-
GEM_VERSION = '1.
|
50
|
+
GEM_VERSION = '1.21.0'
|
46
51
|
|
47
52
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -24,12 +26,25 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
|
24
26
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
25
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
26
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
|
+
require 'aws-sdk-core/plugins/http_checksum.rb'
|
27
30
|
require 'aws-sdk-core/plugins/signature_v2.rb'
|
28
31
|
require 'aws-sdk-core/plugins/protocols/query.rb'
|
29
32
|
|
30
33
|
Aws::Plugins::GlobalConfiguration.add_identifier(:importexport)
|
31
34
|
|
32
35
|
module Aws::ImportExport
|
36
|
+
# An API client for ImportExport. To construct a client, you need to configure a `:region` and `:credentials`.
|
37
|
+
#
|
38
|
+
# client = Aws::ImportExport::Client.new(
|
39
|
+
# region: region_name,
|
40
|
+
# credentials: credentials,
|
41
|
+
# # ...
|
42
|
+
# )
|
43
|
+
#
|
44
|
+
# For details on configuring region and credentials see
|
45
|
+
# the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
|
46
|
+
#
|
47
|
+
# See {#initialize} for a full list of supported configuration options.
|
33
48
|
class Client < Seahorse::Client::Base
|
34
49
|
|
35
50
|
include Aws::ClientStubs
|
@@ -57,6 +72,7 @@ module Aws::ImportExport
|
|
57
72
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
58
73
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
59
74
|
add_plugin(Aws::Plugins::TransferEncoding)
|
75
|
+
add_plugin(Aws::Plugins::HttpChecksum)
|
60
76
|
add_plugin(Aws::Plugins::SignatureV2)
|
61
77
|
add_plugin(Aws::Plugins::Protocols::Query)
|
62
78
|
|
@@ -93,7 +109,7 @@ module Aws::ImportExport
|
|
93
109
|
# @option options [required, String] :region
|
94
110
|
# The AWS region to connect to. The configured `:region` is
|
95
111
|
# used to determine the service `:endpoint`. When not passed,
|
96
|
-
# a default `:region` is
|
112
|
+
# a default `:region` is searched for in the following locations:
|
97
113
|
#
|
98
114
|
# * `Aws.config[:region]`
|
99
115
|
# * `ENV['AWS_REGION']`
|
@@ -108,6 +124,12 @@ module Aws::ImportExport
|
|
108
124
|
# When set to `true`, a thread polling for endpoints will be running in
|
109
125
|
# the background every 60 secs (default). Defaults to `false`.
|
110
126
|
#
|
127
|
+
# @option options [Boolean] :adaptive_retry_wait_to_fill (true)
|
128
|
+
# Used only in `adaptive` retry mode. When true, the request will sleep
|
129
|
+
# until there is sufficent client side capacity to retry the request.
|
130
|
+
# When false, the request will raise a `RetryCapacityNotAvailableError` and will
|
131
|
+
# not retry instead of sleeping.
|
132
|
+
#
|
111
133
|
# @option options [Boolean] :client_side_monitoring (false)
|
112
134
|
# When `true`, client-side metrics will be collected for all API requests from
|
113
135
|
# this client.
|
@@ -132,6 +154,10 @@ module Aws::ImportExport
|
|
132
154
|
# When `true`, an attempt is made to coerce request parameters into
|
133
155
|
# the required types.
|
134
156
|
#
|
157
|
+
# @option options [Boolean] :correct_clock_skew (true)
|
158
|
+
# Used only in `standard` and adaptive retry modes. Specifies whether to apply
|
159
|
+
# a clock skew correction and retry requests with skewed client clocks.
|
160
|
+
#
|
135
161
|
# @option options [Boolean] :disable_host_prefix_injection (false)
|
136
162
|
# Set to true to disable SDK automatically adding host prefix
|
137
163
|
# to default service endpoint when available.
|
@@ -139,7 +165,7 @@ module Aws::ImportExport
|
|
139
165
|
# @option options [String] :endpoint
|
140
166
|
# The client endpoint is normally constructed from the `:region`
|
141
167
|
# option. You should only configure an `:endpoint` when connecting
|
142
|
-
# to test endpoints. This should be
|
168
|
+
# to test or custom endpoints. This should be a valid HTTP(S) URI.
|
143
169
|
#
|
144
170
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
145
171
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -154,7 +180,7 @@ module Aws::ImportExport
|
|
154
180
|
# requests fetching endpoints information. Defaults to 60 sec.
|
155
181
|
#
|
156
182
|
# @option options [Boolean] :endpoint_discovery (false)
|
157
|
-
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
183
|
+
# When set to `true`, endpoint discovery will be enabled for operations when available.
|
158
184
|
#
|
159
185
|
# @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
|
160
186
|
# The log formatter.
|
@@ -166,15 +192,29 @@ module Aws::ImportExport
|
|
166
192
|
# The Logger instance to send log messages to. If this option
|
167
193
|
# is not set, logging will be disabled.
|
168
194
|
#
|
195
|
+
# @option options [Integer] :max_attempts (3)
|
196
|
+
# An integer representing the maximum number attempts that will be made for
|
197
|
+
# a single request, including the initial attempt. For example,
|
198
|
+
# setting this value to 5 will result in a request being retried up to
|
199
|
+
# 4 times. Used in `standard` and `adaptive` retry modes.
|
200
|
+
#
|
169
201
|
# @option options [String] :profile ("default")
|
170
202
|
# Used when loading credentials from the shared credentials file
|
171
203
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
172
204
|
#
|
205
|
+
# @option options [Proc] :retry_backoff
|
206
|
+
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
207
|
+
# This option is only used in the `legacy` retry mode.
|
208
|
+
#
|
173
209
|
# @option options [Float] :retry_base_delay (0.3)
|
174
|
-
# The base delay in seconds used by the default backoff function.
|
210
|
+
# The base delay in seconds used by the default backoff function. This option
|
211
|
+
# is only used in the `legacy` retry mode.
|
175
212
|
#
|
176
213
|
# @option options [Symbol] :retry_jitter (:none)
|
177
|
-
# A delay randomiser function used by the default backoff function.
|
214
|
+
# A delay randomiser function used by the default backoff function.
|
215
|
+
# Some predefined functions can be referenced by name - :none, :equal, :full,
|
216
|
+
# otherwise a Proc that takes and returns a number. This option is only used
|
217
|
+
# in the `legacy` retry mode.
|
178
218
|
#
|
179
219
|
# @see https://www.awsarchitectureblog.com/2015/03/backoff.html
|
180
220
|
#
|
@@ -182,11 +222,30 @@ module Aws::ImportExport
|
|
182
222
|
# The maximum number of times to retry failed requests. Only
|
183
223
|
# ~ 500 level server errors and certain ~ 400 level client errors
|
184
224
|
# are retried. Generally, these are throttling errors, data
|
185
|
-
# checksum errors, networking errors, timeout errors
|
186
|
-
# errors from expired credentials.
|
225
|
+
# checksum errors, networking errors, timeout errors, auth errors,
|
226
|
+
# endpoint discovery, and errors from expired credentials.
|
227
|
+
# This option is only used in the `legacy` retry mode.
|
187
228
|
#
|
188
229
|
# @option options [Integer] :retry_max_delay (0)
|
189
|
-
# The maximum number of seconds to delay between retries (0 for no limit)
|
230
|
+
# The maximum number of seconds to delay between retries (0 for no limit)
|
231
|
+
# used by the default backoff function. This option is only used in the
|
232
|
+
# `legacy` retry mode.
|
233
|
+
#
|
234
|
+
# @option options [String] :retry_mode ("legacy")
|
235
|
+
# Specifies which retry algorithm to use. Values are:
|
236
|
+
#
|
237
|
+
# * `legacy` - The pre-existing retry behavior. This is default value if
|
238
|
+
# no retry mode is provided.
|
239
|
+
#
|
240
|
+
# * `standard` - A standardized set of retry rules across the AWS SDKs.
|
241
|
+
# This includes support for retry quotas, which limit the number of
|
242
|
+
# unsuccessful retries a client can make.
|
243
|
+
#
|
244
|
+
# * `adaptive` - An experimental retry mode that includes all the
|
245
|
+
# functionality of `standard` mode along with automatic client side
|
246
|
+
# throttling. This is a provisional mode that may change behavior
|
247
|
+
# in the future.
|
248
|
+
#
|
190
249
|
#
|
191
250
|
# @option options [String] :secret_access_key
|
192
251
|
#
|
@@ -209,16 +268,15 @@ module Aws::ImportExport
|
|
209
268
|
# requests through. Formatted like 'http://proxy.com:123'.
|
210
269
|
#
|
211
270
|
# @option options [Float] :http_open_timeout (15) The number of
|
212
|
-
# seconds to wait when opening a HTTP session before
|
271
|
+
# seconds to wait when opening a HTTP session before raising a
|
213
272
|
# `Timeout::Error`.
|
214
273
|
#
|
215
274
|
# @option options [Integer] :http_read_timeout (60) The default
|
216
275
|
# number of seconds to wait for response data. This value can
|
217
|
-
# safely be set
|
218
|
-
# per-request on the session yeidled by {#session_for}.
|
276
|
+
# safely be set per-request on the session.
|
219
277
|
#
|
220
278
|
# @option options [Float] :http_idle_timeout (5) The number of
|
221
|
-
# seconds a connection is allowed to sit
|
279
|
+
# seconds a connection is allowed to sit idle before it is
|
222
280
|
# considered stale. Stale connections are closed and removed
|
223
281
|
# from the pool before making a request.
|
224
282
|
#
|
@@ -227,7 +285,7 @@ module Aws::ImportExport
|
|
227
285
|
# request body. This option has no effect unless the request has
|
228
286
|
# "Expect" header set to "100-continue". Defaults to `nil` which
|
229
287
|
# disables this behaviour. This value can safely be set per
|
230
|
-
# request on the session
|
288
|
+
# request on the session.
|
231
289
|
#
|
232
290
|
# @option options [Boolean] :http_wire_trace (false) When `true`,
|
233
291
|
# HTTP debug output will be sent to the `:logger`.
|
@@ -513,6 +571,8 @@ module Aws::ImportExport
|
|
513
571
|
# * {Types::ListJobsOutput#jobs #jobs} => Array<Types::Job>
|
514
572
|
# * {Types::ListJobsOutput#is_truncated #is_truncated} => Boolean
|
515
573
|
#
|
574
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
575
|
+
#
|
516
576
|
# @example Request syntax with placeholder values
|
517
577
|
#
|
518
578
|
# resp = client.list_jobs({
|
@@ -603,7 +663,7 @@ module Aws::ImportExport
|
|
603
663
|
params: params,
|
604
664
|
config: config)
|
605
665
|
context[:gem_name] = 'aws-sdk-importexport'
|
606
|
-
context[:gem_version] = '1.
|
666
|
+
context[:gem_version] = '1.21.0'
|
607
667
|
Seahorse::Client::Request.new(handlers, context)
|
608
668
|
end
|
609
669
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,48 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::ImportExport
|
11
|
+
|
12
|
+
# When ImportExport returns an error response, the Ruby SDK constructs and raises an error.
|
13
|
+
# These errors all extend Aws::ImportExport::Errors::ServiceError < {Aws::Errors::ServiceError}
|
14
|
+
#
|
15
|
+
# You can rescue all ImportExport errors using ServiceError:
|
16
|
+
#
|
17
|
+
# begin
|
18
|
+
# # do stuff
|
19
|
+
# rescue Aws::ImportExport::Errors::ServiceError
|
20
|
+
# # rescues all ImportExport API errors
|
21
|
+
# end
|
22
|
+
#
|
23
|
+
#
|
24
|
+
# ## Request Context
|
25
|
+
# ServiceError objects have a {Aws::Errors::ServiceError#context #context} method that returns
|
26
|
+
# information about the request that generated the error.
|
27
|
+
# See {Seahorse::Client::RequestContext} for more information.
|
28
|
+
#
|
29
|
+
# ## Error Classes
|
30
|
+
# * {BucketPermissionException}
|
31
|
+
# * {CanceledJobIdException}
|
32
|
+
# * {CreateJobQuotaExceededException}
|
33
|
+
# * {ExpiredJobIdException}
|
34
|
+
# * {InvalidAccessKeyIdException}
|
35
|
+
# * {InvalidAddressException}
|
36
|
+
# * {InvalidCustomsException}
|
37
|
+
# * {InvalidFileSystemException}
|
38
|
+
# * {InvalidJobIdException}
|
39
|
+
# * {InvalidManifestFieldException}
|
40
|
+
# * {InvalidParameterException}
|
41
|
+
# * {InvalidVersionException}
|
42
|
+
# * {MalformedManifestException}
|
43
|
+
# * {MissingCustomsException}
|
44
|
+
# * {MissingManifestFieldException}
|
45
|
+
# * {MissingParameterException}
|
46
|
+
# * {MultipleRegionsException}
|
47
|
+
# * {NoSuchBucketException}
|
48
|
+
# * {UnableToCancelJobIdException}
|
49
|
+
# * {UnableToUpdateJobIdException}
|
50
|
+
#
|
51
|
+
# Additionally, error classes are dynamically generated for service errors based on the error code
|
52
|
+
# if they are not defined above.
|
9
53
|
module Errors
|
10
54
|
|
11
55
|
extend Aws::Errors::DynamicErrors
|
@@ -23,7 +67,6 @@ module Aws::ImportExport
|
|
23
67
|
def message
|
24
68
|
@message || @data[:message]
|
25
69
|
end
|
26
|
-
|
27
70
|
end
|
28
71
|
|
29
72
|
class CanceledJobIdException < ServiceError
|
@@ -39,7 +82,6 @@ module Aws::ImportExport
|
|
39
82
|
def message
|
40
83
|
@message || @data[:message]
|
41
84
|
end
|
42
|
-
|
43
85
|
end
|
44
86
|
|
45
87
|
class CreateJobQuotaExceededException < ServiceError
|
@@ -55,7 +97,6 @@ module Aws::ImportExport
|
|
55
97
|
def message
|
56
98
|
@message || @data[:message]
|
57
99
|
end
|
58
|
-
|
59
100
|
end
|
60
101
|
|
61
102
|
class ExpiredJobIdException < ServiceError
|
@@ -71,7 +112,6 @@ module Aws::ImportExport
|
|
71
112
|
def message
|
72
113
|
@message || @data[:message]
|
73
114
|
end
|
74
|
-
|
75
115
|
end
|
76
116
|
|
77
117
|
class InvalidAccessKeyIdException < ServiceError
|
@@ -87,7 +127,6 @@ module Aws::ImportExport
|
|
87
127
|
def message
|
88
128
|
@message || @data[:message]
|
89
129
|
end
|
90
|
-
|
91
130
|
end
|
92
131
|
|
93
132
|
class InvalidAddressException < ServiceError
|
@@ -103,7 +142,6 @@ module Aws::ImportExport
|
|
103
142
|
def message
|
104
143
|
@message || @data[:message]
|
105
144
|
end
|
106
|
-
|
107
145
|
end
|
108
146
|
|
109
147
|
class InvalidCustomsException < ServiceError
|
@@ -119,7 +157,6 @@ module Aws::ImportExport
|
|
119
157
|
def message
|
120
158
|
@message || @data[:message]
|
121
159
|
end
|
122
|
-
|
123
160
|
end
|
124
161
|
|
125
162
|
class InvalidFileSystemException < ServiceError
|
@@ -135,7 +172,6 @@ module Aws::ImportExport
|
|
135
172
|
def message
|
136
173
|
@message || @data[:message]
|
137
174
|
end
|
138
|
-
|
139
175
|
end
|
140
176
|
|
141
177
|
class InvalidJobIdException < ServiceError
|
@@ -151,7 +187,6 @@ module Aws::ImportExport
|
|
151
187
|
def message
|
152
188
|
@message || @data[:message]
|
153
189
|
end
|
154
|
-
|
155
190
|
end
|
156
191
|
|
157
192
|
class InvalidManifestFieldException < ServiceError
|
@@ -167,7 +202,6 @@ module Aws::ImportExport
|
|
167
202
|
def message
|
168
203
|
@message || @data[:message]
|
169
204
|
end
|
170
|
-
|
171
205
|
end
|
172
206
|
|
173
207
|
class InvalidParameterException < ServiceError
|
@@ -183,7 +217,6 @@ module Aws::ImportExport
|
|
183
217
|
def message
|
184
218
|
@message || @data[:message]
|
185
219
|
end
|
186
|
-
|
187
220
|
end
|
188
221
|
|
189
222
|
class InvalidVersionException < ServiceError
|
@@ -199,7 +232,6 @@ module Aws::ImportExport
|
|
199
232
|
def message
|
200
233
|
@message || @data[:message]
|
201
234
|
end
|
202
|
-
|
203
235
|
end
|
204
236
|
|
205
237
|
class MalformedManifestException < ServiceError
|
@@ -215,7 +247,6 @@ module Aws::ImportExport
|
|
215
247
|
def message
|
216
248
|
@message || @data[:message]
|
217
249
|
end
|
218
|
-
|
219
250
|
end
|
220
251
|
|
221
252
|
class MissingCustomsException < ServiceError
|
@@ -231,7 +262,6 @@ module Aws::ImportExport
|
|
231
262
|
def message
|
232
263
|
@message || @data[:message]
|
233
264
|
end
|
234
|
-
|
235
265
|
end
|
236
266
|
|
237
267
|
class MissingManifestFieldException < ServiceError
|
@@ -247,7 +277,6 @@ module Aws::ImportExport
|
|
247
277
|
def message
|
248
278
|
@message || @data[:message]
|
249
279
|
end
|
250
|
-
|
251
280
|
end
|
252
281
|
|
253
282
|
class MissingParameterException < ServiceError
|
@@ -263,7 +292,6 @@ module Aws::ImportExport
|
|
263
292
|
def message
|
264
293
|
@message || @data[:message]
|
265
294
|
end
|
266
|
-
|
267
295
|
end
|
268
296
|
|
269
297
|
class MultipleRegionsException < ServiceError
|
@@ -279,7 +307,6 @@ module Aws::ImportExport
|
|
279
307
|
def message
|
280
308
|
@message || @data[:message]
|
281
309
|
end
|
282
|
-
|
283
310
|
end
|
284
311
|
|
285
312
|
class NoSuchBucketException < ServiceError
|
@@ -295,7 +322,6 @@ module Aws::ImportExport
|
|
295
322
|
def message
|
296
323
|
@message || @data[:message]
|
297
324
|
end
|
298
|
-
|
299
325
|
end
|
300
326
|
|
301
327
|
class UnableToCancelJobIdException < ServiceError
|
@@ -311,7 +337,6 @@ module Aws::ImportExport
|
|
311
337
|
def message
|
312
338
|
@message || @data[:message]
|
313
339
|
end
|
314
|
-
|
315
340
|
end
|
316
341
|
|
317
342
|
class UnableToUpdateJobIdException < ServiceError
|
@@ -327,7 +352,6 @@ module Aws::ImportExport
|
|
327
352
|
def message
|
328
353
|
@message || @data[:message]
|
329
354
|
end
|
330
|
-
|
331
355
|
end
|
332
356
|
|
333
357
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -6,6 +8,7 @@
|
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
8
10
|
module Aws::ImportExport
|
11
|
+
|
9
12
|
class Resource
|
10
13
|
|
11
14
|
# @param options ({})
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -22,6 +24,7 @@ module Aws::ImportExport
|
|
22
24
|
class Artifact < Struct.new(
|
23
25
|
:description,
|
24
26
|
:url)
|
27
|
+
SENSITIVE = []
|
25
28
|
include Aws::Structure
|
26
29
|
end
|
27
30
|
|
@@ -34,6 +37,7 @@ module Aws::ImportExport
|
|
34
37
|
#
|
35
38
|
class BucketPermissionException < Struct.new(
|
36
39
|
:message)
|
40
|
+
SENSITIVE = []
|
37
41
|
include Aws::Structure
|
38
42
|
end
|
39
43
|
|
@@ -58,6 +62,7 @@ module Aws::ImportExport
|
|
58
62
|
class CancelJobInput < Struct.new(
|
59
63
|
:job_id,
|
60
64
|
:api_version)
|
65
|
+
SENSITIVE = []
|
61
66
|
include Aws::Structure
|
62
67
|
end
|
63
68
|
|
@@ -70,6 +75,7 @@ module Aws::ImportExport
|
|
70
75
|
#
|
71
76
|
class CancelJobOutput < Struct.new(
|
72
77
|
:success)
|
78
|
+
SENSITIVE = []
|
73
79
|
include Aws::Structure
|
74
80
|
end
|
75
81
|
|
@@ -81,6 +87,7 @@ module Aws::ImportExport
|
|
81
87
|
#
|
82
88
|
class CanceledJobIdException < Struct.new(
|
83
89
|
:message)
|
90
|
+
SENSITIVE = []
|
84
91
|
include Aws::Structure
|
85
92
|
end
|
86
93
|
|
@@ -124,6 +131,7 @@ module Aws::ImportExport
|
|
124
131
|
:manifest_addendum,
|
125
132
|
:validate_only,
|
126
133
|
:api_version)
|
134
|
+
SENSITIVE = []
|
127
135
|
include Aws::Structure
|
128
136
|
end
|
129
137
|
|
@@ -164,6 +172,7 @@ module Aws::ImportExport
|
|
164
172
|
:signature_file_contents,
|
165
173
|
:warning_message,
|
166
174
|
:artifact_list)
|
175
|
+
SENSITIVE = []
|
167
176
|
include Aws::Structure
|
168
177
|
end
|
169
178
|
|
@@ -177,6 +186,7 @@ module Aws::ImportExport
|
|
177
186
|
#
|
178
187
|
class CreateJobQuotaExceededException < Struct.new(
|
179
188
|
:message)
|
189
|
+
SENSITIVE = []
|
180
190
|
include Aws::Structure
|
181
191
|
end
|
182
192
|
|
@@ -188,6 +198,7 @@ module Aws::ImportExport
|
|
188
198
|
#
|
189
199
|
class ExpiredJobIdException < Struct.new(
|
190
200
|
:message)
|
201
|
+
SENSITIVE = []
|
191
202
|
include Aws::Structure
|
192
203
|
end
|
193
204
|
|
@@ -275,6 +286,7 @@ module Aws::ImportExport
|
|
275
286
|
:street2,
|
276
287
|
:street3,
|
277
288
|
:api_version)
|
289
|
+
SENSITIVE = []
|
278
290
|
include Aws::Structure
|
279
291
|
end
|
280
292
|
|
@@ -287,6 +299,7 @@ module Aws::ImportExport
|
|
287
299
|
class GetShippingLabelOutput < Struct.new(
|
288
300
|
:shipping_label_url,
|
289
301
|
:warning)
|
302
|
+
SENSITIVE = []
|
290
303
|
include Aws::Structure
|
291
304
|
end
|
292
305
|
|
@@ -311,6 +324,7 @@ module Aws::ImportExport
|
|
311
324
|
class GetStatusInput < Struct.new(
|
312
325
|
:job_id,
|
313
326
|
:api_version)
|
327
|
+
SENSITIVE = []
|
314
328
|
include Aws::Structure
|
315
329
|
end
|
316
330
|
|
@@ -410,6 +424,7 @@ module Aws::ImportExport
|
|
410
424
|
:current_manifest,
|
411
425
|
:creation_date,
|
412
426
|
:artifact_list)
|
427
|
+
SENSITIVE = []
|
413
428
|
include Aws::Structure
|
414
429
|
end
|
415
430
|
|
@@ -423,6 +438,7 @@ module Aws::ImportExport
|
|
423
438
|
#
|
424
439
|
class InvalidAccessKeyIdException < Struct.new(
|
425
440
|
:message)
|
441
|
+
SENSITIVE = []
|
426
442
|
include Aws::Structure
|
427
443
|
end
|
428
444
|
|
@@ -434,6 +450,7 @@ module Aws::ImportExport
|
|
434
450
|
#
|
435
451
|
class InvalidAddressException < Struct.new(
|
436
452
|
:message)
|
453
|
+
SENSITIVE = []
|
437
454
|
include Aws::Structure
|
438
455
|
end
|
439
456
|
|
@@ -446,6 +463,7 @@ module Aws::ImportExport
|
|
446
463
|
#
|
447
464
|
class InvalidCustomsException < Struct.new(
|
448
465
|
:message)
|
466
|
+
SENSITIVE = []
|
449
467
|
include Aws::Structure
|
450
468
|
end
|
451
469
|
|
@@ -457,6 +475,7 @@ module Aws::ImportExport
|
|
457
475
|
#
|
458
476
|
class InvalidFileSystemException < Struct.new(
|
459
477
|
:message)
|
478
|
+
SENSITIVE = []
|
460
479
|
include Aws::Structure
|
461
480
|
end
|
462
481
|
|
@@ -469,6 +488,7 @@ module Aws::ImportExport
|
|
469
488
|
#
|
470
489
|
class InvalidJobIdException < Struct.new(
|
471
490
|
:message)
|
491
|
+
SENSITIVE = []
|
472
492
|
include Aws::Structure
|
473
493
|
end
|
474
494
|
|
@@ -480,6 +500,7 @@ module Aws::ImportExport
|
|
480
500
|
#
|
481
501
|
class InvalidManifestFieldException < Struct.new(
|
482
502
|
:message)
|
503
|
+
SENSITIVE = []
|
483
504
|
include Aws::Structure
|
484
505
|
end
|
485
506
|
|
@@ -491,6 +512,7 @@ module Aws::ImportExport
|
|
491
512
|
#
|
492
513
|
class InvalidParameterException < Struct.new(
|
493
514
|
:message)
|
515
|
+
SENSITIVE = []
|
494
516
|
include Aws::Structure
|
495
517
|
end
|
496
518
|
|
@@ -502,6 +524,7 @@ module Aws::ImportExport
|
|
502
524
|
#
|
503
525
|
class InvalidVersionException < Struct.new(
|
504
526
|
:message)
|
527
|
+
SENSITIVE = []
|
505
528
|
include Aws::Structure
|
506
529
|
end
|
507
530
|
|
@@ -529,6 +552,7 @@ module Aws::ImportExport
|
|
529
552
|
:creation_date,
|
530
553
|
:is_canceled,
|
531
554
|
:job_type)
|
555
|
+
SENSITIVE = []
|
532
556
|
include Aws::Structure
|
533
557
|
end
|
534
558
|
|
@@ -565,6 +589,7 @@ module Aws::ImportExport
|
|
565
589
|
:max_jobs,
|
566
590
|
:marker,
|
567
591
|
:api_version)
|
592
|
+
SENSITIVE = []
|
568
593
|
include Aws::Structure
|
569
594
|
end
|
570
595
|
|
@@ -582,6 +607,7 @@ module Aws::ImportExport
|
|
582
607
|
class ListJobsOutput < Struct.new(
|
583
608
|
:jobs,
|
584
609
|
:is_truncated)
|
610
|
+
SENSITIVE = []
|
585
611
|
include Aws::Structure
|
586
612
|
end
|
587
613
|
|
@@ -593,6 +619,7 @@ module Aws::ImportExport
|
|
593
619
|
#
|
594
620
|
class MalformedManifestException < Struct.new(
|
595
621
|
:message)
|
622
|
+
SENSITIVE = []
|
596
623
|
include Aws::Structure
|
597
624
|
end
|
598
625
|
|
@@ -604,6 +631,7 @@ module Aws::ImportExport
|
|
604
631
|
#
|
605
632
|
class MissingCustomsException < Struct.new(
|
606
633
|
:message)
|
634
|
+
SENSITIVE = []
|
607
635
|
include Aws::Structure
|
608
636
|
end
|
609
637
|
|
@@ -616,6 +644,7 @@ module Aws::ImportExport
|
|
616
644
|
#
|
617
645
|
class MissingManifestFieldException < Struct.new(
|
618
646
|
:message)
|
647
|
+
SENSITIVE = []
|
619
648
|
include Aws::Structure
|
620
649
|
end
|
621
650
|
|
@@ -627,6 +656,7 @@ module Aws::ImportExport
|
|
627
656
|
#
|
628
657
|
class MissingParameterException < Struct.new(
|
629
658
|
:message)
|
659
|
+
SENSITIVE = []
|
630
660
|
include Aws::Structure
|
631
661
|
end
|
632
662
|
|
@@ -639,6 +669,7 @@ module Aws::ImportExport
|
|
639
669
|
#
|
640
670
|
class MultipleRegionsException < Struct.new(
|
641
671
|
:message)
|
672
|
+
SENSITIVE = []
|
642
673
|
include Aws::Structure
|
643
674
|
end
|
644
675
|
|
@@ -653,6 +684,7 @@ module Aws::ImportExport
|
|
653
684
|
#
|
654
685
|
class NoSuchBucketException < Struct.new(
|
655
686
|
:message)
|
687
|
+
SENSITIVE = []
|
656
688
|
include Aws::Structure
|
657
689
|
end
|
658
690
|
|
@@ -664,6 +696,7 @@ module Aws::ImportExport
|
|
664
696
|
#
|
665
697
|
class UnableToCancelJobIdException < Struct.new(
|
666
698
|
:message)
|
699
|
+
SENSITIVE = []
|
667
700
|
include Aws::Structure
|
668
701
|
end
|
669
702
|
|
@@ -675,6 +708,7 @@ module Aws::ImportExport
|
|
675
708
|
#
|
676
709
|
class UnableToUpdateJobIdException < Struct.new(
|
677
710
|
:message)
|
711
|
+
SENSITIVE = []
|
678
712
|
include Aws::Structure
|
679
713
|
end
|
680
714
|
|
@@ -718,6 +752,7 @@ module Aws::ImportExport
|
|
718
752
|
:job_type,
|
719
753
|
:validate_only,
|
720
754
|
:api_version)
|
755
|
+
SENSITIVE = []
|
721
756
|
include Aws::Structure
|
722
757
|
end
|
723
758
|
|
@@ -741,6 +776,7 @@ module Aws::ImportExport
|
|
741
776
|
:success,
|
742
777
|
:warning_message,
|
743
778
|
:artifact_list)
|
779
|
+
SENSITIVE = []
|
744
780
|
include Aws::Structure
|
745
781
|
end
|
746
782
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-importexport
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.21.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: 2020-06-23 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.99.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.99.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv2
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
81
81
|
version: '0'
|
82
82
|
requirements: []
|
83
83
|
rubyforge_project:
|
84
|
-
rubygems_version: 2.
|
84
|
+
rubygems_version: 2.7.6.2
|
85
85
|
signing_key:
|
86
86
|
specification_version: 4
|
87
87
|
summary: AWS SDK for Ruby - AWS Import/Export
|