aws-sdk-appconfig 1.60.0 → 1.62.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-appconfig/client.rb +29 -5
- data/lib/aws-sdk-appconfig/types.rb +14 -11
- data/lib/aws-sdk-appconfig.rb +1 -1
- data/sig/client.rbs +7 -5
- data/sig/resource.rbs +2 -0
- data/sig/types.rbs +3 -3
- 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: 4ed687c20cf11b7df7adbc6a1bf5c0c5dbaa190386462518dbd0565c8053927e
         | 
| 4 | 
            +
              data.tar.gz: 86ca4dcb592dcce3e2d68427d63c63379d6f20adc4f0de5ab75d396dbe6e1651
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 7f95dff506c997a847adb39603f3690c3427b6e90e18ab26e0f770ca95e333c3c0c0d566e6896fa61ae9401539d4092dcfbb436deea6c586d4717bc924748502
         | 
| 7 | 
            +
              data.tar.gz: 599c55ee633485a3baf609a85ebaddb0453e1df4f5b9f1624b4326d9ddc0141fcbc17a5a6b4d2f08166733c2324257b2374fa9f9710020e5f41ad3d3e7c39ae2
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    | @@ -1,6 +1,16 @@ | |
| 1 1 | 
             
            Unreleased Changes
         | 
| 2 2 | 
             
            ------------------
         | 
| 3 3 |  | 
| 4 | 
            +
            1.62.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.61.0 (2024-11-18)
         | 
| 10 | 
            +
            ------------------
         | 
| 11 | 
            +
             | 
| 12 | 
            +
            * Feature - AWS AppConfig has added a new extension action point, AT_DEPLOYMENT_TICK, to support third-party monitors to trigger an automatic rollback during a deployment.
         | 
| 13 | 
            +
             | 
| 4 14 | 
             
            1.60.0 (2024-10-24)
         | 
| 5 15 | 
             
            ------------------
         | 
| 6 16 |  | 
    
        data/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            1. | 
| 1 | 
            +
            1.62.0
         | 
| @@ -257,11 +257,34 @@ module Aws::AppConfig | |
| 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.
         | 
| @@ -576,7 +599,7 @@ module Aws::AppConfig | |
| 576 599 | 
             
                #
         | 
| 577 600 | 
             
                #   * For an Amazon S3 object, specify the URI in the following format:
         | 
| 578 601 | 
             
                #     `s3://<bucket>/<objectKey> `. Here is an example:
         | 
| 579 | 
            -
                #     `s3:// | 
| 602 | 
            +
                #     `s3://amzn-s3-demo-bucket/my-app/us-east-1/my-config.json`
         | 
| 580 603 | 
             
                #
         | 
| 581 604 | 
             
                #   * For an SSM document, specify either the document name in the format
         | 
| 582 605 | 
             
                #     `ssm-document://<document name>` or the Amazon Resource Name (ARN).
         | 
| @@ -2779,9 +2802,10 @@ module Aws::AppConfig | |
| 2779 2802 | 
             
                #   The configuration profile ID.
         | 
| 2780 2803 | 
             
                #
         | 
| 2781 2804 | 
             
                # @option params [Integer] :max_results
         | 
| 2782 | 
            -
                #   The maximum number of items to return for this call.  | 
| 2783 | 
            -
                #    | 
| 2784 | 
            -
                #    | 
| 2805 | 
            +
                #   The maximum number of items to return for this call. If `MaxResults`
         | 
| 2806 | 
            +
                #   is not provided in the call, AppConfig returns the maximum of 50. The
         | 
| 2807 | 
            +
                #   call also returns a token that you can specify in a subsequent call to
         | 
| 2808 | 
            +
                #   get the next set of results.
         | 
| 2785 2809 | 
             
                #
         | 
| 2786 2810 | 
             
                # @option params [String] :next_token
         | 
| 2787 2811 | 
             
                #   A token to start the list. Use this token to get the next set of
         | 
| @@ -3877,7 +3901,7 @@ module Aws::AppConfig | |
| 3877 3901 | 
             
                    tracer: tracer
         | 
| 3878 3902 | 
             
                  )
         | 
| 3879 3903 | 
             
                  context[:gem_name] = 'aws-sdk-appconfig'
         | 
| 3880 | 
            -
                  context[:gem_version] = '1. | 
| 3904 | 
            +
                  context[:gem_version] = '1.62.0'
         | 
| 3881 3905 | 
             
                  Seahorse::Client::Request.new(handlers, context)
         | 
| 3882 3906 | 
             
                end
         | 
| 3883 3907 |  | 
| @@ -33,18 +33,15 @@ module Aws::AppConfig | |
| 33 33 | 
             
                end
         | 
| 34 34 |  | 
| 35 35 | 
             
                # An action defines the tasks that the extension performs during the
         | 
| 36 | 
            -
                # AppConfig workflow. Each action includes an action point  | 
