aws-sdk-appconfig 1.59.0 → 1.60.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: db0e761d64ca909f61c6be821ee0fcb9135b6dec111b4d1e8280d09ef68e2aee
4
- data.tar.gz: c3927e1d3669dd3d7124632c61cf47ba3996e1bfcf407edf3f35043fc74b8f71
3
+ metadata.gz: 279cd99a32e6b54d63f281bb0df4254271dc3ddd6f0d8434db3c643d297d66ba
4
+ data.tar.gz: 2cf0c423bfad1ceec3a5c97527b8e9e2fcf5d9eca1271214f150ee6d4ae2b61f
5
5
  SHA512:
6
- metadata.gz: 2c4d9490517ba2e00ab847d1d0627e972ec540d7c4bcb9a05fb8c5734e58cf835889fa4d5342766e16b5fd3086ad993b6358d5c6315df8a88a8dff745c2a74e5
7
- data.tar.gz: 2952a4bee934e901fdef7509c0a8c0876d28c39579b7089de47330782362daf69b453b791b9dbba8fdd9e35d223f3eb7bebcc4270e31797bfe88da6b6265afd4
6
+ metadata.gz: a83ca61267490bb8f609b761239e4bf857aa1b5e519b2a7cf1553f767e2a62056d368c1bb8bd4173a179b549aaf8e03e0c713663f3284fb8e940a236b7f74e56
7
+ data.tar.gz: 3fd8612bccc8d6186156f9e9d9bac11eff897b181db378e4bed36fab045df891149c7694efb1bdb78af59c396aa736396a8c80c3cfb6bd65986aa87e637b6573
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.60.0 (2024-10-24)
5
+ ------------------
6
+
7
+ * Feature - This release improves deployment safety by granting customers the ability to REVERT completed deployments, to the last known good state.In the StopDeployment API revert case the status of a COMPLETE deployment will be REVERTED. AppConfig only allows a revert within 72 hours of deployment completion.
8
+
4
9
  1.59.0 (2024-10-18)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.59.0
1
+ 1.60.0
@@ -916,7 +916,7 @@ module Aws::AppConfig
916
916
  # resp.id #=> String
917
917
  # resp.name #=> String
918
918
  # resp.description #=> String
919
- # resp.state #=> String, one of "READY_FOR_DEPLOYMENT", "DEPLOYING", "ROLLING_BACK", "ROLLED_BACK"
919
+ # resp.state #=> String, one of "READY_FOR_DEPLOYMENT", "DEPLOYING", "ROLLING_BACK", "ROLLED_BACK", "REVERTED"
920
920
  # resp.monitors #=> Array
921
921
  # resp.monitors[0].alarm_arn #=> String
922
922
  # resp.monitors[0].alarm_role_arn #=> String
@@ -1664,13 +1664,14 @@ module Aws::AppConfig
1664
1664
  # saved for subsequent calls to GetConfiguration.
1665
1665
  #
1666
1666
  # For more information about working with configurations, see
1667
- # [Retrieving the Configuration][3] in the *AppConfig User Guide*.
1667
+ # [Retrieving feature flags and configuration data in AppConfig][3] in
1668
+ # the *AppConfig User Guide*.
1668
1669
  #
1669
1670
  #
1670
1671
  #
1671
1672
  # [1]: https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/StartConfigurationSession.html
1672
1673
  # [2]: https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/GetLatestConfiguration.html
1673
- # [3]: http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-retrieving-the-configuration.html
1674
+ # [3]: http://docs.aws.amazon.com/appconfig/latest/userguide/retrieving-feature-flags.html
1674
1675
  #
1675
1676
  # @return [Types::Configuration] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1676
1677
  #
@@ -1933,9 +1934,9 @@ module Aws::AppConfig
1933
1934
  # resp.growth_type #=> String, one of "LINEAR", "EXPONENTIAL"
1934
1935
  # resp.growth_factor #=> Float
1935
1936
  # resp.final_bake_time_in_minutes #=> Integer
