aws-sdk-ec2 1.509.0 → 1.510.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/classic_address.rb +10 -0
 - data/lib/aws-sdk-ec2/client.rb +5 -3
 - data/lib/aws-sdk-ec2/client_api.rb +2 -0
 - data/lib/aws-sdk-ec2/resource.rb +3 -2
 - data/lib/aws-sdk-ec2/types.rb +12 -2
 - data/lib/aws-sdk-ec2/vpc.rb +3 -2
 - data/lib/aws-sdk-ec2/vpc_address.rb +10 -0
 - data/lib/aws-sdk-ec2.rb +1 -1
 - data/sig/classic_address.rbs +3 -0
 - data/sig/types.rbs +1 -0
 - data/sig/vpc_address.rbs +3 -0
 - 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: d0aee6ca86e5de2aeb4f0d10108b6bd2fc77039f781c833f13bbde42df9d584d
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: bef59a3237e8d6087fe8576df6479fe23cba495e931ab45ac6b9bdc1b53a327d
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: ac34931a7e0690cfacdc8c5372317bd0b76187d02934cd82b9eec9ade1173f98a20cba515fe9bdfddc6b17ffca6dcfe223fc328c6c0e8d3434b5aa61e53fe910
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: 7b1637993d4412b29168c1d0beb2e8a6e9d5747214d9b3700595f00ee7477dffcbfd0cce78913d267ce8a3451ee4916d98413f3cbf9c4d105f1e2e825f85d621
         
     | 
    
        data/CHANGELOG.md
    CHANGED
    
    
    
        data/VERSION
    CHANGED
    
    | 
         @@ -1 +1 @@ 
     | 
|
| 
       1 
     | 
    
         
            -
            1. 
     | 
| 
      
 1 
     | 
    
         
            +
            1.510.0
         
     | 
| 
         @@ -111,6 +111,16 @@ module Aws::EC2 
     | 
|
| 
       111 
111 
     | 
    
         
             
                  data[:carrier_ip]
         
     | 
| 
       112 
112 
     | 
    
         
             
                end
         
     | 
| 
       113 
113 
     | 
    
         | 
| 
      
 114 
     | 
    
         
            +
                # The service that manages the elastic IP address.
         
     | 
| 
      
 115 
     | 
    
         
            +
                #
         
     | 
| 
      
 116 
     | 
    
         
            +
                # <note markdown="1"> The only option supported today is `alb`.
         
     | 
| 
      
 117 
     | 
    
         
            +
                #
         
     | 
| 
      
 118 
     | 
    
         
            +
                #  </note>
         
     | 
| 
      
 119 
     | 
    
         
            +
                # @return [String]
         
     | 
| 
      
 120 
     | 
    
         
            +
                def service_managed
         
     | 
| 
      
 121 
     | 
    
         
            +
                  data[:service_managed]
         
     | 
| 
      
 122 
     | 
    
         
            +
                end
         
     | 
| 
      
 123 
     | 
    
         
            +
             
     | 
| 
       114 
124 
     | 
    
         
             
                # The ID of the instance that the address is associated with (if any).
         
     | 
| 
       115 
125 
     | 
    
         
             
                # @return [String]
         
     | 
| 
       116 
126 
     | 
    
         
             
                def instance_id
         
     | 
    
        data/lib/aws-sdk-ec2/client.rb
    CHANGED
    
    | 
         @@ -12223,9 +12223,10 @@ module Aws::EC2 
     | 
|
| 
       12223 
12223 
     | 
    
         
             
                #   .\_-:/()#,@\[\]+=&;\{}!$*
         
     | 
| 
       12224 
12224 
     | 
    
         
             
                #
         
     | 
| 
       12225 
12225 
     | 
    
         
             
                # @option params [required, String] :group_name
         
     | 
| 
       12226 
     | 
    
         
            -
                #   The name of the security group.
         
     | 
| 
      
 12226 
     | 
    
         
            +
                #   The name of the security group. Names are case-insensitive and must be
         
     | 
| 
      
 12227 
     | 
    
         
            +
                #   unique within the VPC.
         
     | 
| 
       12227 
