aws-sdk-ec2 1.160.0 → 1.161.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: 33ba28fcedc17f09b60fdbcbac9ab2e2ac683b00ed79da8d48a8ec1aeb6b45f2
4
- data.tar.gz: 5c1e2776f579bb61fbf3b894608c7f882fc0f787cf32ddd149316989198ac8de
3
+ metadata.gz: 9248308cfa008b1b76db12239302241c4bb102daca28411bb8cf9d61bd219b1c
4
+ data.tar.gz: 37a03a10678349978c24224f6d13ae10109f2545b62c69116217f1a98288b998
5
5
  SHA512:
6
- metadata.gz: d6b61c7010cc5961006c1fc7368ff6de7995e0817f42b3b2fea73ceba391cd0a0bcbe588b54571c03b16bc4a1d7da1a49a5ec134ac4c20b991b5553879ee35ad
7
- data.tar.gz: c874239e575146b90afdac4018ba166ff77ca71806dd929ac10c4f81cc1851eda31ef16e94140e12135b909fd0bfab8148f4cce2aab585f0db3cc2d7528e92a2
6
+ metadata.gz: 065a7f693956c1edb11bee5880ffddc6696ccd34ba0c619d5ee52cdf922f32323266b78e03f8b25af46b6ad31c3d27264fa9bedf7c71fd5dcdb5c6d03a201da1
7
+ data.tar.gz: a2719f8541e300d129ee8416def0c53be13d6b65ed7db825df46e3d92966dcb4dd45d1b4b04e888836ab80becfb18dfcca8a4a25f9dd6124f905c504b03f049e
data/lib/aws-sdk-ec2.rb CHANGED
@@ -69,6 +69,6 @@ require_relative 'aws-sdk-ec2/customizations'
69
69
  # @service
70
70
  module Aws::EC2
71
71
 
72
- GEM_VERSION = '1.160.0'
72
+ GEM_VERSION = '1.161.0'
73
73
 
74
74
  end
@@ -2076,7 +2076,8 @@ module Aws::EC2
2076
2076
  # access is being authorized.
2077
2077
  #
2078
2078
  # @option params [String] :access_group_id
2079
- # The ID of the Active Directory group to grant access.
2079
+ # The ID of the group to grant access to, for example, the Active
2080
+ # Directory group or identity provider (IdP) group.
2080
2081
  #
2081
2082
  # @option params [Boolean] :authorize_all_groups
2082
2083
  # Indicates whether to grant access to all clients. Use `true` to grant
@@ -3805,13 +3806,16 @@ module Aws::EC2
3805
3806
  # server_certificate_arn: "String", # required
3806
3807
  # authentication_options: [ # required
3807
3808
  # {
3808
- # type: "certificate-authentication", # accepts certificate-authentication, directory-service-authentication
3809
+ # type: "certificate-authentication", # accepts certificate-authentication, directory-service-authentication, federated-authentication
3809
3810
  # active_directory: {
3810
3811
  # directory_id: "String",
3811
3812
  # },
3812
3813
  # mutual_authentication: {
3813
3814
  # client_root_certificate_chain_arn: "String",
3814
3815
  # },
3816
+ # federated_authentication: {
3817
+ # saml_provider_arn: "String",
3818
+ # },
3815
3819
  # },
3816
3820
  # ],
3817
3821
  # connection_log_options: { # required
@@ -11632,8 +11636,12 @@ module Aws::EC2
11632
11636
  # you can delete the VPN connection and create a new one that has new
11633
11637
  # keys, without needing to delete the VPC or virtual private gateway. If
11634
11638
  # you create a new VPN connection, you must reconfigure the customer
11635
- # gateway using the new configuration information returned with the new
11636
- # VPN connection ID.
11639
+ # gateway device using the new configuration information returned with
11640
+ # the new VPN connection ID.
11641
+ #
11642
+ # For certificate-based authentication, delete all AWS Certificate
11643
+ # Manager (ACM) private certificates used for the AWS-side tunnel
11644
+ # endpoints for the VPN connection before deleting the VPN connection.
11637
11645
  #
11638
11646
  # @option params [required, String] :vpn_connection_id
11639
11647
  # The ID of the VPN connection.
@@ -13104,9 +13112,10 @@ module Aws::EC2
13104
13112
  # resp.client_vpn_endpoints[0].associated_target_networks[0].network_type #=> String, one of "vpc"
13105
13113
  # resp.client_vpn_endpoints[0].server_certificate_arn #=> String
