aws-sdk-mainframemodernization 1.30.0 → 1.32.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mainframemodernization/client.rb +31 -1
- data/lib/aws-sdk-mainframemodernization/client_api.rb +4 -0
- data/lib/aws-sdk-mainframemodernization/types.rb +15 -0
- data/lib/aws-sdk-mainframemodernization.rb +1 -1
- data/sig/client.rbs +4 -0
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +3 -0
- 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: ccb5046a263170e93573c0d32bfce3eb4c50b0da55e1f7ca5e91d1536dafe5fd
|
4
|
+
data.tar.gz: 2e0bd560993f558547e7e5c6afce21ce46e32c592efa32c4a4f0835477123a61
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ffc03416c5467e37a41914912d0db04df878a4c35553a6f731b49912586cb8d56fa32beebab69806a4aaad52efd3b2620c39bebd156a4fdcb4d54a58a01482b2
|
7
|
+
data.tar.gz: 61b28ffe1180a560fb8374a07b26d16884dbd9ed5311cb1f84d57a79fbcb03c886c1f691ebc33488760aa2e2962d1fcbe8d3b007ffea3a33936cb7525fe15ff4
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.32.0 (2025-01-15)
|
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-12-17)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - This release adds support for AWS Mainframe Modernization(M2) Service to allow specifying network type(ipv4, dual) for the environment instances. For dual network type, m2 environment applications will serve both IPv4 and IPv6 requests, whereas for ipv4 it will serve only IPv4 requests.
|
13
|
+
|
4
14
|
1.30.0 (2024-10-22)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.32.0
|
@@ -257,11 +257,34 @@ module Aws::MainframeModernization
|
|
257
257
|
# Used when loading credentials from the shared credentials file
|
258
258
|
# at HOME/.aws/credentials. When not specified, 'default' is used.
|
259
259
|
#
|
260
|
+
# @option options [String] :request_checksum_calculation ("when_supported")
|
261
|
+
# Determines when a checksum will be calculated for request payloads. Values are:
|
262
|
+
#
|
263
|
+
# * `when_supported` - (default) When set, a checksum will be
|
264
|
+
# calculated for all request payloads of operations modeled with the
|
265
|
+
# `httpChecksum` trait where `requestChecksumRequired` is `true` and/or a
|
266
|
+
# `requestAlgorithmMember` is modeled.
|
267
|
+
# * `when_required` - When set, a checksum will only be calculated for
|
268
|
+
# request payloads of operations modeled with the `httpChecksum` trait where
|
269
|
+
# `requestChecksumRequired` is `true` or where a `requestAlgorithmMember`
|
270
|
+
# is modeled and supplied.
|
271
|
+
#
|
260
272
|
# @option options [Integer] :request_min_compression_size_bytes (10240)
|
261
273
|
# The minimum size in bytes that triggers compression for request
|
262
274
|
# bodies. The value must be non-negative integer value between 0
|
263
275
|
# and 10485780 bytes inclusive.
|
264
276
|
#
|
277
|
+
# @option options [String] :response_checksum_validation ("when_supported")
|
278
|
+
# Determines when checksum validation will be performed on response payloads. Values are:
|
279
|
+
#
|
280
|
+
# * `when_supported` - (default) When set, checksum validation is performed on all
|
281
|
+
# response payloads of operations modeled with the `httpChecksum` trait where
|
282
|
+
# `responseAlgorithms` is modeled, except when no modeled checksum algorithms
|
283
|
+
# are supported.
|
284
|
+
# * `when_required` - When set, checksum validation is not performed on
|
285
|
+
# response payloads of operations unless the checksum algorithm is supported and
|
286
|
+
# the `requestValidationModeMember` member is set to `ENABLED`.
|
287
|
+
#
|
265
288
|
# @option options [Proc] :retry_backoff
|
266
289
|
# A proc or lambda used for backoff. Defaults to 2**retries * retry_base_delay.
|
267
290
|
# This option is only used in the `legacy` retry mode.
|
@@ -737,6 +760,9 @@ module Aws::MainframeModernization
|
|
737
760
|
# The name of the runtime environment. Must be unique within the
|
738
761
|
# account.
|
739
762
|
#
|
763
|
+
# @option params [String] :network_type
|
764
|
+
# The network type required for the runtime environment.
|
765
|
+
#
|
740
766
|
# @option params [String] :preferred_maintenance_window
|
741
767
|
# Configures the maintenance window that you want for the runtime
|
742
768
|
# environment. The maintenance window must have the format
|
@@ -781,6 +807,7 @@ module Aws::MainframeModernization
|
|
781
807
|
# instance_type: "String20", # required
|
782
808
|
# kms_key_id: "String",
|
783
809
|
# name: "EntityName", # required
|
810
|
+
# network_type: "ipv4", # accepts ipv4, dual
|
784
811
|
# preferred_maintenance_window: "String50",
|
785
812
|
# publicly_accessible: false,
|
786
813
|
# security_group_ids: ["String50"],
|
@@ -1257,6 +1284,7 @@ module Aws::MainframeModernization
|
|
1257
1284
|
# * {Types::GetEnvironmentResponse#kms_key_id #kms_key_id} => String
|
1258
1285
|
# * {Types::GetEnvironmentResponse#load_balancer_arn #load_balancer_arn} => String
|
1259
1286
|
# * {Types::GetEnvironmentResponse#name #name} => String
|
1287
|
+
# * {Types::GetEnvironmentResponse#network_type #network_type} => String
|
1260
1288
|
# * {Types::GetEnvironmentResponse#pending_maintenance #pending_maintenance} => Types::PendingMaintenance
|
1261
1289
|
# * {Types::GetEnvironmentResponse#preferred_maintenance_window #preferred_maintenance_window} => String
|
1262
1290
|
# * {Types::GetEnvironmentResponse#publicly_accessible #publicly_accessible} => Boolean
|
@@ -1288,6 +1316,7 @@ module Aws::MainframeModernization
|
|
1288
1316
|
# resp.kms_key_id #=> String
|
1289
1317
|
# resp.load_balancer_arn #=> String
|
1290
1318
|
# resp.name #=> String
|
1319
|
+
# resp.network_type #=> String, one of "ipv4", "dual"
|
1291
1320
|
# resp.pending_maintenance.engine_version #=> String
|
1292
1321
|
# resp.pending_maintenance.schedule.end_time #=> Time
|
1293
1322
|
# resp.pending_maintenance.schedule.start_time #=> Time
|
@@ -1881,6 +1910,7 @@ module Aws::MainframeModernization
|
|
1881
1910
|
# resp.environments[0].environment_id #=> String
|
1882
1911
|
# resp.environments[0].instance_type #=> String
|
1883
1912
|
# resp.environments[0].name #=> String
|
1913
|
+
# resp.environments[0].network_type #=> String, one of "ipv4", "dual"
|
1884
1914
|
# resp.environments[0].status #=> String, one of "Creating", "Available", "Updating", "Deleting", "Failed", "UnHealthy"
|
1885
1915
|
# resp.next_token #=> String
|
1886
1916
|
#
|
@@ -2241,7 +2271,7 @@ module Aws::MainframeModernization
|
|
2241
2271
|
tracer: tracer
|
2242
2272
|
)
|
2243
2273
|
context[:gem_name] = 'aws-sdk-mainframemodernization'
|
2244
|
-
context[:gem_version] = '1.
|
2274
|
+
context[:gem_version] = '1.32.0'
|
2245
2275
|
Seahorse::Client::Request.new(handlers, context)
|
2246
2276
|
end
|
2247
2277
|
|
@@ -144,6 +144,7 @@ module Aws::MainframeModernization
|
|
144
144
|
Long = Shapes::IntegerShape.new(name: 'Long')
|
145
145
|
MaintenanceSchedule = Shapes::StructureShape.new(name: 'MaintenanceSchedule')
|
146
146
|
MaxResults = Shapes::IntegerShape.new(name: 'MaxResults')
|
147
|
+
NetworkType = Shapes::StringShape.new(name: 'NetworkType')
|
147
148
|
NextToken = Shapes::StringShape.new(name: 'NextToken')
|
148
149
|
PendingMaintenance = Shapes::StructureShape.new(name: 'PendingMaintenance')
|
149
150
|
PoAttributes = Shapes::StructureShape.new(name: 'PoAttributes')
|
@@ -330,6 +331,7 @@ module Aws::MainframeModernization
|
|
330
331
|
CreateEnvironmentRequest.add_member(:instance_type, Shapes::ShapeRef.new(shape: String20, required: true, location_name: "instanceType"))
|
331
332
|
CreateEnvironmentRequest.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyId"))
|
332
333
|
CreateEnvironmentRequest.add_member(:name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "name"))
|
334
|
+
CreateEnvironmentRequest.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
|
333
335
|
CreateEnvironmentRequest.add_member(:preferred_maintenance_window, Shapes::ShapeRef.new(shape: String50, location_name: "preferredMaintenanceWindow"))
|
334
336
|
CreateEnvironmentRequest.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean, location_name: "publiclyAccessible"))
|
335
337
|
CreateEnvironmentRequest.add_member(:security_group_ids, Shapes::ShapeRef.new(shape: String50List, location_name: "securityGroupIds"))
|
@@ -470,6 +472,7 @@ module Aws::MainframeModernization
|
|
470
472
|
EnvironmentSummary.add_member(:environment_id, Shapes::ShapeRef.new(shape: Identifier, required: true, location_name: "environmentId"))
|
471
473
|
EnvironmentSummary.add_member(:instance_type, Shapes::ShapeRef.new(shape: String20, required: true, location_name: "instanceType"))
|
472
474
|
EnvironmentSummary.add_member(:name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "name"))
|
475
|
+
EnvironmentSummary.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
|
473
476
|
EnvironmentSummary.add_member(:status, Shapes::ShapeRef.new(shape: EnvironmentLifecycle, required: true, location_name: "status"))
|
474
477
|
EnvironmentSummary.struct_class = Types::EnvironmentSummary
|
475
478
|
|
@@ -613,6 +616,7 @@ module Aws::MainframeModernization
|
|
613
616
|
GetEnvironmentResponse.add_member(:kms_key_id, Shapes::ShapeRef.new(shape: String, location_name: "kmsKeyId"))
|
614
617
|
GetEnvironmentResponse.add_member(:load_balancer_arn, Shapes::ShapeRef.new(shape: String, location_name: "loadBalancerArn"))
|
615
618
|
GetEnvironmentResponse.add_member(:name, Shapes::ShapeRef.new(shape: EntityName, required: true, location_name: "name"))
|
619
|
+
GetEnvironmentResponse.add_member(:network_type, Shapes::ShapeRef.new(shape: NetworkType, location_name: "networkType"))
|
616
620
|
GetEnvironmentResponse.add_member(:pending_maintenance, Shapes::ShapeRef.new(shape: PendingMaintenance, location_name: "pendingMaintenance"))
|
617
621
|
GetEnvironmentResponse.add_member(:preferred_maintenance_window, Shapes::ShapeRef.new(shape: String50, location_name: "preferredMaintenanceWindow"))
|
618
622
|
GetEnvironmentResponse.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: Boolean, location_name: "publiclyAccessible"))
|
@@ -570,6 +570,10 @@ module Aws::MainframeModernization
|
|
570
570
|
# account.
|
571
571
|
# @return [String]
|
572
572
|
#
|
573
|
+
# @!attribute [rw] network_type
|
574
|
+
# The network type required for the runtime environment.
|
575
|
+
# @return [String]
|
576
|
+
#
|
573
577
|
# @!attribute [rw] preferred_maintenance_window
|
574
578
|
# Configures the maintenance window that you want for the runtime
|
575
579
|
# environment. The maintenance window must have the format
|
@@ -614,6 +618,7 @@ module Aws::MainframeModernization
|
|
614
618
|
:instance_type,
|
615
619
|
:kms_key_id,
|
616
620
|
:name,
|
621
|
+
:network_type,
|
617
622
|
:preferred_maintenance_window,
|
618
623
|
:publicly_accessible,
|
619
624
|
:security_group_ids,
|
@@ -1127,6 +1132,10 @@ module Aws::MainframeModernization
|
|
1127
1132
|
# The name of the runtime environment.
|
1128
1133
|
# @return [String]
|
1129
1134
|
#
|
1135
|
+
# @!attribute [rw] network_type
|
1136
|
+
# The network type supported by the runtime environment.
|
1137
|
+
# @return [String]
|
1138
|
+
#
|
1130
1139
|
# @!attribute [rw] status
|
1131
1140
|
# The status of the runtime environment
|
1132
1141
|
# @return [String]
|
@@ -1141,6 +1150,7 @@ module Aws::MainframeModernization
|
|
1141
1150
|
:environment_id,
|
1142
1151
|
:instance_type,
|
1143
1152
|
:name,
|
1153
|
+
:network_type,
|
1144
1154
|
:status)
|
1145
1155
|
SENSITIVE = []
|
1146
1156
|
include Aws::Structure
|
@@ -1816,6 +1826,10 @@ module Aws::MainframeModernization
|
|
1816
1826
|
# account.
|
1817
1827
|
# @return [String]
|
1818
1828
|
#
|
1829
|
+
# @!attribute [rw] network_type
|
1830
|
+
# The network type supported by the runtime environment.
|
1831
|
+
# @return [String]
|
1832
|
+
#
|
1819
1833
|
# @!attribute [rw] pending_maintenance
|
1820
1834
|
# Indicates the pending maintenance scheduled on this environment.
|
1821
1835
|
# @return [Types::PendingMaintenance]
|
@@ -1879,6 +1893,7 @@ module Aws::MainframeModernization
|
|
1879
1893
|
:kms_key_id,
|
1880
1894
|
:load_balancer_arn,
|
1881
1895
|
:name,
|
1896
|
+
:network_type,
|
1882
1897
|
:pending_maintenance,
|
1883
1898
|
:preferred_maintenance_window,
|
1884
1899
|
:publicly_accessible,
|
data/sig/client.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
@@ -200,6 +202,7 @@ module Aws
|
|
200
202
|
instance_type: ::String,
|
201
203
|
?kms_key_id: ::String,
|
202
204
|
name: ::String,
|
205
|
+
?network_type: ("ipv4" | "dual"),
|
203
206
|
?preferred_maintenance_window: ::String,
|
204
207
|
?publicly_accessible: bool,
|
205
208
|
?security_group_ids: Array[::String],
|
@@ -380,6 +383,7 @@ module Aws
|
|
380
383
|
def kms_key_id: () -> ::String
|
381
384
|
def load_balancer_arn: () -> ::String
|
382
385
|
def name: () -> ::String
|
386
|
+
def network_type: () -> ("ipv4" | "dual")
|
383
387
|
def pending_maintenance: () -> Types::PendingMaintenance
|
384
388
|
def preferred_maintenance_window: () -> ::String
|
385
389
|
def publicly_accessible: () -> bool
|
data/sig/resource.rbs
CHANGED
@@ -39,7 +39,9 @@ module Aws
|
|
39
39
|
?logger: untyped,
|
40
40
|
?max_attempts: Integer,
|
41
41
|
?profile: String,
|
42
|
+
?request_checksum_calculation: String,
|
42
43
|
?request_min_compression_size_bytes: Integer,
|
44
|
+
?response_checksum_validation: String,
|
43
45
|
?retry_backoff: Proc,
|
44
46
|
?retry_base_delay: Float,
|
45
47
|
?retry_jitter: (:none | :equal | :full | ^(Integer) -> Integer),
|
data/sig/types.rbs
CHANGED
@@ -164,6 +164,7 @@ module Aws::MainframeModernization
|
|
164
164
|
attr_accessor instance_type: ::String
|
165
165
|
attr_accessor kms_key_id: ::String
|
166
166
|
attr_accessor name: ::String
|
167
|
+
attr_accessor network_type: ("ipv4" | "dual")
|
167
168
|
attr_accessor preferred_maintenance_window: ::String
|
168
169
|
attr_accessor publicly_accessible: bool
|
169
170
|
attr_accessor security_group_ids: ::Array[::String]
|
@@ -351,6 +352,7 @@ module Aws::MainframeModernization
|
|
351
352
|
attr_accessor environment_id: ::String
|
352
353
|
attr_accessor instance_type: ::String
|
353
354
|
attr_accessor name: ::String
|
355
|
+
attr_accessor network_type: ("ipv4" | "dual")
|
354
356
|
attr_accessor status: ("Creating" | "Available" | "Updating" | "Deleting" | "Failed" | "UnHealthy")
|
355
357
|
SENSITIVE: []
|
356
358
|
end
|
@@ -537,6 +539,7 @@ module Aws::MainframeModernization
|
|
537
539
|
attr_accessor kms_key_id: ::String
|
538
540
|
attr_accessor load_balancer_arn: ::String
|
539
541
|
attr_accessor name: ::String
|
542
|
+
attr_accessor network_type: ("ipv4" | "dual")
|
540
543
|
attr_accessor pending_maintenance: Types::PendingMaintenance
|
541
544
|
attr_accessor preferred_maintenance_window: ::String
|
542
545
|
attr_accessor publicly_accessible: bool
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mainframemodernization
|
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:
|
11
|
+
date: 2025-01-15 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.216.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.216.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|