12228 
     | 
    
         
             
                #
         
     | 
| 
       12228 
     | 
    
         
            -
                #   Constraints: Up to 255 characters in length.  
     | 
| 
      
 12229 
     | 
    
         
            +
                #   Constraints: Up to 255 characters in length. Can't start with `sg-`.
         
     | 
| 
       12229 
12230 
     | 
    
         
             
                #
         
     | 
| 
       12230 
12231 
     | 
    
         
             
                #   Valid characters: a-z, A-Z, 0-9, spaces, and
         
     | 
| 
       12231 
12232 
     | 
    
         
             
                #   .\_-:/()#,@\[\]+=&;\{}!$*
         
     | 
| 
         @@ -21016,6 +21017,7 @@ module Aws::EC2 
     | 
|
| 
       21016 
21017 
     | 
    
         
             
                #   resp.addresses[0].customer_owned_ip #=> String
         
     | 
| 
       21017 
21018 
     | 
    
         
             
                #   resp.addresses[0].customer_owned_ipv_4_pool #=> String
         
     | 
| 
       21018 
21019 
     | 
    
         
             
                #   resp.addresses[0].carrier_ip #=> String
         
     | 
| 
      
 21020 
     | 
    
         
            +
                #   resp.addresses[0].service_managed #=> String, one of "alb", "nlb"
         
     | 
| 
       21019 
21021 
     | 
    
         
             
                #   resp.addresses[0].instance_id #=> String
         
     | 
| 
       21020 
21022 
     | 
    
         
             
                #   resp.addresses[0].public_ip #=> String
         
     | 
| 
       21021 
21023 
     | 
    
         
             
                #
         
     | 
| 
         @@ -63380,7 +63382,7 @@ module Aws::EC2 
     | 
|
| 
       63380 
63382 
     | 
    
         
             
                    tracer: tracer
         
     | 
| 
       63381 
63383 
     | 
    
         
             
                  )
         
     | 
| 
       63382 
63384 
     | 
    
         
             
                  context[:gem_name] = 'aws-sdk-ec2'
         
     | 
| 
       63383 
     | 
    
         
            -
                  context[:gem_version] = '1. 
     | 
| 
      
 63385 
     | 
    
         
            +
                  context[:gem_version] = '1.510.0'
         
     | 
| 
       63384 
63386 
     | 
    
         
             
                  Seahorse::Client::Request.new(handlers, context)
         
     | 
| 
       63385 
63387 
     | 
    
         
             
                end
         
     | 
| 
       63386 
63388 
     | 
    
         | 
| 
         @@ -2901,6 +2901,7 @@ module Aws::EC2 
     | 
|
| 
       2901 
2901 
     | 
    
         
             
                ServiceConnectivityType = Shapes::StringShape.new(name: 'ServiceConnectivityType')
         
     | 
| 
       2902 
2902 
     | 
    
         
             
                ServiceDetail = Shapes::StructureShape.new(name: 'ServiceDetail')
         
     | 
| 
       2903 
2903 
     | 
    
         
             
                ServiceDetailSet = Shapes::ListShape.new(name: 'ServiceDetailSet')
         
     | 
| 
      
 2904 
     | 
    
         
            +
                ServiceManaged = Shapes::StringShape.new(name: 'ServiceManaged')
         
     | 
| 
       2904 
2905 
     | 
    
         
             
                ServiceNetworkArn = Shapes::StringShape.new(name: 'ServiceNetworkArn')
         
     | 
| 
       2905 
2906 
     | 
    
         
             
                ServiceState = Shapes::StringShape.new(name: 'ServiceState')
         
     | 
| 
       2906 
2907 
     | 
    
         
             
                ServiceType = Shapes::StringShape.new(name: 'ServiceType')
         
     | 
| 
         @@ -3601,6 +3602,7 @@ module Aws::EC2 
     | 
|
| 
       3601 
3602 
     | 
    
         
             
                Address.add_member(:customer_owned_ip, Shapes::ShapeRef.new(shape: String, location_name: "customerOwnedIp"))
         
     | 
| 
       3602 
