aws-sdk-ec2 1.268.0 → 1.269.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 +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-ec2/client.rb +7 -3
- data/lib/aws-sdk-ec2/client_api.rb +2 -0
- data/lib/aws-sdk-ec2/types.rb +14 -6
- data/lib/aws-sdk-ec2.rb +1 -1
- metadata +2 -2
    
        checksums.yaml
    CHANGED
    
    | @@ -1,7 +1,7 @@ | |
| 1 1 | 
             
            ---
         | 
| 2 2 | 
             
            SHA256:
         | 
| 3 | 
            -
              metadata.gz:  | 
| 4 | 
            -
              data.tar.gz:  | 
| 3 | 
            +
              metadata.gz: 32787616f77a42f0793f1802b0c43c1a0e0494985a62736f4b684a89423e20fd
         | 
| 4 | 
            +
              data.tar.gz: cf218997234d1209ae3a8a7d0a954ee0193af9adcf86969c777c4842cdc74863
         | 
| 5 5 | 
             
            SHA512:
         | 
| 6 | 
            -
              metadata.gz:  | 
| 7 | 
            -
              data.tar.gz:  | 
| 6 | 
            +
              metadata.gz: 92eeec4066c59323609b26c4cc5261f5cc537690b5dceb44ba2dd2e7a003e00a5105db560b31ac5be845c8882ac864c282a70c93382a6cb719e553f2fec15119
         | 
| 7 | 
            +
              data.tar.gz: fd0cfdf8ec569deabc4ff4bc9f9a6ec30562a95b52c9d7b650114635d168ee15201abf41c429ec10927e026fee17f68f597c367d2b2d851a819f1ed952ab7ecd
         | 
    
        data/CHANGELOG.md
    CHANGED
    
    
    
        data/VERSION
    CHANGED
    
    | @@ -1 +1 @@ | |
| 1 | 
            -
            1. | 
| 1 | 
            +
            1.269.0
         | 
    
        data/lib/aws-sdk-ec2/client.rb
    CHANGED
    
    | @@ -19574,9 +19574,12 @@ module Aws::EC2 | |
| 19574 19574 | 
             
                #   * `instance-storage-info.disk.type` - The storage technology for the
         | 
| 19575 19575 | 
             
                #     local instance storage disks (`hdd` \| `ssd`).
         | 
| 19576 19576 | 
             
                #
         | 
| 19577 | 
            +
                #   * `instance-storage-info.encryption-supported` - Indicates whether
         | 
| 19578 | 
            +
                #     data is encrypted at rest (`required` \| `unsupported`).
         | 
| 19579 | 
            +
                #
         | 
| 19577 19580 | 
             
                #   * `instance-storage-info.nvme-support` - Indicates whether
         | 
| 19578 19581 | 
             
                #     non-volatile memory express (NVMe) is supported for instance store
         | 
| 19579 | 
            -
                #     (`required` \| `supported` | 
| 19582 | 
            +
                #     (`required` \| `supported` \| `unsupported`).
         | 
| 19580 19583 | 
             
                #
         | 
| 19581 19584 | 
             
                #   * `instance-storage-info.total-size-in-gb` - The total amount of
         | 
| 19582 19585 | 
             
                #     storage available from all local instance storage, in GB.
         | 
| @@ -19695,7 +19698,7 @@ module Aws::EC2 | |
| 19695 19698 | 
             
                #   resp.instance_types[0].bare_metal #=> Boolean
         | 
| 19696 19699 | 
             
                #   resp.instance_types[0].hypervisor #=> String, one of "nitro", "xen"
         | 
| 19697 19700 | 
             
                #   resp.instance_types[0].processor_info.supported_architectures #=> Array
         | 
| 19698 | 
            -
                #   resp.instance_types[0].processor_info.supported_architectures[0] #=> String, one of "i386", "x86_64", "arm64"
         | 
| 19701 | 
            +
                #   resp.instance_types[0].processor_info.supported_architectures[0] #=> String, one of "i386", "x86_64", "arm64", "x86_64_mac"
         | 
| 19699 19702 | 
             
                #   resp.instance_types[0].processor_info.sustained_clock_speed_in_ghz #=> Float
         | 
| 19700 19703 | 
             
                #   resp.instance_types[0].v_cpu_info.default_v_cpus #=> Integer
         | 
| 19701 19704 | 
             
                #   resp.instance_types[0].v_cpu_info.default_cores #=> Integer
         | 