1936
- # resp.state #=> String, one of "BAKING", "VALIDATING", "DEPLOYING", "COMPLETE", "ROLLING_BACK", "ROLLED_BACK"
1937
+ # resp.state #=> String, one of "BAKING", "VALIDATING", "DEPLOYING", "COMPLETE", "ROLLING_BACK", "ROLLED_BACK", "REVERTED"
1937
1938
  # resp.event_log #=> Array
1938
- # resp.event_log[0].event_type #=> String, one of "PERCENTAGE_UPDATED", "ROLLBACK_STARTED", "ROLLBACK_COMPLETED", "BAKE_TIME_STARTED", "DEPLOYMENT_STARTED", "DEPLOYMENT_COMPLETED"
1939
+ # resp.event_log[0].event_type #=> String, one of "PERCENTAGE_UPDATED", "ROLLBACK_STARTED", "ROLLBACK_COMPLETED", "BAKE_TIME_STARTED", "DEPLOYMENT_STARTED", "DEPLOYMENT_COMPLETED", "REVERT_COMPLETED"
1939
1940
  # resp.event_log[0].triggered_by #=> String, one of "USER", "APPCONFIG", "CLOUDWATCH_ALARM", "INTERNAL_ERROR"
1940
1941
  # resp.event_log[0].description #=> String
1941
1942
  # resp.event_log[0].action_invocations #=> Array
@@ -2090,7 +2091,7 @@ module Aws::AppConfig
2090
2091
  # resp.id #=> String
2091
2092
  # resp.name #=> String
2092
2093
  # resp.description #=> String
2093
- # resp.state #=> String, one of "READY_FOR_DEPLOYMENT", "DEPLOYING", "ROLLING_BACK", "ROLLED_BACK"
2094
+ # resp.state #=> String, one of "READY_FOR_DEPLOYMENT", "DEPLOYING", "ROLLING_BACK", "ROLLED_BACK", "REVERTED"
2094
2095
  # resp.monitors #=> Array
2095
2096
  # resp.monitors[0].alarm_arn #=> String
2096
2097
  # resp.monitors[0].alarm_role_arn #=> String
@@ -2565,7 +2566,7 @@ module Aws::AppConfig
2565
2566
  # resp.items[0].growth_type #=> String, one of "LINEAR", "EXPONENTIAL"
2566
2567
  # resp.items[0].growth_factor #=> Float
2567
2568
  # resp.items[0].final_bake_time_in_minutes #=> Integer
2568
- # resp.items[0].state #=> String, one of "BAKING", "VALIDATING", "DEPLOYING", "COMPLETE", "ROLLING_BACK", "ROLLED_BACK"
2569
+ # resp.items[0].state #=> String, one of "BAKING", "VALIDATING", "DEPLOYING", "COMPLETE", "ROLLING_BACK", "ROLLED_BACK", "REVERTED"
2569
2570
  # resp.items[0].percentage_complete #=> Float
2570
2571
  # resp.items[0].started_at #=> Time
2571
2572
  # resp.items[0].completed_at #=> Time
@@ -2639,7 +2640,7 @@ module Aws::AppConfig
2639
2640
  # resp.items[0].id #=> String
2640
2641
  # resp.items[0].name #=> String
2641
2642
  # resp.items[0].description #=> String
2642
- # resp.items[0].state #=> String, one of "READY_FOR_DEPLOYMENT", "DEPLOYING", "ROLLING_BACK", "ROLLED_BACK"
2643
+ # resp.items[0].state #=> String, one of "READY_FOR_DEPLOYMENT", "DEPLOYING", "ROLLING_BACK", "ROLLED_BACK", "REVERTED"
2643
2644
  # resp.items[0].monitors #=> Array
2644
2645
  # resp.items[0].monitors[0].alarm_arn #=> String
2645
2646
  # resp.items[0].monitors[0].alarm_role_arn #=> String
@@ -3038,9 +3039,9 @@ module Aws::AppConfig
3038
3039
  # resp.growth_type #=> String, one of "LINEAR", "EXPONENTIAL"
3039
3040
  # resp.growth_factor #=> Float
3040
3041
  # resp.final_bake_time_in_minutes #=> Integer
