aws-sdk-importexport 1.42.0 → 1.43.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-importexport/client.rb +1 -1
- 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: c5ed0ac57614359fd9f40eb49da65d09cd57d2c8ff82c41ef9694e40fca15987
|
4
|
+
data.tar.gz: 244482dba0250c3ec2c0c3d5e71c65fbd6efa62e2aaa6c0ae1940539347b2bd6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e8d91bf179868ed674f404c36ee5436a2a405ab54b7a8dc8aa3a3c8f37f2e7c1adf2f2b53cc96b5cacaf7c615467be9355da8fa6788ad957120f824c7d6e309
|
7
|
+
data.tar.gz: 04a9e852b8fc54639151c7d931096d5f5842954aa907ee7eec53c3b2b1ab6e9f2ce83090c05b613a3eaf3f38128d9afca1b068d712ecd444b0d5183084423f87
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.43.0
|
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.43.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-01-26 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.191.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.191.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: []
|