aws-sdk-autoscaling 1.80.0 → 1.82.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-autoscaling/auto_scaling_group.rb +8 -3
- data/lib/aws-sdk-autoscaling/client.rb +76 -33
- data/lib/aws-sdk-autoscaling/client_api.rb +11 -0
- data/lib/aws-sdk-autoscaling/endpoint_parameters.rb +66 -0
- data/lib/aws-sdk-autoscaling/endpoint_provider.rb +117 -0
- data/lib/aws-sdk-autoscaling/endpoints.rb +869 -0
- data/lib/aws-sdk-autoscaling/launch_configuration.rb +2 -10
- data/lib/aws-sdk-autoscaling/plugins/endpoints.rb +190 -0
- data/lib/aws-sdk-autoscaling/resource.rb +10 -23
- data/lib/aws-sdk-autoscaling/types.rb +276 -114
- data/lib/aws-sdk-autoscaling.rb +5 -1
- metadata +8 -4
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: aws-sdk-autoscaling
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1. | 
| 4 | 
            +
              version: 1.82.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: 2022-07 | 
| 11 | 
            +
            date: 2022-11-07 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.165.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.165.0
         | 
| 33 33 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 34 34 | 
             
              name: aws-sigv4
         | 
| 35 35 | 
             
              requirement: !ruby/object:Gem::Requirement
         | 
| @@ -61,12 +61,16 @@ files: | |
| 61 61 | 
             
            - lib/aws-sdk-autoscaling/client.rb
         | 
| 62 62 | 
             
            - lib/aws-sdk-autoscaling/client_api.rb
         | 
| 63 63 | 
             
            - lib/aws-sdk-autoscaling/customizations.rb
         | 
| 64 | 
            +
            - lib/aws-sdk-autoscaling/endpoint_parameters.rb
         | 
| 65 | 
            +
            - lib/aws-sdk-autoscaling/endpoint_provider.rb
         | 
| 66 | 
            +
            - lib/aws-sdk-autoscaling/endpoints.rb
         | 
| 64 67 | 
             
            - lib/aws-sdk-autoscaling/errors.rb
         | 
| 65 68 | 
             
            - lib/aws-sdk-autoscaling/instance.rb
         | 
| 66 69 | 
             
            - lib/aws-sdk-autoscaling/launch_configuration.rb
         | 
| 67 70 | 
             
            - lib/aws-sdk-autoscaling/lifecycle_hook.rb
         | 
| 68 71 | 
             
            - lib/aws-sdk-autoscaling/load_balancer.rb
         | 
| 69 72 | 
             
            - lib/aws-sdk-autoscaling/notification_configuration.rb
         | 
| 73 | 
            +
            - lib/aws-sdk-autoscaling/plugins/endpoints.rb
         | 
| 70 74 | 
             
            - lib/aws-sdk-autoscaling/resource.rb
         | 
| 71 75 | 
             
            - lib/aws-sdk-autoscaling/scaling_policy.rb
         | 
| 72 76 | 
             
            - lib/aws-sdk-autoscaling/scheduled_action.rb
         |