3603 
     | 
    
         
             
                Address.add_member(:customer_owned_ipv_4_pool, Shapes::ShapeRef.new(shape: String, location_name: "customerOwnedIpv4Pool"))
         
     | 
| 
       3603 
3604 
     | 
    
         
             
                Address.add_member(:carrier_ip, Shapes::ShapeRef.new(shape: String, location_name: "carrierIp"))
         
     | 
| 
      
 3605 
     | 
    
         
            +
                Address.add_member(:service_managed, Shapes::ShapeRef.new(shape: ServiceManaged, location_name: "serviceManaged"))
         
     | 
| 
       3604 
3606 
     | 
    
         
             
                Address.add_member(:instance_id, Shapes::ShapeRef.new(shape: String, location_name: "instanceId"))
         
     | 
| 
       3605 
3607 
     | 
    
         
             
                Address.add_member(:public_ip, Shapes::ShapeRef.new(shape: String, location_name: "publicIp"))
         
     | 
| 
       3606 
3608 
     | 
    
         
             
                Address.struct_class = Types::Address
         
     | 
    
        data/lib/aws-sdk-ec2/resource.rb
    CHANGED
    
    | 
         @@ -1173,9 +1173,10 @@ module Aws::EC2 
     | 
|
| 
       1173 
1173 
     | 
    
         
             
                #   Valid characters: a-z, A-Z, 0-9, spaces, and
         
     | 
| 
       1174 
1174 
     | 
    
         
             
                #   .\_-:/()#,@\[\]+=&;\{}!$*
         
     | 
| 
       1175 
1175 
     | 
    
         
             
                # @option options [required, String] :group_name
         
     | 
| 
       1176 
     | 
    
         
            -
                #   The name of the security group.
         
     | 
| 
      
 1176 
     | 
    
         
            +
                #   The name of the security group. Names are case-insensitive and must be
         
     | 
| 
      
 1177 
     | 
    
         
            +
                #   unique within the VPC.
         
     | 
| 
       1177 
1178 
     | 
    
         
             
                #
         
     | 
| 
       1178 
     | 
    
         
            -
                #   Constraints: Up to 255 characters in length.  
     | 
| 
      
 1179 
     | 
    
         
            +
                #   Constraints: Up to 255 characters in length. Can't start with `sg-`.
         
     | 
| 
       1179 
1180 
     | 
    
         
             
                #
         
     | 
| 
       1180 
1181 
     | 
    
         
             
                #   Valid characters: a-z, A-Z, 0-9, spaces, and
         
     | 
| 
       1181 
1182 
     | 
    
         
             
                #   .\_-:/()#,@\[\]+=&;\{}!$*
         
     | 
    
        data/lib/aws-sdk-ec2/types.rb
    CHANGED
    
    | 
         @@ -771,6 +771,14 @@ module Aws::EC2 
     | 
|
| 
       771 
771 
     | 
    
         
             
                #   (for example an EC2 instance).
         
     | 
| 
       772 
772 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       773 
773 
     | 
    
         
             
                #
         
     | 
| 
      
 774 
     | 
    
         
            +
                # @!attribute [rw] service_managed
         
     | 
| 
      
 775 
     | 
    
         
            +
                #   The service that manages the elastic IP address.
         
     | 
| 
      
 776 
     | 
    
         
            +
                #
         
     | 
| 
      
 777 
     | 
    
         
            +
                #   <note markdown="1"> The only option supported today is `alb`.
         
     | 
| 
      
 778 
     | 
    
         
            +
                #
         
     | 
| 
      
 779 
     | 
    
         
            +
                #    </note>
         
     | 
| 
      
 780 
     | 
    
         
            +
                #   @return [String]
         
     | 
| 
      
 781 
     | 
    
         
            +
                #
         
     | 
| 
       774 
782 
     | 
    
         
             
                # @!attribute [rw] instance_id
         
     | 
| 
       775 
783 
     | 
    
         
             
                #   The ID of the instance that the address is associated with (if any).
         
     | 
| 
       776 
784 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
         @@ -794,6 +802,7 @@ module Aws::EC2 
     | 
|
| 
       794 
802 
     | 
    
         
             
                  :customer_owned_ip,
         
     | 
