aws-sdk-mwaa 1.33.0 → 1.34.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: 1fe53d8e0eb4639f10c1e5c8621240a623c1b3c8db79d1a9c6dca3cb1a3b3d8a
4
- data.tar.gz: f86ed69cc2519bf1715655d50b57ec7b37ad2e19817ccb9efacb81b8aba63e5d
3
+ metadata.gz: 437e18cd0e172752ce853806a1fb3cd672916e80e2b4087734c980b6b1b5df7d
4
+ data.tar.gz: 4a42469315c9e9dd29401c3a9a63af05a93da2195a2f1a90771bdb64a9a80704
5
5
  SHA512:
6
- metadata.gz: e036ecbc6771eb4f7049b23986de446f11a252218ddb36ed2b69c12b3929bae0b9cd279c5cb15162ed1bb6d83d95d341d548ed645da4669c815eb0e42bf4b907
7
- data.tar.gz: 4a7aef126ddb569d85393cfadacbedf54cbe07401b7a21935386d3446b949f2ec7c0bd32d499ddb0a3105fb26101e1eb28ea5579599d1345f9dadaa89f0a6728
6
+ metadata.gz: 1523665dad3641489169f6b6755ace42e45f8f0d7872e46b0fdaf4aa080599a1f14e2a27be566b39b7400b5d55ff1f55f5171967d2341078c8c1540c454b6e3c
7
+ data.tar.gz: 26ac726d8dca536b59917f3833bd6d346129f29d9830cf043699debc82750b790821cef1c8258e28055db1408db0b57b0c3bf01958dae9d331c9ac57dbacbb05
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.34.0 (2024-01-29)
5
+ ------------------
6
+
7
+ * Feature - This release adds MAINTENANCE environment status for Amazon MWAA environments.
8
+
4
9
  1.33.0 (2024-01-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.33.0
1
+ 1.34.0
@@ -850,7 +850,7 @@ module Aws::MWAA
850
850
  # resp.environment.source_bucket_arn #=> String
851
851
  # resp.environment.startup_script_s3_object_version #=> String
852
852
  # resp.environment.startup_script_s3_path #=> String
853
- # resp.environment.status #=> String, one of "CREATING", "CREATE_FAILED", "AVAILABLE", "UPDATING", "DELETING", "DELETED", "UNAVAILABLE", "UPDATE_FAILED", "ROLLING_BACK", "CREATING_SNAPSHOT", "PENDING"
853
+ # resp.environment.status #=> String, one of "CREATING", "CREATE_FAILED", "AVAILABLE", "UPDATING", "DELETING", "DELETED", "UNAVAILABLE", "UPDATE_FAILED", "ROLLING_BACK", "CREATING_SNAPSHOT", "PENDING", "MAINTENANCE"
854
854
  # resp.environment.tags #=> Hash
855
855
  # resp.environment.tags["TagKey"] #=> String
856
856
  # resp.environment.webserver_access_mode #=> String, one of "PRIVATE_ONLY", "PUBLIC_ONLY"
@@ -1328,7 +1328,7 @@ module Aws::MWAA
1328
1328
  params: params,
1329
1329
  config: config)
1330
1330
  context[:gem_name] = 'aws-sdk-mwaa'
1331
- context[:gem_version] = '1.33.0'
1331
+ context[:gem_version] = '1.34.0'
1332
1332
  Seahorse::Client::Request.new(handlers, context)
1333
1333
  end
1334
1334
 
@@ -524,8 +524,7 @@ module Aws::MWAA
524
524
  # @return [String]
525
525
  #
526
526
  # @!attribute [rw] kms_key
527
- # The Amazon Web Services Key Management Service (KMS) encryption key
528
- # used to encrypt the data in your environment.
527
+ # The KMS encryption key used to encrypt the data in your environment.
529
528
  # @return [String]
530
529
  #
531
530
  # @!attribute [rw] last_update
@@ -718,11 +717,17 @@ module Aws::MWAA
718
717
  # complete, and the environment has been deleted.
719
718
  #
720
719
  # * `UNAVAILABLE` - Indicates the request failed, but the environment
721
- # was unable to rollback and is not in a stable state.
720
+ # did not return to its previous state and is not stable.
722
721
  #
723
722
  # * `UPDATE_FAILED` - Indicates the request to update the environment
724
- # failed, and the environment has rolled back successfully and is
725
- # ready to use.
723
+ # failed, and the environment was restored to its previous state
724
+ # successfully and is ready to use.
725
+ #
726
+ # * `MAINTENANCE` - Indicates that the environment is undergoing
727
+ # maintenance. Depending on the type of work Amazon MWAA is
728
+ # performing, your environment might become unavailable during this
729
+ # process. After all operations are done, your environment will
730
+ # return to its status prior to mainteneace operations.
726
731
  #
727
732
  # We recommend reviewing our troubleshooting guide for a list of
728
733
  # common errors and their solutions. For more information, see [Amazon
@@ -753,7 +758,7 @@ module Aws::MWAA
753
758
  # @return [String]
754
759
  #
755
760
  # @!attribute [rw] webserver_url
756
- # The Apache Airflow *Web server* host name for the Amazon MWAA
761
+ # The Apache Airflow *web server* host name for the Amazon MWAA
757
762
  # environment. For more information, see [Accessing the Apache Airflow
758
763
  # UI][1].
759
764
  #
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.33.0'
55
+ GEM_VERSION = '1.34.0'
56
56
 
57
57
  end
data/sig/types.rbs CHANGED
@@ -110,7 +110,7 @@ module Aws::MWAA
110
110
  attr_accessor source_bucket_arn: ::String
111
111
  attr_accessor startup_script_s3_object_version: ::String
112
112
  attr_accessor startup_script_s3_path: ::String
113
- attr_accessor status: ("CREATING" | "CREATE_FAILED" | "AVAILABLE" | "UPDATING" | "DELETING" | "DELETED" | "UNAVAILABLE" | "UPDATE_FAILED" | "ROLLING_BACK" | "CREATING_SNAPSHOT" | "PENDING")
113
+ attr_accessor status: ("CREATING" | "CREATE_FAILED" | "AVAILABLE" | "UPDATING" | "DELETING" | "DELETED" | "UNAVAILABLE" | "UPDATE_FAILED" | "ROLLING_BACK" | "CREATING_SNAPSHOT" | "PENDING" | "MAINTENANCE")
114
114
  attr_accessor tags: ::Hash[::String, ::String]
115
115
  attr_accessor webserver_access_mode: ("PRIVATE_ONLY" | "PUBLIC_ONLY")
116
116
  attr_accessor webserver_url: ::String
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.33.0
4
+ version: 1.34.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-01-29 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core