aws-sdk-ec2 1.314.0 → 1.315.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 +11 -5
- data/lib/aws-sdk-ec2/client_api.rb +2 -0
- data/lib/aws-sdk-ec2/types.rb +13 -2
- 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: b55a0254465e7c429d128c11e4f1ca76343c5132148a43ad1992ae32e40b6124
|
4
|
+
data.tar.gz: cabea989bd3361b06d107ea9a29b899cac3d43d23d3434bf9a6c30eea9092e0f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 83fc1ba3ec0bfe45b536b520d5e717a3fc9094a5627d92329cb313f7e104743b8169a04d251474c34dde6388566ade97112e7035cd2ab88cbe0ed11f984b5733
|
7
|
+
data.tar.gz: 6c8db5c1325953a1cbb7d89f5566e70053e0349f2c4e2c285710dbed475a562f78d7238a93f9521b704088654f257b2ffb50b654fa453f8bb8568fbf84d8c7f7
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.315.0 (2022-05-12)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release introduces a target type Gateway Load Balancer Endpoint for mirrored traffic. Customers can now specify GatewayLoadBalancerEndpoint option during the creation of a traffic mirror target.
|
8
|
+
|
4
9
|
1.314.0 (2022-05-11)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.315.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -11123,8 +11123,8 @@ module Aws::EC2
|
|
11123
11123
|
# appliances) can be in the same VPC, or in different VPCs connected via
|
11124
11124
|
# VPC peering or a transit gateway.
|
11125
11125
|
#
|
11126
|
-
# A Traffic Mirror target can be a network interface,
|
11127
|
-
# Balancer.
|
11126
|
+
# A Traffic Mirror target can be a network interface, a Network Load
|
11127
|
+
# Balancer, or a Gateway Load Balancer endpoint.
|
11128
11128
|
#
|
11129
11129
|
# To use the target in a Traffic Mirror session, use
|
11130
11130
|
# [CreateTrafficMirrorSession][1].
|
@@ -11164,6 +11164,9 @@ module Aws::EC2
|
|
11164
11164
|
#
|
11165
11165
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
11166
11166
|
#
|
11167
|
+
# @option params [String] :gateway_load_balancer_endpoint_id
|
11168
|
+
# The ID of the Gateway Load Balancer endpoint.
|
11169
|
+
#
|
11167
11170
|
# @return [Types::CreateTrafficMirrorTargetResult] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
11168
11171
|
#
|
11169
11172
|
# * {Types::CreateTrafficMirrorTargetResult#traffic_mirror_target #traffic_mirror_target} => Types::TrafficMirrorTarget
|
@@ -11188,6 +11191,7 @@ module Aws::EC2
|
|
11188
11191
|
# ],
|
11189
11192
|
# dry_run: false,
|
11190
11193
|
# client_token: "String",
|
11194
|
+
# gateway_load_balancer_endpoint_id: "VpcEndpointId",
|
11191
11195
|
# })
|
11192
11196
|
#
|
11193
11197
|
# @example Response structure
|
@@ -11195,12 +11199,13 @@ module Aws::EC2
|
|
11195
11199
|
# resp.traffic_mirror_target.traffic_mirror_target_id #=> String
|
11196
11200
|
# resp.traffic_mirror_target.network_interface_id #=> String
|
11197
11201
|
# resp.traffic_mirror_target.network_load_balancer_arn #=> String
|
11198
|
-
# resp.traffic_mirror_target.type #=> String, one of "network-interface", "network-load-balancer"
|
11202
|
+
# resp.traffic_mirror_target.type #=> String, one of "network-interface", "network-load-balancer", "gateway-load-balancer-endpoint"
|
11199
11203
|
# resp.traffic_mirror_target.description #=> String
|
11200
11204
|
# resp.traffic_mirror_target.owner_id #=> String
|
11201
11205
|
# resp.traffic_mirror_target.tags #=> Array
|
11202
11206
|
# resp.traffic_mirror_target.tags[0].key #=> String
|
11203
11207
|
# resp.traffic_mirror_target.tags[0].value #=> String
|
11208
|
+
# resp.traffic_mirror_target.gateway_load_balancer_endpoint_id #=> String
|
11204
11209
|
# resp.client_token #=> String
|
11205
11210
|
#
|
11206
11211
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateTrafficMirrorTarget AWS API Documentation
|
@@ -29573,12 +29578,13 @@ module Aws::EC2
|
|
29573
29578
|
# resp.traffic_mirror_targets[0].traffic_mirror_target_id #=> String
|
29574
29579
|
# resp.traffic_mirror_targets[0].network_interface_id #=> String
|
29575
29580
|
# resp.traffic_mirror_targets[0].network_load_balancer_arn #=> String
|
29576
|
-
# resp.traffic_mirror_targets[0].type #=> String, one of "network-interface", "network-load-balancer"
|
29581
|
+
# resp.traffic_mirror_targets[0].type #=> String, one of "network-interface", "network-load-balancer", "gateway-load-balancer-endpoint"
|
29577
29582
|
# resp.traffic_mirror_targets[0].description #=> String
|
29578
29583
|
# resp.traffic_mirror_targets[0].owner_id #=> String
|
29579
29584
|
# resp.traffic_mirror_targets[0].tags #=> Array
|
29580
29585
|
# resp.traffic_mirror_targets[0].tags[0].key #=> String
|
29581
29586
|
# resp.traffic_mirror_targets[0].tags[0].value #=> String
|
29587
|
+
# resp.traffic_mirror_targets[0].gateway_load_balancer_endpoint_id #=> String
|
29582
29588
|
# resp.next_token #=> String
|
29583
29589
|
#
|
29584
29590
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/DescribeTrafficMirrorTargets AWS API Documentation
|
@@ -49655,7 +49661,7 @@ module Aws::EC2
|
|
49655
49661
|
params: params,
|
49656
49662
|
config: config)
|
49657
49663
|
context[:gem_name] = 'aws-sdk-ec2'
|
49658
|
-
context[:gem_version] = '1.
|
49664
|
+
context[:gem_version] = '1.315.0'
|
49659
49665
|
Seahorse::Client::Request.new(handlers, context)
|
49660
49666
|
end
|
49661
49667
|
|
@@ -4435,6 +4435,7 @@ module Aws::EC2
|
|
4435
4435
|
CreateTrafficMirrorTargetRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
4436
4436
|
CreateTrafficMirrorTargetRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
4437
4437
|
CreateTrafficMirrorTargetRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, location_name: "ClientToken", metadata: {"idempotencyToken"=>true}))
|
4438
|
+
CreateTrafficMirrorTargetRequest.add_member(:gateway_load_balancer_endpoint_id, Shapes::ShapeRef.new(shape: VpcEndpointId, location_name: "GatewayLoadBalancerEndpointId"))
|
4438
4439
|
CreateTrafficMirrorTargetRequest.struct_class = Types::CreateTrafficMirrorTargetRequest
|
4439
4440
|
|
4440
4441
|
CreateTrafficMirrorTargetResult.add_member(:traffic_mirror_target, Shapes::ShapeRef.new(shape: TrafficMirrorTarget, location_name: "trafficMirrorTarget"))
|
@@ -12456,6 +12457,7 @@ module Aws::EC2
|
|
12456
12457
|
TrafficMirrorTarget.add_member(:description, Shapes::ShapeRef.new(shape: String, location_name: "description"))
|
12457
12458
|
TrafficMirrorTarget.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
|
12458
12459
|
TrafficMirrorTarget.add_member(:tags, Shapes::ShapeRef.new(shape: TagList, location_name: "tagSet"))
|
12460
|
+
TrafficMirrorTarget.add_member(:gateway_load_balancer_endpoint_id, Shapes::ShapeRef.new(shape: String, location_name: "gatewayLoadBalancerEndpointId"))
|
12459
12461
|
TrafficMirrorTarget.struct_class = Types::TrafficMirrorTarget
|
12460
12462
|
|
12461
12463
|
TrafficMirrorTargetIdList.member = Shapes::ShapeRef.new(shape: TrafficMirrorTargetId, location_name: "item")
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -12195,6 +12195,7 @@ module Aws::EC2
|
|
12195
12195
|
# ],
|
12196
12196
|
# dry_run: false,
|
12197
12197
|
# client_token: "String",
|
12198
|
+
# gateway_load_balancer_endpoint_id: "VpcEndpointId",
|
12198
12199
|
# }
|
12199
12200
|
#
|
12200
12201
|
# @!attribute [rw] network_interface_id
|
@@ -12234,6 +12235,10 @@ module Aws::EC2
|
|
12234
12235
|
# [1]: https://docs.aws.amazon.com/AWSEC2/latest/APIReference/Run_Instance_Idempotency.html
|
12235
12236
|
# @return [String]
|
12236
12237
|
#
|
12238
|
+
# @!attribute [rw] gateway_load_balancer_endpoint_id
|
12239
|
+
# The ID of the Gateway Load Balancer endpoint.
|
12240
|
+
# @return [String]
|
12241
|
+
#
|
12237
12242
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/CreateTrafficMirrorTargetRequest AWS API Documentation
|
12238
12243
|
#
|
12239
12244
|
class CreateTrafficMirrorTargetRequest < Struct.new(
|
@@ -12242,7 +12247,8 @@ module Aws::EC2
|
|
12242
12247
|
:description,
|
12243
12248
|
:tag_specifications,
|
12244
12249
|
:dry_run,
|
12245
|
-
:client_token
|
12250
|
+
:client_token,
|
12251
|
+
:gateway_load_balancer_endpoint_id)
|
12246
12252
|
SENSITIVE = []
|
12247
12253
|
include Aws::Structure
|
12248
12254
|
end
|
@@ -65758,6 +65764,10 @@ module Aws::EC2
|
|
65758
65764
|
# The tags assigned to the Traffic Mirror target.
|
65759
65765
|
# @return [Array<Types::Tag>]
|
65760
65766
|
#
|
65767
|
+
# @!attribute [rw] gateway_load_balancer_endpoint_id
|
65768
|
+
# The ID of the Gateway Load Balancer endpoint.
|
65769
|
+
# @return [String]
|
65770
|
+
#
|
65761
65771
|
# @see http://docs.aws.amazon.com/goto/WebAPI/ec2-2016-11-15/TrafficMirrorTarget AWS API Documentation
|
65762
65772
|
#
|
65763
65773
|
class TrafficMirrorTarget < Struct.new(
|
@@ -65767,7 +65777,8 @@ module Aws::EC2
|
|
65767
65777
|
:type,
|
65768
65778
|
:description,
|
65769
65779
|
:owner_id,
|
65770
|
-
:tags
|
65780
|
+
:tags,
|
65781
|
+
:gateway_load_balancer_endpoint_id)
|
65771
65782
|
SENSITIVE = []
|
65772
65783
|
include Aws::Structure
|
65773
65784
|
end
|
data/lib/aws-sdk-ec2.rb
CHANGED
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.315.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: 2022-05-
|
11
|
+
date: 2022-05-12 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sigv4
|