aws-sdk-ec2 1.321.0 → 1.322.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 +4 -4
- data/lib/aws-sdk-ec2/client_api.rb +1 -1
- data/lib/aws-sdk-ec2/types.rb +2 -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: 1c4d8bdc482f4c84ae50c74405450aacd22fa0aa261e2d14d3aaffc8e16b2328
|
|
4
|
+
data.tar.gz: 2e39ac555d25511196febed0626216ca95f67ec93e382654576e25c80c49e9dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: ad372ac631423c98949fe542355e1c250d29fbca49a59158a3642a7642d603c7f9992ca7f1afd457e95d8e9c387de4d9aca8acc94522fd1a877789ea905aeb47
|
|
7
|
+
data.tar.gz: '0370009c507864fec2598135f5ed0fe9c1d7e747ad7e47d7105940dfca59860f2afcd14ee1426ad89449d5c1b88abe3ba8e246b35d721111dec7d08e49f27fa0'
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.322.0 (2022-07-14)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds flow logs for Transit Gateway to allow customers to gain deeper visibility and insights into network traffic through their Transit Gateways.
|
|
8
|
+
|
|
4
9
|
1.321.0 (2022-07-11)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.322.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
|
@@ -5942,7 +5942,7 @@ module Aws::EC2
|
|
|
5942
5942
|
# you specified a VPC ID for the `ResourceId` property, specify `VPC`
|
|
5943
5943
|
# for this property.
|
|
5944
5944
|
#
|
|
5945
|
-
# @option params [
|
|
5945
|
+
# @option params [String] :traffic_type
|
|
5946
5946
|
# The type of traffic to log. You can log traffic that the resource
|
|
5947
5947
|
# accepts or rejects, or all traffic.
|
|
5948
5948
|
#
|
|
@@ -6027,8 +6027,8 @@ module Aws::EC2
|
|
|
6027
6027
|
# deliver_logs_permission_arn: "String",
|
|
6028
6028
|
# log_group_name: "String",
|
|
6029
6029
|
# resource_ids: ["FlowLogResourceId"], # required
|
|
6030
|
-
# resource_type: "VPC", # required, accepts VPC, Subnet, NetworkInterface
|
|
6031
|
-
# traffic_type: "ACCEPT", #
|
|
6030
|
+
# resource_type: "VPC", # required, accepts VPC, Subnet, NetworkInterface, TransitGateway, TransitGatewayAttachment
|
|
6031
|
+
# traffic_type: "ACCEPT", # accepts ACCEPT, REJECT, ALL
|
|
6032
6032
|
# log_destination_type: "cloud-watch-logs", # accepts cloud-watch-logs, s3
|
|
6033
6033
|
# log_destination: "String",
|
|
6034
6034
|
# log_format: "String",
|
|
@@ -50351,7 +50351,7 @@ module Aws::EC2
|
|
|
50351
50351
|
params: params,
|
|
50352
50352
|
config: config)
|
|
50353
50353
|
context[:gem_name] = 'aws-sdk-ec2'
|
|
50354
|
-
context[:gem_version] = '1.
|
|
50354
|
+
context[:gem_version] = '1.322.0'
|
|
50355
50355
|
Seahorse::Client::Request.new(handlers, context)
|
|
50356
50356
|
end
|
|
50357
50357
|
|
|
@@ -4027,7 +4027,7 @@ module Aws::EC2
|
|
|
4027
4027
|
CreateFlowLogsRequest.add_member(:log_group_name, Shapes::ShapeRef.new(shape: String, location_name: "LogGroupName"))
|
|
4028
4028
|
CreateFlowLogsRequest.add_member(:resource_ids, Shapes::ShapeRef.new(shape: FlowLogResourceIds, required: true, location_name: "ResourceId"))
|
|
4029
4029
|
CreateFlowLogsRequest.add_member(:resource_type, Shapes::ShapeRef.new(shape: FlowLogsResourceType, required: true, location_name: "ResourceType"))
|
|
4030
|
-
CreateFlowLogsRequest.add_member(:traffic_type, Shapes::ShapeRef.new(shape: TrafficType,
|
|
4030
|
+
CreateFlowLogsRequest.add_member(:traffic_type, Shapes::ShapeRef.new(shape: TrafficType, location_name: "TrafficType"))
|
|
4031
4031
|
CreateFlowLogsRequest.add_member(:log_destination_type, Shapes::ShapeRef.new(shape: LogDestinationType, location_name: "LogDestinationType"))
|
|
4032
4032
|
CreateFlowLogsRequest.add_member(:log_destination, Shapes::ShapeRef.new(shape: String, location_name: "LogDestination"))
|
|
4033
4033
|
CreateFlowLogsRequest.add_member(:log_format, Shapes::ShapeRef.new(shape: String, location_name: "LogFormat"))
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
|
@@ -8033,8 +8033,8 @@ module Aws::EC2
|
|
|
8033
8033
|
# deliver_logs_permission_arn: "String",
|
|
8034
8034
|
# log_group_name: "String",
|
|
8035
8035
|
# resource_ids: ["FlowLogResourceId"], # required
|
|
8036
|
-
# resource_type: "VPC", # required, accepts VPC, Subnet, NetworkInterface
|
|
8037
|
-
# traffic_type: "ACCEPT", #
|
|
8036
|
+
# resource_type: "VPC", # required, accepts VPC, Subnet, NetworkInterface, TransitGateway, TransitGatewayAttachment
|
|
8037
|
+
# traffic_type: "ACCEPT", # accepts ACCEPT, REJECT, ALL
|
|
8038
8038
|
# log_destination_type: "cloud-watch-logs", # accepts cloud-watch-logs, s3
|
|
8039
8039
|
# log_destination: "String",
|
|
8040
8040
|
# log_format: "String",
|
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.322.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-07-
|
|
11
|
+
date: 2022-07-14 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: aws-sigv4
|