3041
- # resp.state #=> String, one of "BAKING", "VALIDATING", "DEPLOYING", "COMPLETE", "ROLLING_BACK", "ROLLED_BACK"
3042
+ # resp.state #=> String, one of "BAKING", "VALIDATING", "DEPLOYING", "COMPLETE", "ROLLING_BACK", "ROLLED_BACK", "REVERTED"
3042
3043
  # resp.event_log #=> Array
3043
- # resp.event_log[0].event_type #=> String, one of "PERCENTAGE_UPDATED", "ROLLBACK_STARTED", "ROLLBACK_COMPLETED", "BAKE_TIME_STARTED", "DEPLOYMENT_STARTED", "DEPLOYMENT_COMPLETED"
3044
+ # resp.event_log[0].event_type #=> String, one of "PERCENTAGE_UPDATED", "ROLLBACK_STARTED", "ROLLBACK_COMPLETED", "BAKE_TIME_STARTED", "DEPLOYMENT_STARTED", "DEPLOYMENT_COMPLETED", "REVERT_COMPLETED"
3044
3045
  # resp.event_log[0].triggered_by #=> String, one of "USER", "APPCONFIG", "CLOUDWATCH_ALARM", "INTERNAL_ERROR"
3045
3046
  # resp.event_log[0].description #=> String
3046
3047
  # resp.event_log[0].action_invocations #=> Array
@@ -3075,8 +3076,11 @@ module Aws::AppConfig
3075
3076
  end
3076
3077
 
3077
3078
  # Stops a deployment. This API action works only on deployments that
3078
- # have a status of `DEPLOYING`. This action moves the deployment to a
3079
- # status of `ROLLED_BACK`.
3079
+ # have a status of `DEPLOYING`, unless an `AllowRevert` parameter is
3080
+ # supplied. If the `AllowRevert` parameter is supplied, the status of an
3081
+ # in-progress deployment will be `ROLLED_BACK`. The status of a
3082
+ # completed deployment will be `REVERTED`. AppConfig only allows a
3083
+ # revert within 72 hours of deployment completion.
3080
3084
  #
3081
3085
  # @option params [required, String] :application_id
3082
3086
  # The application ID.
@@ -3087,6 +3091,11 @@ module Aws::AppConfig
3087
3091
  # @option params [required, Integer] :deployment_number
3088
3092
  # The sequence number of the deployment.
3089
3093
  #
3094
+ # @option params [Boolean] :allow_revert
3095
+ # A Boolean that enables AppConfig to rollback a `COMPLETED` deployment
3096
+ # to the previous configuration version. This action moves the
3097
+ # deployment to a status of `REVERTED`.
3098
+ #
3090
3099
  # @return [Types::Deployment] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3091
3100
  #
3092
3101
  # * {Types::Deployment#application_id #application_id} => String
@@ -3138,6 +3147,7 @@ module Aws::AppConfig
3138
3147
  # application_id: "Id", # required
3139
3148
  # environment_id: "Id", # required
3140
3149
  # deployment_number: 1, # required
3150
+ # allow_revert: false,
3141
3151
  # })
3142
3152
  #
3143
3153
  # @example Response structure
@@ -3155,9 +3165,9 @@ module Aws::AppConfig
3155
3165
  # resp.growth_type #=> String, one of "LINEAR", "EXPONENTIAL"
3156
3166
  # resp.growth_factor #=> Float
3157
3167
  # resp.final_bake_time_in_minutes #=> Integer
3158
- # resp.state #=> String, one of "BAKING", "VALIDATING", "DEPLOYING", "COMPLETE", "ROLLING_BACK", "ROLLED_BACK"
3168
+ # resp.state #=> String, one of "BAKING", "VALIDATING", "DEPLOYING", "COMPLETE", "ROLLING_BACK", "ROLLED_BACK", "REVERTED"
3159
3169
  # resp.event_log #=> Array