| 37 | 
            -
                #  | 
| 38 | 
            -
                # `ON_DEPLOYMENT`. Each action also includes a name, a URI to an Lambda
         | 
| 39 | 
            -
                # function, and an Amazon Resource Name (ARN) for an Identity and Access
         | 
| 40 | 
            -
                # Management assume role. You specify the name, URI, and ARN for each
         | 
| 41 | 
            -
                # *action point* defined in the extension. You can specify the following
         | 
| 42 | 
            -
                # actions for an extension:
         | 
| 36 | 
            +
                # AppConfig workflow. Each action includes an action point, as shown in
         | 
| 37 | 
            +
                # the following list:
         | 
| 43 38 | 
             
                #
         | 
| 44 39 | 
             
                # * `PRE_CREATE_HOSTED_CONFIGURATION_VERSION`
         | 
| 45 40 | 
             
                #
         | 
| 46 41 | 
             
                # * `PRE_START_DEPLOYMENT`
         | 
| 47 42 | 
             
                #
         | 
| 43 | 
            +
                # * `AT_DEPLOYMENT_TICK`
         | 
| 44 | 
            +
                #
         | 
| 48 45 | 
             
                # * `ON_DEPLOYMENT_START`
         | 
| 49 46 | 
             
                #
         | 
| 50 47 | 
             
                # * `ON_DEPLOYMENT_STEP`
         | 
| @@ -55,6 +52,11 @@ module Aws::AppConfig | |
| 55 52 | 
             
                #
         | 
| 56 53 | 
             
                # * `ON_DEPLOYMENT_ROLLED_BACK`
         | 
| 57 54 | 
             
                #
         | 
| 55 | 
            +
                # Each action also includes a name, a URI to an Lambda function, and an
         | 
| 56 | 
            +
                # Amazon Resource Name (ARN) for an Identity and Access Management
         | 
| 57 | 
            +
                # assume role. You specify the name, URI, and ARN for each *action
         | 
| 58 | 
            +
                # point* defined in the extension.
         | 
| 59 | 
            +
                #
         | 
| 58 60 | 
             
                # @!attribute [rw] name
         | 
| 59 61 | 
             
                #   The action name.
         | 
| 60 62 | 
             
                #   @return [String]
         | 
| @@ -491,7 +493,7 @@ module Aws::AppConfig | |
| 491 493 | 
             
                #
         | 
| 492 494 | 
             
                #   * For an Amazon S3 object, specify the URI in the following format:
         | 
| 493 495 | 
             
                #     `s3://<bucket>/<objectKey> `. Here is an example:
         | 
| 494 | 
            -
                #     `s3:// | 
| 496 | 
            +
                #     `s3://amzn-s3-demo-bucket/my-app/us-east-1/my-config.json`
         | 
| 495 497 | 
             
                #
         | 
| 496 498 | 
             
                #   * For an SSM document, specify either the document name in the
         | 
| 497 499 | 
             
                #     format `ssm-document://<document name>` or the Amazon Resource
         | 
| @@ -2193,9 +2195,10 @@ module Aws::AppConfig | |
| 2193 2195 | 
             
                #   @return [String]
         | 
| 2194 2196 | 
             
                #
         | 
| 2195 2197 | 
             
                # @!attribute [rw] max_results
         | 
| 2196 | 
            -
                #   The maximum number of items to return for this call.  | 
| 2197 | 
            -
                #    | 
| 2198 | 
            -
                #    | 
| 2198 | 
            +
                #   The maximum number of items to return for this call. If `MaxResults`
         | 
| 2199 | 
            +
                #   is not provided in the call, AppConfig returns the maximum of 50.
         | 
| 2200 | 
            +
                #   The call also returns a token that you can specify in a subsequent
         | 
| 2201 | 
            +
                #   call to get the next set of results.
         | 
| 2199 2202 | 
             
                #   @return [Integer]
         | 
| 2200 2203 | 
             
                #
         | 
| 2201 2204 | 
             
                # @!attribute [rw] next_token
         | 
    
        data/lib/aws-sdk-appconfig.rb
    CHANGED
    
    
    
        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),
         | 
| @@ -176,14 +178,14 @@ module Aws | |
| 176 178 | 
             
                    def version_number: () -> ::Integer
         | 
| 177 179 | 
             
                    def arn: () -> ::String
         | 
| 178 180 | 
             
                    def description: () -> ::String
         | 
| 179 | 
            -
                    def actions: () -> ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
         | 
| 181 | 
            +
                    def actions: () -> ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
         | 
| 180 182 | 
             
                    def parameters: () -> ::Hash[::String, Types::Parameter]
         | 
| 181 183 | 
             
                  end
         | 
| 182 184 | 
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#create_extension-instance_method
         | 