13106
13114
  # resp.client_vpn_endpoints[0].authentication_options #=> Array
13107
- # resp.client_vpn_endpoints[0].authentication_options[0].type #=> String, one of "certificate-authentication", "directory-service-authentication"
13115
+ # resp.client_vpn_endpoints[0].authentication_options[0].type #=> String, one of "certificate-authentication", "directory-service-authentication", "federated-authentication"
13108
13116
  # resp.client_vpn_endpoints[0].authentication_options[0].active_directory.directory_id #=> String
13109
13117
  # resp.client_vpn_endpoints[0].authentication_options[0].mutual_authentication.client_root_certificate_chain #=> String
13118
+ # resp.client_vpn_endpoints[0].authentication_options[0].federated_authentication.saml_provider_arn #=> String
13110
13119
  # resp.client_vpn_endpoints[0].connection_log_options.enabled #=> Boolean
13111
13120
  # resp.client_vpn_endpoints[0].connection_log_options.cloudwatch_log_group #=> String
13112
13121
  # resp.client_vpn_endpoints[0].connection_log_options.cloudwatch_log_stream #=> String
@@ -31475,7 +31484,8 @@ module Aws::EC2
31475
31484
  req.send_request(options)
31476
31485
  end
31477
31486
 
31478
- # Modifies the target gateway of an AWS Site-to-Site VPN connection. The
31487
+ # Modifies the customer gateway or the target gateway of an AWS
31488
+ # Site-to-Site VPN connection. To modify the target gateway, the
31479
31489
  # following migration options are available:
31480
31490
  #
31481
31491
  # * An existing virtual private gateway to a new virtual private gateway
@@ -36951,7 +36961,7 @@ module Aws::EC2
36951
36961
  params: params,
36952
36962
  config: config)
36953
36963
  context[:gem_name] = 'aws-sdk-ec2'
36954
- context[:gem_version] = '1.160.0'
36964
+ context[:gem_version] = '1.161.0'
36955
36965
  Seahorse::Client::Request.new(handlers, context)
36956
36966
  end
36957
36967
 
@@ -877,6 +877,8 @@ module Aws::EC2
877
877
  FailedQueuedPurchaseDeletion = Shapes::StructureShape.new(name: 'FailedQueuedPurchaseDeletion')
878
878
  FailedQueuedPurchaseDeletionSet = Shapes::ListShape.new(name: 'FailedQueuedPurchaseDeletionSet')
879
879
  FastSnapshotRestoreStateCode = Shapes::StringShape.new(name: 'FastSnapshotRestoreStateCode')
880
+ FederatedAuthentication = Shapes::StructureShape.new(name: 'FederatedAuthentication')
881
+ FederatedAuthenticationRequest = Shapes::StructureShape.new(name: 'FederatedAuthenticationRequest')
880
882
  Filter = Shapes::StructureShape.new(name: 'Filter')
881
883
  FilterList = Shapes::ListShape.new(name: 'FilterList')
882
884
  FleetActivityStatus = Shapes::StringShape.new(name: 'FleetActivityStatus')
@@ -2599,6 +2601,7 @@ module Aws::EC2
2599
2601
  ClientVpnAuthentication.add_member(:type, Shapes::ShapeRef.new(shape: ClientVpnAuthenticationType, location_name: "type"))
2600
2602
  ClientVpnAuthentication.add_member(:active_directory, Shapes::ShapeRef.new(shape: DirectoryServiceAuthentication, location_name: "activeDirectory"))
2601
2603
  ClientVpnAuthentication.add_member(:mutual_authentication, Shapes::ShapeRef.new(shape: CertificateAuthentication, location_name: "mutualAuthentication"))
2604
+ ClientVpnAuthentication.add_member(:federated_authentication, Shapes::ShapeRef.new(shape: FederatedAuthentication, location_name: "federatedAuthentication"))
2602
2605
  ClientVpnAuthentication.struct_class = Types::ClientVpnAuthentication
2603
2606
 
2604
2607
  ClientVpnAuthenticationList.member = Shapes::ShapeRef.new(shape: ClientVpnAuthentication, location_name: "item")
@@ -2606,6 +2609,7 @@ module Aws::EC2
2606
2609
  ClientVpnAuthenticationRequest.add_member(:type, Shapes::ShapeRef.new(shape: ClientVpnAuthenticationType, location_name: "Type"))
