aws-sdk-ec2 1.375.0 → 1.376.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 +101 -96
- data/lib/aws-sdk-ec2/client_api.rb +10 -3
- data/lib/aws-sdk-ec2/types.rb +144 -115
- 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: 552f5cf8bbe99756eb823ec8448a2a0513ea683c5865024e1bc13aa8b6e59ed7
|
4
|
+
data.tar.gz: 6d581a524ad76692fa82da6069747cd1b762baec56bd67e876437a81dbedb7b5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ab115979f26f6afa790e717477862ec312d50e34fc45e8c380b366b33714b3b53b0ea769f1dd234c9dee2b9ce0bfca9a0b0eec6f1579e5f639deb0d8cdd79daf
|
7
|
+
data.tar.gz: 4e0975dadcf2dceba21390833350c572c49d067bf696a80271b838a5b4ce8801ddaee5d5ed4cc6409fff6dbc944701e8c4ab32db4d5e5ec2b9c2b318646bf764
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.376.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -2848,16 +2848,15 @@ module Aws::EC2
|
|
2848
2848
|
req.send_request(options)
|
2849
2849
|
end
|
2850
2850
|
|
2851
|
-
#
|
2852
|
-
#
|
2853
|
-
# providers can be attached to an Amazon Web Services Verified Access
|
2851
|
+
# Attaches the specified Amazon Web Services Verified Access trust
|
2852
|
+
# provider to the specified Amazon Web Services Verified Access
|
2854
2853
|
# instance.
|
2855
2854
|
#
|
2856
2855
|
# @option params [required, String] :verified_access_instance_id
|
2857
|
-
# The ID of the
|
2856
|
+
# The ID of the Verified Access instance.
|
2858
2857
|
#
|
2859
2858
|
# @option params [required, String] :verified_access_trust_provider_id
|
2860
|
-
# The ID of the
|
2859
|
+
# The ID of the Verified Access trust provider.
|
2861
2860
|
#
|
2862
2861
|
# @option params [String] :client_token
|
2863
2862
|
# A unique, case-sensitive token that you provide to ensure idempotency
|
@@ -13231,10 +13230,10 @@ module Aws::EC2
|
|
13231
13230
|
# The ID of the Verified Access group to associate the endpoint with.
|
13232
13231
|
#
|
13233
13232
|
# @option params [required, String] :endpoint_type
|
13234
|
-
# The type of
|
13233
|
+
# The type of Verified Access endpoint to create.
|
13235
13234
|
#
|
13236
13235
|
# @option params [required, String] :attachment_type
|
13237
|
-
# The
|
13236
|
+
# The type of attachment.
|
13238
13237
|
#
|
13239
13238
|
# @option params [required, String] :domain_certificate_arn
|
13240
13239
|
# The ARN of the public TLS/SSL certificate in Amazon Web Services
|
@@ -13246,30 +13245,29 @@ module Aws::EC2
|
|
13246
13245
|
# The DNS name for users to reach your application.
|
13247
13246
|
#
|
13248
13247
|
# @option params [required, String] :endpoint_domain_prefix
|
13249
|
-
# A custom identifier that
|
13248
|
+
# A custom identifier that is prepended to the DNS name that is
|
13250
13249
|
# generated for the endpoint.
|
13251
13250
|
#
|
13252
13251
|
# @option params [Array<String>] :security_group_ids
|
13253
|
-
# The
|
13254
|
-
#
|
13252
|
+
# The IDs of the security groups to associate with the Verified Access
|
13253
|
+
# endpoint.
|
13255
13254
|
#
|
13256
13255
|
# @option params [Types::CreateVerifiedAccessEndpointLoadBalancerOptions] :load_balancer_options
|
13257
|
-
# The load balancer details
|
13258
|
-
#
|
13256
|
+
# The load balancer details. This parameter is required if the endpoint
|
13257
|
+
# type is `load-balancer`.
|
13259
13258
|
#
|
13260
13259
|
# @option params [Types::CreateVerifiedAccessEndpointEniOptions] :network_interface_options
|
13261
|
-
# The network interface details
|
13262
|
-
#
|
13260
|
+
# The network interface details. This parameter is required if the
|
13261
|
+
# endpoint type is `network-interface`.
|
13263
13262
|
#
|
13264
13263
|
# @option params [String] :description
|
13265
|
-
# A description for the
|
13264
|
+
# A description for the Verified Access endpoint.
|
13266
13265
|
#
|
13267
13266
|
# @option params [String] :policy_document
|
13268
|
-
# The
|
13267
|
+
# The Verified Access policy document.
|
13269
13268
|
#
|
13270
13269
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
13271
|
-
# The tags to assign to the
|
13272
|
-
# endpoint.
|
13270
|
+
# The tags to assign to the Verified Access endpoint.
|
13273
13271
|
#
|
13274
13272
|
# @option params [String] :client_token
|
13275
13273
|
# A unique, case-sensitive token that you provide to ensure idempotency
|
@@ -13373,24 +13371,22 @@ module Aws::EC2
|
|
13373
13371
|
|
13374
13372
|
# An Amazon Web Services Verified Access group is a collection of Amazon
|
13375
13373
|
# Web Services Verified Access endpoints who's associated applications
|
13376
|
-
# have similar security requirements. Each instance within
|
13377
|
-
#
|
13378
|
-
#
|
13379
|
-
#
|
13380
|
-
# together and use one common Amazon Web Services Verified Access
|
13381
|
-
# policy.
|
13374
|
+
# have similar security requirements. Each instance within a Verified
|
13375
|
+
# Access group shares an Verified Access policy. For example, you can
|
13376
|
+
# group all Verified Access instances associated with "sales"
|
13377
|
+
# applications together and use one common Verified Access policy.
|
13382
13378
|
#
|
13383
13379
|
# @option params [required, String] :verified_access_instance_id
|
13384
|
-
# The ID of the
|
13380
|
+
# The ID of the Verified Access instance.
|
13385
13381
|
#
|
13386
13382
|
# @option params [String] :description
|
13387
|
-
# A description for the
|
13383
|
+
# A description for the Verified Access group.
|
13388
13384
|
#
|
13389
13385
|
# @option params [String] :policy_document
|
13390
|
-
# The
|
13386
|
+
# The Verified Access policy document.
|
13391
13387
|
#
|
13392
13388
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
13393
|
-
# The tags to assign to the
|
13389
|
+
# The tags to assign to the Verified Access group.
|
13394
13390
|
#
|
13395
13391
|
# @option params [String] :client_token
|
13396
13392
|
# A unique, case-sensitive token that you provide to ensure idempotency
|
@@ -13463,11 +13459,10 @@ module Aws::EC2
|
|
13463
13459
|
# security requirements are met.
|
13464
13460
|
#
|
13465
13461
|
# @option params [String] :description
|
13466
|
-
# A description for the
|
13462
|
+
# A description for the Verified Access instance.
|
13467
13463
|
#
|
13468
13464
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
13469
|
-
# The tags to assign to the
|
13470
|
-
# instance.
|
13465
|
+
# The tags to assign to the Verified Access instance.
|
13471
13466
|
#
|
13472
13467
|
# @option params [String] :client_token
|
13473
13468
|
# A unique, case-sensitive token that you provide to ensure idempotency
|
@@ -13538,35 +13533,36 @@ module Aws::EC2
|
|
13538
13533
|
# A trust provider is a third-party entity that creates, maintains, and
|
13539
13534
|
# manages identity information for users and devices. When an
|
13540
13535
|
# application request is made, the identity information sent by the
|
13541
|
-
# trust provider
|
13542
|
-
#
|
13536
|
+
# trust provider is evaluated by Verified Access before allowing or
|
13537
|
+
# denying the application request.
|
13543
13538
|
#
|
13544
13539
|
# @option params [required, String] :trust_provider_type
|
13545
|
-
# The type of trust provider
|
13540
|
+
# The type of trust provider.
|
13546
13541
|
#
|
13547
13542
|
# @option params [String] :user_trust_provider_type
|
13548
|
-
# The type of user-based trust provider.
|
13543
|
+
# The type of user-based trust provider. This parameter is required when
|
13544
|
+
# the provider type is `user`.
|
13549
13545
|
#
|
13550
13546
|
# @option params [String] :device_trust_provider_type
|
13551
|
-
# The type of device-based trust provider.
|
13547
|
+
# The type of device-based trust provider. This parameter is required
|
13548
|
+
# when the provider type is `device`.
|
13552
13549
|
#
|
13553
13550
|
# @option params [Types::CreateVerifiedAccessTrustProviderOidcOptions] :oidc_options
|
13554
|
-
# The
|
13555
|
-
#
|
13551
|
+
# The options for a OpenID Connect-compatible user-identity trust
|
13552
|
+
# provider. This parameter is required when the provider type is `user`.
|
13556
13553
|
#
|
13557
13554
|
# @option params [Types::CreateVerifiedAccessTrustProviderDeviceOptions] :device_options
|
13558
|
-
# The options for device
|
13555
|
+
# The options for a device-based trust provider. This parameter is
|
13556
|
+
# required when the provider type is `device`.
|
13559
13557
|
#
|
13560
13558
|
# @option params [required, String] :policy_reference_name
|
13561
13559
|
# The identifier to be used when working with policy rules.
|
13562
13560
|
#
|
13563
13561
|
# @option params [String] :description
|
13564
|
-
# A description for the
|
13565
|
-
# provider.
|
13562
|
+
# A description for the Verified Access trust provider.
|
13566
13563
|
#
|
13567
13564
|
# @option params [Array<Types::TagSpecification>] :tag_specifications
|
13568
|
-
# The tags to assign to the
|
13569
|
-
# provider.
|
13565
|
+
# The tags to assign to the Verified Access trust provider.
|
13570
13566
|
#
|
13571
13567
|
# @option params [String] :client_token
|
13572
13568
|
# A unique, case-sensitive token that you provide to ensure idempotency
|
@@ -13602,7 +13598,7 @@ module Aws::EC2
|
|
13602
13598
|
# token_endpoint: "String",
|
13603
13599
|
# user_info_endpoint: "String",
|
13604
13600
|
# client_id: "String",
|
13605
|
-
# client_secret: "
|
13601
|
+
# client_secret: "ClientSecretType",
|
13606
13602
|
# scope: "String",
|
13607
13603
|
# },
|
13608
13604
|
# device_options: {
|
@@ -17867,7 +17863,7 @@ module Aws::EC2
|
|
17867
17863
|
# Delete an Amazon Web Services Verified Access endpoint.
|
17868
17864
|
#
|
17869
17865
|
# @option params [required, String] :verified_access_endpoint_id
|
17870
|
-
# The ID of the
|
17866
|
+
# The ID of the Verified Access endpoint.
|
17871
17867
|
#
|
17872
17868
|
# @option params [String] :client_token
|
17873
17869
|
# A unique, case-sensitive token that you provide to ensure idempotency
|
@@ -17942,7 +17938,7 @@ module Aws::EC2
|
|
17942
17938
|
# Delete an Amazon Web Services Verified Access group.
|
17943
17939
|
#
|
17944
17940
|
# @option params [required, String] :verified_access_group_id
|
17945
|
-
# The ID of the
|
17941
|
+
# The ID of the Verified Access group.
|
17946
17942
|
#
|
17947
17943
|
# @option params [String] :client_token
|
17948
17944
|
# A unique, case-sensitive token that you provide to ensure idempotency
|
@@ -18000,7 +17996,7 @@ module Aws::EC2
|
|
18000
17996
|
# Delete an Amazon Web Services Verified Access instance.
|
18001
17997
|
#
|
18002
17998
|
# @option params [required, String] :verified_access_instance_id
|
18003
|
-
# The ID of the
|
17999
|
+
# The ID of the Verified Access instance.
|
18004
18000
|
#
|
18005
18001
|
# @option params [Boolean] :dry_run
|
18006
18002
|
# Checks whether you have the required permissions for the action,
|
@@ -18060,7 +18056,7 @@ module Aws::EC2
|
|
18060
18056
|
# Delete an Amazon Web Services Verified Access trust provider.
|
18061
18057
|
#
|
18062
18058
|
# @option params [required, String] :verified_access_trust_provider_id
|
18063
|
-
# The ID of the
|
18059
|
+
# The ID of the Verified Access trust provider.
|
18064
18060
|
#
|
18065
18061
|
# @option params [Boolean] :dry_run
|
18066
18062
|
# Checks whether you have the required permissions for the action,
|
@@ -34100,16 +34096,16 @@ module Aws::EC2
|
|
34100
34096
|
req.send_request(options)
|
34101
34097
|
end
|
34102
34098
|
|
34103
|
-
#
|
34099
|
+
# Describes the specified Amazon Web Services Verified Access endpoints.
|
34104
34100
|
#
|
34105
34101
|
# @option params [Array<String>] :verified_access_endpoint_ids
|
34106
|
-
# The ID of the
|
34102
|
+
# The ID of the Verified Access endpoint.
|
34107
34103
|
#
|
34108
34104
|
# @option params [String] :verified_access_instance_id
|
34109
|
-
# The ID of the
|
34105
|
+
# The ID of the Verified Access instance.
|
34110
34106
|
#
|
34111
34107
|
# @option params [String] :verified_access_group_id
|
34112
|
-
# The ID of the
|
34108
|
+
# The ID of the Verified Access group.
|
34113
34109
|
#
|
34114
34110
|
# @option params [Integer] :max_results
|
34115
34111
|
# The maximum number of results to return with a single call. To
|
@@ -34194,13 +34190,13 @@ module Aws::EC2
|
|
34194
34190
|
req.send_request(options)
|
34195
34191
|
end
|
34196
34192
|
|
34197
|
-
#
|
34193
|
+
# Describes the specified Verified Access groups.
|
34198
34194
|
#
|
34199
34195
|
# @option params [Array<String>] :verified_access_group_ids
|
34200
|
-
# The ID of the
|
34196
|
+
# The ID of the Verified Access groups.
|
34201
34197
|
#
|
34202
34198
|
# @option params [String] :verified_access_instance_id
|
34203
|
-
# The ID of the
|
34199
|
+
# The ID of the Verified Access instance.
|
34204
34200
|
#
|
34205
34201
|
# @option params [Integer] :max_results
|
34206
34202
|
# The maximum number of results to return with a single call. To
|
@@ -34267,11 +34263,10 @@ module Aws::EC2
|
|
34267
34263
|
req.send_request(options)
|
34268
34264
|
end
|
34269
34265
|
|
34270
|
-
# Describes the
|
34271
|
-
# Services Verified Access instances.
|
34266
|
+
# Describes the specified Amazon Web Services Verified Access instances.
|
34272
34267
|
#
|
34273
34268
|
# @option params [Array<String>] :verified_access_instance_ids
|
34274
|
-
# The IDs of the
|
34269
|
+
# The IDs of the Verified Access instances.
|
34275
34270
|
#
|
34276
34271
|
# @option params [Integer] :max_results
|
34277
34272
|
# The maximum number of results to return with a single call. To
|
@@ -34341,10 +34336,10 @@ module Aws::EC2
|
|
34341
34336
|
req.send_request(options)
|
34342
34337
|
end
|
34343
34338
|
|
34344
|
-
#
|
34339
|
+
# Describes the specified Amazon Web Services Verified Access instances.
|
34345
34340
|
#
|
34346
34341
|
# @option params [Array<String>] :verified_access_instance_ids
|
34347
|
-
# The IDs of the
|
34342
|
+
# The IDs of the Verified Access instances.
|
34348
34343
|
#
|
34349
34344
|
# @option params [Integer] :max_results
|
34350
34345
|
# The maximum number of results to return with a single call. To
|
@@ -34412,10 +34407,11 @@ module Aws::EC2
|
|
34412
34407
|
req.send_request(options)
|
34413
34408
|
end
|
34414
34409
|
|
34415
|
-
#
|
34410
|
+
# Describes the specified Amazon Web Services Verified Access trust
|
34411
|
+
# providers.
|
34416
34412
|
#
|
34417
34413
|
# @option params [Array<String>] :verified_access_trust_provider_ids
|
34418
|
-
# The IDs of the
|
34414
|
+
# The IDs of the Verified Access trust providers.
|
34419
34415
|
#
|
34420
34416
|
# @option params [Integer] :max_results
|
34421
34417
|
# The maximum number of results to return with a single call. To
|
@@ -36681,14 +36677,15 @@ module Aws::EC2
|
|
36681
36677
|
req.send_request(options)
|
36682
36678
|
end
|
36683
36679
|
|
36684
|
-
#
|
36680
|
+
# Detaches the specified Amazon Web Services Verified Access trust
|
36681
|
+
# provider from the specified Amazon Web Services Verified Access
|
36685
36682
|
# instance.
|
36686
36683
|
#
|
36687
36684
|
# @option params [required, String] :verified_access_instance_id
|
36688
|
-
# The ID of the
|
36685
|
+
# The ID of the Verified Access instance.
|
36689
36686
|
#
|
36690
36687
|
# @option params [required, String] :verified_access_trust_provider_id
|
36691
|
-
# The ID of the
|
36688
|
+
# The ID of the Verified Access trust provider.
|
36692
36689
|
#
|
36693
36690
|
# @option params [String] :client_token
|
36694
36691
|
# A unique, case-sensitive token that you provide to ensure idempotency
|
@@ -42448,7 +42445,7 @@ module Aws::EC2
|
|
42448
42445
|
# Get the Verified Access policy associated with the endpoint.
|
42449
42446
|
#
|
42450
42447
|
# @option params [required, String] :verified_access_endpoint_id
|
42451
|
-
# The ID of the
|
42448
|
+
# The ID of the Verified Access endpoint.
|
42452
42449
|
#
|
42453
42450
|
# @option params [Boolean] :dry_run
|
42454
42451
|
# Checks whether you have the required permissions for the action,
|
@@ -42486,7 +42483,7 @@ module Aws::EC2
|
|
42486
42483
|
# group.
|
42487
42484
|
#
|
42488
42485
|
# @option params [required, String] :verified_access_group_id
|
42489
|
-
# The ID of the
|
42486
|
+
# The ID of the Verified Access group.
|
42490
42487
|
#
|
42491
42488
|
# @option params [Boolean] :dry_run
|
42492
42489
|
# Checks whether you have the required permissions for the action,
|
@@ -47493,24 +47490,24 @@ module Aws::EC2
|
|
47493
47490
|
req.send_request(options)
|
47494
47491
|
end
|
47495
47492
|
|
47496
|
-
# Modifies the configuration of
|
47497
|
-
# endpoint.
|
47493
|
+
# Modifies the configuration of the specified Amazon Web Services
|
47494
|
+
# Verified Access endpoint.
|
47498
47495
|
#
|
47499
47496
|
# @option params [required, String] :verified_access_endpoint_id
|
47500
|
-
# The ID of the
|
47497
|
+
# The ID of the Verified Access endpoint.
|
47501
47498
|
#
|
47502
47499
|
# @option params [String] :verified_access_group_id
|
47503
|
-
# The ID of the
|
47500
|
+
# The ID of the Verified Access group.
|
47504
47501
|
#
|
47505
47502
|
# @option params [Types::ModifyVerifiedAccessEndpointLoadBalancerOptions] :load_balancer_options
|
47506
|
-
# The load balancer details if creating the
|
47507
|
-
#
|
47503
|
+
# The load balancer details if creating the Verified Access endpoint as
|
47504
|
+
# `load-balancer`type.
|
47508
47505
|
#
|
47509
47506
|
# @option params [Types::ModifyVerifiedAccessEndpointEniOptions] :network_interface_options
|
47510
47507
|
# The network interface options.
|
47511
47508
|
#
|
47512
47509
|
# @option params [String] :description
|
47513
|
-
# A description for the
|
47510
|
+
# A description for the Verified Access endpoint.
|
47514
47511
|
#
|
47515
47512
|
# @option params [String] :client_token
|
47516
47513
|
# A unique, case-sensitive token that you provide to ensure idempotency
|
@@ -47593,16 +47590,17 @@ module Aws::EC2
|
|
47593
47590
|
req.send_request(options)
|
47594
47591
|
end
|
47595
47592
|
|
47596
|
-
# Modifies the specified Verified Access endpoint
|
47593
|
+
# Modifies the specified Amazon Web Services Verified Access endpoint
|
47594
|
+
# policy.
|
47597
47595
|
#
|
47598
47596
|
# @option params [required, String] :verified_access_endpoint_id
|
47599
|
-
# The ID of the
|
47597
|
+
# The ID of the Verified Access endpoint.
|
47600
47598
|
#
|
47601
47599
|
# @option params [required, Boolean] :policy_enabled
|
47602
47600
|
# The status of the Verified Access policy.
|
47603
47601
|
#
|
47604
47602
|
# @option params [String] :policy_document
|
47605
|
-
# The
|
47603
|
+
# The Verified Access policy document.
|
47606
47604
|
#
|
47607
47605
|
# @option params [String] :client_token
|
47608
47606
|
# A unique, case-sensitive token that you provide to ensure idempotency
|
@@ -47651,16 +47649,17 @@ module Aws::EC2
|
|
47651
47649
|
req.send_request(options)
|
47652
47650
|
end
|
47653
47651
|
|
47654
|
-
# Modifies the specified Verified Access group
|
47652
|
+
# Modifies the specified Amazon Web Services Verified Access group
|
47653
|
+
# configuration.
|
47655
47654
|
#
|
47656
47655
|
# @option params [required, String] :verified_access_group_id
|
47657
|
-
# The ID of the
|
47656
|
+
# The ID of the Verified Access group.
|
47658
47657
|
#
|
47659
47658
|
# @option params [String] :verified_access_instance_id
|
47660
|
-
# The ID of the
|
47659
|
+
# The ID of the Verified Access instance.
|
47661
47660
|
#
|
47662
47661
|
# @option params [String] :description
|
47663
|
-
# A description for the
|
47662
|
+
# A description for the Verified Access group.
|
47664
47663
|
#
|
47665
47664
|
# @option params [String] :client_token
|
47666
47665
|
# A unique, case-sensitive token that you provide to ensure idempotency
|
@@ -47717,16 +47716,17 @@ module Aws::EC2
|
|
47717
47716
|
req.send_request(options)
|
47718
47717
|
end
|
47719
47718
|
|
47720
|
-
# Modifies the specified Verified Access group
|
47719
|
+
# Modifies the specified Amazon Web Services Verified Access group
|
47720
|
+
# policy.
|
47721
47721
|
#
|
47722
47722
|
# @option params [required, String] :verified_access_group_id
|
47723
|
-
# The ID of the
|
47723
|
+
# The ID of the Verified Access group.
|
47724
47724
|
#
|
47725
47725
|
# @option params [required, Boolean] :policy_enabled
|
47726
47726
|
# The status of the Verified Access policy.
|
47727
47727
|
#
|
47728
47728
|
# @option params [String] :policy_document
|
47729
|
-
# The
|
47729
|
+
# The Verified Access policy document.
|
47730
47730
|
#
|
47731
47731
|
# @option params [String] :client_token
|
47732
47732
|
# A unique, case-sensitive token that you provide to ensure idempotency
|
@@ -47775,13 +47775,14 @@ module Aws::EC2
|
|
47775
47775
|
req.send_request(options)
|
47776
47776
|
end
|
47777
47777
|
|
47778
|
-
# Modifies the configuration of the specified
|
47778
|
+
# Modifies the configuration of the specified Amazon Web Services
|
47779
|
+
# Verified Access instance.
|
47779
47780
|
#
|
47780
47781
|
# @option params [required, String] :verified_access_instance_id
|
47781
|
-
# The ID of the
|
47782
|
+
# The ID of the Verified Access instance.
|
47782
47783
|
#
|
47783
47784
|
# @option params [String] :description
|
47784
|
-
# A description for the
|
47785
|
+
# A description for the Verified Access instance.
|
47785
47786
|
#
|
47786
47787
|
# @option params [Boolean] :dry_run
|
47787
47788
|
# Checks whether you have the required permissions for the action,
|
@@ -47843,11 +47844,10 @@ module Aws::EC2
|
|
47843
47844
|
# Services Verified Access instance.
|
47844
47845
|
#
|
47845
47846
|
# @option params [required, String] :verified_access_instance_id
|
47846
|
-
# The ID of the
|
47847
|
+
# The ID of the Verified Access instance.
|
47847
47848
|
#
|
47848
47849
|
# @option params [required, Types::VerifiedAccessLogOptions] :access_logs
|
47849
|
-
# The configuration options for
|
47850
|
-
# instances.
|
47850
|
+
# The configuration options for Verified Access instances.
|
47851
47851
|
#
|
47852
47852
|
# @option params [Boolean] :dry_run
|
47853
47853
|
# Checks whether you have the required permissions for the action,
|
@@ -47926,15 +47926,14 @@ module Aws::EC2
|
|
47926
47926
|
# Verified Access trust provider.
|
47927
47927
|
#
|
47928
47928
|
# @option params [required, String] :verified_access_trust_provider_id
|
47929
|
-
# The ID of the
|
47929
|
+
# The ID of the Verified Access trust provider.
|
47930
47930
|
#
|
47931
47931
|
# @option params [Types::ModifyVerifiedAccessTrustProviderOidcOptions] :oidc_options
|
47932
|
-
# The
|
47933
|
-
#
|
47932
|
+
# The options for an OpenID Connect-compatible user-identity trust
|
47933
|
+
# provider.
|
47934
47934
|
#
|
47935
47935
|
# @option params [String] :description
|
47936
|
-
# A description for the
|
47937
|
-
# provider.
|
47936
|
+
# A description for the Verified Access trust provider.
|
47938
47937
|
#
|
47939
47938
|
# @option params [Boolean] :dry_run
|
47940
47939
|
# Checks whether you have the required permissions for the action,
|
@@ -47963,6 +47962,12 @@ module Aws::EC2
|
|
47963
47962
|
# resp = client.modify_verified_access_trust_provider({
|
47964
47963
|
# verified_access_trust_provider_id: "VerifiedAccessTrustProviderId", # required
|
47965
47964
|
# oidc_options: {
|
47965
|
+
# issuer: "String",
|
47966
|
+
# authorization_endpoint: "String",
|
47967
|
+
# token_endpoint: "String",
|
47968
|
+
# user_info_endpoint: "String",
|
47969
|
+
# client_id: "String",
|
47970
|
+
# client_secret: "ClientSecretType",
|
47966
47971
|
# scope: "String",
|
47967
47972
|
# },
|
47968
47973
|
# description: "String",
|
@@ -56831,7 +56836,7 @@ module Aws::EC2
|
|
56831
56836
|
params: params,
|
56832
56837
|
config: config)
|
56833
56838
|
context[:gem_name] = 'aws-sdk-ec2'
|
56834
|
-
context[:gem_version] = '1.
|
56839
|
+
context[:gem_version] = '1.376.0'
|
56835
56840
|
Seahorse::Client::Request.new(handlers, context)
|
56836
56841
|
end
|
56837
56842
|
|
@@ -308,6 +308,7 @@ module Aws::EC2
|
|
308
308
|
ClientData = Shapes::StructureShape.new(name: 'ClientData')
|
309
309
|
ClientLoginBannerOptions = Shapes::StructureShape.new(name: 'ClientLoginBannerOptions')
|
310
310
|
ClientLoginBannerResponseOptions = Shapes::StructureShape.new(name: 'ClientLoginBannerResponseOptions')
|
311
|
+
ClientSecretType = Shapes::StringShape.new(name: 'ClientSecretType')
|
311
312
|
ClientVpnAssociationId = Shapes::StringShape.new(name: 'ClientVpnAssociationId')
|
312
313
|
ClientVpnAuthentication = Shapes::StructureShape.new(name: 'ClientVpnAuthentication')
|
313
314
|
ClientVpnAuthenticationList = Shapes::ListShape.new(name: 'ClientVpnAuthenticationList')
|
@@ -5121,7 +5122,7 @@ module Aws::EC2
|
|
5121
5122
|
CreateVerifiedAccessTrustProviderOidcOptions.add_member(:token_endpoint, Shapes::ShapeRef.new(shape: String, location_name: "TokenEndpoint"))
|
5122
5123
|
CreateVerifiedAccessTrustProviderOidcOptions.add_member(:user_info_endpoint, Shapes::ShapeRef.new(shape: String, location_name: "UserInfoEndpoint"))
|
5123
5124
|
CreateVerifiedAccessTrustProviderOidcOptions.add_member(:client_id, Shapes::ShapeRef.new(shape: String, location_name: "ClientId"))
|
5124
|
-
CreateVerifiedAccessTrustProviderOidcOptions.add_member(:client_secret, Shapes::ShapeRef.new(shape:
|
5125
|
+
CreateVerifiedAccessTrustProviderOidcOptions.add_member(:client_secret, Shapes::ShapeRef.new(shape: ClientSecretType, location_name: "ClientSecret"))
|
5125
5126
|
CreateVerifiedAccessTrustProviderOidcOptions.add_member(:scope, Shapes::ShapeRef.new(shape: String, location_name: "Scope"))
|
5126
5127
|
CreateVerifiedAccessTrustProviderOidcOptions.struct_class = Types::CreateVerifiedAccessTrustProviderOidcOptions
|
5127
5128
|
|
@@ -7782,7 +7783,7 @@ module Aws::EC2
|
|
7782
7783
|
|
7783
7784
|
DiskImageDescription.add_member(:checksum, Shapes::ShapeRef.new(shape: String, location_name: "checksum"))
|
7784
7785
|
DiskImageDescription.add_member(:format, Shapes::ShapeRef.new(shape: DiskImageFormat, location_name: "format"))
|
7785
|
-
DiskImageDescription.add_member(:import_manifest_url, Shapes::ShapeRef.new(shape:
|
7786
|
+
DiskImageDescription.add_member(:import_manifest_url, Shapes::ShapeRef.new(shape: ImportManifestUrl, location_name: "importManifestUrl"))
|
7786
7787
|
DiskImageDescription.add_member(:size, Shapes::ShapeRef.new(shape: Long, location_name: "size"))
|
7787
7788
|
DiskImageDescription.struct_class = Types::DiskImageDescription
|
7788
7789
|
|
@@ -11188,6 +11189,12 @@ module Aws::EC2
|
|
11188
11189
|
ModifyVerifiedAccessInstanceResult.add_member(:verified_access_instance, Shapes::ShapeRef.new(shape: VerifiedAccessInstance, location_name: "verifiedAccessInstance"))
|
11189
11190
|
ModifyVerifiedAccessInstanceResult.struct_class = Types::ModifyVerifiedAccessInstanceResult
|
11190
11191
|
|
11192
|
+
ModifyVerifiedAccessTrustProviderOidcOptions.add_member(:issuer, Shapes::ShapeRef.new(shape: String, location_name: "Issuer"))
|
11193
|
+
ModifyVerifiedAccessTrustProviderOidcOptions.add_member(:authorization_endpoint, Shapes::ShapeRef.new(shape: String, location_name: "AuthorizationEndpoint"))
|
11194
|
+
ModifyVerifiedAccessTrustProviderOidcOptions.add_member(:token_endpoint, Shapes::ShapeRef.new(shape: String, location_name: "TokenEndpoint"))
|
11195
|
+
ModifyVerifiedAccessTrustProviderOidcOptions.add_member(:user_info_endpoint, Shapes::ShapeRef.new(shape: String, location_name: "UserInfoEndpoint"))
|
11196
|
+
ModifyVerifiedAccessTrustProviderOidcOptions.add_member(:client_id, Shapes::ShapeRef.new(shape: String, location_name: "ClientId"))
|
11197
|
+
ModifyVerifiedAccessTrustProviderOidcOptions.add_member(:client_secret, Shapes::ShapeRef.new(shape: ClientSecretType, location_name: "ClientSecret"))
|
11191
11198
|
ModifyVerifiedAccessTrustProviderOidcOptions.add_member(:scope, Shapes::ShapeRef.new(shape: String, location_name: "Scope"))
|
11192
11199
|
ModifyVerifiedAccessTrustProviderOidcOptions.struct_class = Types::ModifyVerifiedAccessTrustProviderOidcOptions
|
11193
11200
|
|
@@ -11672,7 +11679,7 @@ module Aws::EC2
|
|
11672
11679
|
OidcOptions.add_member(:token_endpoint, Shapes::ShapeRef.new(shape: String, location_name: "tokenEndpoint"))
|
11673
11680
|
OidcOptions.add_member(:user_info_endpoint, Shapes::ShapeRef.new(shape: String, location_name: "userInfoEndpoint"))
|
11674
11681
|
OidcOptions.add_member(:client_id, Shapes::ShapeRef.new(shape: String, location_name: "clientId"))
|
11675
|
-
OidcOptions.add_member(:client_secret, Shapes::ShapeRef.new(shape:
|
11682
|
+
OidcOptions.add_member(:client_secret, Shapes::ShapeRef.new(shape: ClientSecretType, location_name: "clientSecret"))
|
11676
11683
|
OidcOptions.add_member(:scope, Shapes::ShapeRef.new(shape: String, location_name: "scope"))
|
11677
11684
|
OidcOptions.struct_class = Types::OidcOptions
|
11678
11685
|
|