| 
       795 
803 
     | 
    
         
             
                  :customer_owned_ipv_4_pool,
         
     | 
| 
       796 
804 
     | 
    
         
             
                  :carrier_ip,
         
     | 
| 
      
 805 
     | 
    
         
            +
                  :service_managed,
         
     | 
| 
       797 
806 
     | 
    
         
             
                  :instance_id,
         
     | 
| 
       798 
807 
     | 
    
         
             
                  :public_ip)
         
     | 
| 
       799 
808 
     | 
    
         
             
                  SENSITIVE = []
         
     | 
| 
         @@ -11529,9 +11538,10 @@ module Aws::EC2 
     | 
|
| 
       11529 
11538 
     | 
    
         
             
                #   @return [String]
         
     | 
| 
       11530 
11539 
     | 
    
         
             
                #
         
     | 
| 
       11531 
11540 
     | 
    
         
             
                # @!attribute [rw] group_name
         
     | 
| 
       11532 
     | 
    
         
            -
                #   The name of the security group.
         
     | 
| 
      
 11541 
     | 
    
         
            +
                #   The name of the security group. Names are case-insensitive and must
         
     | 
| 
      
 11542 
     | 
    
         
            +
                #   be unique within the VPC.
         
     | 
| 
       11533 
11543 
     | 
    
         
             
                #
         
     | 
| 
       11534 
     | 
    
         
            -
                #   Constraints: Up to 255 characters in length.  
     | 
| 
      
 11544 
     | 
    
         
            +
                #   Constraints: Up to 255 characters in length. Can't start with
         
     | 
| 
       11535 
11545 
     | 
    
         
             
                #   `sg-`.
         
     | 
| 
       11536 
11546 
     | 
    
         
             
                #
         
     | 
| 
       11537 
11547 
     | 
    
         
             
                #   Valid characters: a-z, A-Z, 0-9, spaces, and
         
     | 
    
        data/lib/aws-sdk-ec2/vpc.rb
    CHANGED
    
    | 
         @@ -483,9 +483,10 @@ module Aws::EC2 
     | 
|
| 
       483 
483 
     | 
    
         
             
                #   Valid characters: a-z, A-Z, 0-9, spaces, and
         
     | 
| 
       484 
484 
     | 
    
         
             
                #   .\_-:/()#,@\[\]+=&;\{}!$*
         
     | 
| 
       485 
485 
     | 
    
         
             
                # @option options [required, String] :group_name
         
     | 
| 
       486 
     | 
    
         
            -
                #   The name of the security group.
         
     | 
| 
      
 486 
     | 
    
         
            +
                #   The name of the security group. Names are case-insensitive and must be
         
     | 
| 
      
 487 
     | 
    
         
            +
                #   unique within the VPC.
         
     | 
| 
       487 
488 
     | 
    
         
             
                #
         
     | 
| 
       488 
     | 
    
         
            -
                #   Constraints: Up to 255 characters in length.  
     | 
| 
      
 489 
     | 
    
         
            +
                #   Constraints: Up to 255 characters in length. Can't start with `sg-`.
         
     | 
| 
       489 
490 
     | 
    
         
             
                #
         
     | 
| 
       490 
491 
     | 
    
         
             
                #   Valid characters: a-z, A-Z, 0-9, spaces, and
         
     | 
| 
       491 
492 
     | 
    
         
             
                #   .\_-:/()#,@\[\]+=&;\{}!$*
         
     | 
| 
         @@ -105,6 +105,16 @@ module Aws::EC2 
     | 
|
| 
       105 
105 
     | 
    
         
             
                  data[:carrier_ip]
         
     | 
| 
       106 
106 
     | 
    
         
             
                end
         
     | 
| 
       107 
107 
     | 
    
         | 
| 
      
 108 
     | 
    
         
            +
                # The service that manages the elastic IP address.
         
     | 
| 
      
 109 
     | 
    
         
            +
                #
         
     | 
| 
      
 110 
     | 
    
         
            +
                # <note markdown="1"> The only option supported today is `alb`.
         
     | 
| 
      
 111 
     | 
    
         
            +
                #
         
     | 
