aws-sdk-mgn 1.74.0 → 1.76.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 +21 -1
- data/lib/aws-sdk-mgn/client_api.rb +3 -0
- data/lib/aws-sdk-mgn/types.rb +11 -1
- data/lib/aws-sdk-mgn.rb +1 -1
- data/sig/client.rbs +12 -4
- data/sig/types.rbs +2 -0
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0e1b89bd906ac09e1679731fbe8e8431d97a2f6b4fba16d5746bf57d137fb3a3
|
|
4
|
+
data.tar.gz: 84de4584ec18d7592a196e1292246e45ac1eda3ab9e7fb9f1da1073f4f54c4dd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: eaa35e0092b8bf1028bd7cfbb99467db5f0c8e43d627aeeff660df47b6b2988bcc50042b2c5577013467d6d40c4242923bda6a9869a7bbc6cb4f7783bab98924
|
|
7
|
+
data.tar.gz: 2c13b94214e82b99c0c4691e5539c168d86e7e8201e91934f43c43fc8223b6bf89b16453d30c86260edfec34f89eccfc88f399b04e706aa45c9f0db126851398
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.76.0 (2026-09-09)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
|
8
|
+
|
|
9
|
+
1.75.0 (2026-09-08)
|
|
10
|
+
------------------
|
|
11
|
+
|
|
12
|
+
* Feature - This release adds support for configuring the EBS volume initialization rate and delete on termination behavior in launch configuration template
|
|
13
|
+
|
|
4
14
|
1.74.0 (2026-09-02)
|
|
5
15
|
------------------
|
|
6
16
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.76.0
|
data/lib/aws-sdk-mgn/client.rb
CHANGED
|
@@ -1015,11 +1015,15 @@ module Aws::Mgn
|
|
|
1015
1015
|
# volume_type: "io1", # accepts io1, io2, gp3, gp2, st1, sc1, standard
|
|
1016
1016
|
# iops: 1,
|
|
1017
1017
|
# throughput: 1,
|
|
1018
|
+
# volume_initialization_rate: 1,
|
|
1019
|
+
# delete_on_termination: false,
|
|
1018
1020
|
# },
|
|
1019
1021
|
# large_volume_conf: {
|
|
1020
1022
|
# volume_type: "io1", # accepts io1, io2, gp3, gp2, st1, sc1, standard
|
|
1021
1023
|
# iops: 1,
|
|
1022
1024
|
# throughput: 1,
|
|
1025
|
+
# volume_initialization_rate: 1,
|
|
1026
|
+
# delete_on_termination: false,
|
|
1023
1027
|
# },
|
|
1024
1028
|
# enable_parameters_encryption: false,
|
|
1025
1029
|
# parameters_encryption_key: "KmsKeyArn",
|
|
@@ -1060,9 +1064,13 @@ module Aws::Mgn
|
|
|
1060
1064
|
# resp.small_volume_conf.volume_type #=> String, one of "io1", "io2", "gp3", "gp2", "st1", "sc1", "standard"
|
|
1061
1065
|
# resp.small_volume_conf.iops #=> Integer
|
|
1062
1066
|
# resp.small_volume_conf.throughput #=> Integer
|
|
1067
|
+
# resp.small_volume_conf.volume_initialization_rate #=> Integer
|
|
1068
|
+
# resp.small_volume_conf.delete_on_termination #=> Boolean
|
|
1063
1069
|
# resp.large_volume_conf.volume_type #=> String, one of "io1", "io2", "gp3", "gp2", "st1", "sc1", "standard"
|
|
1064
1070
|
# resp.large_volume_conf.iops #=> Integer
|
|
1065
1071
|
# resp.large_volume_conf.throughput #=> Integer
|
|
1072
|
+
# resp.large_volume_conf.volume_initialization_rate #=> Integer
|
|
1073
|
+
# resp.large_volume_conf.delete_on_termination #=> Boolean
|
|
1066
1074
|
# resp.enable_parameters_encryption #=> Boolean
|
|
1067
1075
|
# resp.parameters_encryption_key #=> String
|
|
1068
1076
|
#
|
|
@@ -1915,9 +1923,13 @@ module Aws::Mgn
|
|
|
1915
1923
|
# resp.items[0].small_volume_conf.volume_type #=> String, one of "io1", "io2", "gp3", "gp2", "st1", "sc1", "standard"
|
|
1916
1924
|
# resp.items[0].small_volume_conf.iops #=> Integer
|
|
1917
1925
|
# resp.items[0].small_volume_conf.throughput #=> Integer
|
|
1926
|
+
# resp.items[0].small_volume_conf.volume_initialization_rate #=> Integer
|
|
1927
|
+
# resp.items[0].small_volume_conf.delete_on_termination #=> Boolean
|
|
1918
1928
|
# resp.items[0].large_volume_conf.volume_type #=> String, one of "io1", "io2", "gp3", "gp2", "st1", "sc1", "standard"
|
|
1919
1929
|
# resp.items[0].large_volume_conf.iops #=> Integer
|
|
1920
1930
|
# resp.items[0].large_volume_conf.throughput #=> Integer
|
|
1931
|
+
# resp.items[0].large_volume_conf.volume_initialization_rate #=> Integer
|
|
1932
|
+
# resp.items[0].large_volume_conf.delete_on_termination #=> Boolean
|
|
1921
1933
|
# resp.items[0].enable_parameters_encryption #=> Boolean
|
|
1922
1934
|
# resp.items[0].parameters_encryption_key #=> String
|
|
1923
1935
|
# resp.next_token #=> String
|
|
@@ -6828,11 +6840,15 @@ module Aws::Mgn
|
|
|
6828
6840
|
# volume_type: "io1", # accepts io1, io2, gp3, gp2, st1, sc1, standard
|
|
6829
6841
|
# iops: 1,
|
|
6830
6842
|
# throughput: 1,
|
|
6843
|
+
# volume_initialization_rate: 1,
|
|
6844
|
+
# delete_on_termination: false,
|
|
6831
6845
|
# },
|
|
6832
6846
|
# large_volume_conf: {
|
|
6833
6847
|
# volume_type: "io1", # accepts io1, io2, gp3, gp2, st1, sc1, standard
|
|
6834
6848
|
# iops: 1,
|
|
6835
6849
|
# throughput: 1,
|
|
6850
|
+
# volume_initialization_rate: 1,
|
|
6851
|
+
# delete_on_termination: false,
|
|
6836
6852
|
# },
|
|
6837
6853
|
# enable_parameters_encryption: false,
|
|
6838
6854
|
# parameters_encryption_key: "ARN",
|
|
@@ -6873,9 +6889,13 @@ module Aws::Mgn
|
|
|
6873
6889
|
# resp.small_volume_conf.volume_type #=> String, one of "io1", "io2", "gp3", "gp2", "st1", "sc1", "standard"
|
|
6874
6890
|
# resp.small_volume_conf.iops #=> Integer
|
|
6875
6891
|
# resp.small_volume_conf.throughput #=> Integer
|
|
6892
|
+
# resp.small_volume_conf.volume_initialization_rate #=> Integer
|
|
6893
|
+
# resp.small_volume_conf.delete_on_termination #=> Boolean
|
|
6876
6894
|
# resp.large_volume_conf.volume_type #=> String, one of "io1", "io2", "gp3", "gp2", "st1", "sc1", "standard"
|
|
6877
6895
|
# resp.large_volume_conf.iops #=> Integer
|
|
6878
6896
|
# resp.large_volume_conf.throughput #=> Integer
|
|
6897
|
+
# resp.large_volume_conf.volume_initialization_rate #=> Integer
|
|
6898
|
+
# resp.large_volume_conf.delete_on_termination #=> Boolean
|
|
6879
6899
|
# resp.enable_parameters_encryption #=> Boolean
|
|
6880
6900
|
# resp.parameters_encryption_key #=> String
|
|
6881
6901
|
#
|
|
@@ -7848,7 +7868,7 @@ module Aws::Mgn
|
|
|
7848
7868
|
tracer: tracer
|
|
7849
7869
|
)
|
|
7850
7870
|
context[:gem_name] = 'aws-sdk-mgn'
|
|
7851
|
-
context[:gem_version] = '1.
|
|
7871
|
+
context[:gem_version] = '1.76.0'
|
|
7852
7872
|
Seahorse::Client::Request.new(handlers, context)
|
|
7853
7873
|
end
|
|
7854
7874
|
|
|
@@ -529,6 +529,7 @@ module Aws::Mgn
|
|
|
529
529
|
VcenterClient = Shapes::StructureShape.new(name: 'VcenterClient')
|
|
530
530
|
VcenterClientID = Shapes::StringShape.new(name: 'VcenterClientID')
|
|
531
531
|
VcenterClientList = Shapes::ListShape.new(name: 'VcenterClientList')
|
|
532
|
+
VolumeInitializationRate = Shapes::IntegerShape.new(name: 'VolumeInitializationRate')
|
|
532
533
|
VolumeType = Shapes::StringShape.new(name: 'VolumeType')
|
|
533
534
|
VpcID = Shapes::StringShape.new(name: 'VpcID')
|
|
534
535
|
VpcIDsFilter = Shapes::ListShape.new(name: 'VpcIDsFilter')
|
|
@@ -1146,6 +1147,8 @@ module Aws::Mgn
|
|
|
1146
1147
|
LaunchTemplateDiskConf.add_member(:volume_type, Shapes::ShapeRef.new(shape: VolumeType, location_name: "volumeType"))
|
|
1147
1148
|
LaunchTemplateDiskConf.add_member(:iops, Shapes::ShapeRef.new(shape: Iops, location_name: "iops"))
|
|
1148
1149
|
LaunchTemplateDiskConf.add_member(:throughput, Shapes::ShapeRef.new(shape: Throughput, location_name: "throughput"))
|
|
1150
|
+
LaunchTemplateDiskConf.add_member(:volume_initialization_rate, Shapes::ShapeRef.new(shape: VolumeInitializationRate, location_name: "volumeInitializationRate"))
|
|
1151
|
+
LaunchTemplateDiskConf.add_member(:delete_on_termination, Shapes::ShapeRef.new(shape: Boolean, location_name: "deleteOnTermination"))
|
|
1149
1152
|
LaunchTemplateDiskConf.struct_class = Types::LaunchTemplateDiskConf
|
|
1150
1153
|
|
|
1151
1154
|
LaunchedInstance.add_member(:ec2_instance_id, Shapes::ShapeRef.new(shape: EC2InstanceID, location_name: "ec2InstanceID"))
|
data/lib/aws-sdk-mgn/types.rb
CHANGED
|
@@ -2463,12 +2463,22 @@ module Aws::Mgn
|
|
|
2463
2463
|
# Launch template disk throughput configuration.
|
|
2464
2464
|
# @return [Integer]
|
|
2465
2465
|
#
|
|
2466
|
+
# @!attribute [rw] volume_initialization_rate
|
|
2467
|
+
# Launch template disk volume initialization rate configuration.
|
|
2468
|
+
# @return [Integer]
|
|
2469
|
+
#
|
|
2470
|
+
# @!attribute [rw] delete_on_termination
|
|
2471
|
+
# Launch template disk delete on termination configuration.
|
|
2472
|
+
# @return [Boolean]
|
|
2473
|
+
#
|
|
2466
2474
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mgn-2020-02-26/LaunchTemplateDiskConf AWS API Documentation
|
|
2467
2475
|
#
|
|
2468
2476
|
class LaunchTemplateDiskConf < Struct.new(
|
|
2469
2477
|
:volume_type,
|
|
2470
2478
|
:iops,
|
|
2471
|
-
:throughput
|
|
2479
|
+
:throughput,
|
|
2480
|
+
:volume_initialization_rate,
|
|
2481
|
+
:delete_on_termination)
|
|
2472
2482
|
SENSITIVE = []
|
|
2473
2483
|
include Aws::Structure
|
|
2474
2484
|
end
|
data/lib/aws-sdk-mgn.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -252,12 +252,16 @@ module Aws
|
|
|
252
252
|
?small_volume_conf: {
|
|
253
253
|
volume_type: ("io1" | "io2" | "gp3" | "gp2" | "st1" | "sc1" | "standard")?,
|
|
254
254
|
iops: ::Integer?,
|
|
255
|
-
throughput: ::Integer
|
|
255
|
+
throughput: ::Integer?,
|
|
256
|
+
volume_initialization_rate: ::Integer?,
|
|
257
|
+
delete_on_termination: bool?
|
|
256
258
|
},
|
|
257
259
|
?large_volume_conf: {
|
|
258
260
|
volume_type: ("io1" | "io2" | "gp3" | "gp2" | "st1" | "sc1" | "standard")?,
|
|
259
261
|
iops: ::Integer?,
|
|
260
|
-
throughput: ::Integer
|
|
262
|
+
throughput: ::Integer?,
|
|
263
|
+
volume_initialization_rate: ::Integer?,
|
|
264
|
+
delete_on_termination: bool?
|
|
261
265
|
},
|
|
262
266
|
?enable_parameters_encryption: bool,
|
|
263
267
|
?parameters_encryption_key: ::String
|
|
@@ -1694,12 +1698,16 @@ module Aws
|
|
|
1694
1698
|
?small_volume_conf: {
|
|
1695
1699
|
volume_type: ("io1" | "io2" | "gp3" | "gp2" | "st1" | "sc1" | "standard")?,
|
|
1696
1700
|
iops: ::Integer?,
|
|
1697
|
-
throughput: ::Integer
|
|
1701
|
+
throughput: ::Integer?,
|
|
1702
|
+
volume_initialization_rate: ::Integer?,
|
|
1703
|
+
delete_on_termination: bool?
|
|
1698
1704
|
},
|
|
1699
1705
|
?large_volume_conf: {
|
|
1700
1706
|
volume_type: ("io1" | "io2" | "gp3" | "gp2" | "st1" | "sc1" | "standard")?,
|
|
1701
1707
|
iops: ::Integer?,
|
|
1702
|
-
throughput: ::Integer
|
|
1708
|
+
throughput: ::Integer?,
|
|
1709
|
+
volume_initialization_rate: ::Integer?,
|
|
1710
|
+
delete_on_termination: bool?
|
|
1703
1711
|
},
|
|
1704
1712
|
?enable_parameters_encryption: bool,
|
|
1705
1713
|
?parameters_encryption_key: ::String
|
data/sig/types.rbs
CHANGED
|
@@ -727,6 +727,8 @@ module Aws::Mgn
|
|
|
727
727
|
attr_accessor volume_type: ("io1" | "io2" | "gp3" | "gp2" | "st1" | "sc1" | "standard")
|
|
728
728
|
attr_accessor iops: ::Integer
|
|
729
729
|
attr_accessor throughput: ::Integer
|
|
730
|
+
attr_accessor volume_initialization_rate: ::Integer
|
|
731
|
+
attr_accessor delete_on_termination: bool
|
|
730
732
|
SENSITIVE: []
|
|
731
733
|
end
|
|
732
734
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
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.76.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Amazon Web Services
|
|
@@ -18,7 +18,7 @@ dependencies:
|
|
|
18
18
|
version: '3'
|
|
19
19
|
- - ">="
|
|
20
20
|
- !ruby/object:Gem::Version
|
|
21
|
-
version: 3.
|
|
21
|
+
version: 3.255.0
|
|
22
22
|
type: :runtime
|
|
23
23
|
prerelease: false
|
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
|
@@ -28,7 +28,7 @@ dependencies:
|
|
|
28
28
|
version: '3'
|
|
29
29
|
- - ">="
|
|
30
30
|
- !ruby/object:Gem::Version
|
|
31
|
-
version: 3.
|
|
31
|
+
version: 3.255.0
|
|
32
32
|
- !ruby/object:Gem::Dependency
|
|
33
33
|
name: aws-sigv4
|
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|