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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2099456eff1299ff3b1ba00e8de2683c46b2038593e903e254de49e605036bd7
4
- data.tar.gz: 5cf7ada6e8eca3ed2c2921051c0fe99e9e6dc29622986cca3da632d6dd4b442c
3
+ metadata.gz: 6c6fed4be121a5f90dd3b98b4406fbd4dd90be67dfe5466a2cfb73f71e6a855a
4
+ data.tar.gz: 58822d8593b9f8fd44f5a139c5388b78311d2412030abc42501b21cc9ffec7c7
5
5
  SHA512:
6
- metadata.gz: 780467d0fe970d46cdc620b229585f954fa967ed4db38c25e61f0f6a96ead5a3a419a2b5b862d9558fc282b939f7677347ea1ff7588a8e5b8eb4ac113dc5a1d0
7
- data.tar.gz: 8e50e4e4ab3bdbe765a2c280ade66c7ef98addc5cb91d1ddb86ce611de1ab074b996952bde7c76bbae148ec94d37815447dbaacf0113365475968b9c4f133073
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.30.0
1
+ 1.32.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::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
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
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/<sdk_ua_app_id>. It should have a
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 [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
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 [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
401
+ # @option options [String] :ssl_ca_store
402
+ # Sets the X509::Store to verify peer certificate.
372
403
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
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 [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
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.30.0'
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
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mgn/customizations'
52
52
  # @!group service
53
53
  module Aws::Mgn
54
54
 
55
- GEM_VERSION = '1.30.0'
55
+ GEM_VERSION = '1.32.0'
56
56
 
57
57
  end
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.30.0
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-01-26 00:00:00.000000000 Z
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.191.0
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.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement