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
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -2758,11 +2758,11 @@ module Aws::EC2
|
|
2758
2758
|
end
|
2759
2759
|
|
2760
2760
|
# @!attribute [rw] verified_access_instance_id
|
2761
|
-
# The ID of the
|
2761
|
+
# The ID of the Verified Access instance.
|
2762
2762
|
# @return [String]
|
2763
2763
|
#
|
2764
2764
|
# @!attribute [rw] verified_access_trust_provider_id
|
2765
|
-
# The ID of the
|
2765
|
+
# The ID of the Verified Access trust provider.
|
2766
2766
|
# @return [String]
|
2767
2767
|
#
|
2768
2768
|
# @!attribute [rw] client_token
|
@@ -2797,11 +2797,11 @@ module Aws::EC2
|
|
2797
2797
|
end
|
2798
2798
|
|
2799
2799
|
# @!attribute [rw] verified_access_trust_provider
|
2800
|
-
# The ID of the
|
2800
|
+
# The ID of the Verified Access trust provider.
|
2801
2801
|
# @return [Types::VerifiedAccessTrustProvider]
|
2802
2802
|
#
|
2803
2803
|
# @!attribute [rw] verified_access_instance
|
2804
|
-
# The ID of the
|
2804
|
+
# The ID of the Verified Access instance.
|
2805
2805
|
# @return [Types::VerifiedAccessInstance]
|
2806
2806
|
#
|
2807
2807
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/AttachVerifiedAccessTrustProviderResult AWS API Documentation
|
@@ -11258,7 +11258,8 @@ module Aws::EC2
|
|
11258
11258
|
include Aws::Structure
|
11259
11259
|
end
|
11260
11260
|
|
11261
|
-
#
|
11261
|
+
# Describes the network interface options when creating an Amazon Web
|
11262
|
+
# Services Verified Access endpoint using the `network-interface` type.
|
11262
11263
|
#
|
11263
11264
|
# @!attribute [rw] network_interface_id
|
11264
11265
|
# The ID of the network interface.
|
@@ -11282,8 +11283,8 @@ module Aws::EC2
|
|
11282
11283
|
include Aws::Structure
|
11283
11284
|
end
|
11284
11285
|
|
11285
|
-
# Describes
|
11286
|
-
# Verified Access endpoint using the `load-balancer` type.
|
11286
|
+
# Describes the load balancer options when creating an Amazon Web
|
11287
|
+
# Services Verified Access endpoint using the `load-balancer` type.
|
11287
11288
|
#
|
11288
11289
|
# @!attribute [rw] protocol
|
11289
11290
|
# The IP protocol.
|
@@ -11317,12 +11318,11 @@ module Aws::EC2
|
|
11317
11318
|
# @return [String]
|
11318
11319
|
#
|
11319
11320
|
# @!attribute [rw] endpoint_type
|
11320
|
-
# The type of
|
11321
|
+
# The type of Verified Access endpoint to create.
|
11321
11322
|
# @return [String]
|
11322
11323
|
#
|
11323
11324
|
# @!attribute [rw] attachment_type
|
11324
|
-
# The
|
11325
|
-
# to.
|
11325
|
+
# The type of attachment.
|
11326
11326
|
# @return [String]
|
11327
11327
|
#
|
11328
11328
|
# @!attribute [rw] domain_certificate_arn
|
@@ -11337,36 +11337,35 @@ module Aws::EC2
|
|
11337
11337
|
# @return [String]
|
11338
11338
|
#
|
11339
11339
|
# @!attribute [rw] endpoint_domain_prefix
|
11340
|
-
# A custom identifier that
|
11340
|
+
# A custom identifier that is prepended to the DNS name that is
|
11341
11341
|
# generated for the endpoint.
|
11342
11342
|
# @return [String]
|
11343
11343
|
#
|
11344
11344
|
# @!attribute [rw] security_group_ids
|
11345
|
-
# The
|
11346
|
-
#
|
11345
|
+
# The IDs of the security groups to associate with the Verified Access
|
11346
|
+
# endpoint.
|
11347
11347
|
# @return [Array<String>]
|
11348
11348
|
#
|
11349
11349
|
# @!attribute [rw] load_balancer_options
|
11350
|
-
# The load balancer details
|
11351
|
-
#
|
11350
|
+
# The load balancer details. This parameter is required if the
|
11351
|
+
# endpoint type is `load-balancer`.
|
11352
11352
|
# @return [Types::CreateVerifiedAccessEndpointLoadBalancerOptions]
|
11353
11353
|
#
|
11354
11354
|
# @!attribute [rw] network_interface_options
|
11355
|
-
# The network interface details
|
11356
|
-
#
|
11355
|
+
# The network interface details. This parameter is required if the
|
11356
|
+
# endpoint type is `network-interface`.
|
11357
11357
|
# @return [Types::CreateVerifiedAccessEndpointEniOptions]
|
11358
11358
|
#
|
11359
11359
|
# @!attribute [rw] description
|
11360
|
-
# A description for the
|
11360
|
+
# A description for the Verified Access endpoint.
|
11361
11361
|
# @return [String]
|
11362
11362
|
#
|
11363
11363
|
# @!attribute [rw] policy_document
|
11364
|
-
# The
|
11364
|
+
# The Verified Access policy document.
|
11365
11365
|
# @return [String]
|
11366
11366
|
#
|
11367
11367
|
# @!attribute [rw] tag_specifications
|
11368
|
-
# The tags to assign to the
|
11369
|
-
# endpoint.
|
11368
|
+
# The tags to assign to the Verified Access endpoint.
|
11370
11369
|
# @return [Array<Types::TagSpecification>]
|
11371
11370
|
#
|
11372
11371
|
# @!attribute [rw] client_token
|
@@ -11411,7 +11410,7 @@ module Aws::EC2
|
|
11411
11410
|
end
|
11412
11411
|
|
11413
11412
|
# @!attribute [rw] verified_access_endpoint
|
11414
|
-
# The ID of the
|
11413
|
+
# The ID of the Verified Access endpoint.
|
11415
11414
|
# @return [Types::VerifiedAccessEndpoint]
|
11416
11415
|
#
|
11417
11416
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessEndpointResult AWS API Documentation
|
@@ -11423,19 +11422,19 @@ module Aws::EC2
|
|
11423
11422
|
end
|
11424
11423
|
|
11425
11424
|
# @!attribute [rw] verified_access_instance_id
|
11426
|
-
# The ID of the
|
11425
|
+
# The ID of the Verified Access instance.
|
11427
11426
|
# @return [String]
|
11428
11427
|
#
|
11429
11428
|
# @!attribute [rw] description
|
11430
|
-
# A description for the
|
11429
|
+
# A description for the Verified Access group.
|
11431
11430
|
# @return [String]
|
11432
11431
|
#
|
11433
11432
|
# @!attribute [rw] policy_document
|
11434
|
-
# The
|
11433
|
+
# The Verified Access policy document.
|
11435
11434
|
# @return [String]
|
11436
11435
|
#
|
11437
11436
|
# @!attribute [rw] tag_specifications
|
11438
|
-
# The tags to assign to the
|
11437
|
+
# The tags to assign to the Verified Access group.
|
11439
11438
|
# @return [Array<Types::TagSpecification>]
|
11440
11439
|
#
|
11441
11440
|
# @!attribute [rw] client_token
|
@@ -11484,12 +11483,11 @@ module Aws::EC2
|
|
11484
11483
|
end
|
11485
11484
|
|
11486
11485
|
# @!attribute [rw] description
|
11487
|
-
# A description for the
|
11486
|
+
# A description for the Verified Access instance.
|
11488
11487
|
# @return [String]
|
11489
11488
|
#
|
11490
11489
|
# @!attribute [rw] tag_specifications
|
11491
|
-
# The tags to assign to the
|
11492
|
-
# instance.
|
11490
|
+
# The tags to assign to the Verified Access instance.
|
11493
11491
|
# @return [Array<Types::TagSpecification>]
|
11494
11492
|
#
|
11495
11493
|
# @!attribute [rw] client_token
|
@@ -11524,7 +11522,7 @@ module Aws::EC2
|
|
11524
11522
|
end
|
11525
11523
|
|
11526
11524
|
# @!attribute [rw] verified_access_instance
|
11527
|
-
# The ID of the
|
11525
|
+
# The ID of the Verified Access instance.
|
11528
11526
|
# @return [Types::VerifiedAccessInstance]
|
11529
11527
|
#
|
11530
11528
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessInstanceResult AWS API Documentation
|
@@ -11535,7 +11533,8 @@ module Aws::EC2
|
|
11535
11533
|
include Aws::Structure
|
11536
11534
|
end
|
11537
11535
|
|
11538
|
-
#
|
11536
|
+
# Describes the options when creating an Amazon Web Services Verified
|
11537
|
+
# Access trust provider using the `device` type.
|
11539
11538
|
#
|
11540
11539
|
# @!attribute [rw] tenant_id
|
11541
11540
|
# The ID of the tenant application with the device-identity provider.
|
@@ -11549,7 +11548,8 @@ module Aws::EC2
|
|
11549
11548
|
include Aws::Structure
|
11550
11549
|
end
|
11551
11550
|
|
11552
|
-
#
|
11551
|
+
# Describes the options when creating an Amazon Web Services Verified
|
11552
|
+
# Access trust provider using the `user` type.
|
11553
11553
|
#
|
11554
11554
|
# @!attribute [rw] issuer
|
11555
11555
|
# The OIDC issuer.
|
@@ -11591,29 +11591,33 @@ module Aws::EC2
|
|
11591
11591
|
:client_id,
|
11592
11592
|
:client_secret,
|
11593
11593
|
:scope)
|
11594
|
-
SENSITIVE = []
|
11594
|
+
SENSITIVE = [:client_secret]
|
11595
11595
|
include Aws::Structure
|
11596
11596
|
end
|
11597
11597
|
|
11598
11598
|
# @!attribute [rw] trust_provider_type
|
11599
|
-
# The type of trust provider
|
11599
|
+
# The type of trust provider.
|
11600
11600
|
# @return [String]
|
11601
11601
|
#
|
11602
11602
|
# @!attribute [rw] user_trust_provider_type
|
11603
|
-
# The type of user-based trust provider.
|
11603
|
+
# The type of user-based trust provider. This parameter is required
|
11604
|
+
# when the provider type is `user`.
|
11604
11605
|
# @return [String]
|
11605
11606
|
#
|
11606
11607
|
# @!attribute [rw] device_trust_provider_type
|
11607
|
-
# The type of device-based trust provider.
|
11608
|
+
# The type of device-based trust provider. This parameter is required
|
11609
|
+
# when the provider type is `device`.
|
11608
11610
|
# @return [String]
|
11609
11611
|
#
|
11610
11612
|
# @!attribute [rw] oidc_options
|
11611
|
-
# The
|
11612
|
-
#
|
11613
|
+
# The options for a OpenID Connect-compatible user-identity trust
|
11614
|
+
# provider. This parameter is required when the provider type is
|
11615
|
+
# `user`.
|
11613
11616
|
# @return [Types::CreateVerifiedAccessTrustProviderOidcOptions]
|
11614
11617
|
#
|
11615
11618
|
# @!attribute [rw] device_options
|
11616
|
-
# The options for device
|
11619
|
+
# The options for a device-based trust provider. This parameter is
|
11620
|
+
# required when the provider type is `device`.
|
11617
11621
|
# @return [Types::CreateVerifiedAccessTrustProviderDeviceOptions]
|
11618
11622
|
#
|
11619
11623
|
# @!attribute [rw] policy_reference_name
|
@@ -11621,13 +11625,11 @@ module Aws::EC2
|
|
11621
11625
|
# @return [String]
|
11622
11626
|
#
|
11623
11627
|
# @!attribute [rw] description
|
11624
|
-
# A description for the
|
11625
|
-
# provider.
|
11628
|
+
# A description for the Verified Access trust provider.
|
11626
11629
|
# @return [String]
|
11627
11630
|
#
|
11628
11631
|
# @!attribute [rw] tag_specifications
|
11629
|
-
# The tags to assign to the
|
11630
|
-
# provider.
|
11632
|
+
# The tags to assign to the Verified Access trust provider.
|
11631
11633
|
# @return [Array<Types::TagSpecification>]
|
11632
11634
|
#
|
11633
11635
|
# @!attribute [rw] client_token
|
@@ -11668,7 +11670,7 @@ module Aws::EC2
|
|
11668
11670
|
end
|
11669
11671
|
|
11670
11672
|
# @!attribute [rw] verified_access_trust_provider
|
11671
|
-
# The ID of the
|
11673
|
+
# The ID of the Verified Access trust provider.
|
11672
11674
|
# @return [Types::VerifiedAccessTrustProvider]
|
11673
11675
|
#
|
11674
11676
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVerifiedAccessTrustProviderResult AWS API Documentation
|
@@ -14773,7 +14775,7 @@ module Aws::EC2
|
|
14773
14775
|
end
|
14774
14776
|
|
14775
14777
|
# @!attribute [rw] verified_access_endpoint_id
|
14776
|
-
# The ID of the
|
14778
|
+
# The ID of the Verified Access endpoint.
|
14777
14779
|
# @return [String]
|
14778
14780
|
#
|
14779
14781
|
# @!attribute [rw] client_token
|
@@ -14807,7 +14809,7 @@ module Aws::EC2
|
|
14807
14809
|
end
|
14808
14810
|
|
14809
14811
|
# @!attribute [rw] verified_access_endpoint
|
14810
|
-
# The ID of the
|
14812
|
+
# The ID of the Verified Access endpoint.
|
14811
14813
|
# @return [Types::VerifiedAccessEndpoint]
|
14812
14814
|
#
|
14813
14815
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVerifiedAccessEndpointResult AWS API Documentation
|
@@ -14819,7 +14821,7 @@ module Aws::EC2
|
|
14819
14821
|
end
|
14820
14822
|
|
14821
14823
|
# @!attribute [rw] verified_access_group_id
|
14822
|
-
# The ID of the
|
14824
|
+
# The ID of the Verified Access group.
|
14823
14825
|
# @return [String]
|
14824
14826
|
#
|
14825
14827
|
# @!attribute [rw] client_token
|
@@ -14853,7 +14855,7 @@ module Aws::EC2
|
|
14853
14855
|
end
|
14854
14856
|
|
14855
14857
|
# @!attribute [rw] verified_access_group
|
14856
|
-
# The ID of the
|
14858
|
+
# The ID of the Verified Access group.
|
14857
14859
|
# @return [Types::VerifiedAccessGroup]
|
14858
14860
|
#
|
14859
14861
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVerifiedAccessGroupResult AWS API Documentation
|
@@ -14865,7 +14867,7 @@ module Aws::EC2
|
|
14865
14867
|
end
|
14866
14868
|
|
14867
14869
|
# @!attribute [rw] verified_access_instance_id
|
14868
|
-
# The ID of the
|
14870
|
+
# The ID of the Verified Access instance.
|
14869
14871
|
# @return [String]
|
14870
14872
|
#
|
14871
14873
|
# @!attribute [rw] dry_run
|
@@ -14899,7 +14901,7 @@ module Aws::EC2
|
|
14899
14901
|
end
|
14900
14902
|
|
14901
14903
|
# @!attribute [rw] verified_access_instance
|
14902
|
-
# The ID of the
|
14904
|
+
# The ID of the Verified Access instance.
|
14903
14905
|
# @return [Types::VerifiedAccessInstance]
|
14904
14906
|
#
|
14905
14907
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVerifiedAccessInstanceResult AWS API Documentation
|
@@ -14911,7 +14913,7 @@ module Aws::EC2
|
|
14911
14913
|
end
|
14912
14914
|
|
14913
14915
|
# @!attribute [rw] verified_access_trust_provider_id
|
14914
|
-
# The ID of the
|
14916
|
+
# The ID of the Verified Access trust provider.
|
14915
14917
|
# @return [String]
|
14916
14918
|
#
|
14917
14919
|
# @!attribute [rw] dry_run
|
@@ -14945,7 +14947,7 @@ module Aws::EC2
|
|
14945
14947
|
end
|
14946
14948
|
|
14947
14949
|
# @!attribute [rw] verified_access_trust_provider
|
14948
|
-
# The ID of the
|
14950
|
+
# The ID of the Verified Access trust provider.
|
14949
14951
|
# @return [Types::VerifiedAccessTrustProvider]
|
14950
14952
|
#
|
14951
14953
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DeleteVerifiedAccessTrustProviderResult AWS API Documentation
|
@@ -25131,15 +25133,15 @@ module Aws::EC2
|
|
25131
25133
|
end
|
25132
25134
|
|
25133
25135
|
# @!attribute [rw] verified_access_endpoint_ids
|
25134
|
-
# The ID of the
|
25136
|
+
# The ID of the Verified Access endpoint.
|
25135
25137
|
# @return [Array<String>]
|
25136
25138
|
#
|
25137
25139
|
# @!attribute [rw] verified_access_instance_id
|
25138
|
-
# The ID of the
|
25140
|
+
# The ID of the Verified Access instance.
|
25139
25141
|
# @return [String]
|
25140
25142
|
#
|
25141
25143
|
# @!attribute [rw] verified_access_group_id
|
25142
|
-
# The ID of the
|
25144
|
+
# The ID of the Verified Access group.
|
25143
25145
|
# @return [String]
|
25144
25146
|
#
|
25145
25147
|
# @!attribute [rw] max_results
|
@@ -25178,7 +25180,7 @@ module Aws::EC2
|
|
25178
25180
|
end
|
25179
25181
|
|
25180
25182
|
# @!attribute [rw] verified_access_endpoints
|
25181
|
-
# The ID of the
|
25183
|
+
# The ID of the Verified Access endpoint.
|
25182
25184
|
# @return [Array<Types::VerifiedAccessEndpoint>]
|
25183
25185
|
#
|
25184
25186
|
# @!attribute [rw] next_token
|
@@ -25196,11 +25198,11 @@ module Aws::EC2
|
|
25196
25198
|
end
|
25197
25199
|
|
25198
25200
|
# @!attribute [rw] verified_access_group_ids
|
25199
|
-
# The ID of the
|
25201
|
+
# The ID of the Verified Access groups.
|
25200
25202
|
# @return [Array<String>]
|
25201
25203
|
#
|
25202
25204
|
# @!attribute [rw] verified_access_instance_id
|
25203
|
-
# The ID of the
|
25205
|
+
# The ID of the Verified Access instance.
|
25204
25206
|
# @return [String]
|
25205
25207
|
#
|
25206
25208
|
# @!attribute [rw] max_results
|
@@ -25256,7 +25258,7 @@ module Aws::EC2
|
|
25256
25258
|
end
|
25257
25259
|
|
25258
25260
|
# @!attribute [rw] verified_access_instance_ids
|
25259
|
-
# The IDs of the
|
25261
|
+
# The IDs of the Verified Access instances.
|
25260
25262
|
# @return [Array<String>]
|
25261
25263
|
#
|
25262
25264
|
# @!attribute [rw] max_results
|
@@ -25293,8 +25295,7 @@ module Aws::EC2
|
|
25293
25295
|
end
|
25294
25296
|
|
25295
25297
|
# @!attribute [rw] logging_configurations
|
25296
|
-
# The current logging configuration for the
|
25297
|
-
# Verified Access instances.
|
25298
|
+
# The current logging configuration for the Verified Access instances.
|
25298
25299
|
# @return [Array<Types::VerifiedAccessInstanceLoggingConfiguration>]
|
25299
25300
|
#
|
25300
25301
|
# @!attribute [rw] next_token
|
@@ -25312,7 +25313,7 @@ module Aws::EC2
|
|
25312
25313
|
end
|
25313
25314
|
|
25314
25315
|
# @!attribute [rw] verified_access_instance_ids
|
25315
|
-
# The IDs of the
|
25316
|
+
# The IDs of the Verified Access instances.
|
25316
25317
|
# @return [Array<String>]
|
25317
25318
|
#
|
25318
25319
|
# @!attribute [rw] max_results
|
@@ -25349,7 +25350,7 @@ module Aws::EC2
|
|
25349
25350
|
end
|
25350
25351
|
|
25351
25352
|
# @!attribute [rw] verified_access_instances
|
25352
|
-
# The IDs of the
|
25353
|
+
# The IDs of the Verified Access instances.
|
25353
25354
|
# @return [Array<Types::VerifiedAccessInstance>]
|
25354
25355
|
#
|
25355
25356
|
# @!attribute [rw] next_token
|
@@ -25367,7 +25368,7 @@ module Aws::EC2
|
|
25367
25368
|
end
|
25368
25369
|
|
25369
25370
|
# @!attribute [rw] verified_access_trust_provider_ids
|
25370
|
-
# The IDs of the
|
25371
|
+
# The IDs of the Verified Access trust providers.
|
25371
25372
|
# @return [Array<String>]
|
25372
25373
|
#
|
25373
25374
|
# @!attribute [rw] max_results
|
@@ -25404,7 +25405,7 @@ module Aws::EC2
|
|
25404
25405
|
end
|
25405
25406
|
|
25406
25407
|
# @!attribute [rw] verified_access_trust_providers
|
25407
|
-
# The IDs of the
|
25408
|
+
# The IDs of the Verified Access trust providers.
|
25408
25409
|
# @return [Array<Types::VerifiedAccessTrustProvider>]
|
25409
25410
|
#
|
25410
25411
|
# @!attribute [rw] next_token
|
@@ -26900,11 +26901,11 @@ module Aws::EC2
|
|
26900
26901
|
end
|
26901
26902
|
|
26902
26903
|
# @!attribute [rw] verified_access_instance_id
|
26903
|
-
# The ID of the
|
26904
|
+
# The ID of the Verified Access instance.
|
26904
26905
|
# @return [String]
|
26905
26906
|
#
|
26906
26907
|
# @!attribute [rw] verified_access_trust_provider_id
|
26907
|
-
# The ID of the
|
26908
|
+
# The ID of the Verified Access trust provider.
|
26908
26909
|
# @return [String]
|
26909
26910
|
#
|
26910
26911
|
# @!attribute [rw] client_token
|
@@ -26939,11 +26940,11 @@ module Aws::EC2
|
|
26939
26940
|
end
|
26940
26941
|
|
26941
26942
|
# @!attribute [rw] verified_access_trust_provider
|
26942
|
-
# The ID of the
|
26943
|
+
# The ID of the Verified Access trust provider.
|
26943
26944
|
# @return [Types::VerifiedAccessTrustProvider]
|
26944
26945
|
#
|
26945
26946
|
# @!attribute [rw] verified_access_instance
|
26946
|
-
# The ID of the
|
26947
|
+
# The ID of the Verified Access instance.
|
26947
26948
|
# @return [Types::VerifiedAccessInstance]
|
26948
26949
|
#
|
26949
26950
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DetachVerifiedAccessTrustProviderResult AWS API Documentation
|
@@ -27025,8 +27026,8 @@ module Aws::EC2
|
|
27025
27026
|
include Aws::Structure
|
27026
27027
|
end
|
27027
27028
|
|
27028
|
-
#
|
27029
|
-
# based trust provider.
|
27029
|
+
# Describes the options for an Amazon Web Services Verified Access
|
27030
|
+
# device-identity based trust provider.
|
27030
27031
|
#
|
27031
27032
|
# @!attribute [rw] tenant_id
|
27032
27033
|
# The ID of the tenant application with the device-identity provider.
|
@@ -28292,7 +28293,7 @@ module Aws::EC2
|
|
28292
28293
|
:format,
|
28293
28294
|
:import_manifest_url,
|
28294
28295
|
:size)
|
28295
|
-
SENSITIVE = []
|
28296
|
+
SENSITIVE = [:import_manifest_url]
|
28296
28297
|
include Aws::Structure
|
28297
28298
|
end
|
28298
28299
|
|
@@ -34125,7 +34126,7 @@ module Aws::EC2
|
|
34125
34126
|
end
|
34126
34127
|
|
34127
34128
|
# @!attribute [rw] verified_access_endpoint_id
|
34128
|
-
# The ID of the
|
34129
|
+
# The ID of the Verified Access endpoint.
|
34129
34130
|
# @return [String]
|
34130
34131
|
#
|
34131
34132
|
# @!attribute [rw] dry_run
|
@@ -34149,7 +34150,7 @@ module Aws::EC2
|
|
34149
34150
|
# @return [Boolean]
|
34150
34151
|
#
|
34151
34152
|
# @!attribute [rw] policy_document
|
34152
|
-
# The
|
34153
|
+
# The Verified Access policy document.
|
34153
34154
|
# @return [String]
|
34154
34155
|
#
|
34155
34156
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetVerifiedAccessEndpointPolicyResult AWS API Documentation
|
@@ -34162,7 +34163,7 @@ module Aws::EC2
|
|
34162
34163
|
end
|
34163
34164
|
|
34164
34165
|
# @!attribute [rw] verified_access_group_id
|
34165
|
-
# The ID of the
|
34166
|
+
# The ID of the Verified Access group.
|
34166
34167
|
# @return [String]
|
34167
34168
|
#
|
34168
34169
|
# @!attribute [rw] dry_run
|
@@ -34186,7 +34187,7 @@ module Aws::EC2
|
|
34186
34187
|
# @return [Boolean]
|
34187
34188
|
#
|
34188
34189
|
# @!attribute [rw] policy_document
|
34189
|
-
# The
|
34190
|
+
# The Verified Access policy document.
|
34190
34191
|
# @return [String]
|
34191
34192
|
#
|
34192
34193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/GetVerifiedAccessGroupPolicyResult AWS API Documentation
|
@@ -46174,7 +46175,8 @@ module Aws::EC2
|
|
46174
46175
|
include Aws::Structure
|
46175
46176
|
end
|
46176
46177
|
|
46177
|
-
#
|
46178
|
+
# Describes the options when modifying a Verified Access endpoint with
|
46179
|
+
# the `network-interface` type.
|
46178
46180
|
#
|
46179
46181
|
# @!attribute [rw] protocol
|
46180
46182
|
# The IP protocol.
|
@@ -46219,7 +46221,7 @@ module Aws::EC2
|
|
46219
46221
|
end
|
46220
46222
|
|
46221
46223
|
# @!attribute [rw] verified_access_endpoint_id
|
46222
|
-
# The ID of the
|
46224
|
+
# The ID of the Verified Access endpoint.
|
46223
46225
|
# @return [String]
|
46224
46226
|
#
|
46225
46227
|
# @!attribute [rw] policy_enabled
|
@@ -46227,7 +46229,7 @@ module Aws::EC2
|
|
46227
46229
|
# @return [Boolean]
|
46228
46230
|
#
|
46229
46231
|
# @!attribute [rw] policy_document
|
46230
|
-
# The
|
46232
|
+
# The Verified Access policy document.
|
46231
46233
|
# @return [String]
|
46232
46234
|
#
|
46233
46235
|
# @!attribute [rw] client_token
|
@@ -46267,7 +46269,7 @@ module Aws::EC2
|
|
46267
46269
|
# @return [Boolean]
|
46268
46270
|
#
|
46269
46271
|
# @!attribute [rw] policy_document
|
46270
|
-
# The
|
46272
|
+
# The Verified Access policy document.
|
46271
46273
|
# @return [String]
|
46272
46274
|
#
|
46273
46275
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessEndpointPolicyResult AWS API Documentation
|
@@ -46280,16 +46282,16 @@ module Aws::EC2
|
|
46280
46282
|
end
|
46281
46283
|
|
46282
46284
|
# @!attribute [rw] verified_access_endpoint_id
|
46283
|
-
# The ID of the
|
46285
|
+
# The ID of the Verified Access endpoint.
|
46284
46286
|
# @return [String]
|
46285
46287
|
#
|
46286
46288
|
# @!attribute [rw] verified_access_group_id
|
46287
|
-
# The ID of the
|
46289
|
+
# The ID of the Verified Access group.
|
46288
46290
|
# @return [String]
|
46289
46291
|
#
|
46290
46292
|
# @!attribute [rw] load_balancer_options
|
46291
|
-
# The load balancer details if creating the
|
46292
|
-
#
|
46293
|
+
# The load balancer details if creating the Verified Access endpoint
|
46294
|
+
# as `load-balancer`type.
|
46293
46295
|
# @return [Types::ModifyVerifiedAccessEndpointLoadBalancerOptions]
|
46294
46296
|
#
|
46295
46297
|
# @!attribute [rw] network_interface_options
|
@@ -46297,7 +46299,7 @@ module Aws::EC2
|
|
46297
46299
|
# @return [Types::ModifyVerifiedAccessEndpointEniOptions]
|
46298
46300
|
#
|
46299
46301
|
# @!attribute [rw] description
|
46300
|
-
# A description for the
|
46302
|
+
# A description for the Verified Access endpoint.
|
46301
46303
|
# @return [String]
|
46302
46304
|
#
|
46303
46305
|
# @!attribute [rw] client_token
|
@@ -46335,7 +46337,7 @@ module Aws::EC2
|
|
46335
46337
|
end
|
46336
46338
|
|
46337
46339
|
# @!attribute [rw] verified_access_endpoint
|
46338
|
-
# The
|
46340
|
+
# The Verified Access endpoint details.
|
46339
46341
|
# @return [Types::VerifiedAccessEndpoint]
|
46340
46342
|
#
|
46341
46343
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessEndpointResult AWS API Documentation
|
@@ -46347,7 +46349,7 @@ module Aws::EC2
|
|
46347
46349
|
end
|
46348
46350
|
|
46349
46351
|
# @!attribute [rw] verified_access_group_id
|
46350
|
-
# The ID of the
|
46352
|
+
# The ID of the Verified Access group.
|
46351
46353
|
# @return [String]
|
46352
46354
|
#
|
46353
46355
|
# @!attribute [rw] policy_enabled
|
@@ -46355,7 +46357,7 @@ module Aws::EC2
|
|
46355
46357
|
# @return [Boolean]
|
46356
46358
|
#
|
46357
46359
|
# @!attribute [rw] policy_document
|
46358
|
-
# The
|
46360
|
+
# The Verified Access policy document.
|
46359
46361
|
# @return [String]
|
46360
46362
|
#
|
46361
46363
|
# @!attribute [rw] client_token
|
@@ -46395,7 +46397,7 @@ module Aws::EC2
|
|
46395
46397
|
# @return [Boolean]
|
46396
46398
|
#
|
46397
46399
|
# @!attribute [rw] policy_document
|
46398
|
-
# The
|
46400
|
+
# The Verified Access policy document.
|
46399
46401
|
# @return [String]
|
46400
46402
|
#
|
46401
46403
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessGroupPolicyResult AWS API Documentation
|
@@ -46408,15 +46410,15 @@ module Aws::EC2
|
|
46408
46410
|
end
|
46409
46411
|
|
46410
46412
|
# @!attribute [rw] verified_access_group_id
|
46411
|
-
# The ID of the
|
46413
|
+
# The ID of the Verified Access group.
|
46412
46414
|
# @return [String]
|
46413
46415
|
#
|
46414
46416
|
# @!attribute [rw] verified_access_instance_id
|
46415
|
-
# The ID of the
|
46417
|
+
# The ID of the Verified Access instance.
|
46416
46418
|
# @return [String]
|
46417
46419
|
#
|
46418
46420
|
# @!attribute [rw] description
|
46419
|
-
# A description for the
|
46421
|
+
# A description for the Verified Access group.
|
46420
46422
|
# @return [String]
|
46421
46423
|
#
|
46422
46424
|
# @!attribute [rw] client_token
|
@@ -46452,7 +46454,7 @@ module Aws::EC2
|
|
46452
46454
|
end
|
46453
46455
|
|
46454
46456
|
# @!attribute [rw] verified_access_group
|
46455
|
-
# Details of
|
46457
|
+
# Details of Verified Access group.
|
46456
46458
|
# @return [Types::VerifiedAccessGroup]
|
46457
46459
|
#
|
46458
46460
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessGroupResult AWS API Documentation
|
@@ -46464,12 +46466,11 @@ module Aws::EC2
|
|
46464
46466
|
end
|
46465
46467
|
|
46466
46468
|
# @!attribute [rw] verified_access_instance_id
|
46467
|
-
# The ID of the
|
46469
|
+
# The ID of the Verified Access instance.
|
46468
46470
|
# @return [String]
|
46469
46471
|
#
|
46470
46472
|
# @!attribute [rw] access_logs
|
46471
|
-
# The configuration options for
|
46472
|
-
# instances.
|
46473
|
+
# The configuration options for Verified Access instances.
|
46473
46474
|
# @return [Types::VerifiedAccessLogOptions]
|
46474
46475
|
#
|
46475
46476
|
# @!attribute [rw] dry_run
|
@@ -46504,8 +46505,7 @@ module Aws::EC2
|
|
46504
46505
|
end
|
46505
46506
|
|
46506
46507
|
# @!attribute [rw] logging_configuration
|
46507
|
-
# The logging configuration for
|
46508
|
-
# instance.
|
46508
|
+
# The logging configuration for the Verified Access instance.
|
46509
46509
|
# @return [Types::VerifiedAccessInstanceLoggingConfiguration]
|
46510
46510
|
#
|
46511
46511
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessInstanceLoggingConfigurationResult AWS API Documentation
|
@@ -46517,11 +46517,11 @@ module Aws::EC2
|
|
46517
46517
|
end
|
46518
46518
|
|
46519
46519
|
# @!attribute [rw] verified_access_instance_id
|
46520
|
-
# The ID of the
|
46520
|
+
# The ID of the Verified Access instance.
|
46521
46521
|
# @return [String]
|
46522
46522
|
#
|
46523
46523
|
# @!attribute [rw] description
|
46524
|
-
# A description for the
|
46524
|
+
# A description for the Verified Access instance.
|
46525
46525
|
# @return [String]
|
46526
46526
|
#
|
46527
46527
|
# @!attribute [rw] dry_run
|
@@ -46556,7 +46556,7 @@ module Aws::EC2
|
|
46556
46556
|
end
|
46557
46557
|
|
46558
46558
|
# @!attribute [rw] verified_access_instance
|
46559
|
-
# The ID of the
|
46559
|
+
# The ID of the Verified Access instance.
|
46560
46560
|
# @return [Types::VerifiedAccessInstance]
|
46561
46561
|
#
|
46562
46562
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessInstanceResult AWS API Documentation
|
@@ -46567,8 +46567,31 @@ module Aws::EC2
|
|
46567
46567
|
include Aws::Structure
|
46568
46568
|
end
|
46569
46569
|
|
46570
|
-
#
|
46571
|
-
#
|
46570
|
+
# Options for an OpenID Connect-compatible user-identity trust provider.
|
46571
|
+
#
|
46572
|
+
# @!attribute [rw] issuer
|
46573
|
+
# The OIDC issuer.
|
46574
|
+
# @return [String]
|
46575
|
+
#
|
46576
|
+
# @!attribute [rw] authorization_endpoint
|
46577
|
+
# The OIDC authorization endpoint.
|
46578
|
+
# @return [String]
|
46579
|
+
#
|
46580
|
+
# @!attribute [rw] token_endpoint
|
46581
|
+
# The OIDC token endpoint.
|
46582
|
+
# @return [String]
|
46583
|
+
#
|
46584
|
+
# @!attribute [rw] user_info_endpoint
|
46585
|
+
# The OIDC user info endpoint.
|
46586
|
+
# @return [String]
|
46587
|
+
#
|
46588
|
+
# @!attribute [rw] client_id
|
46589
|
+
# The client identifier.
|
46590
|
+
# @return [String]
|
46591
|
+
#
|
46592
|
+
# @!attribute [rw] client_secret
|
46593
|
+
# The client secret.
|
46594
|
+
# @return [String]
|
46572
46595
|
#
|
46573
46596
|
# @!attribute [rw] scope
|
46574
46597
|
# OpenID Connect (OIDC) scopes are used by an application during
|
@@ -46579,23 +46602,28 @@ module Aws::EC2
|
|
46579
46602
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessTrustProviderOidcOptions AWS API Documentation
|
46580
46603
|
#
|
46581
46604
|
class ModifyVerifiedAccessTrustProviderOidcOptions < Struct.new(
|
46605
|
+
:issuer,
|
46606
|
+
:authorization_endpoint,
|
46607
|
+
:token_endpoint,
|
46608
|
+
:user_info_endpoint,
|
46609
|
+
:client_id,
|
46610
|
+
:client_secret,
|
46582
46611
|
:scope)
|
46583
|
-
SENSITIVE = []
|
46612
|
+
SENSITIVE = [:client_secret]
|
46584
46613
|
include Aws::Structure
|
46585
46614
|
end
|
46586
46615
|
|
46587
46616
|
# @!attribute [rw] verified_access_trust_provider_id
|
46588
|
-
# The ID of the
|
46617
|
+
# The ID of the Verified Access trust provider.
|
46589
46618
|
# @return [String]
|
46590
46619
|
#
|
46591
46620
|
# @!attribute [rw] oidc_options
|
46592
|
-
# The
|
46593
|
-
#
|
46621
|
+
# The options for an OpenID Connect-compatible user-identity trust
|
46622
|
+
# provider.
|
46594
46623
|
# @return [Types::ModifyVerifiedAccessTrustProviderOidcOptions]
|
46595
46624
|
#
|
46596
46625
|
# @!attribute [rw] description
|
46597
|
-
# A description for the
|
46598
|
-
# provider.
|
46626
|
+
# A description for the Verified Access trust provider.
|
46599
46627
|
# @return [String]
|
46600
46628
|
#
|
46601
46629
|
# @!attribute [rw] dry_run
|
@@ -46631,7 +46659,7 @@ module Aws::EC2
|
|
46631
46659
|
end
|
46632
46660
|
|
46633
46661
|
# @!attribute [rw] verified_access_trust_provider
|
46634
|
-
# The ID of the
|
46662
|
+
# The ID of the Verified Access trust provider.
|
46635
46663
|
# @return [Types::VerifiedAccessTrustProvider]
|
46636
46664
|
#
|
46637
46665
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ModifyVerifiedAccessTrustProviderResult AWS API Documentation
|
@@ -48977,7 +49005,8 @@ module Aws::EC2
|
|
48977
49005
|
include Aws::Structure
|
48978
49006
|
end
|
48979
49007
|
|
48980
|
-
#
|
49008
|
+
# Describes the options for an OpenID Connect-compatible user-identity
|
49009
|
+
# trust provider.
|
48981
49010
|
#
|
48982
49011
|
# @!attribute [rw] issuer
|
48983
49012
|
# The OIDC issuer.
|
@@ -49017,7 +49046,7 @@ module Aws::EC2
|
|
49017
49046
|
:client_id,
|
49018
49047
|
:client_secret,
|
49019
49048
|
:scope)
|
49020
|
-
SENSITIVE = []
|
49049
|
+
SENSITIVE = [:client_secret]
|
49021
49050
|
include Aws::Structure
|
49022
49051
|
end
|
49023
49052
|
|
@@ -62992,12 +63021,12 @@ module Aws::EC2
|
|
62992
63021
|
# @return [String]
|
62993
63022
|
#
|
62994
63023
|
# @!attribute [rw] oidc_options
|
62995
|
-
# The
|
62996
|
-
#
|
63024
|
+
# The options for an OpenID Connect-compatible user-identity trust
|
63025
|
+
# provider.
|
62997
63026
|
# @return [Types::OidcOptions]
|
62998
63027
|
#
|
62999
63028
|
# @!attribute [rw] device_options
|
63000
|
-
# The options for device-identity
|
63029
|
+
# The options for device-identity trust provider.
|
63001
63030
|
# @return [Types::DeviceOptions]
|
63002
63031
|
#
|
63003
63032
|
# @!attribute [rw] policy_reference_name
|