aws-sdk-ec2 1.407.0 → 1.408.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 35d79852e6097533c7d0cf0b6dccab83f7368ca941bf5a3da6d1fbfc6200d049
4
- data.tar.gz: 50a4e65cc46db5e3e2ddc2e042456cc26f005834890ff93afb9ca0df583310da
3
+ metadata.gz: 4cd89038bd080f0922ad4e3ad4aa91bac6b5b3be5cd3ceb8634d532a163cae74
4
+ data.tar.gz: f9ee5939be1c8bceb0919808f8a89ec18204ee2f09e19833878e8667ead87c22
5
5
  SHA512:
6
- metadata.gz: c2150739b03f2646e06b75e8ecfeff07dddd2a6bf8364d92aabdd3ab2afbaac15c8055217a1232db5df97b454627e883817f30c0853ef1ac0408b489ddabba7f
7
- data.tar.gz: f6c47598918f4866a6c1cfeff2461fd976260bb1fb3129c1ad1e096259c1eee288acf900b94e2faf0ffa92877c05658be161b7adbded4e3fa5d4f1caf06979f3
6
+ metadata.gz: b31aac27f8c038fee74071a614700e13a6731fc2ae926f209d5aa792266a61998af0585507909e35f8f3b5a09c11b15f8eb88e39822e5e296236ac78e1d48531
7
+ data.tar.gz: db7ec3eabc947ce58a4f253c98209fe1b118027821f4ac7d052c1d5e72e3919c97f096b09c0ef93fcae81c69309b22791a77778169675d5680b6e03951089cbb
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.408.0 (2023-09-26)
5
+ ------------------
6
+
7
+ * Feature - The release includes AWS verified access to support FIPs compliance in North America regions
8
+
4
9
  1.407.0 (2023-09-22)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.407.0
1
+ 1.408.0
@@ -2895,6 +2895,7 @@ module Aws::EC2
2895
2895
  # resp.verified_access_instance.tags #=> Array
2896
2896
  # resp.verified_access_instance.tags[0].key #=> String
2897
2897
  # resp.verified_access_instance.tags[0].value #=> String
2898
+ # resp.verified_access_instance.fips_enabled #=> Boolean
2898
2899
  #
2899
2900
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachVerifiedAccessTrustProvider AWS API Documentation
2900
2901
  #
@@ -5755,7 +5756,7 @@ module Aws::EC2
5755
5756
  # @example Request syntax with placeholder values
5756
5757
  #
5757
5758
  # resp = client.create_default_subnet({
5758
- # availability_zone: "String", # required
5759
+ # availability_zone: "AvailabilityZoneName", # required
5759
5760
  # dry_run: false,
5760
5761
  # ipv_6_native: false,
5761
5762
  # })
@@ -13537,6 +13538,10 @@ module Aws::EC2
13537
13538
  # If you have the required permissions, the error response is
13538
13539
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
13539
13540
  #
13541
+ # @option params [Boolean] :fips_enabled
13542
+ # Choose to enable or disable support for Federal Information Processing
13543
+ # Standards (FIPS) on the instance.
13544
+ #
13540
13545
  # @return [Types::CreateVerifiedAccessInstanceResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
13541
13546
  #
13542
13547
  # * {Types::CreateVerifiedAccessInstanceResult#verified_access_instance #verified_access_instance} => Types::VerifiedAccessInstance
@@ -13558,6 +13563,7 @@ module Aws::EC2
13558
13563
  # ],
13559
13564
  # client_token: "String",
13560
13565
  # dry_run: false,
13566
+ # fips_enabled: false,
13561
13567
  # })
13562
13568
  #
13563
13569
  # @example Response structure
@@ -13575,6 +13581,7 @@ module Aws::EC2
13575
13581
  # resp.verified_access_instance.tags #=> Array
13576
13582
  # resp.verified_access_instance.tags[0].key #=> String
13577
13583
  # resp.verified_access_instance.tags[0].value #=> String
13584
+ # resp.verified_access_instance.fips_enabled #=> Boolean
13578
13585
  #
