aws-sdk-mwaa 1.27.0 → 1.28.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mwaa/client.rb +8 -5
- data/lib/aws-sdk-mwaa/client_api.rb +6 -5
- data/lib/aws-sdk-mwaa/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-mwaa/types.rb +12 -7
- data/lib/aws-sdk-mwaa.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: b96853f6ae0b5cd2d10ae7401ffc3003354cc51cd3ddfb1c28a8a6510b8138da
|
|
4
|
+
data.tar.gz: 3593a660be52c6efe635add0a54d92fccfb626f18989d8f908d60db7314f270d
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4f17780351be7bd5dee8a0c4e8875e98ebabf7e4418e6e80f0bd401365f6948fd458905511a4066adcff89f8923b5f63a690d07c3b72e065c1ce40ea7c368833
|
|
7
|
+
data.tar.gz: ed98bbd141aef5b9d599480630c8fa171ec1b9a246e0eb9ef2eb11ae74bb9529316d240f7f765a3ceb11450c0f4d254d3a23218d5960c9f7182a6c6e9eedb273
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.28.0 (2023-11-06)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds support for Apache Airflow version 2.7.2. This version release includes support for deferrable operators and triggers.
|
|
8
|
+
|
|
4
9
|
1.27.0 (2023-09-27)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.28.0
|
data/lib/aws-sdk-mwaa/client.rb
CHANGED
|
@@ -438,11 +438,13 @@ module Aws::MWAA
|
|
|
438
438
|
#
|
|
439
439
|
# @option params [String] :airflow_version
|
|
440
440
|
# The Apache Airflow version for your environment. If no value is
|
|
441
|
-
# specified, it defaults to the latest version.
|
|
442
|
-
#
|
|
443
|
-
# [Apache Airflow versions on Amazon Managed Workflows for Apache
|
|
441
|
+
# specified, it defaults to the latest version. For more information,
|
|
442
|
+
# see [Apache Airflow versions on Amazon Managed Workflows for Apache
|
|
444
443
|
# Airflow (MWAA)][1].
|
|
445
444
|
#
|
|
445
|
+
# Valid values: `1.10.12`, `2.0.2`, `2.2.2`, `2.4.3`, `2.5.1`, `2.6.3`,
|
|
446
|
+
# `2.7.2`.
|
|
447
|
+
#
|
|
446
448
|
#
|
|
447
449
|
#
|
|
448
450
|
# [1]: https://docs.aws.amazon.com/mwaa/latest/userguide/airflow-versions.html
|
|
@@ -1058,7 +1060,8 @@ module Aws::MWAA
|
|
|
1058
1060
|
# updating your resources, see [Upgrading an Amazon MWAA
|
|
1059
1061
|
# environment][1].
|
|
1060
1062
|
#
|
|
1061
|
-
# Valid values: `1.10.12`, `2.0.2`, `2.2.2`, `2.4.3`,
|
|
1063
|
+
# Valid values: `1.10.12`, `2.0.2`, `2.2.2`, `2.4.3`, `2.5.1`, `2.6.3`,
|
|
1064
|
+
# `2.7.2`.
|
|
1062
1065
|
#
|
|
1063
1066
|
#
|
|
1064
1067
|
#
|
|
@@ -1303,7 +1306,7 @@ module Aws::MWAA
|
|
|
1303
1306
|
params: params,
|
|
1304
1307
|
config: config)
|
|
1305
1308
|
context[:gem_name] = 'aws-sdk-mwaa'
|
|
1306
|
-
context[:gem_version] = '1.
|
|
1309
|
+
context[:gem_version] = '1.28.0'
|
|
1307
1310
|
Seahorse::Client::Request.new(handlers, context)
|
|
1308
1311
|
end
|
|
1309
1312
|
|
|
@@ -156,7 +156,7 @@ module Aws::MWAA
|
|
|
156
156
|
Dimension.add_member(:value, Shapes::ShapeRef.new(shape: String, required: true, location_name: "Value"))
|
|
157
157
|
Dimension.struct_class = Types::Dimension
|
|
158
158
|
|
|
159
|
-
Dimensions.member = Shapes::ShapeRef.new(shape: Dimension)
|
|
159
|
+
Dimensions.member = Shapes::ShapeRef.new(shape: Dimension, deprecated: true)
|
|
160
160
|
|
|
161
161
|
Environment.add_member(:airflow_configuration_options, Shapes::ShapeRef.new(shape: AirflowConfigurationOptions, location_name: "AirflowConfigurationOptions"))
|
|
162
162
|
Environment.add_member(:airflow_version, Shapes::ShapeRef.new(shape: AirflowVersion, location_name: "AirflowVersion"))
|
|
@@ -233,11 +233,11 @@ module Aws::MWAA
|
|
|
233
233
|
LoggingConfigurationInput.add_member(:worker_logs, Shapes::ShapeRef.new(shape: ModuleLoggingConfigurationInput, location_name: "WorkerLogs"))
|
|
234
234
|
LoggingConfigurationInput.struct_class = Types::LoggingConfigurationInput
|
|
235
235
|
|
|
236
|
-
MetricData.member = Shapes::ShapeRef.new(shape: MetricDatum)
|
|
236
|
+
MetricData.member = Shapes::ShapeRef.new(shape: MetricDatum, deprecated: true)
|
|
237
237
|
|
|
238
|
-
MetricDatum.add_member(:dimensions, Shapes::ShapeRef.new(shape: Dimensions, location_name: "Dimensions"))
|
|
238
|
+
MetricDatum.add_member(:dimensions, Shapes::ShapeRef.new(shape: Dimensions, deprecated: true, location_name: "Dimensions"))
|
|
239
239
|
MetricDatum.add_member(:metric_name, Shapes::ShapeRef.new(shape: String, required: true, location_name: "MetricName"))
|
|
240
|
-
MetricDatum.add_member(:statistic_values, Shapes::ShapeRef.new(shape: StatisticSet, location_name: "StatisticValues"))
|
|
240
|
+
MetricDatum.add_member(:statistic_values, Shapes::ShapeRef.new(shape: StatisticSet, deprecated: true, location_name: "StatisticValues"))
|
|
241
241
|
MetricDatum.add_member(:timestamp, Shapes::ShapeRef.new(shape: Timestamp, required: true, location_name: "Timestamp"))
|
|
242
242
|
MetricDatum.add_member(:unit, Shapes::ShapeRef.new(shape: Unit, location_name: "Unit"))
|
|
243
243
|
MetricDatum.add_member(:value, Shapes::ShapeRef.new(shape: Double, location_name: "Value"))
|
|
@@ -257,7 +257,7 @@ module Aws::MWAA
|
|
|
257
257
|
NetworkConfiguration.struct_class = Types::NetworkConfiguration
|
|
258
258
|
|
|
259
259
|
PublishMetricsInput.add_member(:environment_name, Shapes::ShapeRef.new(shape: EnvironmentName, required: true, location: "uri", location_name: "EnvironmentName"))
|
|
260
|
-
PublishMetricsInput.add_member(:metric_data, Shapes::ShapeRef.new(shape: MetricData, required: true, location_name: "MetricData"))
|
|
260
|
+
PublishMetricsInput.add_member(:metric_data, Shapes::ShapeRef.new(shape: MetricData, required: true, deprecated: true, location_name: "MetricData"))
|
|
261
261
|
PublishMetricsInput.struct_class = Types::PublishMetricsInput
|
|
262
262
|
|
|
263
263
|
PublishMetricsOutput.struct_class = Types::PublishMetricsOutput
|
|
@@ -450,6 +450,7 @@ module Aws::MWAA
|
|
|
450
450
|
o.name = "PublishMetrics"
|
|
451
451
|
o.http_method = "POST"
|
|
452
452
|
o.http_request_uri = "/metrics/environments/{EnvironmentName}"
|
|
453
|
+
o.deprecated = true
|
|
453
454
|
o.endpoint_pattern = {
|
|
454
455
|
"hostPrefix" => "ops.",
|
|
455
456
|
}
|
|
@@ -32,7 +32,7 @@ module Aws::MWAA
|
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
33
33
|
end
|
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://airflow-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
37
37
|
end
|
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
data/lib/aws-sdk-mwaa/types.rb
CHANGED
|
@@ -80,10 +80,12 @@ module Aws::MWAA
|
|
|
80
80
|
#
|
|
81
81
|
# @!attribute [rw] airflow_version
|
|
82
82
|
# The Apache Airflow version for your environment. If no value is
|
|
83
|
-
# specified, it defaults to the latest version.
|
|
84
|
-
#
|
|
85
|
-
#
|
|
86
|
-
#
|
|
83
|
+
# specified, it defaults to the latest version. For more information,
|
|
84
|
+
# see [Apache Airflow versions on Amazon Managed Workflows for Apache
|
|
85
|
+
# Airflow (MWAA)][1].
|
|
86
|
+
#
|
|
87
|
+
# Valid values: `1.10.12`, `2.0.2`, `2.2.2`, `2.4.3`, `2.5.1`,
|
|
88
|
+
# `2.6.3`, `2.7.2`.
|
|
87
89
|
#
|
|
88
90
|
#
|
|
89
91
|
#
|
|
@@ -424,8 +426,10 @@ module Aws::MWAA
|
|
|
424
426
|
# @return [Hash<String,String>]
|
|
425
427
|
#
|
|
426
428
|
# @!attribute [rw] airflow_version
|
|
427
|
-
# The Apache Airflow version on your environment.
|
|
428
|
-
#
|
|
429
|
+
# The Apache Airflow version on your environment.
|
|
430
|
+
#
|
|
431
|
+
# Valid values: `1.10.12`, `2.0.2`, `2.2.2`, `2.4.3`, `2.5.1`,
|
|
432
|
+
# `2.6.3`, `2.7.2`.
|
|
429
433
|
# @return [String]
|
|
430
434
|
#
|
|
431
435
|
# @!attribute [rw] arn
|
|
@@ -1234,7 +1238,8 @@ module Aws::MWAA
|
|
|
1234
1238
|
# about updating your resources, see [Upgrading an Amazon MWAA
|
|
1235
1239
|
# environment][1].
|
|
1236
1240
|
#
|
|
1237
|
-
# Valid values: `1.10.12`, `2.0.2`, `2.2.2`, `2.4.3`,
|
|
1241
|
+
# Valid values: `1.10.12`, `2.0.2`, `2.2.2`, `2.4.3`, `2.5.1`,
|
|
1242
|
+
# `2.6.3`, `2.7.2`.
|
|
1238
1243
|
#
|
|
1239
1244
|
#
|
|
1240
1245
|
#
|
data/lib/aws-sdk-mwaa.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: aws-sdk-mwaa
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.28.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: 2023-
|
|
11
|
+
date: 2023-11-06 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sdk-core
|