| 183 185 | 
             
                  def create_extension: (
         | 
| 184 186 | 
             
                                          name: ::String,
         | 
| 185 187 | 
             
                                          ?description: ::String,
         | 
| 186 | 
            -
                                          actions: Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), Array[
         | 
| 188 | 
            +
                                          actions: Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), Array[
         | 
| 187 189 | 
             
                                              {
         | 
| 188 190 | 
             
                                                name: ::String?,
         | 
| 189 191 | 
             
                                                description: ::String?,
         | 
| @@ -421,7 +423,7 @@ module Aws | |
| 421 423 | 
             
                    def version_number: () -> ::Integer
         | 
| 422 424 | 
             
                    def arn: () -> ::String
         | 
| 423 425 | 
             
                    def description: () -> ::String
         | 
| 424 | 
            -
                    def actions: () -> ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
         | 
| 426 | 
            +
                    def actions: () -> ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
         | 
| 425 427 | 
             
                    def parameters: () -> ::Hash[::String, Types::Parameter]
         | 
| 426 428 | 
             
                  end
         | 
| 427 429 | 
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#get_extension-instance_method
         | 
| @@ -780,14 +782,14 @@ module Aws | |
| 780 782 | 
             
                    def version_number: () -> ::Integer
         | 
| 781 783 | 
             
                    def arn: () -> ::String
         | 
| 782 784 | 
             
                    def description: () -> ::String
         | 
| 783 | 
            -
                    def actions: () -> ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
         | 
| 785 | 
            +
                    def actions: () -> ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
         | 
| 784 786 | 
             
                    def parameters: () -> ::Hash[::String, Types::Parameter]
         | 
| 785 787 | 
             
                  end
         | 
| 786 788 | 
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/AppConfig/Client.html#update_extension-instance_method
         | 
| 787 789 | 
             
                  def update_extension: (
         | 
| 788 790 | 
             
                                          extension_identifier: ::String,
         | 
| 789 791 | 
             
                                          ?description: ::String,
         | 
| 790 | 
            -
                                          ?actions: Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), Array[
         | 
| 792 | 
            +
                                          ?actions: Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), Array[
         | 
| 791 793 | 
             
                                              {
         | 
| 792 794 | 
             
                                                name: ::String?,
         | 
| 793 795 | 
             
                                                description: ::String?,
         | 
    
        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
    
    | @@ -166,7 +166,7 @@ module Aws::AppConfig | |
| 166 166 | 
             
                class CreateExtensionRequest
         | 
| 167 167 | 
             
                  attr_accessor name: ::String
         | 
| 168 168 | 
             
                  attr_accessor description: ::String
         | 
| 169 | 
            -
                  attr_accessor actions: ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
         | 
| 169 | 
            +
                  attr_accessor actions: ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
         | 
| 170 170 | 
             
                  attr_accessor parameters: ::Hash[::String, Types::Parameter]
         | 
| 171 171 | 
             
                  attr_accessor tags: ::Hash[::String, ::String]
         | 
| 172 172 | 
             
                  attr_accessor latest_version_number: ::Integer
         | 
| @@ -329,7 +329,7 @@ module Aws::AppConfig | |
| 329 329 | 
             
                  attr_accessor version_number: ::Integer
         | 
| 330 330 | 
             
                  attr_accessor arn: ::String
         | 
| 331 331 | 
             
                  attr_accessor description: ::String
         | 
| 332 | 
            -
                  attr_accessor actions: ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
         | 
| 332 | 
            +
                  attr_accessor actions: ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
         | 
| 333 333 | 
             
                  attr_accessor parameters: ::Hash[::String, Types::Parameter]
         | 
| 334 334 | 
             
                  SENSITIVE: []
         | 
| 335 335 | 
             
                end
         | 
| @@ -657,7 +657,7 @@ module Aws::AppConfig | |
| 657 657 | 
             
                class UpdateExtensionRequest
         | 
| 658 658 | 
             
                  attr_accessor extension_identifier: ::String
         | 
| 659 659 | 
             
                  attr_accessor description: ::String
         | 
| 660 | 
            -
                  attr_accessor actions: ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
         | 
| 660 | 
            +
                  attr_accessor actions: ::Hash[("PRE_CREATE_HOSTED_CONFIGURATION_VERSION" | "PRE_START_DEPLOYMENT" | "AT_DEPLOYMENT_TICK" | "ON_DEPLOYMENT_START" | "ON_DEPLOYMENT_STEP" | "ON_DEPLOYMENT_BAKING" | "ON_DEPLOYMENT_COMPLETE" | "ON_DEPLOYMENT_ROLLED_BACK"), ::Array[Types::Action]]
         | 
| 661 661 | 
             
                  attr_accessor parameters: ::Hash[::String, Types::Parameter]
         | 
| 662 662 | 
             
                  attr_accessor version_number: ::Integer
         | 
| 663 663 | 
             
                  SENSITIVE: []
         | 
    
        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. | 
| 4 | 
            +
              version: 1.62.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
         |