aws-sdk-mgn 1.29.0 → 1.31.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-mgn/client.rb +88 -60
- data/lib/aws-sdk-mgn/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-mgn.rb +1 -1
- data/sig/client.rbs +1484 -0
- data/sig/errors.rbs +62 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +1427 -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: f64886230019b47575c2c5d41230b9f520eca8dcd17a9d2ab196c587d67bca08
|
4
|
+
data.tar.gz: 0c7f588316ff0158e456c8e81492a2441986416fec863b7096680b017edd76cc
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 67b4dcdd42baa6ac4ffe5cc13887431504c13e31e6b886d7b7e6aeaa529bb04fff60f69bfa4db402291bff4261a98f24313df9aa6fe58c716948bccdaee964a9
|
7
|
+
data.tar.gz: 4b0a46627d276d0138a4481990be7cd1f65751224e4cdae84a5882b1317a1c1e00ddaedc3201922961a951c46b6b8a4e384e9fed3de26091101db583d0234d9c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.31.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.30.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.29.0 (2023-11-28)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.31.0
|
data/lib/aws-sdk-mgn/client.rb
CHANGED
@@ -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::Mgn
|
|
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::Mgn
|
|
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
|
@@ -337,50 +346,65 @@ module Aws::Mgn
|
|
337
346
|
# @option options [Aws::Mgn::EndpointProvider] :endpoint_provider
|
338
347
|
# The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Mgn::EndpointParameters`
|
339
348
|
#
|
340
|
-
# @option options [
|
341
|
-
#
|
342
|
-
#
|
343
|
-
#
|
344
|
-
#
|
345
|
-
#
|
346
|
-
#
|
347
|
-
#
|
348
|
-
#
|
349
|
-
#
|
350
|
-
#
|
351
|
-
# @option options [Float] :
|
352
|
-
#
|
353
|
-
#
|
354
|
-
#
|
355
|
-
#
|
356
|
-
#
|
357
|
-
#
|
358
|
-
#
|
359
|
-
#
|
360
|
-
#
|
361
|
-
#
|
362
|
-
#
|
363
|
-
#
|
364
|
-
#
|
365
|
-
#
|
366
|
-
#
|
367
|
-
#
|
349
|
+
# @option options [Float] :http_continue_timeout (1)
|
350
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
351
|
+
# request body. This option has no effect unless the request has "Expect"
|
352
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
353
|
+
# behaviour. This value can safely be set per request on the session.
|
354
|
+
#
|
355
|
+
# @option options [Float] :http_idle_timeout (5)
|
356
|
+
# The number of seconds a connection is allowed to sit idle before it
|
357
|
+
# is considered stale. Stale connections are closed and removed from the
|
358
|
+
# pool before making a request.
|
359
|
+
#
|
360
|
+
# @option options [Float] :http_open_timeout (15)
|
361
|
+
# The default number of seconds to wait for response data.
|
362
|
+
# This value can safely be set per-request on the session.
|
363
|
+
#
|
364
|
+
# @option options [URI::HTTP,String] :http_proxy
|
365
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
366
|
+
#
|
367
|
+
# @option options [Float] :http_read_timeout (60)
|
368
|
+
# The default number of seconds to wait for response data.
|
369
|
+
# This value can safely be set per-request on the session.
|
370
|
+
#
|
371
|
+
# @option options [Boolean] :http_wire_trace (false)
|
372
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
373
|
+
#
|
374
|
+
# @option options [Proc] :on_chunk_received
|
375
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
376
|
+
# of the response body is received. It provides three arguments: the chunk,
|
377
|
+
# the number of bytes received, and the total number of
|
378
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
379
|
+
#
|
380
|
+
# @option options [Proc] :on_chunk_sent
|
381
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
382
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
383
|
+
# the number of bytes read from the body, and the total number of
|
384
|
+
# bytes in the body.
|
385
|
+
#
|
386
|
+
# @option options [Boolean] :raise_response_errors (true)
|
387
|
+
# When `true`, response errors are raised.
|
388
|
+
#
|
389
|
+
# @option options [String] :ssl_ca_bundle
|
390
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
391
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
392
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
393
|
+
#
|
394
|
+
# @option options [String] :ssl_ca_directory
|
395
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
396
|
+
# authority files for verifying peer certificates. If you do
|
397
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
398
|
+
# default will be used if available.
|
368
399
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# connection.
|
400
|
+
# @option options [String] :ssl_ca_store
|
401
|
+
# Sets the X509::Store to verify peer certificate.
|
372
402
|
#
|
373
|
-
# @option options [
|
374
|
-
#
|
375
|
-
# verifying peer certificates. If you do not pass
|
376
|
-
# `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
|
377
|
-
# will be used if available.
|
403
|
+
# @option options [Float] :ssl_timeout
|
404
|
+
# Sets the SSL timeout in seconds
|
378
405
|
#
|
379
|
-
# @option options [
|
380
|
-
#
|
381
|
-
# authority files for verifying peer certificates. If you do
|
382
|
-
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
|
383
|
-
# system default will be used if available.
|
406
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
407
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
384
408
|
#
|
385
409
|
def initialize(*args)
|
386
410
|
super
|
@@ -868,7 +892,7 @@ module Aws::Mgn
|
|
868
892
|
#
|
869
893
|
# resp = client.create_launch_configuration_template({
|
870
894
|
# associate_public_ip_address: false,
|
871
|
-
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI
|
895
|
+
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI, USE_SOURCE
|
872
896
|
# copy_private_ip: false,
|
873
897
|
# copy_tags: false,
|
874
898
|
# enable_map_auto_tagging: false,
|
@@ -925,7 +949,7 @@ module Aws::Mgn
|
|
925
949
|
#
|
926
950
|
# resp.arn #=> String
|
927
951
|
# resp.associate_public_ip_address #=> Boolean
|
928
|
-
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI"
|
952
|
+
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI", "USE_SOURCE"
|
929
953
|
# resp.copy_private_ip #=> Boolean
|
930
954
|
# resp.copy_tags #=> Boolean
|
931
955
|
# resp.ec2_launch_template_id #=> String
|
@@ -1524,7 +1548,7 @@ module Aws::Mgn
|
|
1524
1548
|
# resp.items #=> Array
|
1525
1549
|
# resp.items[0].arn #=> String
|
1526
1550
|
# resp.items[0].associate_public_ip_address #=> Boolean
|
1527
|
-
# resp.items[0].boot_mode #=> String, one of "LEGACY_BIOS", "UEFI"
|
1551
|
+
# resp.items[0].boot_mode #=> String, one of "LEGACY_BIOS", "UEFI", "USE_SOURCE"
|
1528
1552
|
# resp.items[0].copy_private_ip #=> Boolean
|
1529
1553
|
# resp.items[0].copy_tags #=> Boolean
|
1530
1554
|
# resp.items[0].ec2_launch_template_id #=> String
|
@@ -2127,7 +2151,7 @@ module Aws::Mgn
|
|
2127
2151
|
#
|
2128
2152
|
# @example Response structure
|
2129
2153
|
#
|
2130
|
-
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI"
|
2154
|
+
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI", "USE_SOURCE"
|
2131
2155
|
# resp.copy_private_ip #=> Boolean
|
2132
2156
|
# resp.copy_tags #=> Boolean
|
2133
2157
|
# resp.ec2_launch_template_id #=> String
|
@@ -2642,7 +2666,7 @@ module Aws::Mgn
|
|
2642
2666
|
# resp.items[0].action_id #=> String
|
2643
2667
|
# resp.items[0].action_name #=> String
|
2644
2668
|
# resp.items[0].active #=> Boolean
|
2645
|
-
# resp.items[0].category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
2669
|
+
# resp.items[0].category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "REFACTORING", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
2646
2670
|
# resp.items[0].description #=> String
|
2647
2671
|
# resp.items[0].document_identifier #=> String
|
2648
2672
|
# resp.items[0].document_version #=> String
|
@@ -2734,7 +2758,7 @@ module Aws::Mgn
|
|
2734
2758
|
# resp.items[0].action_id #=> String
|
2735
2759
|
# resp.items[0].action_name #=> String
|
2736
2760
|
# resp.items[0].active #=> Boolean
|
2737
|
-
# resp.items[0].category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
2761
|
+
# resp.items[0].category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "REFACTORING", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
2738
2762
|
# resp.items[0].description #=> String
|
2739
2763
|
# resp.items[0].document_identifier #=> String
|
2740
2764
|
# resp.items[0].document_version #=> String
|
@@ -3107,7 +3131,7 @@ module Aws::Mgn
|
|
3107
3131
|
# action_id: "ActionID", # required
|
3108
3132
|
# action_name: "ActionName", # required
|
3109
3133
|
# active: false,
|
3110
|
-
# category: "DISASTER_RECOVERY", # accepts DISASTER_RECOVERY, OPERATING_SYSTEM, LICENSE_AND_SUBSCRIPTION, VALIDATION, OBSERVABILITY, SECURITY, NETWORKING, CONFIGURATION, BACKUP, OTHER
|
3134
|
+
# category: "DISASTER_RECOVERY", # accepts DISASTER_RECOVERY, OPERATING_SYSTEM, LICENSE_AND_SUBSCRIPTION, VALIDATION, OBSERVABILITY, REFACTORING, SECURITY, NETWORKING, CONFIGURATION, BACKUP, OTHER
|
3111
3135
|
# description: "ActionDescription",
|
3112
3136
|
# document_identifier: "BoundedString", # required
|
3113
3137
|
# document_version: "DocumentVersion",
|
@@ -3135,7 +3159,7 @@ module Aws::Mgn
|
|
3135
3159
|
# resp.action_id #=> String
|
3136
3160
|
# resp.action_name #=> String
|
3137
3161
|
# resp.active #=> Boolean
|
3138
|
-
# resp.category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
3162
|
+
# resp.category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "REFACTORING", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
3139
3163
|
# resp.description #=> String
|
3140
3164
|
# resp.document_identifier #=> String
|
3141
3165
|
# resp.document_version #=> String
|
@@ -3225,7 +3249,7 @@ module Aws::Mgn
|
|
3225
3249
|
# action_id: "ActionID", # required
|
3226
3250
|
# action_name: "BoundedString", # required
|
3227
3251
|
# active: false,
|
3228
|
-
# category: "DISASTER_RECOVERY", # accepts DISASTER_RECOVERY, OPERATING_SYSTEM, LICENSE_AND_SUBSCRIPTION, VALIDATION, OBSERVABILITY, SECURITY, NETWORKING, CONFIGURATION, BACKUP, OTHER
|
3252
|
+
# category: "DISASTER_RECOVERY", # accepts DISASTER_RECOVERY, OPERATING_SYSTEM, LICENSE_AND_SUBSCRIPTION, VALIDATION, OBSERVABILITY, REFACTORING, SECURITY, NETWORKING, CONFIGURATION, BACKUP, OTHER
|
3229
3253
|
# description: "ActionDescription",
|
3230
3254
|
# document_identifier: "BoundedString", # required
|
3231
3255
|
# document_version: "DocumentVersion",
|
@@ -3254,7 +3278,7 @@ module Aws::Mgn
|
|
3254
3278
|
# resp.action_id #=> String
|
3255
3279
|
# resp.action_name #=> String
|
3256
3280
|
# resp.active #=> Boolean
|
3257
|
-
# resp.category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
3281
|
+
# resp.category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "REFACTORING", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
3258
3282
|
# resp.description #=> String
|
3259
3283
|
# resp.document_identifier #=> String
|
3260
3284
|
# resp.document_version #=> String
|
@@ -4361,6 +4385,10 @@ module Aws::Mgn
|
|
4361
4385
|
|
4362
4386
|
# Updates multiple LaunchConfigurations by Source Server ID.
|
4363
4387
|
#
|
4388
|
+
# <note markdown="1"> bootMode valid values are `LEGACY_BIOS | UEFI`
|
4389
|
+
#
|
4390
|
+
# </note>
|
4391
|
+
#
|
4364
4392
|
# @option params [String] :account_id
|
4365
4393
|
# Update Launch configuration Account ID.
|
4366
4394
|
#
|
@@ -4416,7 +4444,7 @@ module Aws::Mgn
|
|
4416
4444
|
#
|
4417
4445
|
# resp = client.update_launch_configuration({
|
4418
4446
|
# account_id: "AccountID",
|
4419
|
-
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI
|
4447
|
+
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI, USE_SOURCE
|
4420
4448
|
# copy_private_ip: false,
|
4421
4449
|
# copy_tags: false,
|
4422
4450
|
# enable_map_auto_tagging: false,
|
@@ -4459,7 +4487,7 @@ module Aws::Mgn
|
|
4459
4487
|
#
|
4460
4488
|
# @example Response structure
|
4461
4489
|
#
|
4462
|
-
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI"
|
4490
|
+
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI", "USE_SOURCE"
|
4463
4491
|
# resp.copy_private_ip #=> Boolean
|
4464
4492
|
# resp.copy_tags #=> Boolean
|
4465
4493
|
# resp.ec2_launch_template_id #=> String
|
@@ -4563,7 +4591,7 @@ module Aws::Mgn
|
|
4563
4591
|
#
|
4564
4592
|
# resp = client.update_launch_configuration_template({
|
4565
4593
|
# associate_public_ip_address: false,
|
4566
|
-
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI
|
4594
|
+
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI, USE_SOURCE
|
4567
4595
|
# copy_private_ip: false,
|
4568
4596
|
# copy_tags: false,
|
4569
4597
|
# enable_map_auto_tagging: false,
|
@@ -4618,7 +4646,7 @@ module Aws::Mgn
|
|
4618
4646
|
#
|
4619
4647
|
# resp.arn #=> String
|
4620
4648
|
# resp.associate_public_ip_address #=> Boolean
|
4621
|
-
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI"
|
4649
|
+
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI", "USE_SOURCE"
|
4622
4650
|
# resp.copy_private_ip #=> Boolean
|
4623
4651
|
# resp.copy_tags #=> Boolean
|
4624
4652
|
# resp.ec2_launch_template_id #=> String
|
@@ -5238,7 +5266,7 @@ module Aws::Mgn
|
|
5238
5266
|
params: params,
|
5239
5267
|
config: config)
|
5240
5268
|
context[:gem_name] = 'aws-sdk-mgn'
|
5241
|
-
context[:gem_version] = '1.
|
5269
|
+
context[:gem_version] = '1.31.0'
|
5242
5270
|
Seahorse::Client::Request.new(handlers, context)
|
5243
5271
|
end
|
5244
5272
|
|
@@ -14,6 +14,7 @@ module Aws::Mgn
|
|
14
14
|
option(
|
15
15
|
:endpoint_provider,
|
16
16
|
doc_type: 'Aws::Mgn::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 '\
|