aws-sdk-mwaa 1.21.0 → 1.22.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7c4056123fd0eb59cfce8391fb4edb077b495c0e5797f109e40d9a7bca9ef8e9
4
- data.tar.gz: df46ce54467904ac2b2c25af8e3d7ee028fe80c79c1c3adf738cb0ed1e054dcf
3
+ metadata.gz: ef5dc9d49ab700ad3f6e185c94718e141f330d6a44f7422c8e4d399cec4b6805
4
+ data.tar.gz: 78f9816a85420a3cb9866d26048297d355e16b0f90cc8dec9bf190bb7f8b5879
5
5
  SHA512:
6
- metadata.gz: 3955a80d338c065a9b2e293ceafb39f9fb70cd779321b3fc211ed303499842663b29de379cdaa73d12eefe0b81c38bdf9d4a7a771d8660ef0a786ff38f338270
7
- data.tar.gz: 89f6ae687cdaf061bfbd5e70f45df36bd7314146a472bb7ca78aac48239a0051cf5f86ee901c125b7bd79f8844a95c6ca1e075058ababd640b28c47d6f2f3ed3
6
+ metadata.gz: c31bfe474c90c23f94b4bc5e35ef4700e1dccbb02f4668f41c8b549a3895403f02bb9295e86dfb6f296e2abd655913dd39c67dbca681e532cfbc100f9d3f9c30
7
+ data.tar.gz: '058f4d46827e9f9f03851a1e904888497ded2cbff1f212a5f3a68fc7cad27bb77bdf5af8707b371bb0a35023ecad5e5c848fa8d42b6d5b8c104c1f68a04cd5d1'
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.22.0 (2023-06-05)
5
+ ------------------
6
+
7
+ * Feature - This release adds ROLLING_BACK and CREATING_SNAPSHOT environment statuses for Amazon MWAA environments.
8
+
4
9
  1.21.0 (2023-05-31)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.21.0
1
+ 1.22.0
@@ -424,9 +424,9 @@ module Aws::MWAA
424
424
  # @option params [String] :airflow_version
425
425
  # The Apache Airflow version for your environment. If no value is
426
426
  # specified, it defaults to the latest version. Valid values: `1.10.12`,
427
- # `2.0.2`, `2.2.2`, and `2.4.3`. For more information, see [Apache
428
- # Airflow versions on Amazon Managed Workflows for Apache Airflow
429
- # (MWAA)][1].
427
+ # `2.0.2`, `2.2.2`, `2.4.3`, and `2.5.1`. For more information, see
428
+ # [Apache Airflow versions on Amazon Managed Workflows for Apache
429
+ # Airflow (MWAA)][1].
430
430
  #
431
431
  #
432
432
  #
@@ -812,7 +812,7 @@ module Aws::MWAA
812
812
  # resp.environment.source_bucket_arn #=> String
813
813
  # resp.environment.startup_script_s3_object_version #=> String
814
814
  # resp.environment.startup_script_s3_path #=> String
815
- # resp.environment.status #=> String, one of "CREATING", "CREATE_FAILED", "AVAILABLE", "UPDATING", "DELETING", "DELETED", "UNAVAILABLE", "UPDATE_FAILED"
815
+ # resp.environment.status #=> String, one of "CREATING", "CREATE_FAILED", "AVAILABLE", "UPDATING", "DELETING", "DELETED", "UNAVAILABLE", "UPDATE_FAILED", "ROLLING_BACK", "CREATING_SNAPSHOT"
816
816
  # resp.environment.tags #=> Hash
817
817
  # resp.environment.tags["TagKey"] #=> String
818
818
  # resp.environment.webserver_access_mode #=> String, one of "PRIVATE_ONLY", "PUBLIC_ONLY"
@@ -1033,9 +1033,21 @@ module Aws::MWAA
1033
1033
  # [1]: https://docs.aws.amazon.com/mwaa/latest/userguide/configuring-env-variables.html
1034
1034
  #
1035
1035
  # @option params [String] :airflow_version
1036
- # The Apache Airflow version for your environment. If no value is
1037
- # specified, defaults to the latest version. Valid values: `1.10.12`,
1038
- # `2.0.2`, `2.2.2`, and `2.4.3`.
1036
+ # The Apache Airflow version for your environment. To upgrade your
1037
+ # environment, specify a newer version of Apache Airflow supported by
1038
+ # Amazon MWAA.
1039
+ #
1040
+ # Before you upgrade an environment, make sure your requirements, DAGs,
1041
+ # plugins, and other resources used in your workflows are compatible
1042
+ # with the new Apache Airflow version. For more information about
1043
+ # updating your resources, see [Upgrading an Amazon MWAA
1044
+ # environment][1].
1045
+ #
1046
+ # Valid values: `1.10.12`, `2.0.2`, `2.2.2`, `2.4.3`, and `2.5.1`.
1047
+ #
1048
+ #
1049
+ #
1050
+ # [1]: https://docs.aws.amazon.com/mwaa/latest/userguide/upgrading-environment.html
1039
1051
  #