13579
13586
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessInstance AWS API Documentation
13580
13587
  #
@@ -18173,6 +18180,7 @@ module Aws::EC2
18173
18180
  # resp.verified_access_instance.tags #=> Array
18174
18181
  # resp.verified_access_instance.tags[0].key #=> String
18175
18182
  # resp.verified_access_instance.tags[0].value #=> String
18183
+ # resp.verified_access_instance.fips_enabled #=> Boolean
18176
18184
  #
18177
18185
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVerifiedAccessInstance AWS API Documentation
18178
18186
  #
@@ -34545,6 +34553,7 @@ module Aws::EC2
34545
34553
  # resp.verified_access_instances[0].tags #=> Array
34546
34554
  # resp.verified_access_instances[0].tags[0].key #=> String
34547
34555
  # resp.verified_access_instances[0].tags[0].value #=> String
34556
+ # resp.verified_access_instances[0].fips_enabled #=> Boolean
34548
34557
  # resp.next_token #=> String
34549
34558
  #
34550
34559
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVerifiedAccessInstances AWS API Documentation
@@ -36879,6 +36888,7 @@ module Aws::EC2
36879
36888
  # resp.verified_access_instance.tags #=> Array
36880
36889
  # resp.verified_access_instance.tags[0].key #=> String
36881
36890
  # resp.verified_access_instance.tags[0].value #=> String
36891
+ # resp.verified_access_instance.fips_enabled #=> Boolean
36882
36892
  #
36883
36893
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachVerifiedAccessTrustProvider AWS API Documentation
36884
36894
  #
@@ -48066,6 +48076,7 @@ module Aws::EC2
48066
48076
  # resp.verified_access_instance.tags #=> Array
48067
48077
  # resp.verified_access_instance.tags[0].key #=> String
48068
48078
  # resp.verified_access_instance.tags[0].value #=> String
48079
+ # resp.verified_access_instance.fips_enabled #=> Boolean
48069
48080
  #
48070
48081
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessInstance AWS API Documentation
48071
48082
  #
@@ -53441,6 +53452,10 @@ module Aws::EC2
53441
53452
  # rule's values, no error is returned, and the output describes the
53442
53453
  # security group rules that were not revoked.
53443
53454
  #
53455
+ # For a non-default VPC, if the values you specify do not match the
53456
+ # existing rule's values, an `InvalidPermission.NotFound` client error
53457
+ # is returned, and no rules are revoked.
53458
+ #
53444
53459
  # Amazon Web Services recommends that you describe the security group to
53445
53460
  # verify that the rules were removed.
53446
53461
  #
@@ -56879,7 +56894,7 @@ module Aws::EC2
56879
56894
  params: params,
56880
56895
  config: config)
56881
56896
  context[:gem_name] = 'aws-sdk-ec2'
56882
- context[:gem_version] = '1.407.0'
56897
+ context[:gem_version] = '1.408.0'
56883
56898
  Seahorse::Client::Request.new(handlers, context)
56884
56899
  end
56885
56900
 
@@ -4409,7 +4409,7 @@ module Aws::EC2
4409
4409
  CreateCustomerGatewayResult.add_member(:customer_gateway, Shapes::ShapeRef.new(shape: CustomerGateway, location_name: "customerGateway"))
4410
4410
  CreateCustomerGatewayResult.struct_class = Types::CreateCustomerGatewayResult
4411
4411
 
4412
- CreateDefaultSubnetRequest.add_member(:availability_zone, Shapes::ShapeRef.new(shape: String, required: true, location_name: "AvailabilityZone"))
4412
+ CreateDefaultSubnetRequest.add_member(:availability_zone, Shapes::ShapeRef.new(shape: AvailabilityZoneName, required: true, location_name: "AvailabilityZone"))
4413
4413
  CreateDefaultSubnetRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
4414
4414
  CreateDefaultSubnetRequest.add_member(:ipv_6_native, Shapes::ShapeRef.new(shape: Boolean, location_name: "Ipv6Native"))
4415
4415
  CreateDefaultSubnetRequest.struct_class = Types::CreateDefaultSubnetRequest