2607
2610
  ClientVpnAuthenticationRequest.add_member(:active_directory, Shapes::ShapeRef.new(shape: DirectoryServiceAuthenticationRequest, location_name: "ActiveDirectory"))
2608
2611
  ClientVpnAuthenticationRequest.add_member(:mutual_authentication, Shapes::ShapeRef.new(shape: CertificateAuthenticationRequest, location_name: "MutualAuthentication"))
2612
+ ClientVpnAuthenticationRequest.add_member(:federated_authentication, Shapes::ShapeRef.new(shape: FederatedAuthenticationRequest, location_name: "FederatedAuthentication"))
2609
2613
  ClientVpnAuthenticationRequest.struct_class = Types::ClientVpnAuthenticationRequest
2610
2614
 
2611
2615
  ClientVpnAuthenticationRequestList.member = Shapes::ShapeRef.new(shape: ClientVpnAuthenticationRequest)
@@ -5483,6 +5487,12 @@ module Aws::EC2
5483
5487
 
5484
5488
  FailedQueuedPurchaseDeletionSet.member = Shapes::ShapeRef.new(shape: FailedQueuedPurchaseDeletion, location_name: "item")
5485
5489
 
5490
+ FederatedAuthentication.add_member(:saml_provider_arn, Shapes::ShapeRef.new(shape: String, location_name: "samlProviderArn"))
5491
+ FederatedAuthentication.struct_class = Types::FederatedAuthentication
5492
+
5493
+ FederatedAuthenticationRequest.add_member(:saml_provider_arn, Shapes::ShapeRef.new(shape: String, location_name: "SAMLProviderArn"))
5494
+ FederatedAuthenticationRequest.struct_class = Types::FederatedAuthenticationRequest
5495
+
5486
5496
  Filter.add_member(:name, Shapes::ShapeRef.new(shape: String, location_name: "Name"))
5487
5497
  Filter.add_member(:values, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "Value"))
5488
5498
  Filter.struct_class = Types::Filter
@@ -1716,7 +1716,8 @@ module Aws::EC2
1716
1716
  # @return [String]
1717
1717
  #
1718
1718
  # @!attribute [rw] access_group_id
1719
- # The ID of the Active Directory group to grant access.
1719
+ # The ID of the group to grant access to, for example, the Active
1720
+ # Directory group or identity provider (IdP) group.
1720
1721
  # @return [String]
1721
1722
  #
1722
1723
  # @!attribute [rw] authorize_all_groups
@@ -3358,8 +3359,7 @@ module Aws::EC2
3358
3359
  end
3359
3360
 
3360
3361
  # Describes the authentication methods used by a Client VPN endpoint.
3361
- # Client VPN supports Active Directory and mutual authentication. For
3362
- # more information, see [Authentication][1] in the *AWS Client VPN
3362
+ # For more information, see [Authentication][1] in the *AWS Client VPN
3363
3363
  # Administrator Guide*.
3364
3364
  #
3365
3365
  #
@@ -3378,19 +3378,23 @@ module Aws::EC2
3378
3378
  # Information about the authentication certificates, if applicable.
3379
3379
  # @return [Types::CertificateAuthentication]
3380
3380
  #
3381
+ # @!attribute [rw] federated_authentication
3382
+ # Information about the IAM SAML identity provider, if applicable.
3383
+ # @return [Types::FederatedAuthentication]
3384
+ #
3381
3385
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClientVpnAuthentication AWS API Documentation
3382
3386
  #
3383
3387
  class ClientVpnAuthentication < Struct.new(
3384
3388
  :type,
3385
3389
  :active_directory,
3386
- :mutual_authentication)
3390
+ :mutual_authentication,
3391
+ :federated_authentication)
3387
3392
  include Aws::Structure
3388
3393
  end
3389
3394
 
3390
3395
  # Describes the authentication method to be used by a Client VPN
3391
- # endpoint. Client VPN supports Active Directory and mutual
3392
- # authentication. For more information, see [Authentication][1] in the
3393
- # *AWS Client VPN Administrator Guide*.
3396
+ # endpoint. For more information, see [Authentication][1] in the *AWS
3397
+ # Client VPN Administrator Guide*.
3394
3398
  #
3395
3399
  #
3396
3400
  #
@@ -3400,20 +3404,20 @@ module Aws::EC2
3400
3404
  # data as a hash:
3401
3405
  #
3402
3406
  # {
3403
- # type: "certificate-authentication", # accepts certificate-authentication, directory-service-authentication
3407
+ # type: "certificate-authentication", # accepts certificate-authentication, directory-service-authentication, federated-authentication
3404
3408
  # active_directory: {