| 
      
 112 
     | 
    
         
            +
                #  </note>
         
     | 
| 
      
 113 
     | 
    
         
            +
                # @return [String]
         
     | 
| 
      
 114 
     | 
    
         
            +
                def service_managed
         
     | 
| 
      
 115 
     | 
    
         
            +
                  data[:service_managed]
         
     | 
| 
      
 116 
     | 
    
         
            +
                end
         
     | 
| 
      
 117 
     | 
    
         
            +
             
     | 
| 
       108 
118 
     | 
    
         
             
                # The ID of the instance that the address is associated with (if any).
         
     | 
| 
       109 
119 
     | 
    
         
             
                # @return [String]
         
     | 
| 
       110 
120 
     | 
    
         
             
                def instance_id
         
     | 
    
        data/lib/aws-sdk-ec2.rb
    CHANGED
    
    
    
        data/sig/classic_address.rbs
    CHANGED
    
    | 
         @@ -53,6 +53,9 @@ module Aws 
     | 
|
| 
       53 
53 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#carrier_ip-instance_method
         
     | 
| 
       54 
54 
     | 
    
         
             
                  def carrier_ip: () -> ::String
         
     | 
| 
       55 
55 
     | 
    
         | 
| 
      
 56 
     | 
    
         
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#service_managed-instance_method
         
     | 
| 
      
 57 
     | 
    
         
            +
                  def service_managed: () -> ("alb" | "nlb")
         
     | 
| 
      
 58 
     | 
    
         
            +
             
     | 
| 
       56 
59 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/ClassicAddress.html#instance_id-instance_method
         
     | 
| 
       57 
60 
     | 
    
         
             
                  def instance_id: () -> ::String
         
     | 
| 
       58 
61 
     | 
    
         | 
    
        data/sig/types.rbs
    CHANGED
    
    | 
         @@ -215,6 +215,7 @@ module Aws::EC2 
     | 
|
| 
       215 
215 
     | 
    
         
             
                  attr_accessor customer_owned_ip: ::String
         
     | 
| 
       216 
216 
     | 
    
         
             
                  attr_accessor customer_owned_ipv_4_pool: ::String
         
     | 
| 
       217 
217 
     | 
    
         
             
                  attr_accessor carrier_ip: ::String
         
     | 
| 
      
 218 
     | 
    
         
            +
                  attr_accessor service_managed: ("alb" | "nlb")
         
     | 
| 
       218 
219 
     | 
    
         
             
                  attr_accessor instance_id: ::String
         
     | 
| 
       219 
220 
     | 
    
         
             
                  attr_accessor public_ip: ::String
         
     | 
| 
       220 
221 
     | 
    
         
             
                  SENSITIVE: []
         
     | 
    
        data/sig/vpc_address.rbs
    CHANGED
    
    | 
         @@ -50,6 +50,9 @@ module Aws 
     | 
|
| 
       50 
50 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#carrier_ip-instance_method
         
     | 
| 
       51 
51 
     | 
    
         
             
                  def carrier_ip: () -> ::String
         
     | 
| 
       52 
52 
     | 
    
         | 
| 
      
 53 
     | 
    
         
            +
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#service_managed-instance_method
         
     | 
| 
      
 54 
     | 
    
         
            +
                  def service_managed: () -> ("alb" | "nlb")
         
     | 
| 
      
 55 
     | 
    
         
            +
             
     | 
| 
       53 
56 
     | 
    
         
             
                  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/EC2/VpcAddress.html#instance_id-instance_method
         
     | 
| 
       54 
57 
     | 
    
         
             
                  def instance_id: () -> ::String
         
     | 
| 
       55 
58 
     | 
    
         | 
    
        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.510.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: 2025-03- 
     | 
| 
      
 11 
     | 
    
         
            +
            date: 2025-03-07 00:00:00.000000000 Z
         
     | 
| 
       12 
12 
     | 
    
         
             
            dependencies:
         
     | 
| 
       13 
13 
     | 
    
         
             
            - !ruby/object:Gem::Dependency
         
     | 
| 
       14 
14 
     | 
    
         
             
              name: aws-sdk-core
         
     |