aws-sdk-mgn 1.30.0 → 1.32.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 +91 -62
- data/lib/aws-sdk-mgn.rb +1 -1
- data/sig/client.rbs +11 -11
- data/sig/types.rbs +9 -9
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6c6fed4be121a5f90dd3b98b4406fbd4dd90be67dfe5466a2cfb73f71e6a855a
|
4
|
+
data.tar.gz: 58822d8593b9f8fd44f5a139c5388b78311d2412030abc42501b21cc9ffec7c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 763a6989b1dba87b040c72a9bf9c99e345e1c41cd4af4c9aad519cc195a1b2fa6353a46c4da821c4a0ca570d1451c04cd876370535f9df38ce49170947c89f24
|
7
|
+
data.tar.gz: e789c88b3695563aede504994362706ddee5f17c2bcd9813be37e4ef806ceedbc652054bb1e8ee9175e416ae9225060a9b7cfdef002e55c6b9a0cb37fa52db1c
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.32.0 (2024-05-13)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
1.31.0 (2024-04-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.30.0 (2024-01-26)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.32.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
|
@@ -292,8 +301,9 @@ module Aws::Mgn
|
|
292
301
|
#
|
293
302
|
# @option options [String] :sdk_ua_app_id
|
294
303
|
# A unique and opaque application ID that is appended to the
|
295
|
-
# User-Agent header as app
|
296
|
-
# maximum length of 50.
|
304
|
+
# User-Agent header as app/sdk_ua_app_id. It should have a
|
305
|
+
# maximum length of 50. This variable is sourced from environment
|
306
|
+
# variable AWS_SDK_UA_APP_ID or the shared config profile attribute sdk_ua_app_id.
|
297
307
|
#
|
298
308
|
# @option options [String] :secret_access_key
|
299
309
|
#
|
@@ -337,50 +347,65 @@ module Aws::Mgn
|
|
337
347
|
# @option options [Aws::Mgn::EndpointProvider] :endpoint_provider
|
338
348
|
# 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
349
|
#
|
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
|
-
#
|
350
|
+
# @option options [Float] :http_continue_timeout (1)
|
351
|
+
# The number of seconds to wait for a 100-continue response before sending the
|
352
|
+
# request body. This option has no effect unless the request has "Expect"
|
353
|
+
# header set to "100-continue". Defaults to `nil` which disables this
|
354
|
+
# behaviour. This value can safely be set per request on the session.
|
355
|
+
#
|
356
|
+
# @option options [Float] :http_idle_timeout (5)
|
357
|
+
# The number of seconds a connection is allowed to sit idle before it
|
358
|
+
# is considered stale. Stale connections are closed and removed from the
|
359
|
+
# pool before making a request.
|
360
|
+
#
|
361
|
+
# @option options [Float] :http_open_timeout (15)
|
362
|
+
# The default number of seconds to wait for response data.
|
363
|
+
# This value can safely be set per-request on the session.
|
364
|
+
#
|
365
|
+
# @option options [URI::HTTP,String] :http_proxy
|
366
|
+
# A proxy to send requests through. Formatted like 'http://proxy.com:123'.
|
367
|
+
#
|
368
|
+
# @option options [Float] :http_read_timeout (60)
|
369
|
+
# The default number of seconds to wait for response data.
|
370
|
+
# This value can safely be set per-request on the session.
|
371
|
+
#
|
372
|
+
# @option options [Boolean] :http_wire_trace (false)
|
373
|
+
# When `true`, HTTP debug output will be sent to the `:logger`.
|
374
|
+
#
|
375
|
+
# @option options [Proc] :on_chunk_received
|
376
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
377
|
+
# of the response body is received. It provides three arguments: the chunk,
|
378
|
+
# the number of bytes received, and the total number of
|
379
|
+
# bytes in the response (or nil if the server did not send a `content-length`).
|
380
|
+
#
|
381
|
+
# @option options [Proc] :on_chunk_sent
|
382
|
+
# When a Proc object is provided, it will be used as callback when each chunk
|
383
|
+
# of the request body is sent. It provides three arguments: the chunk,
|
384
|
+
# the number of bytes read from the body, and the total number of
|
385
|
+
# bytes in the body.
|
386
|
+
#
|
387
|
+
# @option options [Boolean] :raise_response_errors (true)
|
388
|
+
# When `true`, response errors are raised.
|
389
|
+
#
|
390
|
+
# @option options [String] :ssl_ca_bundle
|
391
|
+
# Full path to the SSL certificate authority bundle file that should be used when
|
392
|
+
# verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
|
393
|
+
# `:ssl_ca_directory` the the system default will be used if available.
|
394
|
+
#
|
395
|
+
# @option options [String] :ssl_ca_directory
|
396
|
+
# Full path of the directory that contains the unbundled SSL certificate
|
397
|
+
# authority files for verifying peer certificates. If you do
|
398
|
+
# not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
|
399
|
+
# default will be used if available.
|
368
400
|
#
|
369
|
-
# @option options [
|
370
|
-
#
|
371
|
-
# connection.
|
401
|
+
# @option options [String] :ssl_ca_store
|
402
|
+
# Sets the X509::Store to verify peer certificate.
|
372
403
|
#
|
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.
|
404
|
+
# @option options [Float] :ssl_timeout
|
405
|
+
# Sets the SSL timeout in seconds
|
378
406
|
#
|
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.
|
407
|
+
# @option options [Boolean] :ssl_verify_peer (true)
|
408
|
+
# When `true`, SSL peer certificates are verified when establishing a connection.
|
384
409
|
#
|
385
410
|
def initialize(*args)
|
386
411
|
super
|
@@ -868,7 +893,7 @@ module Aws::Mgn
|
|
868
893
|
#
|
869
894
|
# resp = client.create_launch_configuration_template({
|
870
895
|
# associate_public_ip_address: false,
|
871
|
-
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI
|
896
|
+
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI, USE_SOURCE
|
872
897
|
# copy_private_ip: false,
|
873
898
|
# copy_tags: false,
|
874
899
|
# enable_map_auto_tagging: false,
|
@@ -925,7 +950,7 @@ module Aws::Mgn
|
|
925
950
|
#
|
926
951
|
# resp.arn #=> String
|
927
952
|
# resp.associate_public_ip_address #=> Boolean
|
928
|
-
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI"
|
953
|
+
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI", "USE_SOURCE"
|
929
954
|
# resp.copy_private_ip #=> Boolean
|
930
955
|
# resp.copy_tags #=> Boolean
|
931
956
|
# resp.ec2_launch_template_id #=> String
|
@@ -1524,7 +1549,7 @@ module Aws::Mgn
|
|
1524
1549
|
# resp.items #=> Array
|
1525
1550
|
# resp.items[0].arn #=> String
|
1526
1551
|
# resp.items[0].associate_public_ip_address #=> Boolean
|
1527
|
-
# resp.items[0].boot_mode #=> String, one of "LEGACY_BIOS", "UEFI"
|
1552
|
+
# resp.items[0].boot_mode #=> String, one of "LEGACY_BIOS", "UEFI", "USE_SOURCE"
|
1528
1553
|
# resp.items[0].copy_private_ip #=> Boolean
|
1529
1554
|
# resp.items[0].copy_tags #=> Boolean
|
1530
1555
|
# resp.items[0].ec2_launch_template_id #=> String
|
@@ -2127,7 +2152,7 @@ module Aws::Mgn
|
|
2127
2152
|
#
|
2128
2153
|
# @example Response structure
|
2129
2154
|
#
|
2130
|
-
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI"
|
2155
|
+
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI", "USE_SOURCE"
|
2131
2156
|
# resp.copy_private_ip #=> Boolean
|
2132
2157
|
# resp.copy_tags #=> Boolean
|
2133
2158
|
# resp.ec2_launch_template_id #=> String
|
@@ -2642,7 +2667,7 @@ module Aws::Mgn
|
|
2642
2667
|
# resp.items[0].action_id #=> String
|
2643
2668
|
# resp.items[0].action_name #=> String
|
2644
2669
|
# 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"
|
2670
|
+
# resp.items[0].category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "REFACTORING", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
2646
2671
|
# resp.items[0].description #=> String
|
2647
2672
|
# resp.items[0].document_identifier #=> String
|
2648
2673
|
# resp.items[0].document_version #=> String
|
@@ -2734,7 +2759,7 @@ module Aws::Mgn
|
|
2734
2759
|
# resp.items[0].action_id #=> String
|
2735
2760
|
# resp.items[0].action_name #=> String
|
2736
2761
|
# 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"
|
2762
|
+
# resp.items[0].category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "REFACTORING", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
2738
2763
|
# resp.items[0].description #=> String
|
2739
2764
|
# resp.items[0].document_identifier #=> String
|
2740
2765
|
# resp.items[0].document_version #=> String
|
@@ -3107,7 +3132,7 @@ module Aws::Mgn
|
|
3107
3132
|
# action_id: "ActionID", # required
|
3108
3133
|
# action_name: "ActionName", # required
|
3109
3134
|
# active: false,
|
3110
|
-
# category: "DISASTER_RECOVERY", # accepts DISASTER_RECOVERY, OPERATING_SYSTEM, LICENSE_AND_SUBSCRIPTION, VALIDATION, OBSERVABILITY, SECURITY, NETWORKING, CONFIGURATION, BACKUP, OTHER
|
3135
|
+
# category: "DISASTER_RECOVERY", # accepts DISASTER_RECOVERY, OPERATING_SYSTEM, LICENSE_AND_SUBSCRIPTION, VALIDATION, OBSERVABILITY, REFACTORING, SECURITY, NETWORKING, CONFIGURATION, BACKUP, OTHER
|
3111
3136
|
# description: "ActionDescription",
|
3112
3137
|
# document_identifier: "BoundedString", # required
|
3113
3138
|
# document_version: "DocumentVersion",
|
@@ -3135,7 +3160,7 @@ module Aws::Mgn
|
|
3135
3160
|
# resp.action_id #=> String
|
3136
3161
|
# resp.action_name #=> String
|
3137
3162
|
# resp.active #=> Boolean
|
3138
|
-
# resp.category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
3163
|
+
# resp.category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "REFACTORING", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
3139
3164
|
# resp.description #=> String
|
3140
3165
|
# resp.document_identifier #=> String
|
3141
3166
|
# resp.document_version #=> String
|
@@ -3225,7 +3250,7 @@ module Aws::Mgn
|
|
3225
3250
|
# action_id: "ActionID", # required
|
3226
3251
|
# action_name: "BoundedString", # required
|
3227
3252
|
# active: false,
|
3228
|
-
# category: "DISASTER_RECOVERY", # accepts DISASTER_RECOVERY, OPERATING_SYSTEM, LICENSE_AND_SUBSCRIPTION, VALIDATION, OBSERVABILITY, SECURITY, NETWORKING, CONFIGURATION, BACKUP, OTHER
|
3253
|
+
# category: "DISASTER_RECOVERY", # accepts DISASTER_RECOVERY, OPERATING_SYSTEM, LICENSE_AND_SUBSCRIPTION, VALIDATION, OBSERVABILITY, REFACTORING, SECURITY, NETWORKING, CONFIGURATION, BACKUP, OTHER
|
3229
3254
|
# description: "ActionDescription",
|
3230
3255
|
# document_identifier: "BoundedString", # required
|
3231
3256
|
# document_version: "DocumentVersion",
|
@@ -3254,7 +3279,7 @@ module Aws::Mgn
|
|
3254
3279
|
# resp.action_id #=> String
|
3255
3280
|
# resp.action_name #=> String
|
3256
3281
|
# resp.active #=> Boolean
|
3257
|
-
# resp.category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
3282
|
+
# resp.category #=> String, one of "DISASTER_RECOVERY", "OPERATING_SYSTEM", "LICENSE_AND_SUBSCRIPTION", "VALIDATION", "OBSERVABILITY", "REFACTORING", "SECURITY", "NETWORKING", "CONFIGURATION", "BACKUP", "OTHER"
|
3258
3283
|
# resp.description #=> String
|
3259
3284
|
# resp.document_identifier #=> String
|
3260
3285
|
# resp.document_version #=> String
|
@@ -4361,6 +4386,10 @@ module Aws::Mgn
|
|
4361
4386
|
|
4362
4387
|
# Updates multiple LaunchConfigurations by Source Server ID.
|
4363
4388
|
#
|
4389
|
+
# <note markdown="1"> bootMode valid values are `LEGACY_BIOS | UEFI`
|
4390
|
+
#
|
4391
|
+
# </note>
|
4392
|
+
#
|
4364
4393
|
# @option params [String] :account_id
|
4365
4394
|
# Update Launch configuration Account ID.
|
4366
4395
|
#
|
@@ -4416,7 +4445,7 @@ module Aws::Mgn
|
|
4416
4445
|
#
|
4417
4446
|
# resp = client.update_launch_configuration({
|
4418
4447
|
# account_id: "AccountID",
|
4419
|
-
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI
|
4448
|
+
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI, USE_SOURCE
|
4420
4449
|
# copy_private_ip: false,
|
4421
4450
|
# copy_tags: false,
|
4422
4451
|
# enable_map_auto_tagging: false,
|
@@ -4459,7 +4488,7 @@ module Aws::Mgn
|
|
4459
4488
|
#
|
4460
4489
|
# @example Response structure
|
4461
4490
|
#
|
4462
|
-
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI"
|
4491
|
+
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI", "USE_SOURCE"
|
4463
4492
|
# resp.copy_private_ip #=> Boolean
|
4464
4493
|
# resp.copy_tags #=> Boolean
|
4465
4494
|
# resp.ec2_launch_template_id #=> String
|
@@ -4563,7 +4592,7 @@ module Aws::Mgn
|
|
4563
4592
|
#
|
4564
4593
|
# resp = client.update_launch_configuration_template({
|
4565
4594
|
# associate_public_ip_address: false,
|
4566
|
-
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI
|
4595
|
+
# boot_mode: "LEGACY_BIOS", # accepts LEGACY_BIOS, UEFI, USE_SOURCE
|
4567
4596
|
# copy_private_ip: false,
|
4568
4597
|
# copy_tags: false,
|
4569
4598
|
# enable_map_auto_tagging: false,
|
@@ -4618,7 +4647,7 @@ module Aws::Mgn
|
|
4618
4647
|
#
|
4619
4648
|
# resp.arn #=> String
|
4620
4649
|
# resp.associate_public_ip_address #=> Boolean
|
4621
|
-
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI"
|
4650
|
+
# resp.boot_mode #=> String, one of "LEGACY_BIOS", "UEFI", "USE_SOURCE"
|
4622
4651
|
# resp.copy_private_ip #=> Boolean
|
4623
4652
|
# resp.copy_tags #=> Boolean
|
4624
4653
|
# resp.ec2_launch_template_id #=> String
|
@@ -5238,7 +5267,7 @@ module Aws::Mgn
|
|
5238
5267
|
params: params,
|
5239
5268
|
config: config)
|
5240
5269
|
context[:gem_name] = 'aws-sdk-mgn'
|
5241
|
-
context[:gem_version] = '1.
|
5270
|
+
context[:gem_version] = '1.32.0'
|
5242
5271
|
Seahorse::Client::Request.new(handlers, context)
|
5243
5272
|
end
|
5244
5273
|
|
data/lib/aws-sdk-mgn.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -209,7 +209,7 @@ module Aws
|
|
209
209
|
include ::Seahorse::Client::_ResponseSuccess[Types::LaunchConfigurationTemplate]
|
210
210
|
def arn: () -> ::String
|
211
211
|
def associate_public_ip_address: () -> bool
|
212
|
-
def boot_mode: () -> ("LEGACY_BIOS" | "UEFI")
|
212
|
+
def boot_mode: () -> ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE")
|
213
213
|
def copy_private_ip: () -> bool
|
214
214
|
def copy_tags: () -> bool
|
215
215
|
def ec2_launch_template_id: () -> ::String
|
@@ -228,7 +228,7 @@ module Aws
|
|
228
228
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#create_launch_configuration_template-instance_method
|
229
229
|
def create_launch_configuration_template: (
|
230
230
|
?associate_public_ip_address: bool,
|
231
|
-
?boot_mode: ("LEGACY_BIOS" | "UEFI"),
|
231
|
+
?boot_mode: ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE"),
|
232
232
|
?copy_private_ip: bool,
|
233
233
|
?copy_tags: bool,
|
234
234
|
?enable_map_auto_tagging: bool,
|
@@ -567,7 +567,7 @@ module Aws
|
|
567
567
|
|
568
568
|
interface _GetLaunchConfigurationResponseSuccess
|
569
569
|
include ::Seahorse::Client::_ResponseSuccess[Types::LaunchConfiguration]
|
570
|
-
def boot_mode: () -> ("LEGACY_BIOS" | "UEFI")
|
570
|
+
def boot_mode: () -> ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE")
|
571
571
|
def copy_private_ip: () -> bool
|
572
572
|
def copy_tags: () -> bool
|
573
573
|
def ec2_launch_template_id: () -> ::String
|
@@ -835,7 +835,7 @@ module Aws
|
|
835
835
|
def action_id: () -> ::String
|
836
836
|
def action_name: () -> ::String
|
837
837
|
def active: () -> bool
|
838
|
-
def category: () -> ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
838
|
+
def category: () -> ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "REFACTORING" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
839
839
|
def description: () -> ::String
|
840
840
|
def document_identifier: () -> ::String
|
841
841
|
def document_version: () -> ::String
|
@@ -851,7 +851,7 @@ module Aws
|
|
851
851
|
action_id: ::String,
|
852
852
|
action_name: ::String,
|
853
853
|
?active: bool,
|
854
|
-
?category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER"),
|
854
|
+
?category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "REFACTORING" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER"),
|
855
855
|
?description: ::String,
|
856
856
|
document_identifier: ::String,
|
857
857
|
?document_version: ::String,
|
@@ -876,7 +876,7 @@ module Aws
|
|
876
876
|
def action_id: () -> ::String
|
877
877
|
def action_name: () -> ::String
|
878
878
|
def active: () -> bool
|
879
|
-
def category: () -> ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
879
|
+
def category: () -> ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "REFACTORING" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
880
880
|
def description: () -> ::String
|
881
881
|
def document_identifier: () -> ::String
|
882
882
|
def document_version: () -> ::String
|
@@ -892,7 +892,7 @@ module Aws
|
|
892
892
|
action_id: ::String,
|
893
893
|
action_name: ::String,
|
894
894
|
?active: bool,
|
895
|
-
?category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER"),
|
895
|
+
?category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "REFACTORING" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER"),
|
896
896
|
?description: ::String,
|
897
897
|
document_identifier: ::String,
|
898
898
|
?document_version: ::String,
|
@@ -1192,7 +1192,7 @@ module Aws
|
|
1192
1192
|
|
1193
1193
|
interface _UpdateLaunchConfigurationResponseSuccess
|
1194
1194
|
include ::Seahorse::Client::_ResponseSuccess[Types::LaunchConfiguration]
|
1195
|
-
def boot_mode: () -> ("LEGACY_BIOS" | "UEFI")
|
1195
|
+
def boot_mode: () -> ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE")
|
1196
1196
|
def copy_private_ip: () -> bool
|
1197
1197
|
def copy_tags: () -> bool
|
1198
1198
|
def ec2_launch_template_id: () -> ::String
|
@@ -1208,7 +1208,7 @@ module Aws
|
|
1208
1208
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#update_launch_configuration-instance_method
|
1209
1209
|
def update_launch_configuration: (
|
1210
1210
|
?account_id: ::String,
|
1211
|
-
?boot_mode: ("LEGACY_BIOS" | "UEFI"),
|
1211
|
+
?boot_mode: ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE"),
|
1212
1212
|
?copy_private_ip: bool,
|
1213
1213
|
?copy_tags: bool,
|
1214
1214
|
?enable_map_auto_tagging: bool,
|
@@ -1250,7 +1250,7 @@ module Aws
|
|
1250
1250
|
include ::Seahorse::Client::_ResponseSuccess[Types::LaunchConfigurationTemplate]
|
1251
1251
|
def arn: () -> ::String
|
1252
1252
|
def associate_public_ip_address: () -> bool
|
1253
|
-
def boot_mode: () -> ("LEGACY_BIOS" | "UEFI")
|
1253
|
+
def boot_mode: () -> ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE")
|
1254
1254
|
def copy_private_ip: () -> bool
|
1255
1255
|
def copy_tags: () -> bool
|
1256
1256
|
def ec2_launch_template_id: () -> ::String
|
@@ -1269,7 +1269,7 @@ module Aws
|
|
1269
1269
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Mgn/Client.html#update_launch_configuration_template-instance_method
|
1270
1270
|
def update_launch_configuration_template: (
|
1271
1271
|
?associate_public_ip_address: bool,
|
1272
|
-
?boot_mode: ("LEGACY_BIOS" | "UEFI"),
|
1272
|
+
?boot_mode: ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE"),
|
1273
1273
|
?copy_private_ip: bool,
|
1274
1274
|
?copy_tags: bool,
|
1275
1275
|
?enable_map_auto_tagging: bool,
|
data/sig/types.rbs
CHANGED
@@ -131,7 +131,7 @@ module Aws::Mgn
|
|
131
131
|
|
132
132
|
class CreateLaunchConfigurationTemplateRequest
|
133
133
|
attr_accessor associate_public_ip_address: bool
|
134
|
-
attr_accessor boot_mode: ("LEGACY_BIOS" | "UEFI")
|
134
|
+
attr_accessor boot_mode: ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE")
|
135
135
|
attr_accessor copy_private_ip: bool
|
136
136
|
attr_accessor copy_tags: bool
|
137
137
|
attr_accessor enable_map_auto_tagging: bool
|
@@ -572,7 +572,7 @@ module Aws::Mgn
|
|
572
572
|
end
|
573
573
|
|
574
574
|
class LaunchConfiguration
|
575
|
-
attr_accessor boot_mode: ("LEGACY_BIOS" | "UEFI")
|
575
|
+
attr_accessor boot_mode: ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE")
|
576
576
|
attr_accessor copy_private_ip: bool
|
577
577
|
attr_accessor copy_tags: bool
|
578
578
|
attr_accessor ec2_launch_template_id: ::String
|
@@ -590,7 +590,7 @@ module Aws::Mgn
|
|
590
590
|
class LaunchConfigurationTemplate
|
591
591
|
attr_accessor arn: ::String
|
592
592
|
attr_accessor associate_public_ip_address: bool
|
593
|
-
attr_accessor boot_mode: ("LEGACY_BIOS" | "UEFI")
|
593
|
+
attr_accessor boot_mode: ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE")
|
594
594
|
attr_accessor copy_private_ip: bool
|
595
595
|
attr_accessor copy_tags: bool
|
596
596
|
attr_accessor ec2_launch_template_id: ::String
|
@@ -913,7 +913,7 @@ module Aws::Mgn
|
|
913
913
|
attr_accessor action_id: ::String
|
914
914
|
attr_accessor action_name: ::String
|
915
915
|
attr_accessor active: bool
|
916
|
-
attr_accessor category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
916
|
+
attr_accessor category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "REFACTORING" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
917
917
|
attr_accessor description: ::String
|
918
918
|
attr_accessor document_identifier: ::String
|
919
919
|
attr_accessor document_version: ::String
|
@@ -930,7 +930,7 @@ module Aws::Mgn
|
|
930
930
|
attr_accessor action_id: ::String
|
931
931
|
attr_accessor action_name: ::String
|
932
932
|
attr_accessor active: bool
|
933
|
-
attr_accessor category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
933
|
+
attr_accessor category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "REFACTORING" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
934
934
|
attr_accessor description: ::String
|
935
935
|
attr_accessor document_identifier: ::String
|
936
936
|
attr_accessor document_version: ::String
|
@@ -1084,7 +1084,7 @@ module Aws::Mgn
|
|
1084
1084
|
attr_accessor action_id: ::String
|
1085
1085
|
attr_accessor action_name: ::String
|
1086
1086
|
attr_accessor active: bool
|
1087
|
-
attr_accessor category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
1087
|
+
attr_accessor category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "REFACTORING" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
1088
1088
|
attr_accessor description: ::String
|
1089
1089
|
attr_accessor document_identifier: ::String
|
1090
1090
|
attr_accessor document_version: ::String
|
@@ -1203,7 +1203,7 @@ module Aws::Mgn
|
|
1203
1203
|
attr_accessor action_id: ::String
|
1204
1204
|
attr_accessor action_name: ::String
|
1205
1205
|
attr_accessor active: bool
|
1206
|
-
attr_accessor category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
1206
|
+
attr_accessor category: ("DISASTER_RECOVERY" | "OPERATING_SYSTEM" | "LICENSE_AND_SUBSCRIPTION" | "VALIDATION" | "OBSERVABILITY" | "REFACTORING" | "SECURITY" | "NETWORKING" | "CONFIGURATION" | "BACKUP" | "OTHER")
|
1207
1207
|
attr_accessor description: ::String
|
1208
1208
|
attr_accessor document_identifier: ::String
|
1209
1209
|
attr_accessor document_version: ::String
|
@@ -1282,7 +1282,7 @@ module Aws::Mgn
|
|
1282
1282
|
|
1283
1283
|
class UpdateLaunchConfigurationRequest
|
1284
1284
|
attr_accessor account_id: ::String
|
1285
|
-
attr_accessor boot_mode: ("LEGACY_BIOS" | "UEFI")
|
1285
|
+
attr_accessor boot_mode: ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE")
|
1286
1286
|
attr_accessor copy_private_ip: bool
|
1287
1287
|
attr_accessor copy_tags: bool
|
1288
1288
|
attr_accessor enable_map_auto_tagging: bool
|
@@ -1298,7 +1298,7 @@ module Aws::Mgn
|
|
1298
1298
|
|
1299
1299
|
class UpdateLaunchConfigurationTemplateRequest
|
1300
1300
|
attr_accessor associate_public_ip_address: bool
|
1301
|
-
attr_accessor boot_mode: ("LEGACY_BIOS" | "UEFI")
|
1301
|
+
attr_accessor boot_mode: ("LEGACY_BIOS" | "UEFI" | "USE_SOURCE")
|
1302
1302
|
attr_accessor copy_private_ip: bool
|
1303
1303
|
attr_accessor copy_tags: bool
|
1304
1304
|
attr_accessor enable_map_auto_tagging: bool
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mgn
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.32.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-05-13 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
|