| @@ -19712,6 +19715,7 @@ module Aws::EC2 | |
| 19712 19715 | 
             
                #   resp.instance_types[0].instance_storage_info.disks[0].count #=> Integer
         | 
| 19713 19716 | 
             
                #   resp.instance_types[0].instance_storage_info.disks[0].type #=> String, one of "hdd", "ssd"
         | 
| 19714 19717 | 
             
                #   resp.instance_types[0].instance_storage_info.nvme_support #=> String, one of "unsupported", "supported", "required"
         | 
| 19718 | 
            +
                #   resp.instance_types[0].instance_storage_info.encryption_support #=> String, one of "unsupported", "required"
         | 
| 19715 19719 | 
             
                #   resp.instance_types[0].ebs_info.ebs_optimized_support #=> String, one of "unsupported", "supported", "default"
         | 
| 19716 19720 | 
             
                #   resp.instance_types[0].ebs_info.encryption_support #=> String, one of "unsupported", "supported"
         | 
| 19717 19721 | 
             
                #   resp.instance_types[0].ebs_info.ebs_optimized_info.baseline_bandwidth_in_mbps #=> Integer
         | 
| @@ -44161,7 +44165,7 @@ module Aws::EC2 | |
| 44161 44165 | 
             
                    params: params,
         | 
| 44162 44166 | 
             
                    config: config)
         | 
| 44163 44167 | 
             
                  context[:gem_name] = 'aws-sdk-ec2'
         | 
| 44164 | 
            -
                  context[:gem_version] = '1. | 
| 44168 | 
            +
                  context[:gem_version] = '1.269.0'
         | 
| 44165 44169 | 
             
                  Seahorse::Client::Request.new(handlers, context)
         | 
| 44166 44170 | 
             
                end
         | 
| 44167 44171 |  | 
| @@ -1344,6 +1344,7 @@ module Aws::EC2 | |
| 1344 1344 | 
             
                InstanceStatusEventList = Shapes::ListShape.new(name: 'InstanceStatusEventList')
         | 
| 1345 1345 | 
             
                InstanceStatusList = Shapes::ListShape.new(name: 'InstanceStatusList')
         | 
| 1346 1346 | 
             
                InstanceStatusSummary = Shapes::StructureShape.new(name: 'InstanceStatusSummary')
         | 
| 1347 | 
            +
                InstanceStorageEncryptionSupport = Shapes::StringShape.new(name: 'InstanceStorageEncryptionSupport')
         | 
| 1347 1348 | 
             
                InstanceStorageFlag = Shapes::BooleanShape.new(name: 'InstanceStorageFlag')
         | 
| 1348 1349 | 
             
                InstanceStorageInfo = Shapes::StructureShape.new(name: 'InstanceStorageInfo')
         | 
| 1349 1350 | 
             
                InstanceTagKeySet = Shapes::ListShape.new(name: 'InstanceTagKeySet')
         | 
| @@ -7802,6 +7803,7 @@ module Aws::EC2 | |
| 7802 7803 | 
             
                InstanceStorageInfo.add_member(:total_size_in_gb, Shapes::ShapeRef.new(shape: DiskSize, location_name: "totalSizeInGB"))
         | 
| 7803 7804 | 
             
                InstanceStorageInfo.add_member(:disks, Shapes::ShapeRef.new(shape: DiskInfoList, location_name: "disks"))
         | 
| 7804 7805 | 
             
                InstanceStorageInfo.add_member(:nvme_support, Shapes::ShapeRef.new(shape: EphemeralNvmeSupport, location_name: "nvmeSupport"))
         | 
| 7806 | 
            +
                InstanceStorageInfo.add_member(:encryption_support, Shapes::ShapeRef.new(shape: InstanceStorageEncryptionSupport, location_name: "encryptionSupport"))
         | 
| 7805 7807 | 
             
                InstanceStorageInfo.struct_class = Types::InstanceStorageInfo
         | 
| 7806 7808 |  | 
| 7807 7809 | 
             
                InstanceTagKeySet.member = Shapes::ShapeRef.new(shape: String, location_name: "item")
         | 
    
        data/lib/aws-sdk-ec2/types.rb
    CHANGED
    
    | @@ -19259,9 +19259,12 @@ module Aws::EC2 | |
| 19259 19259 | 
             
                #   * `instance-storage-info.disk.type` - The storage technology for the
         | 
| 19260 19260 | 
             
                #     local instance storage disks (`hdd` \| `ssd`).
         | 
| 19261 19261 | 
             
                #
         | 
| 19262 | 
            +
                #   * `instance-storage-info.encryption-supported` - Indicates whether
         | 