@@ -5175,6 +5175,7 @@ module Aws::EC2
5175
5175
  CreateVerifiedAccessInstanceRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
5176
5176
  CreateVerifiedAccessInstanceRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
5177
5177
  CreateVerifiedAccessInstanceRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
5178
+ CreateVerifiedAccessInstanceRequest.add_member(:fips_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "FIPSEnabled"))
5178
5179
  CreateVerifiedAccessInstanceRequest.struct_class = Types::CreateVerifiedAccessInstanceRequest
5179
5180
 
5180
5181
  CreateVerifiedAccessInstanceResult.add_member(:verified_access_instance, Shapes::ShapeRef.new(shape: VerifiedAccessInstance, location_name: "verifiedAccessInstance"))
@@ -14586,6 +14587,7 @@ module Aws::EC2
14586
14587
  VerifiedAccessInstance.add_member(:creation_time, Shapes::ShapeRef.new(shape: String, location_name: "creationTime"))
14587
14588
  VerifiedAccessInstance.add_member(:last_updated_time, Shapes::ShapeRef.new(shape: String, location_name: "lastUpdatedTime"))
14588
14589
  VerifiedAccessInstance.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
14590
+ VerifiedAccessInstance.add_member(:fips_enabled, Shapes::ShapeRef.new(shape: Boolean, location_name: "fipsEnabled"))
14589
14591
  VerifiedAccessInstance.struct_class = Types::VerifiedAccessInstance
14590
14592
 
14591
14593
  VerifiedAccessInstanceIdList.member = Shapes::ShapeRef.new(shape: VerifiedAccessInstanceId, location_name: "item")
@@ -11619,13 +11619,19 @@ module Aws::EC2
11619
11619
  # `DryRunOperation`. Otherwise, it is `UnauthorizedOperation`.
11620
11620
  # @return [Boolean]
11621
11621
  #
11622
+ # @!attribute [rw] fips_enabled
11623
+ # Choose to enable or disable support for Federal Information
11624
+ # Processing Standards (FIPS) on the instance.
11625
+ # @return [Boolean]
11626
+ #
11622
11627
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessInstanceRequest AWS API Documentation
11623
11628
  #
11624
11629
  class CreateVerifiedAccessInstanceRequest < Struct.new(
11625
11630
  :description,
11626
11631
  :tag_specifications,
11627
11632
  :client_token,
11628
- :dry_run)
11633
+ :dry_run,
11634
+ :fips_enabled)
11629
11635
  SENSITIVE = []
11630
11636
  include Aws::Structure
11631
11637
  end
@@ -63548,6 +63554,11 @@ module Aws::EC2
63548
63554
  # The tags.
63549
63555
  # @return [Array<Types::Tag>]
63550
63556
  #
63557
+ # @!attribute [rw] fips_enabled
63558
+ # Describes if support for Federal Information Processing Standards
63559
+ # (FIPS) is enabled on the instance.
63560
+ # @return [Boolean]
63561
+ #
63551
63562
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VerifiedAccessInstance AWS API Documentation
63552
63563
  #
63553
63564
  class VerifiedAccessInstance < Struct.new(
@@ -63556,7 +63567,8 @@ module Aws::EC2
63556
63567
  :verified_access_trust_providers,
63557
63568
  :creation_time,
63558
63569
  :last_updated_time,
63559
- :tags)
63570
+ :tags,
63571
+ :fips_enabled)
63560
63572
  SENSITIVE = []
63561
63573
  include Aws::Structure
63562
63574
  end
data/lib/aws-sdk-ec2.rb CHANGED
@@ -76,6 +76,6 @@ require_relative 'aws-sdk-ec2/customizations'
76
76
  # @!group service
77
77
  module Aws::EC2
78
78
 
79
- GEM_VERSION = '1.407.0'
79
+ GEM_VERSION = '1.408.0'
80
80
 
81
81
  end
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.407.0
4
+ version: 1.408.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: 2023-09-22 00:00:00.000000000 Z
11
+ date: 2023-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4