aws-sdk-ec2 1.83.0 → 1.84.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/lib/aws-sdk-ec2.rb +1 -1
- data/lib/aws-sdk-ec2/client.rb +47 -3
- data/lib/aws-sdk-ec2/client_api.rb +22 -9
- data/lib/aws-sdk-ec2/types.rb +53 -5
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: d08d8f9954fc79d1540b4a230b97e792b434b18d
|
4
|
+
data.tar.gz: 22910561e40e6a21f90711aa05ec5bfb331dd84d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: fcbf6bc2f23ce01ca6ee07b500499bacd94d622753befd576a490e7d4b42cc96581e5cce171ac63e74e1e65aee2a4eb5e886aba27b1ec1f45dfb832c2e0c948d
|
7
|
+
data.tar.gz: ec3d9afa33828f156cc19b8385ec5b6869af931b982915d4e5f5f60c57e17eda89e0e7ee9a9acc7ef6190941bec7dae34de3d0b9941c94bf982e44d0380f3fc6
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -7586,6 +7586,9 @@ module Aws::EC2
|
|
7586
7586
|
# resp.vpc_endpoint.dns_entries[0].dns_name #=> String
|
7587
7587
|
# resp.vpc_endpoint.dns_entries[0].hosted_zone_id #=> String
|
7588
7588
|
# resp.vpc_endpoint.creation_timestamp #=> Time
|
7589
|
+
# resp.vpc_endpoint.tags #=> Array
|
7590
|
+
# resp.vpc_endpoint.tags[0].key #=> String
|
7591
|
+
# resp.vpc_endpoint.tags[0].value #=> String
|
7589
7592
|
# resp.client_token #=> String
|
7590
7593
|
#
|
7591
7594
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcEndpoint AWS API Documentation
|
@@ -7742,6 +7745,9 @@ module Aws::EC2
|
|
7742
7745
|
# resp.service_configuration.base_endpoint_dns_names #=> Array
|
7743
7746
|
# resp.service_configuration.base_endpoint_dns_names[0] #=> String
|
7744
7747
|
# resp.service_configuration.private_dns_name #=> String
|
7748
|
+
# resp.service_configuration.tags #=> Array
|
7749
|
+
# resp.service_configuration.tags[0].key #=> String
|
7750
|
+
# resp.service_configuration.tags[0].value #=> String
|
7745
7751
|
# resp.client_token #=> String
|
7746
7752
|
#
|
7747
7753
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateVpcEndpointServiceConfiguration AWS API Documentation
|
@@ -18439,7 +18445,7 @@ module Aws::EC2
|
|
18439
18445
|
# resp = client.describe_stale_security_groups({
|
18440
18446
|
# dry_run: false,
|
18441
18447
|
# max_results: 1,
|
18442
|
-
# next_token: "
|
18448
|
+
# next_token: "DescribeStaleSecurityGroupsNextToken",
|
18443
18449
|
# vpc_id: "String", # required
|
18444
18450
|
# })
|
18445
18451
|
#
|
@@ -20122,6 +20128,16 @@ module Aws::EC2
|
|
20122
20128
|
# * `service-state` - The state of the service (`Pending` \| `Available`
|
20123
20129
|
# \| `Deleting` \| `Deleted` \| `Failed`).
|
20124
20130
|
#
|
20131
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
20132
|
+
# the resource. Use the tag key in the filter name and the tag value
|
20133
|
+
# as the filter value. For example, to find all resources that have a
|
20134
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
20135
|
+
# for the filter name and `TeamA` for the filter value.
|
20136
|
+
#
|
20137
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
20138
|
+
# filter to find all resources assigned a tag with a specific key,
|
20139
|
+
# regardless of the tag value.
|
20140
|
+
#
|
20125
20141
|
# @option params [Integer] :max_results
|
20126
20142
|
# The maximum number of results to return for the request in a single
|
20127
20143
|
# page. The remaining results of the initial request can be seen by
|
@@ -20169,6 +20185,9 @@ module Aws::EC2
|
|
20169
20185
|
# resp.service_configurations[0].base_endpoint_dns_names #=> Array
|
20170
20186
|
# resp.service_configurations[0].base_endpoint_dns_names[0] #=> String
|
20171
20187
|
# resp.service_configurations[0].private_dns_name #=> String
|
20188
|
+
# resp.service_configurations[0].tags #=> Array
|
20189
|
+
# resp.service_configurations[0].tags[0].key #=> String
|
20190
|
+
# resp.service_configurations[0].tags[0].value #=> String
|
20172
20191
|
# resp.next_token #=> String
|
20173
20192
|
#
|
20174
20193
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointServiceConfigurations AWS API Documentation
|
@@ -20262,7 +20281,15 @@ module Aws::EC2
|
|
20262
20281
|
#
|
20263
20282
|
# * `service-name`\: The name of the service.
|
20264
20283
|
#
|
20265
|
-
#
|
20284
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
20285
|
+
# the resource. Use the tag key in the filter name and the tag value
|
20286
|
+
# as the filter value. For example, to find all resources that have a
|
20287
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
20288
|
+
# for the filter name and `TeamA` for the filter value.
|
20289
|
+
#
|
20290
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
20291
|
+
# filter to find all resources assigned a tag with a specific key,
|
20292
|
+
# regardless of the tag value.
|
20266
20293
|
#
|
20267
20294
|
# @option params [Integer] :max_results
|
20268
20295
|
# The maximum number of items to return for this request. The request
|
@@ -20303,6 +20330,7 @@ module Aws::EC2
|
|
20303
20330
|
# resp.service_names[0] #=> String
|
20304
20331
|
# resp.service_details #=> Array
|
20305
20332
|
# resp.service_details[0].service_name #=> String
|
20333
|
+
# resp.service_details[0].service_id #=> String
|
20306
20334
|
# resp.service_details[0].service_type #=> Array
|
20307
20335
|
# resp.service_details[0].service_type[0].service_type #=> String, one of "Interface", "Gateway"
|
20308
20336
|
# resp.service_details[0].availability_zones #=> Array
|
@@ -20314,6 +20342,9 @@ module Aws::EC2
|
|
20314
20342
|
# resp.service_details[0].vpc_endpoint_policy_supported #=> Boolean
|
20315
20343
|
# resp.service_details[0].acceptance_required #=> Boolean
|
20316
20344
|
# resp.service_details[0].manages_vpc_endpoints #=> Boolean
|
20345
|
+
# resp.service_details[0].tags #=> Array
|
20346
|
+
# resp.service_details[0].tags[0].key #=> String
|
20347
|
+
# resp.service_details[0].tags[0].value #=> String
|
20317
20348
|
# resp.next_token #=> String
|
20318
20349
|
#
|
20319
20350
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpointServices AWS API Documentation
|
@@ -20348,6 +20379,16 @@ module Aws::EC2
|
|
20348
20379
|
# * `vpc-endpoint-state`\: The state of the endpoint. (`pending` \|
|
20349
20380
|
# `available` \| `deleting` \| `deleted`)
|
20350
20381
|
#
|
20382
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned to
|
20383
|
+
# the resource. Use the tag key in the filter name and the tag value
|
20384
|
+
# as the filter value. For example, to find all resources that have a
|
20385
|
+
# tag with the key `Owner` and the value `TeamA`, specify `tag:Owner`
|
20386
|
+
# for the filter name and `TeamA` for the filter value.
|
20387
|
+
#
|
20388
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
20389
|
+
# filter to find all resources assigned a tag with a specific key,
|
20390
|
+
# regardless of the tag value.
|
20391
|
+
#
|
20351
20392
|
# @option params [Integer] :max_results
|
20352
20393
|
# The maximum number of items to return for this request. The request
|
20353
20394
|
# returns a token that you can specify in a subsequent call to get the
|
@@ -20404,6 +20445,9 @@ module Aws::EC2
|
|
20404
20445
|
# resp.vpc_endpoints[0].dns_entries[0].dns_name #=> String
|
20405
20446
|
# resp.vpc_endpoints[0].dns_entries[0].hosted_zone_id #=> String
|
20406
20447
|
# resp.vpc_endpoints[0].creation_timestamp #=> Time
|
20448
|
+
# resp.vpc_endpoints[0].tags #=> Array
|
20449
|
+
# resp.vpc_endpoints[0].tags[0].key #=> String
|
20450
|
+
# resp.vpc_endpoints[0].tags[0].value #=> String
|
20407
20451
|
# resp.next_token #=> String
|
20408
20452
|
#
|
20409
20453
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeVpcEndpoints AWS API Documentation
|
@@ -30269,7 +30313,7 @@ module Aws::EC2
|
|
30269
30313
|
params: params,
|
30270
30314
|
config: config)
|
30271
30315
|
context[:gem_name] = 'aws-sdk-ec2'
|
30272
|
-
context[:gem_version] = '1.
|
30316
|
+
context[:gem_version] = '1.84.0'
|
30273
30317
|
Seahorse::Client::Request.new(handlers, context)
|
30274
30318
|
end
|
30275
30319
|
|
@@ -382,6 +382,7 @@ module Aws::EC2
|
|
382
382
|
DescribeBundleTasksResult = Shapes::StructureShape.new(name: 'DescribeBundleTasksResult')
|
383
383
|
DescribeByoipCidrsRequest = Shapes::StructureShape.new(name: 'DescribeByoipCidrsRequest')
|
384
384
|
DescribeByoipCidrsResult = Shapes::StructureShape.new(name: 'DescribeByoipCidrsResult')
|
385
|
+
DescribeCapacityReservationsMaxResults = Shapes::IntegerShape.new(name: 'DescribeCapacityReservationsMaxResults')
|
385
386
|
DescribeCapacityReservationsRequest = Shapes::StructureShape.new(name: 'DescribeCapacityReservationsRequest')
|
386
387
|
DescribeCapacityReservationsResult = Shapes::StructureShape.new(name: 'DescribeCapacityReservationsResult')
|
387
388
|
DescribeClassicLinkInstancesRequest = Shapes::StructureShape.new(name: 'DescribeClassicLinkInstancesRequest')
|
@@ -406,6 +407,7 @@ module Aws::EC2
|
|
406
407
|
DescribeDhcpOptionsResult = Shapes::StructureShape.new(name: 'DescribeDhcpOptionsResult')
|
407
408
|
DescribeEgressOnlyInternetGatewaysRequest = Shapes::StructureShape.new(name: 'DescribeEgressOnlyInternetGatewaysRequest')
|
408
409
|
DescribeEgressOnlyInternetGatewaysResult = Shapes::StructureShape.new(name: 'DescribeEgressOnlyInternetGatewaysResult')
|
410
|
+
DescribeElasticGpusMaxResults = Shapes::IntegerShape.new(name: 'DescribeElasticGpusMaxResults')
|
409
411
|
DescribeElasticGpusRequest = Shapes::StructureShape.new(name: 'DescribeElasticGpusRequest')
|
410
412
|
DescribeElasticGpusResult = Shapes::StructureShape.new(name: 'DescribeElasticGpusResult')
|
411
413
|
DescribeExportTasksRequest = Shapes::StructureShape.new(name: 'DescribeExportTasksRequest')
|
@@ -461,6 +463,7 @@ module Aws::EC2
|
|
461
463
|
DescribeKeyPairsResult = Shapes::StructureShape.new(name: 'DescribeKeyPairsResult')
|
462
464
|
DescribeLaunchTemplateVersionsRequest = Shapes::StructureShape.new(name: 'DescribeLaunchTemplateVersionsRequest')
|
463
465
|
DescribeLaunchTemplateVersionsResult = Shapes::StructureShape.new(name: 'DescribeLaunchTemplateVersionsResult')
|
466
|
+
DescribeLaunchTemplatesMaxResults = Shapes::IntegerShape.new(name: 'DescribeLaunchTemplatesMaxResults')
|
464
467
|
DescribeLaunchTemplatesRequest = Shapes::StructureShape.new(name: 'DescribeLaunchTemplatesRequest')
|
465
468
|
DescribeLaunchTemplatesResult = Shapes::StructureShape.new(name: 'DescribeLaunchTemplatesResult')
|
466
469
|
DescribeMovingAddressesRequest = Shapes::StructureShape.new(name: 'DescribeMovingAddressesRequest')
|
@@ -472,8 +475,10 @@ module Aws::EC2
|
|
472
475
|
DescribeNetworkAclsResult = Shapes::StructureShape.new(name: 'DescribeNetworkAclsResult')
|
473
476
|
DescribeNetworkInterfaceAttributeRequest = Shapes::StructureShape.new(name: 'DescribeNetworkInterfaceAttributeRequest')
|
474
477
|
DescribeNetworkInterfaceAttributeResult = Shapes::StructureShape.new(name: 'DescribeNetworkInterfaceAttributeResult')
|
478
|
+
DescribeNetworkInterfacePermissionsMaxResults = Shapes::IntegerShape.new(name: 'DescribeNetworkInterfacePermissionsMaxResults')
|
475
479
|
DescribeNetworkInterfacePermissionsRequest = Shapes::StructureShape.new(name: 'DescribeNetworkInterfacePermissionsRequest')
|
476
480
|
DescribeNetworkInterfacePermissionsResult = Shapes::StructureShape.new(name: 'DescribeNetworkInterfacePermissionsResult')
|
481
|
+
DescribeNetworkInterfacesMaxResults = Shapes::IntegerShape.new(name: 'DescribeNetworkInterfacesMaxResults')
|
477
482
|
DescribeNetworkInterfacesRequest = Shapes::StructureShape.new(name: 'DescribeNetworkInterfacesRequest')
|
478
483
|
DescribeNetworkInterfacesResult = Shapes::StructureShape.new(name: 'DescribeNetworkInterfacesResult')
|
479
484
|
DescribePlacementGroupsRequest = Shapes::StructureShape.new(name: 'DescribePlacementGroupsRequest')
|
@@ -494,6 +499,7 @@ module Aws::EC2
|
|
494
499
|
DescribeReservedInstancesOfferingsResult = Shapes::StructureShape.new(name: 'DescribeReservedInstancesOfferingsResult')
|
495
500
|
DescribeReservedInstancesRequest = Shapes::StructureShape.new(name: 'DescribeReservedInstancesRequest')
|
496
501
|
DescribeReservedInstancesResult = Shapes::StructureShape.new(name: 'DescribeReservedInstancesResult')
|
502
|
+
DescribeRouteTablesMaxResults = Shapes::IntegerShape.new(name: 'DescribeRouteTablesMaxResults')
|
497
503
|
DescribeRouteTablesRequest = Shapes::StructureShape.new(name: 'DescribeRouteTablesRequest')
|
498
504
|
DescribeRouteTablesResult = Shapes::StructureShape.new(name: 'DescribeRouteTablesResult')
|
499
505
|
DescribeScheduledInstanceAvailabilityRequest = Shapes::StructureShape.new(name: 'DescribeScheduledInstanceAvailabilityRequest')
|
@@ -502,6 +508,7 @@ module Aws::EC2
|
|
502
508
|
DescribeScheduledInstancesResult = Shapes::StructureShape.new(name: 'DescribeScheduledInstancesResult')
|
503
509
|
DescribeSecurityGroupReferencesRequest = Shapes::StructureShape.new(name: 'DescribeSecurityGroupReferencesRequest')
|
504
510
|
DescribeSecurityGroupReferencesResult = Shapes::StructureShape.new(name: 'DescribeSecurityGroupReferencesResult')
|
511
|
+
DescribeSecurityGroupsMaxResults = Shapes::IntegerShape.new(name: 'DescribeSecurityGroupsMaxResults')
|
505
512
|
DescribeSecurityGroupsRequest = Shapes::StructureShape.new(name: 'DescribeSecurityGroupsRequest')
|
506
513
|
DescribeSecurityGroupsResult = Shapes::StructureShape.new(name: 'DescribeSecurityGroupsResult')
|
507
514
|
DescribeSnapshotAttributeRequest = Shapes::StructureShape.new(name: 'DescribeSnapshotAttributeRequest')
|
@@ -520,6 +527,8 @@ module Aws::EC2
|
|
520
527
|
DescribeSpotInstanceRequestsResult = Shapes::StructureShape.new(name: 'DescribeSpotInstanceRequestsResult')
|
521
528
|
DescribeSpotPriceHistoryRequest = Shapes::StructureShape.new(name: 'DescribeSpotPriceHistoryRequest')
|
522
529
|
DescribeSpotPriceHistoryResult = Shapes::StructureShape.new(name: 'DescribeSpotPriceHistoryResult')
|
530
|
+
DescribeStaleSecurityGroupsMaxResults = Shapes::IntegerShape.new(name: 'DescribeStaleSecurityGroupsMaxResults')
|
531
|
+
DescribeStaleSecurityGroupsNextToken = Shapes::StringShape.new(name: 'DescribeStaleSecurityGroupsNextToken')
|
523
532
|
DescribeStaleSecurityGroupsRequest = Shapes::StructureShape.new(name: 'DescribeStaleSecurityGroupsRequest')
|
524
533
|
DescribeStaleSecurityGroupsResult = Shapes::StructureShape.new(name: 'DescribeStaleSecurityGroupsResult')
|
525
534
|
DescribeSubnetsMaxResults = Shapes::IntegerShape.new(name: 'DescribeSubnetsMaxResults')
|
@@ -2957,7 +2966,7 @@ module Aws::EC2
|
|
2957
2966
|
|
2958
2967
|
DescribeCapacityReservationsRequest.add_member(:capacity_reservation_ids, Shapes::ShapeRef.new(shape: CapacityReservationIdSet, location_name: "CapacityReservationId"))
|
2959
2968
|
DescribeCapacityReservationsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
2960
|
-
DescribeCapacityReservationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
2969
|
+
DescribeCapacityReservationsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeCapacityReservationsMaxResults, location_name: "MaxResults"))
|
2961
2970
|
DescribeCapacityReservationsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
|
2962
2971
|
DescribeCapacityReservationsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
2963
2972
|
DescribeCapacityReservationsRequest.struct_class = Types::DescribeCapacityReservationsRequest
|
@@ -3074,7 +3083,7 @@ module Aws::EC2
|
|
3074
3083
|
DescribeElasticGpusRequest.add_member(:elastic_gpu_ids, Shapes::ShapeRef.new(shape: ElasticGpuIdSet, location_name: "ElasticGpuId"))
|
3075
3084
|
DescribeElasticGpusRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
3076
3085
|
DescribeElasticGpusRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
|
3077
|
-
DescribeElasticGpusRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
3086
|
+
DescribeElasticGpusRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeElasticGpusMaxResults, location_name: "MaxResults"))
|
3078
3087
|
DescribeElasticGpusRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
3079
3088
|
DescribeElasticGpusRequest.struct_class = Types::DescribeElasticGpusRequest
|
3080
3089
|
|
@@ -3345,7 +3354,7 @@ module Aws::EC2
|
|
3345
3354
|
DescribeLaunchTemplatesRequest.add_member(:launch_template_names, Shapes::ShapeRef.new(shape: LaunchTemplateNameStringList, location_name: "LaunchTemplateName"))
|
3346
3355
|
DescribeLaunchTemplatesRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
|
3347
3356
|
DescribeLaunchTemplatesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
3348
|
-
DescribeLaunchTemplatesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
3357
|
+
DescribeLaunchTemplatesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeLaunchTemplatesMaxResults, location_name: "MaxResults"))
|
3349
3358
|
DescribeLaunchTemplatesRequest.struct_class = Types::DescribeLaunchTemplatesRequest
|
3350
3359
|
|
3351
3360
|
DescribeLaunchTemplatesResult.add_member(:launch_templates, Shapes::ShapeRef.new(shape: LaunchTemplateSet, location_name: "launchTemplates"))
|
@@ -3399,7 +3408,7 @@ module Aws::EC2
|
|
3399
3408
|
DescribeNetworkInterfacePermissionsRequest.add_member(:network_interface_permission_ids, Shapes::ShapeRef.new(shape: NetworkInterfacePermissionIdList, location_name: "NetworkInterfacePermissionId"))
|
3400
3409
|
DescribeNetworkInterfacePermissionsRequest.add_member(:filters, Shapes::ShapeRef.new(shape: FilterList, location_name: "Filter"))
|
3401
3410
|
DescribeNetworkInterfacePermissionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
3402
|
-
DescribeNetworkInterfacePermissionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
3411
|
+
DescribeNetworkInterfacePermissionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeNetworkInterfacePermissionsMaxResults, location_name: "MaxResults"))
|
3403
3412
|
DescribeNetworkInterfacePermissionsRequest.struct_class = Types::DescribeNetworkInterfacePermissionsRequest
|
3404
3413
|
|
3405
3414
|
DescribeNetworkInterfacePermissionsResult.add_member(:network_interface_permissions, Shapes::ShapeRef.new(shape: NetworkInterfacePermissionList, location_name: "networkInterfacePermissions"))
|
@@ -3410,7 +3419,7 @@ module Aws::EC2
|
|
3410
3419
|
DescribeNetworkInterfacesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
3411
3420
|
DescribeNetworkInterfacesRequest.add_member(:network_interface_ids, Shapes::ShapeRef.new(shape: NetworkInterfaceIdList, location_name: "NetworkInterfaceId"))
|
3412
3421
|
DescribeNetworkInterfacesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
3413
|
-
DescribeNetworkInterfacesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
3422
|
+
DescribeNetworkInterfacesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeNetworkInterfacesMaxResults, location_name: "MaxResults"))
|
3414
3423
|
DescribeNetworkInterfacesRequest.struct_class = Types::DescribeNetworkInterfacesRequest
|
3415
3424
|
|
3416
3425
|
DescribeNetworkInterfacesResult.add_member(:network_interfaces, Shapes::ShapeRef.new(shape: NetworkInterfaceList, location_name: "networkInterfaceSet"))
|
@@ -3515,7 +3524,7 @@ module Aws::EC2
|
|
3515
3524
|
DescribeRouteTablesRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
3516
3525
|
DescribeRouteTablesRequest.add_member(:route_table_ids, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "RouteTableId"))
|
3517
3526
|
DescribeRouteTablesRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
3518
|
-
DescribeRouteTablesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
3527
|
+
DescribeRouteTablesRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeRouteTablesMaxResults, location_name: "MaxResults"))
|
3519
3528
|
DescribeRouteTablesRequest.struct_class = Types::DescribeRouteTablesRequest
|
3520
3529
|
|
3521
3530
|
DescribeRouteTablesResult.add_member(:route_tables, Shapes::ShapeRef.new(shape: RouteTableList, location_name: "routeTableSet"))
|
@@ -3560,7 +3569,7 @@ module Aws::EC2
|
|
3560
3569
|
DescribeSecurityGroupsRequest.add_member(:group_names, Shapes::ShapeRef.new(shape: GroupNameStringList, location_name: "GroupName"))
|
3561
3570
|
DescribeSecurityGroupsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "dryRun"))
|
3562
3571
|
DescribeSecurityGroupsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location_name: "NextToken"))
|
3563
|
-
DescribeSecurityGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
3572
|
+
DescribeSecurityGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeSecurityGroupsMaxResults, location_name: "MaxResults"))
|
3564
3573
|
DescribeSecurityGroupsRequest.struct_class = Types::DescribeSecurityGroupsRequest
|
3565
3574
|
|
3566
3575
|
DescribeSecurityGroupsResult.add_member(:security_groups, Shapes::ShapeRef.new(shape: SecurityGroupList, location_name: "securityGroupInfo"))
|
@@ -3659,8 +3668,8 @@ module Aws::EC2
|
|
3659
3668
|
DescribeSpotPriceHistoryResult.struct_class = Types::DescribeSpotPriceHistoryResult
|
3660
3669
|
|
3661
3670
|
DescribeStaleSecurityGroupsRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
3662
|
-
DescribeStaleSecurityGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape:
|
3663
|
-
DescribeStaleSecurityGroupsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape:
|
3671
|
+
DescribeStaleSecurityGroupsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: DescribeStaleSecurityGroupsMaxResults, location_name: "MaxResults"))
|
3672
|
+
DescribeStaleSecurityGroupsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: DescribeStaleSecurityGroupsNextToken, location_name: "NextToken"))
|
3664
3673
|
DescribeStaleSecurityGroupsRequest.add_member(:vpc_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "VpcId"))
|
3665
3674
|
DescribeStaleSecurityGroupsRequest.struct_class = Types::DescribeStaleSecurityGroupsRequest
|
3666
3675
|
|
@@ -6691,11 +6700,13 @@ module Aws::EC2
|
|
6691
6700
|
ServiceConfiguration.add_member(:network_load_balancer_arns, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "networkLoadBalancerArnSet"))
|
6692
6701
|
ServiceConfiguration.add_member(:base_endpoint_dns_names, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "baseEndpointDnsNameSet"))
|
6693
6702
|
ServiceConfiguration.add_member(:private_dns_name, Shapes::ShapeRef.new(shape: String, location_name: "privateDnsName"))
|
6703
|
+
ServiceConfiguration.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
6694
6704
|
ServiceConfiguration.struct_class = Types::ServiceConfiguration
|
6695
6705
|
|
6696
6706
|
ServiceConfigurationSet.member = Shapes::ShapeRef.new(shape: ServiceConfiguration, location_name: "item")
|
6697
6707
|
|
6698
6708
|
ServiceDetail.add_member(:service_name, Shapes::ShapeRef.new(shape: String, location_name: "serviceName"))
|
6709
|
+
ServiceDetail.add_member(:service_id, Shapes::ShapeRef.new(shape: String, location_name: "serviceId"))
|
6699
6710
|
ServiceDetail.add_member(:service_type, Shapes::ShapeRef.new(shape: ServiceTypeDetailSet, location_name: "serviceType"))
|
6700
6711
|
ServiceDetail.add_member(:availability_zones, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "availabilityZoneSet"))
|
6701
6712
|
ServiceDetail.add_member(:owner, Shapes::ShapeRef.new(shape: String, location_name: "owner"))
|
@@ -6704,6 +6715,7 @@ module Aws::EC2
|
|
6704
6715
|
ServiceDetail.add_member(:vpc_endpoint_policy_supported, Shapes::ShapeRef.new(shape: Boolean, location_name: "vpcEndpointPolicySupported"))
|
6705
6716
|
ServiceDetail.add_member(:acceptance_required, Shapes::ShapeRef.new(shape: Boolean, location_name: "acceptanceRequired"))
|
6706
6717
|
ServiceDetail.add_member(:manages_vpc_endpoints, Shapes::ShapeRef.new(shape: Boolean, location_name: "managesVpcEndpoints"))
|
6718
|
+
ServiceDetail.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
6707
6719
|
ServiceDetail.struct_class = Types::ServiceDetail
|
6708
6720
|
|
6709
6721
|
ServiceDetailSet.member = Shapes::ShapeRef.new(shape: ServiceDetail, location_name: "item")
|
@@ -7457,6 +7469,7 @@ module Aws::EC2
|
|
7457
7469
|
VpcEndpoint.add_member(:network_interface_ids, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "networkInterfaceIdSet"))
|
7458
7470
|
VpcEndpoint.add_member(:dns_entries, Shapes::ShapeRef.new(shape: DnsEntrySet, location_name: "dnsEntrySet"))
|
7459
7471
|
VpcEndpoint.add_member(:creation_timestamp, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "creationTimestamp"))
|
7472
|
+
VpcEndpoint.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
7460
7473
|
VpcEndpoint.struct_class = Types::VpcEndpoint
|
7461
7474
|
|
7462
7475
|
VpcEndpointConnection.add_member(:service_id, Shapes::ShapeRef.new(shape: String, location_name: "serviceId"))
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -15476,7 +15476,7 @@ module Aws::EC2
|
|
15476
15476
|
# {
|
15477
15477
|
# dry_run: false,
|
15478
15478
|
# max_results: 1,
|
15479
|
-
# next_token: "
|
15479
|
+
# next_token: "DescribeStaleSecurityGroupsNextToken",
|
15480
15480
|
# vpc_id: "String", # required
|
15481
15481
|
# }
|
15482
15482
|
#
|
@@ -16832,6 +16832,16 @@ module Aws::EC2
|
|
16832
16832
|
#
|
16833
16833
|
# * `service-state` - The state of the service (`Pending` \|
|
16834
16834
|
# `Available` \| `Deleting` \| `Deleted` \| `Failed`).
|
16835
|
+
#
|
16836
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned
|
16837
|
+
# to the resource. Use the tag key in the filter name and the tag
|
16838
|
+
# value as the filter value. For example, to find all resources that
|
16839
|
+
# have a tag with the key `Owner` and the value `TeamA`, specify
|
16840
|
+
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
16841
|
+
#
|
16842
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
16843
|
+
# filter to find all resources assigned a tag with a specific key,
|
16844
|
+
# regardless of the tag value.
|
16835
16845
|
# @return [Array<Types::Filter>]
|
16836
16846
|
#
|
16837
16847
|
# @!attribute [rw] max_results
|
@@ -16984,7 +16994,15 @@ module Aws::EC2
|
|
16984
16994
|
#
|
16985
16995
|
# * `service-name`\: The name of the service.
|
16986
16996
|
#
|
16987
|
-
#
|
16997
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned
|
16998
|
+
# to the resource. Use the tag key in the filter name and the tag
|
16999
|
+
# value as the filter value. For example, to find all resources that
|
17000
|
+
# have a tag with the key `Owner` and the value `TeamA`, specify
|
17001
|
+
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
17002
|
+
#
|
17003
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
17004
|
+
# filter to find all resources assigned a tag with a specific key,
|
17005
|
+
# regardless of the tag value.
|
16988
17006
|
# @return [Array<Types::Filter>]
|
16989
17007
|
#
|
16990
17008
|
# @!attribute [rw] max_results
|
@@ -17076,6 +17094,16 @@ module Aws::EC2
|
|
17076
17094
|
#
|
17077
17095
|
# * `vpc-endpoint-state`\: The state of the endpoint. (`pending` \|
|
17078
17096
|
# `available` \| `deleting` \| `deleted`)
|
17097
|
+
#
|
17098
|
+
# * `tag`\:<key> - The key/value combination of a tag assigned
|
17099
|
+
# to the resource. Use the tag key in the filter name and the tag
|
17100
|
+
# value as the filter value. For example, to find all resources that
|
17101
|
+
# have a tag with the key `Owner` and the value `TeamA`, specify
|
17102
|
+
# `tag:Owner` for the filter name and `TeamA` for the filter value.
|
17103
|
+
#
|
17104
|
+
# * `tag-key` - The key of a tag assigned to the resource. Use this
|
17105
|
+
# filter to find all resources assigned a tag with a specific key,
|
17106
|
+
# regardless of the tag value.
|
17079
17107
|
# @return [Array<Types::Filter>]
|
17080
17108
|
#
|
17081
17109
|
# @!attribute [rw] max_results
|
@@ -33801,6 +33829,10 @@ module Aws::EC2
|
|
33801
33829
|
# The private DNS name for the service.
|
33802
33830
|
# @return [String]
|
33803
33831
|
#
|
33832
|
+
# @!attribute [rw] tags
|
33833
|
+
# Any tags assigned to the service.
|
33834
|
+
# @return [Array<Types::Tag>]
|
33835
|
+
#
|
33804
33836
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ServiceConfiguration AWS API Documentation
|
33805
33837
|
#
|
33806
33838
|
class ServiceConfiguration < Struct.new(
|
@@ -33813,7 +33845,8 @@ module Aws::EC2
|
|
33813
33845
|
:manages_vpc_endpoints,
|
33814
33846
|
:network_load_balancer_arns,
|
33815
33847
|
:base_endpoint_dns_names,
|
33816
|
-
:private_dns_name
|
33848
|
+
:private_dns_name,
|
33849
|
+
:tags)
|
33817
33850
|
include Aws::Structure
|
33818
33851
|
end
|
33819
33852
|
|
@@ -33823,6 +33856,10 @@ module Aws::EC2
|
|
33823
33856
|
# The Amazon Resource Name (ARN) of the service.
|
33824
33857
|
# @return [String]
|
33825
33858
|
#
|
33859
|
+
# @!attribute [rw] service_id
|
33860
|
+
# The ID of the endpoint service.
|
33861
|
+
# @return [String]
|
33862
|
+
#
|
33826
33863
|
# @!attribute [rw] service_type
|
33827
33864
|
# The type of service.
|
33828
33865
|
# @return [Array<Types::ServiceTypeDetail>]
|
@@ -33858,10 +33895,15 @@ module Aws::EC2
|
|
33858
33895
|
# is restricted.
|
33859
33896
|
# @return [Boolean]
|
33860
33897
|
#
|
33898
|
+
# @!attribute [rw] tags
|
33899
|
+
# Any tags assigned to the service.
|
33900
|
+
# @return [Array<Types::Tag>]
|
33901
|
+
#
|
33861
33902
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/ServiceDetail AWS API Documentation
|
33862
33903
|
#
|
33863
33904
|
class ServiceDetail < Struct.new(
|
33864
33905
|
:service_name,
|
33906
|
+
:service_id,
|
33865
33907
|
:service_type,
|
33866
33908
|
:availability_zones,
|
33867
33909
|
:owner,
|
@@ -33869,7 +33911,8 @@ module Aws::EC2
|
|
33869
33911
|
:private_dns_name,
|
33870
33912
|
:vpc_endpoint_policy_supported,
|
33871
33913
|
:acceptance_required,
|
33872
|
-
:manages_vpc_endpoints
|
33914
|
+
:manages_vpc_endpoints,
|
33915
|
+
:tags)
|
33873
33916
|
include Aws::Structure
|
33874
33917
|
end
|
33875
33918
|
|
@@ -37819,6 +37862,10 @@ module Aws::EC2
|
|
37819
37862
|
# The date and time the VPC endpoint was created.
|
37820
37863
|
# @return [Time]
|
37821
37864
|
#
|
37865
|
+
# @!attribute [rw] tags
|
37866
|
+
# Any tags assigned to the VPC endpoint.
|
37867
|
+
# @return [Array<Types::Tag>]
|
37868
|
+
#
|
37822
37869
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/VpcEndpoint AWS API Documentation
|
37823
37870
|
#
|
37824
37871
|
class VpcEndpoint < Struct.new(
|
@@ -37835,7 +37882,8 @@ module Aws::EC2
|
|
37835
37882
|
:requester_managed,
|
37836
37883
|
:network_interface_ids,
|
37837
37884
|
:dns_entries,
|
37838
|
-
:creation_timestamp
|
37885
|
+
:creation_timestamp,
|
37886
|
+
:tags)
|
37839
37887
|
include Aws::Structure
|
37840
37888
|
end
|
37841
37889
|
|
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.84.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: 2019-05-
|
11
|
+
date: 2019-05-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|
@@ -33,7 +33,7 @@ dependencies:
|
|
33
33
|
version: '3'
|
34
34
|
- - ">="
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: 3.
|
36
|
+
version: 3.52.1
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -43,7 +43,7 @@ dependencies:
|
|
43
43
|
version: '3'
|
44
44
|
- - ">="
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: 3.
|
46
|
+
version: 3.52.1
|
47
47
|
description: Official AWS Ruby gem for Amazon Elastic Compute Cloud (Amazon EC2).
|
48
48
|
This gem is part of the AWS SDK for Ruby.
|
49
49
|
email:
|