3405
3409
  # directory_id: "String",
3406
3410
  # },
3407
3411
  # mutual_authentication: {
3408
3412
  # client_root_certificate_chain_arn: "String",
3409
3413
  # },
3414
+ # federated_authentication: {
3415
+ # saml_provider_arn: "String",
3416
+ # },
3410
3417
  # }
3411
3418
  #
3412
3419
  # @!attribute [rw] type
3413
- # The type of client authentication to be used. Specify
3414
- # `certificate-authentication` to use certificate-based
3415
- # authentication, or `directory-service-authentication` to use Active
3416
- # Directory authentication.
3420
+ # The type of client authentication to be used.
3417
3421
  # @return [String]
3418
3422
  #
3419
3423
  # @!attribute [rw] active_directory
@@ -3428,12 +3432,19 @@ module Aws::EC2
3428
3432
  # `certificate-authentication`.
3429
3433
  # @return [Types::CertificateAuthenticationRequest]
3430
3434
  #
3435
+ # @!attribute [rw] federated_authentication
3436
+ # Information about the IAM SAML identity provider to be used, if
3437
+ # applicable. You must provide this information if **Type** is
3438
+ # `federated-authentication`.
3439
+ # @return [Types::FederatedAuthenticationRequest]
3440
+ #
3431
3441
  # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ClientVpnAuthenticationRequest AWS API Documentation
3432
3442
  #
3433
3443
  class ClientVpnAuthenticationRequest < Struct.new(
3434
3444
  :type,
3435
3445
  :active_directory,
3436
- :mutual_authentication)
3446
+ :mutual_authentication,
3447
+ :federated_authentication)
3437
3448
  include Aws::Structure
3438
3449
  end
3439
3450
 
@@ -4606,13 +4617,16 @@ module Aws::EC2
4606
4617
  # server_certificate_arn: "String", # required
4607
4618
  # authentication_options: [ # required
4608
4619
  # {
4609
- # type: "certificate-authentication", # accepts certificate-authentication, directory-service-authentication
4620
+ # type: "certificate-authentication", # accepts certificate-authentication, directory-service-authentication, federated-authentication
4610
4621
  # active_directory: {
4611
4622
  # directory_id: "String",
4612
4623
  # },
4613
4624
  # mutual_authentication: {
4614
4625
  # client_root_certificate_chain_arn: "String",
4615
4626
  # },
4627
+ # federated_authentication: {
4628
+ # saml_provider_arn: "String",
4629
+ # },
4616
4630
  # },
4617
4631
  # ],
4618
4632
  # connection_log_options: { # required
@@ -24142,6 +24156,40 @@ module Aws::EC2
24142
24156
  include Aws::Structure
24143
24157
  end
24144
24158
 
24159
+ # Describes the IAM SAML identity provider used for federated
24160
+ # authentication.
24161
+ #
24162
+ # @!attribute [rw] saml_provider_arn
24163
+ # The Amazon Resource Name (ARN) of the IAM SAML identity provider.
24164
+ # @return [String]
24165
+ #
24166
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FederatedAuthentication AWS API Documentation
24167
+ #
24168
+ class FederatedAuthentication < Struct.new(
24169
+ :saml_provider_arn)
24170
+ include Aws::Structure
24171
+ end
24172
+
24173
+ # The IAM SAML identity provider used for federated authentication.
24174
+ #
24175
+ # @note When making an API call, you may pass FederatedAuthenticationRequest
24176
+ # data as a hash:
24177
+ #
24178
+ # {
24179
+ # saml_provider_arn: "String",
24180
+ # }
24181
+ #
24182
+ # @!attribute [rw] saml_provider_arn
24183
+ # The Amazon Resource Name (ARN) of the IAM SAML identity provider.
24184
+ # @return [String]
24185
+ #
24186
+ # @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/FederatedAuthenticationRequest AWS API Documentation
24187
+ #
24188
+ class FederatedAuthenticationRequest < Struct.new(
24189
+ :saml_provider_arn)
24190
+ include Aws::Structure
24191
+ end
24192
+
24145
24193
  # A filter name and value pair that is used to return a more specific
24146
24194
  # list of results from a describe operation. Filters can be used to
24147
24195
  # match a set of resources by specific criteria, such as tags,
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.160.0
4
+ version: 1.161.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: 2020-05-18 00:00:00.000000000 Z
11
+ date: 2020-05-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sigv4