| 19263 | 
            +
                #     data is encrypted at rest (`required` \| `unsupported`).
         | 
| 19264 | 
            +
                #
         | 
| 19262 19265 | 
             
                #   * `instance-storage-info.nvme-support` - Indicates whether
         | 
| 19263 19266 | 
             
                #     non-volatile memory express (NVMe) is supported for instance store
         | 
| 19264 | 
            -
                #     (`required` \| `supported` | 
| 19267 | 
            +
                #     (`required` \| `supported` \| `unsupported`).
         | 
| 19265 19268 | 
             
                #
         | 
| 19266 19269 | 
             
                #   * `instance-storage-info.total-size-in-gb` - The total amount of
         | 
| 19267 19270 | 
             
                #     storage available from all local instance storage, in GB.
         | 
| @@ -28275,7 +28278,7 @@ module Aws::EC2 | |
| 28275 28278 | 
             
                  include Aws::Structure
         | 
| 28276 28279 | 
             
                end
         | 
| 28277 28280 |  | 
| 28278 | 
            -
                # Describes  | 
| 28281 | 
            +
                # Describes a disk.
         | 
| 28279 28282 | 
             
                #
         | 
| 28280 28283 | 
             
                # @!attribute [rw] size_in_gb
         | 
| 28281 28284 | 
             
                #   The size of the disk in GB.
         | 
| @@ -37011,7 +37014,8 @@ module Aws::EC2 | |
| 37011 37014 | 
             
                  include Aws::Structure
         | 
| 37012 37015 | 
             
                end
         | 
| 37013 37016 |  | 
| 37014 | 
            -
                # Describes the  | 
| 37017 | 
            +
                # Describes the instance store features that are supported by the
         | 
| 37018 | 
            +
                # instance type.
         | 
| 37015 37019 | 
             
                #
         | 
| 37016 37020 | 
             
                # @!attribute [rw] total_size_in_gb
         | 
| 37017 37021 | 
             
                #   The total size of the disks, in GB.
         | 
| @@ -37022,8 +37026,11 @@ module Aws::EC2 | |
| 37022 37026 | 
             
                #   @return [Array<Types::DiskInfo>]
         | 
| 37023 37027 | 
             
                #
         | 
| 37024 37028 | 
             
                # @!attribute [rw] nvme_support
         | 
| 37025 | 
            -
                #   Indicates whether non-volatile memory express (NVMe) is supported
         | 
| 37026 | 
            -
                #    | 
| 37029 | 
            +
                #   Indicates whether non-volatile memory express (NVMe) is supported.
         | 
| 37030 | 
            +
                #   @return [String]
         | 
| 37031 | 
            +
                #
         | 
| 37032 | 
            +
                # @!attribute [rw] encryption_support
         | 
| 37033 | 
            +
                #   Indicates whether data is encrypted at rest.
         | 
| 37027 37034 | 
             
                #   @return [String]
         | 
| 37028 37035 | 
             
                #
         | 
| 37029 37036 | 
             
                # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/InstanceStorageInfo AWS API Documentation
         | 
| @@ -37031,7 +37038,8 @@ module Aws::EC2 | |
| 37031 37038 | 
             
                class InstanceStorageInfo < Struct.new(
         | 
| 37032 37039 | 
             
                  :total_size_in_gb,
         | 
| 37033 37040 | 
             
                  :disks,
         | 
| 37034 | 
            -
                  :nvme_support | 
| 37041 | 
            +
                  :nvme_support,
         | 
| 37042 | 
            +
                  :encryption_support)
         | 
| 37035 37043 | 
             
                  SENSITIVE = []
         | 
| 37036 37044 | 
             
                  include Aws::Structure
         | 
| 37037 37045 | 
             
                end
         | 
    
        data/lib/aws-sdk-ec2.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | @@ -1,14 +1,14 @@ | |
| 1 1 | 
             
            --- !ruby/object:Gem::Specification
         | 
| 2 2 | 
             
            name: aws-sdk-ec2
         | 
| 3 3 | 
             
            version: !ruby/object:Gem::Version
         | 
| 4 | 
            -
              version: 1. | 
| 4 | 
            +
              version: 1.269.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: 2021-10- | 
| 11 | 
            +
            date: 2021-10-12 00:00:00.000000000 Z
         | 
| 12 12 | 
             
            dependencies:
         | 
| 13 13 | 
             
            - !ruby/object:Gem::Dependency
         | 
| 14 14 | 
             
              name: aws-sigv4
         |