3160
- # resp.event_log[0].event_type #=> String, one of "PERCENTAGE_UPDATED", "ROLLBACK_STARTED", "ROLLBACK_COMPLETED", "BAKE_TIME_STARTED", "DEPLOYMENT_STARTED", "DEPLOYMENT_COMPLETED"
3170
+ # resp.event_log[0].event_type #=> String, one of "PERCENTAGE_UPDATED", "ROLLBACK_STARTED", "ROLLBACK_COMPLETED", "BAKE_TIME_STARTED", "DEPLOYMENT_STARTED", "DEPLOYMENT_COMPLETED", "REVERT_COMPLETED"
3161
3171
  # resp.event_log[0].triggered_by #=> String, one of "USER", "APPCONFIG", "CLOUDWATCH_ALARM", "INTERNAL_ERROR"
3162
3172
  # resp.event_log[0].description #=> String
3163
3173
  # resp.event_log[0].action_invocations #=> Array
@@ -3658,7 +3668,7 @@ module Aws::AppConfig
3658
3668
  # resp.id #=> String
3659
3669
  # resp.name #=> String
3660
3670
  # resp.description #=> String
3661
- # resp.state #=> String, one of "READY_FOR_DEPLOYMENT", "DEPLOYING", "ROLLING_BACK", "ROLLED_BACK"
3671
+ # resp.state #=> String, one of "READY_FOR_DEPLOYMENT", "DEPLOYING", "ROLLING_BACK", "ROLLED_BACK", "REVERTED"
3662
3672
  # resp.monitors #=> Array
3663
3673
  # resp.monitors[0].alarm_arn #=> String
3664
3674
  # resp.monitors[0].alarm_role_arn #=> String
@@ -3867,7 +3877,7 @@ module Aws::AppConfig
3867
3877
  tracer: tracer
3868
3878
  )
3869
3879
  context[:gem_name] = 'aws-sdk-appconfig'
3870
- context[:gem_version] = '1.59.0'
3880
+ context[:gem_version] = '1.60.0'
3871
3881
  Seahorse::Client::Request.new(handlers, context)
3872
3882
  end
3873
3883
 
@@ -647,6 +647,7 @@ module Aws::AppConfig
647
647
  StopDeploymentRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "ApplicationId"))
648
648
  StopDeploymentRequest.add_member(:environment_id, Shapes::ShapeRef.new(shape: Id, required: true, location: "uri", location_name: "EnvironmentId"))
649
649
  StopDeploymentRequest.add_member(:deployment_number, Shapes::ShapeRef.new(shape: Integer, required: true, location: "uri", location_name: "DeploymentNumber", metadata: {"box"=>true}))
650
+ StopDeploymentRequest.add_member(:allow_revert, Shapes::ShapeRef.new(shape: Boolean, location: "header", location_name: "Allow-Revert", metadata: {"box"=>true}))
650
651
  StopDeploymentRequest.struct_class = Types::StopDeploymentRequest
651
652
 
652
653
  TagKeyList.member = Shapes::ShapeRef.new(shape: TagKey)
@@ -1687,13 +1687,14 @@ module Aws::AppConfig
1687
1687
  # saved for subsequent calls to GetConfiguration.
1688
1688
  #
1689
1689
  # For more information about working with configurations, see
1690
- # [Retrieving the Configuration][3] in the *AppConfig User Guide*.
1690
+ # [Retrieving feature flags and configuration data in AppConfig][3] in
1691
+ # the *AppConfig User Guide*.
1691
1692
  #
1692
1693
  #
1693
1694
  #
1694
1695
  # [1]: https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/StartConfigurationSession.html
1695
1696
  # [2]: https://docs.aws.amazon.com/appconfig/2019-10-09/APIReference/GetLatestConfiguration.html
1696
- # [3]: http://docs.aws.amazon.com/appconfig/latest/userguide/appconfig-retrieving-the-configuration.html
1697
+ # [3]: http://docs.aws.amazon.com/appconfig/latest/userguide/retrieving-feature-flags.html
1697
1698
  # @return [String]
1698
1699
  #
1699
1700
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/GetConfigurationRequest AWS API Documentation
@@ -2448,12 +2449,19 @@ module Aws::AppConfig
2448
2449
  # The sequence number of the deployment.
2449
2450
  # @return [Integer]
2450
2451
  #
