aws-sdk-migrationhub 1.51.0 → 1.53.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-migrationhub/client.rb +70 -46
- data/lib/aws-sdk-migrationhub/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-migrationhub.rb +1 -1
- data/sig/client.rbs +298 -0
- data/sig/errors.rbs +47 -0
- data/sig/resource.rbs +80 -0
- data/sig/types.rbs +313 -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: 78ac9721b8a4f1a0d11fc71f75a60c835df3deb47105378b4e1389177339e7f0
|
4
|
+
data.tar.gz: ba696bd697ec15d0f5b2482de3fc91d79e73ab580086ff21d3bc327995e401c1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 4886c95edea2f325194a2b6e4b62f177d942111cc6b7d34ff67120fac3c5d2d5d0adfce43a711f9b497b2390bb197c85f91c4e5f524d4d498cf8fc1a70443a7f
|
7
|
+
data.tar.gz: 4810193991036b98919b63a8f594008eb670abffef776ab1e9e37047039aabcbdba55b3bf1016d08ae2533eb998c56d6f7a7a023ffef8b0da4d7670d0596bc98
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.53.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.52.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.51.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.53.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::MigrationHub
|
|
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)
|
@@ -196,10 +198,17 @@ module Aws::MigrationHub
|
|
196
198
|
# When set to 'true' the request body will not be compressed
|
197
199
|
# for supported operations.
|
198
200
|
#
|
199
|
-
# @option options [String] :endpoint
|
200
|
-
#
|
201
|
-
#
|
202
|
-
#
|
201
|
+
# @option options [String, URI::HTTPS, URI::HTTP] :endpoint
|
202
|
+
# Normally you should not configure the `:endpoint` option
|
203
|
+
# directly. This is normally constructed from the `:region`
|
204
|
+
# option. Configuring `:endpoint` is normally reserved for
|
205
|
+
# connecting to test or custom endpoints. The endpoint should
|
206
|
+
# be a URI formatted like:
|
207
|
+
#
|
208
|
+
# 'http://example.com'
|
209
|
+
# 'https://example.com'
|
210
|
+
# 'http://example.com:123'
|
211
|
+
#
|
203
212
|
#
|
204
213
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
205
214
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
@@ -347,50 +356,65 @@ module Aws::MigrationHub
|
|
347
356
|
# @option options [Aws::MigrationHub::EndpointProvider] :endpoint_provider
|
348
357
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::MigrationHub::EndpointParameters`
|
349
358
|
#
|
350
|
-
# @option options [
|
351
|
-
#
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
# @option options [Float] :
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
368
|
-
#
|
369
|
-
#
|
370
|
-
#
|
371
|
-
#
|
372
|
-
#
|
373
|
-
#
|
374
|
-
#
|
359
|
+
# @option options [Float] :http_continue_timeout (1)
|
360
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
361
|
+
# request body. This option has no effect unless the request has "Expect"
|
362
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
363
|
+
# behaviour. This value can safely be set per request on the session.
|
364
|
+
#
|
365
|
+
# @option options [Float] :http_idle_timeout (5)
|
366
|
+
# The number of seconds a connection is allowed to sit idle before it
|
367
|
+
# is considered stale. Stale connections are closed and removed from the
|
368
|
+
# pool before making a request.
|
369
|
+
#
|
370
|
+
# @option options [Float] :http_open_timeout (15)
|
371
|
+
# The default number of seconds to wait for response data.
|
372
|
+
# This value can safely be set per-request on the session.
|
373
|
+
#
|
374
|
+
# @option options [URI::HTTP,String] :http_proxy
|
375
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
376
|
+
#
|
377
|
+
# @option options [Float] :http_read_timeout (60)
|
378
|
+
# The default number of seconds to wait for response data.
|
379
|
+
# This value can safely be set per-request on the session.
|
380
|
+
#
|
381
|
+
# @option options [Boolean] :http_wire_trace (false)
|
382
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
383
|
+
#
|
384
|
+
# @option options [Proc] :on_chunk_received
|
385
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
386
|
+
# of the response body is received. It provides three arguments: the chunk,
|
387
|
+
# the number of bytes received, and the total number of
|
388
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
389
|
+
#
|
390
|
+
# @option options [Proc] :on_chunk_sent
|
391
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
392
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
393
|
+
# the number of bytes read from the body, and the total number of
|
394
|
+
# bytes in the body.
|
395
|
+
#
|
396
|
+
# @option options [Boolean] :raise_response_errors (true)
|
397
|
+
# When `true`, response errors are raised.
|
398
|
+
#
|
399
|
+
# @option options [String] :ssl_ca_bundle
|
400
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
401
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
402
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
403
|
+
#
|
404
|
+
# @option options [String] :ssl_ca_directory
|
405
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
406
|
+
# authority files for verifying peer certificates. If you do
|
407
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
408
|
+
# default will be used if available.
|
375
409
|
#
|
376
|
-
# @option options [
|
377
|
-
#
|
410
|
+
# @option options [String] :ssl_ca_store
|
411
|
+
# Sets the X509::Store to verify peer certificate.
|
378
412
|
#
|
379
|
-
# @option options [
|
380
|
-
#
|
381
|
-
# connection.
|
413
|
+
# @option options [Float] :ssl_timeout
|
414
|
+
# Sets the SSL timeout in seconds
|
382
415
|
#
|
383
|
-
# @option options [
|
384
|
-
#
|
385
|
-
# verifying peer certificates. If you do not pass
|
386
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
387
|
-
# will be used if available.
|
388
|
-
#
|
389
|
-
# @option options [String] :ssl_ca_directory Full path of the
|
390
|
-
# directory that contains the unbundled SSL certificate
|
391
|
-
# authority files for verifying peer certificates. If you do
|
392
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
393
|
-
# system default will be used if available.
|
416
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
417
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
394
418
|
#
|
395
419
|
def initialize(*args)
|
396
420
|
super
|
@@ -1231,7 +1255,7 @@ module Aws::MigrationHub
|
|
1231
1255
|
params: params,
|
1232
1256
|
config: config)
|
1233
1257
|
context[:gem_name] = 'aws-sdk-migrationhub'
|
1234
|
-
context[:gem_version] = '1.
|
1258
|
+
context[:gem_version] = '1.53.0'
|
1235
1259
|
Seahorse::Client::Request.new(handlers, context)
|
1236
1260
|
end
|
1237
1261
|
|
@@ -14,6 +14,7 @@ module Aws::MigrationHub
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::MigrationHub::EndpointProvider',
|
17
|
+
rbs_type: 'untyped',
|
17
18
|
docstring: 'The endpoint provider used to resolve endpoints. Any '\
|
18
19
|
'object that responds to `#resolve_endpoint(parameters)` '\
|
19
20
|
'where `parameters` is a Struct similar to '\
|
data/lib/aws-sdk-migrationhub.rb
CHANGED
data/sig/client.rbs
ADDED
@@ -0,0 +1,298 @@
|
|
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 MigrationHub
|
10
|
+
class Client < ::Seahorse::Client::Base
|
11
|
+
include ::Aws::ClientStubs
|
12
|
+
|
13
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/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
|
+
?simple_json: bool,
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> instance
|
73
|
+
| (?Hash[Symbol, untyped]) -> instance
|
74
|
+
|
75
|
+
|
76
|
+
interface _AssociateCreatedArtifactResponseSuccess
|
77
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateCreatedArtifactResult]
|
78
|
+
end
|
79
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#associate_created_artifact-instance_method
|
80
|
+
def associate_created_artifact: (
|
81
|
+
progress_update_stream: ::String,
|
82
|
+
migration_task_name: ::String,
|
83
|
+
created_artifact: {
|
84
|
+
name: ::String,
|
85
|
+
description: ::String?
|
86
|
+
},
|
87
|
+
?dry_run: bool
|
88
|
+
) -> _AssociateCreatedArtifactResponseSuccess
|
89
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateCreatedArtifactResponseSuccess
|
90
|
+
|
91
|
+
interface _AssociateDiscoveredResourceResponseSuccess
|
92
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateDiscoveredResourceResult]
|
93
|
+
end
|
94
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#associate_discovered_resource-instance_method
|
95
|
+
def associate_discovered_resource: (
|
96
|
+
progress_update_stream: ::String,
|
97
|
+
migration_task_name: ::String,
|
98
|
+
discovered_resource: {
|
99
|
+
configuration_id: ::String,
|
100
|
+
description: ::String?
|
101
|
+
},
|
102
|
+
?dry_run: bool
|
103
|
+
) -> _AssociateDiscoveredResourceResponseSuccess
|
104
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AssociateDiscoveredResourceResponseSuccess
|
105
|
+
|
106
|
+
interface _CreateProgressUpdateStreamResponseSuccess
|
107
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::CreateProgressUpdateStreamResult]
|
108
|
+
end
|
109
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#create_progress_update_stream-instance_method
|
110
|
+
def create_progress_update_stream: (
|
111
|
+
progress_update_stream_name: ::String,
|
112
|
+
?dry_run: bool
|
113
|
+
) -> _CreateProgressUpdateStreamResponseSuccess
|
114
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateProgressUpdateStreamResponseSuccess
|
115
|
+
|
116
|
+
interface _DeleteProgressUpdateStreamResponseSuccess
|
117
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteProgressUpdateStreamResult]
|
118
|
+
end
|
119
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#delete_progress_update_stream-instance_method
|
120
|
+
def delete_progress_update_stream: (
|
121
|
+
progress_update_stream_name: ::String,
|
122
|
+
?dry_run: bool
|
123
|
+
) -> _DeleteProgressUpdateStreamResponseSuccess
|
124
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteProgressUpdateStreamResponseSuccess
|
125
|
+
|
126
|
+
interface _DescribeApplicationStateResponseSuccess
|
127
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeApplicationStateResult]
|
128
|
+
def application_status: () -> ("NOT_STARTED" | "IN_PROGRESS" | "COMPLETED")
|
129
|
+
def last_updated_time: () -> ::Time
|
130
|
+
end
|
131
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#describe_application_state-instance_method
|
132
|
+
def describe_application_state: (
|
133
|
+
application_id: ::String
|
134
|
+
) -> _DescribeApplicationStateResponseSuccess
|
135
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeApplicationStateResponseSuccess
|
136
|
+
|
137
|
+
interface _DescribeMigrationTaskResponseSuccess
|
138
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DescribeMigrationTaskResult]
|
139
|
+
def migration_task: () -> Types::MigrationTask
|
140
|
+
end
|
141
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#describe_migration_task-instance_method
|
142
|
+
def describe_migration_task: (
|
143
|
+
progress_update_stream: ::String,
|
144
|
+
migration_task_name: ::String
|
145
|
+
) -> _DescribeMigrationTaskResponseSuccess
|
146
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeMigrationTaskResponseSuccess
|
147
|
+
|
148
|
+
interface _DisassociateCreatedArtifactResponseSuccess
|
149
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateCreatedArtifactResult]
|
150
|
+
end
|
151
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#disassociate_created_artifact-instance_method
|
152
|
+
def disassociate_created_artifact: (
|
153
|
+
progress_update_stream: ::String,
|
154
|
+
migration_task_name: ::String,
|
155
|
+
created_artifact_name: ::String,
|
156
|
+
?dry_run: bool
|
157
|
+
) -> _DisassociateCreatedArtifactResponseSuccess
|
158
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateCreatedArtifactResponseSuccess
|
159
|
+
|
160
|
+
interface _DisassociateDiscoveredResourceResponseSuccess
|
161
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateDiscoveredResourceResult]
|
162
|
+
end
|
163
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#disassociate_discovered_resource-instance_method
|
164
|
+
def disassociate_discovered_resource: (
|
165
|
+
progress_update_stream: ::String,
|
166
|
+
migration_task_name: ::String,
|
167
|
+
configuration_id: ::String,
|
168
|
+
?dry_run: bool
|
169
|
+
) -> _DisassociateDiscoveredResourceResponseSuccess
|
170
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DisassociateDiscoveredResourceResponseSuccess
|
171
|
+
|
172
|
+
interface _ImportMigrationTaskResponseSuccess
|
173
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ImportMigrationTaskResult]
|
174
|
+
end
|
175
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#import_migration_task-instance_method
|
176
|
+
def import_migration_task: (
|
177
|
+
progress_update_stream: ::String,
|
178
|
+
migration_task_name: ::String,
|
179
|
+
?dry_run: bool
|
180
|
+
) -> _ImportMigrationTaskResponseSuccess
|
181
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ImportMigrationTaskResponseSuccess
|
182
|
+
|
183
|
+
interface _ListApplicationStatesResponseSuccess
|
184
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListApplicationStatesResult]
|
185
|
+
def application_state_list: () -> ::Array[Types::ApplicationState]
|
186
|
+
def next_token: () -> ::String
|
187
|
+
end
|
188
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#list_application_states-instance_method
|
189
|
+
def list_application_states: (
|
190
|
+
?application_ids: Array[::String],
|
191
|
+
?next_token: ::String,
|
192
|
+
?max_results: ::Integer
|
193
|
+
) -> _ListApplicationStatesResponseSuccess
|
194
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListApplicationStatesResponseSuccess
|
195
|
+
|
196
|
+
interface _ListCreatedArtifactsResponseSuccess
|
197
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListCreatedArtifactsResult]
|
198
|
+
def next_token: () -> ::String
|
199
|
+
def created_artifact_list: () -> ::Array[Types::CreatedArtifact]
|
200
|
+
end
|
201
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#list_created_artifacts-instance_method
|
202
|
+
def list_created_artifacts: (
|
203
|
+
progress_update_stream: ::String,
|
204
|
+
migration_task_name: ::String,
|
205
|
+
?next_token: ::String,
|
206
|
+
?max_results: ::Integer
|
207
|
+
) -> _ListCreatedArtifactsResponseSuccess
|
208
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListCreatedArtifactsResponseSuccess
|
209
|
+
|
210
|
+
interface _ListDiscoveredResourcesResponseSuccess
|
211
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListDiscoveredResourcesResult]
|
212
|
+
def next_token: () -> ::String
|
213
|
+
def discovered_resource_list: () -> ::Array[Types::DiscoveredResource]
|
214
|
+
end
|
215
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#list_discovered_resources-instance_method
|
216
|
+
def list_discovered_resources: (
|
217
|
+
progress_update_stream: ::String,
|
218
|
+
migration_task_name: ::String,
|
219
|
+
?next_token: ::String,
|
220
|
+
?max_results: ::Integer
|
221
|
+
) -> _ListDiscoveredResourcesResponseSuccess
|
222
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListDiscoveredResourcesResponseSuccess
|
223
|
+
|
224
|
+
interface _ListMigrationTasksResponseSuccess
|
225
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListMigrationTasksResult]
|
226
|
+
def next_token: () -> ::String
|
227
|
+
def migration_task_summary_list: () -> ::Array[Types::MigrationTaskSummary]
|
228
|
+
end
|
229
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#list_migration_tasks-instance_method
|
230
|
+
def list_migration_tasks: (
|
231
|
+
?next_token: ::String,
|
232
|
+
?max_results: ::Integer,
|
233
|
+
?resource_name: ::String
|
234
|
+
) -> _ListMigrationTasksResponseSuccess
|
235
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListMigrationTasksResponseSuccess
|
236
|
+
|
237
|
+
interface _ListProgressUpdateStreamsResponseSuccess
|
238
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::ListProgressUpdateStreamsResult]
|
239
|
+
def progress_update_stream_summary_list: () -> ::Array[Types::ProgressUpdateStreamSummary]
|
240
|
+
def next_token: () -> ::String
|
241
|
+
end
|
242
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#list_progress_update_streams-instance_method
|
243
|
+
def list_progress_update_streams: (
|
244
|
+
?next_token: ::String,
|
245
|
+
?max_results: ::Integer
|
246
|
+
) -> _ListProgressUpdateStreamsResponseSuccess
|
247
|
+
| (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListProgressUpdateStreamsResponseSuccess
|
248
|
+
|
249
|
+
interface _NotifyApplicationStateResponseSuccess
|
250
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::NotifyApplicationStateResult]
|
251
|
+
end
|
252
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#notify_application_state-instance_method
|
253
|
+
def notify_application_state: (
|
254
|
+
application_id: ::String,
|
255
|
+
status: ("NOT_STARTED" | "IN_PROGRESS" | "COMPLETED"),
|
256
|
+
?update_date_time: ::Time,
|
257
|
+
?dry_run: bool
|
258
|
+
) -> _NotifyApplicationStateResponseSuccess
|
259
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _NotifyApplicationStateResponseSuccess
|
260
|
+
|
261
|
+
interface _NotifyMigrationTaskStateResponseSuccess
|
262
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::NotifyMigrationTaskStateResult]
|
263
|
+
end
|
264
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#notify_migration_task_state-instance_method
|
265
|
+
def notify_migration_task_state: (
|
266
|
+
progress_update_stream: ::String,
|
267
|
+
migration_task_name: ::String,
|
268
|
+
task: {
|
269
|
+
status: ("NOT_STARTED" | "IN_PROGRESS" | "FAILED" | "COMPLETED"),
|
270
|
+
status_detail: ::String?,
|
271
|
+
progress_percent: ::Integer?
|
272
|
+
},
|
273
|
+
update_date_time: ::Time,
|
274
|
+
next_update_seconds: ::Integer,
|
275
|
+
?dry_run: bool
|
276
|
+
) -> _NotifyMigrationTaskStateResponseSuccess
|
277
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _NotifyMigrationTaskStateResponseSuccess
|
278
|
+
|
279
|
+
interface _PutResourceAttributesResponseSuccess
|
280
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::PutResourceAttributesResult]
|
281
|
+
end
|
282
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Client.html#put_resource_attributes-instance_method
|
283
|
+
def put_resource_attributes: (
|
284
|
+
progress_update_stream: ::String,
|
285
|
+
migration_task_name: ::String,
|
286
|
+
resource_attribute_list: Array[
|
287
|
+
{
|
288
|
+
type: ("IPV4_ADDRESS" | "IPV6_ADDRESS" | "MAC_ADDRESS" | "FQDN" | "VM_MANAGER_ID" | "VM_MANAGED_OBJECT_REFERENCE" | "VM_NAME" | "VM_PATH" | "BIOS_ID" | "MOTHERBOARD_SERIAL_NUMBER"),
|
289
|
+
value: ::String
|
290
|
+
},
|
291
|
+
],
|
292
|
+
?dry_run: bool
|
293
|
+
) -> _PutResourceAttributesResponseSuccess
|
294
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _PutResourceAttributesResponseSuccess
|
295
|
+
end
|
296
|
+
end
|
297
|
+
end
|
298
|
+
|
data/sig/errors.rbs
ADDED
@@ -0,0 +1,47 @@
|
|
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 MigrationHub
|
10
|
+
module Errors
|
11
|
+
class ServiceError < ::Aws::Errors::ServiceError
|
12
|
+
end
|
13
|
+
|
14
|
+
class AccessDeniedException < ::Aws::Errors::ServiceError
|
15
|
+
def message: () -> ::String
|
16
|
+
end
|
17
|
+
class DryRunOperation < ::Aws::Errors::ServiceError
|
18
|
+
def message: () -> ::String
|
19
|
+
end
|
20
|
+
class HomeRegionNotSetException < ::Aws::Errors::ServiceError
|
21
|
+
def message: () -> ::String
|
22
|
+
end
|
23
|
+
class InternalServerError < ::Aws::Errors::ServiceError
|
24
|
+
def message: () -> ::String
|
25
|
+
end
|
26
|
+
class InvalidInputException < ::Aws::Errors::ServiceError
|
27
|
+
def message: () -> ::String
|
28
|
+
end
|
29
|
+
class PolicyErrorException < ::Aws::Errors::ServiceError
|
30
|
+
def message: () -> ::String
|
31
|
+
end
|
32
|
+
class ResourceNotFoundException < ::Aws::Errors::ServiceError
|
33
|
+
def message: () -> ::String
|
34
|
+
end
|
35
|
+
class ServiceUnavailableException < ::Aws::Errors::ServiceError
|
36
|
+
def message: () -> ::String
|
37
|
+
end
|
38
|
+
class ThrottlingException < ::Aws::Errors::ServiceError
|
39
|
+
def message: () -> ::String
|
40
|
+
def retry_after_seconds: () -> ::String
|
41
|
+
end
|
42
|
+
class UnauthorizedOperation < ::Aws::Errors::ServiceError
|
43
|
+
def message: () -> ::String
|
44
|
+
end
|
45
|
+
end
|
46
|
+
end
|
47
|
+
end
|
data/sig/resource.rbs
ADDED
@@ -0,0 +1,80 @@
|
|
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 MigrationHub
|
10
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/Resource.html
|
11
|
+
class Resource
|
12
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MigrationHub/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
|
+
?simple_json: bool,
|
52
|
+
?stub_responses: untyped,
|
53
|
+
?token_provider: untyped,
|
54
|
+
?use_dualstack_endpoint: bool,
|
55
|
+
?use_fips_endpoint: bool,
|
56
|
+
?validate_params: bool,
|
57
|
+
?endpoint_provider: untyped,
|
58
|
+
?http_proxy: String,
|
59
|
+
?http_open_timeout: (Float | Integer),
|
60
|
+
?http_read_timeout: (Float | Integer),
|
61
|
+
?http_idle_timeout: (Float | Integer),
|
62
|
+
?http_continue_timeout: (Float | Integer),
|
63
|
+
?ssl_timeout: (Float | Integer | nil),
|
64
|
+
?http_wire_trace: bool,
|
65
|
+
?ssl_verify_peer: bool,
|
66
|
+
?ssl_ca_bundle: String,
|
67
|
+
?ssl_ca_directory: String,
|
68
|
+
?ssl_ca_store: String,
|
69
|
+
?on_chunk_received: Proc,
|
70
|
+
?on_chunk_sent: Proc,
|
71
|
+
?raise_response_errors: bool
|
72
|
+
) -> void
|
73
|
+
| (?Hash[Symbol, untyped]) -> void
|
74
|
+
|
75
|
+
def client: () -> Client
|
76
|
+
|
77
|
+
|
78
|
+
end
|
79
|
+
end
|
80
|
+
end
|
data/sig/types.rbs
ADDED
@@ -0,0 +1,313 @@
|
|
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::MigrationHub
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class AccessDeniedException
|
12
|
+
attr_accessor message: ::String
|
13
|
+
SENSITIVE: []
|
14
|
+
end
|
15
|
+
|
16
|
+
class ApplicationState
|
17
|
+
attr_accessor application_id: ::String
|
18
|
+
attr_accessor application_status: ("NOT_STARTED" | "IN_PROGRESS" | "COMPLETED")
|
19
|
+
attr_accessor last_updated_time: ::Time
|
20
|
+
SENSITIVE: []
|
21
|
+
end
|
22
|
+
|
23
|
+
class AssociateCreatedArtifactRequest
|
24
|
+
attr_accessor progress_update_stream: ::String
|
25
|
+
attr_accessor migration_task_name: ::String
|
26
|
+
attr_accessor created_artifact: Types::CreatedArtifact
|
27
|
+
attr_accessor dry_run: bool
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class AssociateCreatedArtifactResult < Aws::EmptyStructure
|
32
|
+
end
|
33
|
+
|
34
|
+
class AssociateDiscoveredResourceRequest
|
35
|
+
attr_accessor progress_update_stream: ::String
|
36
|
+
attr_accessor migration_task_name: ::String
|
37
|
+
attr_accessor discovered_resource: Types::DiscoveredResource
|
38
|
+
attr_accessor dry_run: bool
|
39
|
+
SENSITIVE: []
|
40
|
+
end
|
41
|
+
|
42
|
+
class AssociateDiscoveredResourceResult < Aws::EmptyStructure
|
43
|
+
end
|
44
|
+
|
45
|
+
class CreateProgressUpdateStreamRequest
|
46
|
+
attr_accessor progress_update_stream_name: ::String
|
47
|
+
attr_accessor dry_run: bool
|
48
|
+
SENSITIVE: []
|
49
|
+
end
|
50
|
+
|
51
|
+
class CreateProgressUpdateStreamResult < Aws::EmptyStructure
|
52
|
+
end
|
53
|
+
|
54
|
+
class CreatedArtifact
|
55
|
+
attr_accessor name: ::String
|
56
|
+
attr_accessor description: ::String
|
57
|
+
SENSITIVE: []
|
58
|
+
end
|
59
|
+
|
60
|
+
class DeleteProgressUpdateStreamRequest
|
61
|
+
attr_accessor progress_update_stream_name: ::String
|
62
|
+
attr_accessor dry_run: bool
|
63
|
+
SENSITIVE: []
|
64
|
+
end
|
65
|
+
|
66
|
+
class DeleteProgressUpdateStreamResult < Aws::EmptyStructure
|
67
|
+
end
|
68
|
+
|
69
|
+
class DescribeApplicationStateRequest
|
70
|
+
attr_accessor application_id: ::String
|
71
|
+
SENSITIVE: []
|
72
|
+
end
|
73
|
+
|
74
|
+
class DescribeApplicationStateResult
|
75
|
+
attr_accessor application_status: ("NOT_STARTED" | "IN_PROGRESS" | "COMPLETED")
|
76
|
+
attr_accessor last_updated_time: ::Time
|
77
|
+
SENSITIVE: []
|
78
|
+
end
|
79
|
+
|
80
|
+
class DescribeMigrationTaskRequest
|
81
|
+
attr_accessor progress_update_stream: ::String
|
82
|
+
attr_accessor migration_task_name: ::String
|
83
|
+
SENSITIVE: []
|
84
|
+
end
|
85
|
+
|
86
|
+
class DescribeMigrationTaskResult
|
87
|
+
attr_accessor migration_task: Types::MigrationTask
|
88
|
+
SENSITIVE: []
|
89
|
+
end
|
90
|
+
|
91
|
+
class DisassociateCreatedArtifactRequest
|
92
|
+
attr_accessor progress_update_stream: ::String
|
93
|
+
attr_accessor migration_task_name: ::String
|
94
|
+
attr_accessor created_artifact_name: ::String
|
95
|
+
attr_accessor dry_run: bool
|
96
|
+
SENSITIVE: []
|
97
|
+
end
|
98
|
+
|
99
|
+
class DisassociateCreatedArtifactResult < Aws::EmptyStructure
|
100
|
+
end
|
101
|
+
|
102
|
+
class DisassociateDiscoveredResourceRequest
|
103
|
+
attr_accessor progress_update_stream: ::String
|
104
|
+
attr_accessor migration_task_name: ::String
|
105
|
+
attr_accessor configuration_id: ::String
|
106
|
+
attr_accessor dry_run: bool
|
107
|
+
SENSITIVE: []
|
108
|
+
end
|
109
|
+
|
110
|
+
class DisassociateDiscoveredResourceResult < Aws::EmptyStructure
|
111
|
+
end
|
112
|
+
|
113
|
+
class DiscoveredResource
|
114
|
+
attr_accessor configuration_id: ::String
|
115
|
+
attr_accessor description: ::String
|
116
|
+
SENSITIVE: []
|
117
|
+
end
|
118
|
+
|
119
|
+
class DryRunOperation
|
120
|
+
attr_accessor message: ::String
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class HomeRegionNotSetException
|
125
|
+
attr_accessor message: ::String
|
126
|
+
SENSITIVE: []
|
127
|
+
end
|
128
|
+
|
129
|
+
class ImportMigrationTaskRequest
|
130
|
+
attr_accessor progress_update_stream: ::String
|
131
|
+
attr_accessor migration_task_name: ::String
|
132
|
+
attr_accessor dry_run: bool
|
133
|
+
SENSITIVE: []
|
134
|
+
end
|
135
|
+
|
136
|
+
class ImportMigrationTaskResult < Aws::EmptyStructure
|
137
|
+
end
|
138
|
+
|
139
|
+
class InternalServerError
|
140
|
+
attr_accessor message: ::String
|
141
|
+
SENSITIVE: []
|
142
|
+
end
|
143
|
+
|
144
|
+
class InvalidInputException
|
145
|
+
attr_accessor message: ::String
|
146
|
+
SENSITIVE: []
|
147
|
+
end
|
148
|
+
|
149
|
+
class ListApplicationStatesRequest
|
150
|
+
attr_accessor application_ids: ::Array[::String]
|
151
|
+
attr_accessor next_token: ::String
|
152
|
+
attr_accessor max_results: ::Integer
|
153
|
+
SENSITIVE: []
|
154
|
+
end
|
155
|
+
|
156
|
+
class ListApplicationStatesResult
|
157
|
+
attr_accessor application_state_list: ::Array[Types::ApplicationState]
|
158
|
+
attr_accessor next_token: ::String
|
159
|
+
SENSITIVE: []
|
160
|
+
end
|
161
|
+
|
162
|
+
class ListCreatedArtifactsRequest
|
163
|
+
attr_accessor progress_update_stream: ::String
|
164
|
+
attr_accessor migration_task_name: ::String
|
165
|
+
attr_accessor next_token: ::String
|
166
|
+
attr_accessor max_results: ::Integer
|
167
|
+
SENSITIVE: []
|
168
|
+
end
|
169
|
+
|
170
|
+
class ListCreatedArtifactsResult
|
171
|
+
attr_accessor next_token: ::String
|
172
|
+
attr_accessor created_artifact_list: ::Array[Types::CreatedArtifact]
|
173
|
+
SENSITIVE: []
|
174
|
+
end
|
175
|
+
|
176
|
+
class ListDiscoveredResourcesRequest
|
177
|
+
attr_accessor progress_update_stream: ::String
|
178
|
+
attr_accessor migration_task_name: ::String
|
179
|
+
attr_accessor next_token: ::String
|
180
|
+
attr_accessor max_results: ::Integer
|
181
|
+
SENSITIVE: []
|
182
|
+
end
|
183
|
+
|
184
|
+
class ListDiscoveredResourcesResult
|
185
|
+
attr_accessor next_token: ::String
|
186
|
+
attr_accessor discovered_resource_list: ::Array[Types::DiscoveredResource]
|
187
|
+
SENSITIVE: []
|
188
|
+
end
|
189
|
+
|
190
|
+
class ListMigrationTasksRequest
|
191
|
+
attr_accessor next_token: ::String
|
192
|
+
attr_accessor max_results: ::Integer
|
193
|
+
attr_accessor resource_name: ::String
|
194
|
+
SENSITIVE: []
|
195
|
+
end
|
196
|
+
|
197
|
+
class ListMigrationTasksResult
|
198
|
+
attr_accessor next_token: ::String
|
199
|
+
attr_accessor migration_task_summary_list: ::Array[Types::MigrationTaskSummary]
|
200
|
+
SENSITIVE: []
|
201
|
+
end
|
202
|
+
|
203
|
+
class ListProgressUpdateStreamsRequest
|
204
|
+
attr_accessor next_token: ::String
|
205
|
+
attr_accessor max_results: ::Integer
|
206
|
+
SENSITIVE: []
|
207
|
+
end
|
208
|
+
|
209
|
+
class ListProgressUpdateStreamsResult
|
210
|
+
attr_accessor progress_update_stream_summary_list: ::Array[Types::ProgressUpdateStreamSummary]
|
211
|
+
attr_accessor next_token: ::String
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class MigrationTask
|
216
|
+
attr_accessor progress_update_stream: ::String
|
217
|
+
attr_accessor migration_task_name: ::String
|
218
|
+
attr_accessor task: Types::Task
|
219
|
+
attr_accessor update_date_time: ::Time
|
220
|
+
attr_accessor resource_attribute_list: ::Array[Types::ResourceAttribute]
|
221
|
+
SENSITIVE: []
|
222
|
+
end
|
223
|
+
|
224
|
+
class MigrationTaskSummary
|
225
|
+
attr_accessor progress_update_stream: ::String
|
226
|
+
attr_accessor migration_task_name: ::String
|
227
|
+
attr_accessor status: ("NOT_STARTED" | "IN_PROGRESS" | "FAILED" | "COMPLETED")
|
228
|
+
attr_accessor progress_percent: ::Integer
|
229
|
+
attr_accessor status_detail: ::String
|
230
|
+
attr_accessor update_date_time: ::Time
|
231
|
+
SENSITIVE: []
|
232
|
+
end
|
233
|
+
|
234
|
+
class NotifyApplicationStateRequest
|
235
|
+
attr_accessor application_id: ::String
|
236
|
+
attr_accessor status: ("NOT_STARTED" | "IN_PROGRESS" | "COMPLETED")
|
237
|
+
attr_accessor update_date_time: ::Time
|
238
|
+
attr_accessor dry_run: bool
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class NotifyApplicationStateResult < Aws::EmptyStructure
|
243
|
+
end
|
244
|
+
|
245
|
+
class NotifyMigrationTaskStateRequest
|
246
|
+
attr_accessor progress_update_stream: ::String
|
247
|
+
attr_accessor migration_task_name: ::String
|
248
|
+
attr_accessor task: Types::Task
|
249
|
+
attr_accessor update_date_time: ::Time
|
250
|
+
attr_accessor next_update_seconds: ::Integer
|
251
|
+
attr_accessor dry_run: bool
|
252
|
+
SENSITIVE: []
|
253
|
+
end
|
254
|
+
|
255
|
+
class NotifyMigrationTaskStateResult < Aws::EmptyStructure
|
256
|
+
end
|
257
|
+
|
258
|
+
class PolicyErrorException
|
259
|
+
attr_accessor message: ::String
|
260
|
+
SENSITIVE: []
|
261
|
+
end
|
262
|
+
|
263
|
+
class ProgressUpdateStreamSummary
|
264
|
+
attr_accessor progress_update_stream_name: ::String
|
265
|
+
SENSITIVE: []
|
266
|
+
end
|
267
|
+
|
268
|
+
class PutResourceAttributesRequest
|
269
|
+
attr_accessor progress_update_stream: ::String
|
270
|
+
attr_accessor migration_task_name: ::String
|
271
|
+
attr_accessor resource_attribute_list: ::Array[Types::ResourceAttribute]
|
272
|
+
attr_accessor dry_run: bool
|
273
|
+
SENSITIVE: []
|
274
|
+
end
|
275
|
+
|
276
|
+
class PutResourceAttributesResult < Aws::EmptyStructure
|
277
|
+
end
|
278
|
+
|
279
|
+
class ResourceAttribute
|
280
|
+
attr_accessor type: ("IPV4_ADDRESS" | "IPV6_ADDRESS" | "MAC_ADDRESS" | "FQDN" | "VM_MANAGER_ID" | "VM_MANAGED_OBJECT_REFERENCE" | "VM_NAME" | "VM_PATH" | "BIOS_ID" | "MOTHERBOARD_SERIAL_NUMBER")
|
281
|
+
attr_accessor value: ::String
|
282
|
+
SENSITIVE: []
|
283
|
+
end
|
284
|
+
|
285
|
+
class ResourceNotFoundException
|
286
|
+
attr_accessor message: ::String
|
287
|
+
SENSITIVE: []
|
288
|
+
end
|
289
|
+
|
290
|
+
class ServiceUnavailableException
|
291
|
+
attr_accessor message: ::String
|
292
|
+
SENSITIVE: []
|
293
|
+
end
|
294
|
+
|
295
|
+
class Task
|
296
|
+
attr_accessor status: ("NOT_STARTED" | "IN_PROGRESS" | "FAILED" | "COMPLETED")
|
297
|
+
attr_accessor status_detail: ::String
|
298
|
+
attr_accessor progress_percent: ::Integer
|
299
|
+
SENSITIVE: []
|
300
|
+
end
|
301
|
+
|
302
|
+
class ThrottlingException
|
303
|
+
attr_accessor message: ::String
|
304
|
+
attr_accessor retry_after_seconds: ::Integer
|
305
|
+
SENSITIVE: []
|
306
|
+
end
|
307
|
+
|
308
|
+
class UnauthorizedOperation
|
309
|
+
attr_accessor message: ::String
|
310
|
+
SENSITIVE: []
|
311
|
+
end
|
312
|
+
end
|
313
|
+
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 MigrationHub
|
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-migrationhub
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.53.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-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|
@@ -66,13 +66,18 @@ files:
|
|
66
66
|
- lib/aws-sdk-migrationhub/plugins/endpoints.rb
|
67
67
|
- lib/aws-sdk-migrationhub/resource.rb
|
68
68
|
- lib/aws-sdk-migrationhub/types.rb
|
69
|
+
- sig/client.rbs
|
70
|
+
- sig/errors.rbs
|
71
|
+
- sig/resource.rbs
|
72
|
+
- sig/types.rbs
|
73
|
+
- sig/waiters.rbs
|
69
74
|
homepage: https://github.com/aws/aws-sdk-ruby
|
70
75
|
licenses:
|
71
76
|
- Apache-2.0
|
72
77
|
metadata:
|
73
78
|
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-migrationhub
|
74
79
|
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-migrationhub/CHANGELOG.md
|
75
|
-
post_install_message:
|
80
|
+
post_install_message:
|
76
81
|
rdoc_options: []
|
77
82
|
require_paths:
|
78
83
|
- lib
|
@@ -87,8 +92,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
87
92
|
- !ruby/object:Gem::Version
|
88
93
|
version: '0'
|
89
94
|
requirements: []
|
90
|
-
rubygems_version: 3.
|
91
|
-
signing_key:
|
95
|
+
rubygems_version: 3.4.10
|
96
|
+
signing_key:
|
92
97
|
specification_version: 4
|
93
98
|
summary: AWS SDK for Ruby - AWS Migration Hub
|
94
99
|
test_files: []
|