aws-sdk-mgn 1.30.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2099456eff1299ff3b1ba00e8de2683c46b2038593e903e254de49e605036bd7
4
- data.tar.gz: 5cf7ada6e8eca3ed2c2921051c0fe99e9e6dc29622986cca3da632d6dd4b442c
3
+ metadata.gz: f64886230019b47575c2c5d41230b9f520eca8dcd17a9d2ab196c587d67bca08
4
+ data.tar.gz: 0c7f588316ff0158e456c8e81492a2441986416fec863b7096680b017edd76cc
5
5
  SHA512:
6
- metadata.gz: 780467d0fe970d46cdc620b229585f954fa967ed4db38c25e61f0f6a96ead5a3a419a2b5b862d9558fc282b939f7677347ea1ff7588a8e5b8eb4ac113dc5a1d0
7
- data.tar.gz: 8e50e4e4ab3bdbe765a2c280ade66c7ef98addc5cb91d1ddb86ce611de1ab074b996952bde7c76bbae148ec94d37815447dbaacf0113365475968b9c4f133073
6
+ metadata.gz: 67b4dcdd42baa6ac4ffe5cc13887431504c13e31e6b886d7b7e6aeaa529bb04fff60f69bfa4db402291bff4261a98f24313df9aa6fe58c716948bccdaee964a9
7
+ data.tar.gz: 4b0a46627d276d0138a4481990be7cd1f65751224e4cdae84a5882b1317a1c1e00ddaedc3201922961a951c46b6b8a4e384e9fed3de26091101db583d0234d9c
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.30.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.30.0
1
+ 1.31.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
@@ -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 [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`.
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 [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
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.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
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.
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.30.0'
5269
+ context[:gem_version] = '1.31.0'
5242
5270
  Seahorse::Client::Request.new(handlers, context)
5243
5271
  end
5244
5272
 
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.31.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.31.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-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.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