2452
+ # @!attribute [rw] allow_revert
2453
+ # A Boolean that enables AppConfig to rollback a `COMPLETED`
2454
+ # deployment to the previous configuration version. This action moves
2455
+ # the deployment to a status of `REVERTED`.
2456
+ # @return [Boolean]
2457
+ #
2451
2458
  # @see http://docs.aws.amazon.com/goto/WebAPI/appconfig-2019-10-09/StopDeploymentRequest AWS API Documentation
2452
2459
  #
2453
2460
  class StopDeploymentRequest < Struct.new(
2454
2461
  :application_id,
2455
2462
  :environment_id,
2456
- :deployment_number)
2463
+ :deployment_number,
2464
+ :allow_revert)
2457
2465
  SENSITIVE = []
2458
2466
  include Aws::Structure
2459
2467
  end
@@ -54,7 +54,7 @@ module Aws::AppConfig
54
54
  autoload :EndpointProvider, 'aws-sdk-appconfig/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-appconfig/endpoints'
56
56
 
57
- GEM_VERSION = '1.59.0'
57
+ GEM_VERSION = '1.60.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -151,7 +151,7 @@ module Aws
151
151
  def id: () -> ::String
152
152
  def name: () -> ::String
153
153
  def description: () -> ::String
154
- def state: () -> ("READY_FOR_DEPLOYMENT" | "DEPLOYING" | "ROLLING_BACK" | "ROLLED_BACK")
154
+ def state: () -> ("READY_FOR_DEPLOYMENT" | "DEPLOYING" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED")
155
155
  def monitors: () -> ::Array[Types::Monitor]
156
156
  end
157
157
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#create_environment-instance_method
@@ -363,7 +363,7 @@ module Aws
363
363
  def growth_type: () -> ("LINEAR" | "EXPONENTIAL")
364
364
  def growth_factor: () -> ::Float
365
365
  def final_bake_time_in_minutes: () -> ::Integer
366
- def state: () -> ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK")
366
+ def state: () -> ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED")
367
367
  def event_log: () -> ::Array[Types::DeploymentEvent]
368
368
  def percentage_complete: () -> ::Float
369
369
  def started_at: () -> ::Time
@@ -404,7 +404,7 @@ module Aws
404
404
  def id: () -> ::String
405
405
  def name: () -> ::String
406
406
  def description: () -> ::String
407
- def state: () -> ("READY_FOR_DEPLOYMENT" | "DEPLOYING" | "ROLLING_BACK" | "ROLLED_BACK")
407
+ def state: () -> ("READY_FOR_DEPLOYMENT" | "DEPLOYING" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED")
408
408
  def monitors: () -> ::Array[Types::Monitor]
409
409
  end
410
410
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_environment-instance_method
@@ -598,7 +598,7 @@ module Aws
598
598
  def growth_type: () -> ("LINEAR" | "EXPONENTIAL")
599
599
  def growth_factor: () -> ::Float
600
600
  def final_bake_time_in_minutes: () -> ::Integer
601
- def state: () -> ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK")
601
+ def state: () -> ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED")
602
602
  def event_log: () -> ::Array[Types::DeploymentEvent]
603
603
  def percentage_complete: () -> ::Float
604
604
  def started_at: () -> ::Time
@@ -637,7 +637,7 @@ module Aws
637
637
  def growth_type: () -> ("LINEAR" | "EXPONENTIAL")
638
638
  def growth_factor: () -> ::Float
639
639
  def final_bake_time_in_minutes: () -> ::Integer
640
- def state: () -> ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK")
640
+ def state: () -> ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED")
641
641
  def event_log: () -> ::Array[Types::DeploymentEvent]
642
642
  def percentage_complete: () -> ::Float
643
643
  def started_at: () -> ::Time
@@ -651,7 +651,8 @@ module Aws
651
651
  def stop_deployment: (
652
652
  application_id: ::String,
653
653
  environment_id: ::String,
654
- deployment_number: ::Integer
654
+ deployment_number: ::Integer,
655
+ ?allow_revert: bool
655
656
  ) -> _StopDeploymentResponseSuccess
656
657
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StopDeploymentResponseSuccess
657
658
 
@@ -754,7 +755,7 @@ module Aws
754
755
  def id: () -> ::String
755
756
  def name: () -> ::String
756
757
  def description: () -> ::String
757
- def state: () -> ("READY_FOR_DEPLOYMENT" | "DEPLOYING" | "ROLLING_BACK" | "ROLLED_BACK")
758
+ def state: () -> ("READY_FOR_DEPLOYMENT" | "DEPLOYING" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED")
758
759
  def monitors: () -> ::Array[Types::Monitor]
759
760
  end
760
761
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_environment-instance_method
data/sig/types.rbs CHANGED
@@ -246,7 +246,7 @@ module Aws::AppConfig
246
246
  attr_accessor growth_type: ("LINEAR" | "EXPONENTIAL")
247
247
  attr_accessor growth_factor: ::Float
248
248
  attr_accessor final_bake_time_in_minutes: ::Integer
249
- attr_accessor state: ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK")
249
+ attr_accessor state: ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED")
250
250
  attr_accessor event_log: ::Array[Types::DeploymentEvent]
251
251
  attr_accessor percentage_complete: ::Float
252
252
  attr_accessor started_at: ::Time
@@ -259,7 +259,7 @@ module Aws::AppConfig
259
259
  end
260
260
 
261
261
  class DeploymentEvent
262
- attr_accessor event_type: ("PERCENTAGE_UPDATED" | "ROLLBACK_STARTED" | "ROLLBACK_COMPLETED" | "BAKE_TIME_STARTED" | "DEPLOYMENT_STARTED" | "DEPLOYMENT_COMPLETED")
262
+ attr_accessor event_type: ("PERCENTAGE_UPDATED" | "ROLLBACK_STARTED" | "ROLLBACK_COMPLETED" | "BAKE_TIME_STARTED" | "DEPLOYMENT_STARTED" | "DEPLOYMENT_COMPLETED" | "REVERT_COMPLETED")
263
263
  attr_accessor triggered_by: ("USER" | "APPCONFIG" | "CLOUDWATCH_ALARM" | "INTERNAL_ERROR")
264
264
  attr_accessor description: ::String
265
265
  attr_accessor action_invocations: ::Array[Types::ActionInvocation]
@@ -293,7 +293,7 @@ module Aws::AppConfig
293
293
  attr_accessor growth_type: ("LINEAR" | "EXPONENTIAL")
294
294
  attr_accessor growth_factor: ::Float
295
295
  attr_accessor final_bake_time_in_minutes: ::Integer
296
- attr_accessor state: ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK")
296
+ attr_accessor state: ("BAKING" | "VALIDATING" | "DEPLOYING" | "COMPLETE" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED")
297
297
  attr_accessor percentage_complete: ::Float
298
298
  attr_accessor started_at: ::Time
299
299
  attr_accessor completed_at: ::Time
@@ -312,7 +312,7 @@ module Aws::AppConfig
312
312
  attr_accessor id: ::String
313
313
  attr_accessor name: ::String
314
314
  attr_accessor description: ::String
315
- attr_accessor state: ("READY_FOR_DEPLOYMENT" | "DEPLOYING" | "ROLLING_BACK" | "ROLLED_BACK")
315
+ attr_accessor state: ("READY_FOR_DEPLOYMENT" | "DEPLOYING" | "ROLLING_BACK" | "ROLLED_BACK" | "REVERTED")
316
316
  attr_accessor monitors: ::Array[Types::Monitor]
317
317
  SENSITIVE: []
318
318
  end
@@ -590,6 +590,7 @@ module Aws::AppConfig
590
590
  attr_accessor application_id: ::String
591
591
  attr_accessor environment_id: ::String
592
592
  attr_accessor deployment_number: ::Integer
593
+ attr_accessor allow_revert: bool
593
594
  SENSITIVE: []
594
595
  end
595
596
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-appconfig
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.59.0
4
+ version: 1.60.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-10-18 00:00:00.000000000 Z
11
+ date: 2024-10-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core