1040
1052
  # @option params [String] :dag_s3_path
1041
1053
  # The relative path to the DAGs folder on your Amazon S3 bucket. For
@@ -1276,7 +1288,7 @@ module Aws::MWAA
1276
1288
  params: params,
1277
1289
  config: config)
1278
1290
  context[:gem_name] = 'aws-sdk-mwaa'
1279
- context[:gem_version] = '1.21.0'
1291
+ context[:gem_version] = '1.22.0'
1280
1292
  Seahorse::Client::Request.new(handlers, context)
1281
1293
  end
1282
1294
 
@@ -81,9 +81,9 @@ module Aws::MWAA
81
81
  # @!attribute [rw] airflow_version
82
82
  # The Apache Airflow version for your environment. If no value is
83
83
  # specified, it defaults to the latest version. Valid values:
84
- # `1.10.12`, `2.0.2`, `2.2.2`, and `2.4.3`. For more information, see
85
- # [Apache Airflow versions on Amazon Managed Workflows for Apache
86
- # Airflow (MWAA)][1].
84
+ # `1.10.12`, `2.0.2`, `2.2.2`, `2.4.3`, and `2.5.1`. For more
85
+ # information, see [Apache Airflow versions on Amazon Managed
86
+ # Workflows for Apache Airflow (MWAA)][1].
87
87
  #
88
88
  #
89
89
  #
@@ -425,7 +425,7 @@ module Aws::MWAA
425
425
  #
426
426
  # @!attribute [rw] airflow_version
427
427
  # The Apache Airflow version on your environment. Valid values:
428
- # `1.10.12`, `2.0.2`, `2.2.2`, and `2.4.3`.
428
+ # `1.10.12`, `2.0.2`, `2.2.2`, `2.4.3`, and `2.5.1`.
429
429
  # @return [String]
430
430
  #
431
431
  # @!attribute [rw] arn
@@ -627,6 +627,14 @@ module Aws::MWAA
627
627
  # * `CREATING` - Indicates the request to create the environment is in
628
628
  # progress.
629
629
  #
630
+ # * `CREATING_SNAPSHOT` - Indicates the request to update environment
631
+ # details, or upgrade the environment version, is in progress and
632
+ # Amazon MWAA is creating a storage volume snapshot of the Amazon
633
+ # RDS database cluster associated with the environment. A database
634
+ # snapshot is a backup created at a specific point in time. Amazon
635
+ # MWAA uses snapshots to recover environment metadata if the process
636
+ # to update or upgrade an environment fails.
637
+ #
630
638
  # * `CREATE_FAILED` - Indicates the request to create the environment
631
639
  # failed, and the environment could not be created.
632
640
  #
@@ -636,6 +644,11 @@ module Aws::MWAA
636
644
  # * `UPDATING` - Indicates the request to update the environment is in
637
645
  # progress.
638
646
  #
647
+ # * `ROLLING_BACK` - Indicates the request to update environment
648
+ # details, or upgrade the environment version, failed and Amazon
649
+ # MWAA is restoring the environment using the latest storage volume
650
+ # snapshot.
651
+ #
639
652
  # * `DELETING` - Indicates the request to delete the environment is in
640
653
  # progress.
641
654
  #
@@ -1211,9 +1224,21 @@ module Aws::MWAA
1211
1224
  # @return [Hash<String,String>]
1212
1225
  #
1213
1226
  # @!attribute [rw] airflow_version
1214
- # The Apache Airflow version for your environment. If no value is
1215
- # specified, defaults to the latest version. Valid values: `1.10.12`,
1216
- # `2.0.2`, `2.2.2`, and `2.4.3`.
1227
+ # The Apache Airflow version for your environment. To upgrade your
1228
+ # environment, specify a newer version of Apache Airflow supported by
1229
+ # Amazon MWAA.
1230
+ #
1231
+ # Before you upgrade an environment, make sure your requirements,
1232
+ # DAGs, plugins, and other resources used in your workflows are
1233
+ # compatible with the new Apache Airflow version. For more information
1234
+ # about updating your resources, see [Upgrading an Amazon MWAA
1235
+ # environment][1].
1236
+ #
1237
+ # Valid values: `1.10.12`, `2.0.2`, `2.2.2`, `2.4.3`, and `2.5.1`.
1238
+ #
1239
+ #
1240
+ #
1241
+ # [1]: https://docs.aws.amazon.com/mwaa/latest/userguide/upgrading-environment.html
1217
1242
  # @return [String]
1218
1243
  #
1219
1244
  # @!attribute [rw] dag_s3_path
data/lib/aws-sdk-mwaa.rb CHANGED
@@ -52,6 +52,6 @@ require_relative 'aws-sdk-mwaa/customizations'
52
52
  # @!group service
53
53
  module Aws::MWAA
54
54
 
55
- GEM_VERSION = '1.21.0'
55
+ GEM_VERSION = '1.22.0'
56
56
 
57
57
  end
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.21.0
4
+ version: 1.22.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-05-31 00:00:00.000000000 Z
11
+ date: 2023-06-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core