aws-sdk-importexport 1.42.0 → 1.44.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-importexport/client.rb +70 -46
- data/lib/aws-sdk-importexport.rb +1 -1
- data/sig/client.rbs +183 -0
- data/sig/errors.rbs +76 -0
- data/sig/resource.rbs +78 -0
- data/sig/types.rbs +232 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ae14b5347615ea094477efbc9553828f2faad7d9cb1c1d4bc42581edf3b85883
|
4
|
+
data.tar.gz: 45d8e7dbac54230568605e4be4eee6cb5d522810d6af720d2ee090e6cb0640fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: a82acf4da132bad6dd8522f2003ccc7804052d846887185c8a70611302bec4f8a84d8c78447285cdc6e9a1f85382a42cf7ac958f2fd2305bd7489700d10cbae6
|
7
|
+
data.tar.gz: ace62727c457f2a90733d8dce53a6166042aaa2ab76244e685829cd1b895357928d2dfaf59c00a2827cf7d091e14561c38ffa91036c8f00cf0312336efb1b41b
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.44.0 (2024-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.43.0 (2024-01-26)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.42.0 (2023-11-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.44.0
|
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
|
|
22
22
|
require 'aws-sdk-core/plugins/response_paging.rb'
|
23
23
|
require 'aws-sdk-core/plugins/stub_responses.rb'
|
24
24
|
require 'aws-sdk-core/plugins/idempotency_token.rb'
|
25
|
+
require 'aws-sdk-core/plugins/invocation_id.rb'
|
25
26
|
require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
|
26
27
|
require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
27
28
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
@@ -72,6 +73,7 @@ module Aws::ImportExport
|
|
72
73
|
add_plugin(Aws::Plugins::ResponsePaging)
|
73
74
|
add_plugin(Aws::Plugins::StubResponses)
|
74
75
|
add_plugin(Aws::Plugins::IdempotencyToken)
|
76
|
+
add_plugin(Aws::Plugins::InvocationId)
|
75
77
|
add_plugin(Aws::Plugins::JsonvalueConverter)
|
76
78
|
add_plugin(Aws::Plugins::ClientMetricsPlugin)
|
77
79
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
@@ -195,10 +197,17 @@ module Aws::ImportExport
|
|
195
197
|
# When set to 'true' the request body will not be compressed
|
196
198
|
# for supported operations.
|
197
199
|
#
|
198
|
-
# @option options [String] :endpoint
|
199
|
-
#
|
200
|
-
#
|
201
|
-
#
|
200
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
201
|
+
# Normally you should not configure the `:endpoint` option
|
202
|
+
# directly. This is normally constructed from the `:region`
|
203
|
+
# option. Configuring `:endpoint` is normally reserved for
|
204
|
+
# connecting to test or custom endpoints. The endpoint should
|
205
|
+
# be a URI formatted like:
|
206
|
+
#
|
207
|
+
# 'http://example.com'
|
208
|
+
# 'https://example.com'
|
209
|
+
# 'http://example.com:123'
|
210
|
+
#
|
202
211
|
#
|
203
212
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
204
213
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -333,50 +342,65 @@ module Aws::ImportExport
|
|
333
342
|
# When `true`, request parameters are validated before
|
334
343
|
# sending the request.
|
335
344
|
#
|
336
|
-
# @option options [
|
337
|
-
#
|
338
|
-
#
|
339
|
-
#
|
340
|
-
#
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
# @option options [Float] :
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
345
|
+
# @option options [Float] :http_continue_timeout (1)
|
346
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
347
|
+
# request body. This option has no effect unless the request has "Expect"
|
348
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
349
|
+
# behaviour. This value can safely be set per request on the session.
|
350
|
+
#
|
351
|
+
# @option options [Float] :http_idle_timeout (5)
|
352
|
+
# The number of seconds a connection is allowed to sit idle before it
|
353
|
+
# is considered stale. Stale connections are closed and removed from the
|
354
|
+
# pool before making a request.
|
355
|
+
#
|
356
|
+
# @option options [Float] :http_open_timeout (15)
|
357
|
+
# The default number of seconds to wait for response data.
|
358
|
+
# This value can safely be set per-request on the session.
|
359
|
+
#
|
360
|
+
# @option options [URI::HTTP,String] :http_proxy
|
361
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
362
|
+
#
|
363
|
+
# @option options [Float] :http_read_timeout (60)
|
364
|
+
# The default number of seconds to wait for response data.
|
365
|
+
# This value can safely be set per-request on the session.
|
366
|
+
#
|
367
|
+
# @option options [Boolean] :http_wire_trace (false)
|
368
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
369
|
+
#
|
370
|
+
# @option options [Proc] :on_chunk_received
|
371
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
372
|
+
# of the response body is received. It provides three arguments: the chunk,
|
373
|
+
# the number of bytes received, and the total number of
|
374
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
375
|
+
#
|
376
|
+
# @option options [Proc] :on_chunk_sent
|
377
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
378
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
379
|
+
# the number of bytes read from the body, and the total number of
|
380
|
+
# bytes in the body.
|
381
|
+
#
|
382
|
+
# @option options [Boolean] :raise_response_errors (true)
|
383
|
+
# When `true`, response errors are raised.
|
384
|
+
#
|
385
|
+
# @option options [String] :ssl_ca_bundle
|
386
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
387
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
388
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
389
|
+
#
|
390
|
+
# @option options [String] :ssl_ca_directory
|
391
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
392
|
+
# authority files for verifying peer certificates. If you do
|
393
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
394
|
+
# default will be used if available.
|
361
395
|
#
|
362
|
-
# @option options [
|
363
|
-
#
|
396
|
+
# @option options [String] :ssl_ca_store
|
397
|
+
# Sets the X509::Store to verify peer certificate.
|
364
398
|
#
|
365
|
-
# @option options [
|
366
|
-
#
|
367
|
-
# connection.
|
399
|
+
# @option options [Float] :ssl_timeout
|
400
|
+
# Sets the SSL timeout in seconds
|
368
401
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# verifying peer certificates. If you do not pass
|
372
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
373
|
-
# will be used if available.
|
374
|
-
#
|
375
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
376
|
-
# directory that contains the unbundled SSL certificate
|
377
|
-
# authority files for verifying peer certificates. If you do
|
378
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
379
|
-
# system default will be used if available.
|
402
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
403
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
380
404
|
#
|
381
405
|
def initialize(*args)
|
382
406
|
super
|
@@ -735,7 +759,7 @@ module Aws::ImportExport
|
|
735
759
|
params: params,
|
736
760
|
config: config)
|
737
761
|
context[:gem_name] = 'aws-sdk-importexport'
|
738
|
-
context[:gem_version] = '1.
|
762
|
+
context[:gem_version] = '1.44.0'
|
739
763
|
Seahorse::Client::Request.new(handlers, context)
|
740
764
|
end
|
741
765
|
|
data/lib/aws-sdk-importexport.rb
CHANGED
data/sig/client.rbs
ADDED
@@ -0,0 +1,183 @@
|
|
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 ImportExport
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ImportExport/Client.html#initialize-instance_method
|
14
|
+
def self.new: (
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?http_proxy: String,
|
57
|
+
?http_open_timeout: (Float | Integer),
|
58
|
+
?http_read_timeout: (Float | Integer),
|
59
|
+
?http_idle_timeout: (Float | Integer),
|
60
|
+
?http_continue_timeout: (Float | Integer),
|
61
|
+
?ssl_timeout: (Float | Integer | nil),
|
62
|
+
?http_wire_trace: bool,
|
63
|
+
?ssl_verify_peer: bool,
|
64
|
+
?ssl_ca_bundle: String,
|
65
|
+
?ssl_ca_directory: String,
|
66
|
+
?ssl_ca_store: String,
|
67
|
+
?on_chunk_received: Proc,
|
68
|
+
?on_chunk_sent: Proc,
|
69
|
+
?raise_response_errors: bool
|
70
|
+
) -> instance
|
71
|
+
| (?Hash[Symbol, untyped]) -> instance
|
72
|
+
|
73
|
+
|
74
|
+
interface _CancelJobResponseSuccess
|
75
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CancelJobOutput]
|
76
|
+
def success: () -> bool
|
77
|
+
end
|
78
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ImportExport/Client.html#cancel_job-instance_method
|
79
|
+
def cancel_job: (
|
80
|
+
job_id: ::String,
|
81
|
+
?api_version: ::String
|
82
|
+
) -> _CancelJobResponseSuccess
|
83
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelJobResponseSuccess
|
84
|
+
|
85
|
+
interface _CreateJobResponseSuccess
|
86
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateJobOutput]
|
87
|
+
def job_id: () -> ::String
|
88
|
+
def job_type: () -> ("Import" | "Export")
|
89
|
+
def signature: () -> ::String
|
90
|
+
def signature_file_contents: () -> ::String
|
91
|
+
def warning_message: () -> ::String
|
92
|
+
def artifact_list: () -> ::Array[Types::Artifact]
|
93
|
+
end
|
94
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ImportExport/Client.html#create_job-instance_method
|
95
|
+
def create_job: (
|
96
|
+
job_type: ("Import" | "Export"),
|
97
|
+
manifest: ::String,
|
98
|
+
?manifest_addendum: ::String,
|
99
|
+
validate_only: bool,
|
100
|
+
?api_version: ::String
|
101
|
+
) -> _CreateJobResponseSuccess
|
102
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateJobResponseSuccess
|
103
|
+
|
104
|
+
interface _GetShippingLabelResponseSuccess
|
105
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetShippingLabelOutput]
|
106
|
+
def shipping_label_url: () -> ::String
|
107
|
+
def warning: () -> ::String
|
108
|
+
end
|
109
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ImportExport/Client.html#get_shipping_label-instance_method
|
110
|
+
def get_shipping_label: (
|
111
|
+
job_ids: Array[::String],
|
112
|
+
?name: ::String,
|
113
|
+
?company: ::String,
|
114
|
+
?phone_number: ::String,
|
115
|
+
?country: ::String,
|
116
|
+
?state_or_province: ::String,
|
117
|
+
?city: ::String,
|
118
|
+
?postal_code: ::String,
|
119
|
+
?street1: ::String,
|
120
|
+
?street2: ::String,
|
121
|
+
?street3: ::String,
|
122
|
+
?api_version: ::String
|
123
|
+
) -> _GetShippingLabelResponseSuccess
|
124
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetShippingLabelResponseSuccess
|
125
|
+
|
126
|
+
interface _GetStatusResponseSuccess
|
127
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::GetStatusOutput]
|
128
|
+
def job_id: () -> ::String
|
129
|
+
def job_type: () -> ("Import" | "Export")
|
130
|
+
def location_code: () -> ::String
|
131
|
+
def location_message: () -> ::String
|
132
|
+
def progress_code: () -> ::String
|
133
|
+
def progress_message: () -> ::String
|
134
|
+
def carrier: () -> ::String
|
135
|
+
def tracking_number: () -> ::String
|
136
|
+
def log_bucket: () -> ::String
|
137
|
+
def log_key: () -> ::String
|
138
|
+
def error_count: () -> ::Integer
|
139
|
+
def signature: () -> ::String
|
140
|
+
def signature_file_contents: () -> ::String
|
141
|
+
def current_manifest: () -> ::String
|
142
|
+
def creation_date: () -> ::Time
|
143
|
+
def artifact_list: () -> ::Array[Types::Artifact]
|
144
|
+
end
|
145
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ImportExport/Client.html#get_status-instance_method
|
146
|
+
def get_status: (
|
147
|
+
job_id: ::String,
|
148
|
+
?api_version: ::String
|
149
|
+
) -> _GetStatusResponseSuccess
|
150
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetStatusResponseSuccess
|
151
|
+
|
152
|
+
interface _ListJobsResponseSuccess
|
153
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListJobsOutput]
|
154
|
+
def jobs: () -> ::Array[Types::Job]
|
155
|
+
def is_truncated: () -> bool
|
156
|
+
end
|
157
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ImportExport/Client.html#list_jobs-instance_method
|
158
|
+
def list_jobs: (
|
159
|
+
?max_jobs: ::Integer,
|
160
|
+
?marker: ::String,
|
161
|
+
?api_version: ::String
|
162
|
+
) -> _ListJobsResponseSuccess
|
163
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListJobsResponseSuccess
|
164
|
+
|
165
|
+
interface _UpdateJobResponseSuccess
|
166
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::UpdateJobOutput]
|
167
|
+
def success: () -> bool
|
168
|
+
def warning_message: () -> ::String
|
169
|
+
def artifact_list: () -> ::Array[Types::Artifact]
|
170
|
+
end
|
171
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ImportExport/Client.html#update_job-instance_method
|
172
|
+
def update_job: (
|
173
|
+
job_id: ::String,
|
174
|
+
manifest: ::String,
|
175
|
+
job_type: ("Import" | "Export"),
|
176
|
+
validate_only: bool,
|
177
|
+
?api_version: ::String
|
178
|
+
) -> _UpdateJobResponseSuccess
|
179
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateJobResponseSuccess
|
180
|
+
end
|
181
|
+
end
|
182
|
+
end
|
183
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,76 @@
|
|
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 ImportExport
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class BucketPermissionException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class CanceledJobIdException < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class CreateJobQuotaExceededException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class ExpiredJobIdException < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class InvalidAccessKeyIdException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class InvalidAddressException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
class InvalidCustomsException < ::Aws::Errors::ServiceError
|
33
|
+
def message: () -> ::String
|
34
|
+
end
|
35
|
+
class InvalidFileSystemException < ::Aws::Errors::ServiceError
|
36
|
+
def message: () -> ::String
|
37
|
+
end
|
38
|
+
class InvalidJobIdException < ::Aws::Errors::ServiceError
|
39
|
+
def message: () -> ::String
|
40
|
+
end
|
41
|
+
class InvalidManifestFieldException < ::Aws::Errors::ServiceError
|
42
|
+
def message: () -> ::String
|
43
|
+
end
|
44
|
+
class InvalidParameterException < ::Aws::Errors::ServiceError
|
45
|
+
def message: () -> ::String
|
46
|
+
end
|
47
|
+
class InvalidVersionException < ::Aws::Errors::ServiceError
|
48
|
+
def message: () -> ::String
|
49
|
+
end
|
50
|
+
class MalformedManifestException < ::Aws::Errors::ServiceError
|
51
|
+
def message: () -> ::String
|
52
|
+
end
|
53
|
+
class MissingCustomsException < ::Aws::Errors::ServiceError
|
54
|
+
def message: () -> ::String
|
55
|
+
end
|
56
|
+
class MissingManifestFieldException < ::Aws::Errors::ServiceError
|
57
|
+
def message: () -> ::String
|
58
|
+
end
|
59
|
+
class MissingParameterException < ::Aws::Errors::ServiceError
|
60
|
+
def message: () -> ::String
|
61
|
+
end
|
62
|
+
class MultipleRegionsException < ::Aws::Errors::ServiceError
|
63
|
+
def message: () -> ::String
|
64
|
+
end
|
65
|
+
class NoSuchBucketException < ::Aws::Errors::ServiceError
|
66
|
+
def message: () -> ::String
|
67
|
+
end
|
68
|
+
class UnableToCancelJobIdException < ::Aws::Errors::ServiceError
|
69
|
+
def message: () -> ::String
|
70
|
+
end
|
71
|
+
class UnableToUpdateJobIdException < ::Aws::Errors::ServiceError
|
72
|
+
def message: () -> ::String
|
73
|
+
end
|
74
|
+
end
|
75
|
+
end
|
76
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,78 @@
|
|
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 ImportExport
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ImportExport/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/ImportExport/Resource.html#initialize-instance_method
|
13
|
+
def initialize: (
|
14
|
+
?client: Client,
|
15
|
+
?credentials: untyped,
|
16
|
+
?region: String,
|
17
|
+
?access_key_id: String,
|
18
|
+
?active_endpoint_cache: bool,
|
19
|
+
?adaptive_retry_wait_to_fill: bool,
|
20
|
+
?client_side_monitoring: bool,
|
21
|
+
?client_side_monitoring_client_id: String,
|
22
|
+
?client_side_monitoring_host: String,
|
23
|
+
?client_side_monitoring_port: Integer,
|
24
|
+
?client_side_monitoring_publisher: untyped,
|
25
|
+
?convert_params: bool,
|
26
|
+
?correct_clock_skew: bool,
|
27
|
+
?defaults_mode: String,
|
28
|
+
?disable_host_prefix_injection: bool,
|
29
|
+
?disable_request_compression: bool,
|
30
|
+
?endpoint: String,
|
31
|
+
?endpoint_cache_max_entries: Integer,
|
32
|
+
?endpoint_cache_max_threads: Integer,
|
33
|
+
?endpoint_cache_poll_interval: Integer,
|
34
|
+
?endpoint_discovery: bool,
|
35
|
+
?ignore_configured_endpoint_urls: bool,
|
36
|
+
?log_formatter: untyped,
|
37
|
+
?log_level: Symbol,
|
38
|
+
?logger: untyped,
|
39
|
+
?max_attempts: Integer,
|
40
|
+
?profile: String,
|
41
|
+
?request_min_compression_size_bytes: Integer,
|
42
|
+
?retry_backoff: Proc,
|
43
|
+
?retry_base_delay: Float,
|
44
|
+
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
45
|
+
?retry_limit: Integer,
|
46
|
+
?retry_max_delay: Integer,
|
47
|
+
?retry_mode: ("legacy" | "standard" | "adaptive"),
|
48
|
+
?sdk_ua_app_id: String,
|
49
|
+
?secret_access_key: String,
|
50
|
+
?session_token: String,
|
51
|
+
?stub_responses: untyped,
|
52
|
+
?token_provider: untyped,
|
53
|
+
?use_dualstack_endpoint: bool,
|
54
|
+
?use_fips_endpoint: bool,
|
55
|
+
?validate_params: bool,
|
56
|
+
?http_proxy: String,
|
57
|
+
?http_open_timeout: (Float | Integer),
|
58
|
+
?http_read_timeout: (Float | Integer),
|
59
|
+
?http_idle_timeout: (Float | Integer),
|
60
|
+
?http_continue_timeout: (Float | Integer),
|
61
|
+
?ssl_timeout: (Float | Integer | nil),
|
62
|
+
?http_wire_trace: bool,
|
63
|
+
?ssl_verify_peer: bool,
|
64
|
+
?ssl_ca_bundle: String,
|
65
|
+
?ssl_ca_directory: String,
|
66
|
+
?ssl_ca_store: String,
|
67
|
+
?on_chunk_received: Proc,
|
68
|
+
?on_chunk_sent: Proc,
|
69
|
+
?raise_response_errors: bool
|
70
|
+
) -> void
|
71
|
+
| (?Hash[Symbol, untyped]) -> void
|
72
|
+
|
73
|
+
def client: () -> Client
|
74
|
+
|
75
|
+
|
76
|
+
end
|
77
|
+
end
|
78
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,232 @@
|
|
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::ImportExport
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class Artifact
|
12
|
+
attr_accessor description: ::String
|
13
|
+
attr_accessor url: ::String
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class BucketPermissionException
|
18
|
+
attr_accessor message: ::String
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class CancelJobInput
|
23
|
+
attr_accessor job_id: ::String
|
24
|
+
attr_accessor api_version: ::String
|
25
|
+
SENSITIVE: []
|
26
|
+
end
|
27
|
+
|
28
|
+
class CancelJobOutput
|
29
|
+
attr_accessor success: bool
|
30
|
+
SENSITIVE: []
|
31
|
+
end
|
32
|
+
|
33
|
+
class CanceledJobIdException
|
34
|
+
attr_accessor message: ::String
|
35
|
+
SENSITIVE: []
|
36
|
+
end
|
37
|
+
|
38
|
+
class CreateJobInput
|
39
|
+
attr_accessor job_type: ("Import" | "Export")
|
40
|
+
attr_accessor manifest: ::String
|
41
|
+
attr_accessor manifest_addendum: ::String
|
42
|
+
attr_accessor validate_only: bool
|
43
|
+
attr_accessor api_version: ::String
|
44
|
+
SENSITIVE: []
|
45
|
+
end
|
46
|
+
|
47
|
+
class CreateJobOutput
|
48
|
+
attr_accessor job_id: ::String
|
49
|
+
attr_accessor job_type: ("Import" | "Export")
|
50
|
+
attr_accessor signature: ::String
|
51
|
+
attr_accessor signature_file_contents: ::String
|
52
|
+
attr_accessor warning_message: ::String
|
53
|
+
attr_accessor artifact_list: ::Array[Types::Artifact]
|
54
|
+
SENSITIVE: []
|
55
|
+
end
|
56
|
+
|
57
|
+
class CreateJobQuotaExceededException
|
58
|
+
attr_accessor message: ::String
|
59
|
+
SENSITIVE: []
|
60
|
+
end
|
61
|
+
|
62
|
+
class ExpiredJobIdException
|
63
|
+
attr_accessor message: ::String
|
64
|
+
SENSITIVE: []
|
65
|
+
end
|
66
|
+
|
67
|
+
class GetShippingLabelInput
|
68
|
+
attr_accessor job_ids: ::Array[::String]
|
69
|
+
attr_accessor name: ::String
|
70
|
+
attr_accessor company: ::String
|
71
|
+
attr_accessor phone_number: ::String
|
72
|
+
attr_accessor country: ::String
|
73
|
+
attr_accessor state_or_province: ::String
|
74
|
+
attr_accessor city: ::String
|
75
|
+
attr_accessor postal_code: ::String
|
76
|
+
attr_accessor street1: ::String
|
77
|
+
attr_accessor street2: ::String
|
78
|
+
attr_accessor street3: ::String
|
79
|
+
attr_accessor api_version: ::String
|
80
|
+
SENSITIVE: []
|
81
|
+
end
|
82
|
+
|
83
|
+
class GetShippingLabelOutput
|
84
|
+
attr_accessor shipping_label_url: ::String
|
85
|
+
attr_accessor warning: ::String
|
86
|
+
SENSITIVE: []
|
87
|
+
end
|
88
|
+
|
89
|
+
class GetStatusInput
|
90
|
+
attr_accessor job_id: ::String
|
91
|
+
attr_accessor api_version: ::String
|
92
|
+
SENSITIVE: []
|
93
|
+
end
|
94
|
+
|
95
|
+
class GetStatusOutput
|
96
|
+
attr_accessor job_id: ::String
|
97
|
+
attr_accessor job_type: ("Import" | "Export")
|
98
|
+
attr_accessor location_code: ::String
|
99
|
+
attr_accessor location_message: ::String
|
100
|
+
attr_accessor progress_code: ::String
|
101
|
+
attr_accessor progress_message: ::String
|
102
|
+
attr_accessor carrier: ::String
|
103
|
+
attr_accessor tracking_number: ::String
|
104
|
+
attr_accessor log_bucket: ::String
|
105
|
+
attr_accessor log_key: ::String
|
106
|
+
attr_accessor error_count: ::Integer
|
107
|
+
attr_accessor signature: ::String
|
108
|
+
attr_accessor signature_file_contents: ::String
|
109
|
+
attr_accessor current_manifest: ::String
|
110
|
+
attr_accessor creation_date: ::Time
|
111
|
+
attr_accessor artifact_list: ::Array[Types::Artifact]
|
112
|
+
SENSITIVE: []
|
113
|
+
end
|
114
|
+
|
115
|
+
class InvalidAccessKeyIdException
|
116
|
+
attr_accessor message: ::String
|
117
|
+
SENSITIVE: []
|
118
|
+
end
|
119
|
+
|
120
|
+
class InvalidAddressException
|
121
|
+
attr_accessor message: ::String
|
122
|
+
SENSITIVE: []
|
123
|
+
end
|
124
|
+
|
125
|
+
class InvalidCustomsException
|
126
|
+
attr_accessor message: ::String
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
|
130
|
+
class InvalidFileSystemException
|
131
|
+
attr_accessor message: ::String
|
132
|
+
SENSITIVE: []
|
133
|
+
end
|
134
|
+
|
135
|
+
class InvalidJobIdException
|
136
|
+
attr_accessor message: ::String
|
137
|
+
SENSITIVE: []
|
138
|
+
end
|
139
|
+
|
140
|
+
class InvalidManifestFieldException
|
141
|
+
attr_accessor message: ::String
|
142
|
+
SENSITIVE: []
|
143
|
+
end
|
144
|
+
|
145
|
+
class InvalidParameterException
|
146
|
+
attr_accessor message: ::String
|
147
|
+
SENSITIVE: []
|
148
|
+
end
|
149
|
+
|
150
|
+
class InvalidVersionException
|
151
|
+
attr_accessor message: ::String
|
152
|
+
SENSITIVE: []
|
153
|
+
end
|
154
|
+
|
155
|
+
class Job
|
156
|
+
attr_accessor job_id: ::String
|
157
|
+
attr_accessor creation_date: ::Time
|
158
|
+
attr_accessor is_canceled: bool
|
159
|
+
attr_accessor job_type: ("Import" | "Export")
|
160
|
+
SENSITIVE: []
|
161
|
+
end
|
162
|
+
|
163
|
+
class ListJobsInput
|
164
|
+
attr_accessor max_jobs: ::Integer
|
165
|
+
attr_accessor marker: ::String
|
166
|
+
attr_accessor api_version: ::String
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
170
|
+
class ListJobsOutput
|
171
|
+
attr_accessor jobs: ::Array[Types::Job]
|
172
|
+
attr_accessor is_truncated: bool
|
173
|
+
SENSITIVE: []
|
174
|
+
end
|
175
|
+
|
176
|
+
class MalformedManifestException
|
177
|
+
attr_accessor message: ::String
|
178
|
+
SENSITIVE: []
|
179
|
+
end
|
180
|
+
|
181
|
+
class MissingCustomsException
|
182
|
+
attr_accessor message: ::String
|
183
|
+
SENSITIVE: []
|
184
|
+
end
|
185
|
+
|
186
|
+
class MissingManifestFieldException
|
187
|
+
attr_accessor message: ::String
|
188
|
+
SENSITIVE: []
|
189
|
+
end
|
190
|
+
|
191
|
+
class MissingParameterException
|
192
|
+
attr_accessor message: ::String
|
193
|
+
SENSITIVE: []
|
194
|
+
end
|
195
|
+
|
196
|
+
class MultipleRegionsException
|
197
|
+
attr_accessor message: ::String
|
198
|
+
SENSITIVE: []
|
199
|
+
end
|
200
|
+
|
201
|
+
class NoSuchBucketException
|
202
|
+
attr_accessor message: ::String
|
203
|
+
SENSITIVE: []
|
204
|
+
end
|
205
|
+
|
206
|
+
class UnableToCancelJobIdException
|
207
|
+
attr_accessor message: ::String
|
208
|
+
SENSITIVE: []
|
209
|
+
end
|
210
|
+
|
211
|
+
class UnableToUpdateJobIdException
|
212
|
+
attr_accessor message: ::String
|
213
|
+
SENSITIVE: []
|
214
|
+
end
|
215
|
+
|
216
|
+
class UpdateJobInput
|
217
|
+
attr_accessor job_id: ::String
|
218
|
+
attr_accessor manifest: ::String
|
219
|
+
attr_accessor job_type: ("Import" | "Export")
|
220
|
+
attr_accessor validate_only: bool
|
221
|
+
attr_accessor api_version: ::String
|
222
|
+
SENSITIVE: []
|
223
|
+
end
|
224
|
+
|
225
|
+
class UpdateJobOutput
|
226
|
+
attr_accessor success: bool
|
227
|
+
attr_accessor warning_message: ::String
|
228
|
+
attr_accessor artifact_list: ::Array[Types::Artifact]
|
229
|
+
SENSITIVE: []
|
230
|
+
end
|
231
|
+
end
|
232
|
+
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 ImportExport
|
10
|
+
module Waiters
|
11
|
+
end
|
12
|
+
end
|
13
|
+
end
|
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.44.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2024-04-25 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.193.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.193.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv2
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -62,13 +62,18 @@ files:
|
|
62
62
|
- lib/aws-sdk-importexport/errors.rb
|
63
63
|
- lib/aws-sdk-importexport/resource.rb
|
64
64
|
- lib/aws-sdk-importexport/types.rb
|
65
|
+
- sig/client.rbs
|
66
|
+
- sig/errors.rbs
|
67
|
+
- sig/resource.rbs
|
68
|
+
- sig/types.rbs
|
69
|
+
- sig/waiters.rbs
|
65
70
|
homepage: https://github.com/aws/aws-sdk-ruby
|
66
71
|
licenses:
|
67
72
|
- Apache-2.0
|
68
73
|
metadata:
|
69
74
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-importexport
|
70
75
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-importexport/CHANGELOG.md
|
71
|
-
post_install_message:
|
76
|
+
post_install_message:
|
72
77
|
rdoc_options: []
|
73
78
|
require_paths:
|
74
79
|
- lib
|
@@ -83,8 +88,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
83
88
|
- !ruby/object:Gem::Version
|
84
89
|
version: '0'
|
85
90
|
requirements: []
|
86
|
-
rubygems_version: 3.
|
87
|
-
signing_key:
|
91
|
+
rubygems_version: 3.4.10
|
92
|
+
signing_key:
|
88
93
|
specification_version: 4
|
89
94
|
summary: AWS SDK for Ruby - AWS Import/Export
|
90
95
|
test_files: []
|