aws-sdk-ec2 1.520.0 → 1.521.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 +10 -1
- data/lib/aws-sdk-ec2/client_api.rb +2 -0
- data/lib/aws-sdk-ec2/types.rb +12 -0
- data/lib/aws-sdk-ec2.rb +1 -1
- data/sig/client.rbs +1 -0
- data/sig/types.rbs +2 -0
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 11053f76d582c59c3d4f6b2e8842558993fab0fc1c61fadd62660daca15c8e64
|
4
|
+
data.tar.gz: 03e92ffc170aa1b2dc8cca10e2acaa6deaaf48cc9ad412e8cfc7a9aebf60ecf8
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f9c807c4106c69e9f9c4b93d7f2731175c812769dc4ab1f66613e66ce6bfcfd0fe199b93d09af4615be8e963a0cc9e8451b025fcbd56214c79dbe06ffe528375
|
7
|
+
data.tar.gz: eb979cc0e8f0520d32a60b5842d53ebf20992829e011a1ed8eec3b03dd029b314802eb455edf0e6fb6be2842a04cf74404c57dcfc547c6eb8ddb8c6859546529
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.521.0
|
data/lib/aws-sdk-ec2/client.rb
CHANGED
@@ -31609,6 +31609,8 @@ module Aws::EC2
|
|
31609
31609
|
# resp.network_insights_analyses[0].additional_accounts[0] #=> String
|
31610
31610
|
# resp.network_insights_analyses[0].filter_in_arns #=> Array
|
31611
31611
|
# resp.network_insights_analyses[0].filter_in_arns[0] #=> String
|
31612
|
+
# resp.network_insights_analyses[0].filter_out_arns #=> Array
|
31613
|
+
# resp.network_insights_analyses[0].filter_out_arns[0] #=> String
|
31612
31614
|
# resp.network_insights_analyses[0].start_date #=> Time
|
31613
31615
|
# resp.network_insights_analyses[0].status #=> String, one of "running", "succeeded", "failed"
|
31614
31616
|
# resp.network_insights_analyses[0].status_message #=> String
|
@@ -63510,6 +63512,10 @@ module Aws::EC2
|
|
63510
63512
|
# The Amazon Resource Names (ARN) of the resources that the path must
|
63511
63513
|
# traverse.
|
63512
63514
|
#
|
63515
|
+
# @option params [Array<String>] :filter_out_arns
|
63516
|
+
# The Amazon Resource Names (ARN) of the resources that the path will
|
63517
|
+
# ignore.
|
63518
|
+
#
|
63513
63519
|
# @option params [Boolean] :dry_run
|
63514
63520
|
# Checks whether you have the required permissions for the action,
|
63515
63521
|
# without actually making the request, and provides an error response.
|
@@ -63541,6 +63547,7 @@ module Aws::EC2
|
|
63541
63547
|
# network_insights_path_id: "NetworkInsightsPathId", # required
|
63542
63548
|
# additional_accounts: ["String"],
|
63543
63549
|
# filter_in_arns: ["ResourceArn"],
|
63550
|
+
# filter_out_arns: ["ResourceArn"],
|
63544
63551
|
# dry_run: false,
|
63545
63552
|
# tag_specifications: [
|
63546
63553
|
# {
|
@@ -63565,6 +63572,8 @@ module Aws::EC2
|
|
63565
63572
|
# resp.network_insights_analysis.additional_accounts[0] #=> String
|
63566
63573
|
# resp.network_insights_analysis.filter_in_arns #=> Array
|
63567
63574
|
# resp.network_insights_analysis.filter_in_arns[0] #=> String
|
63575
|
+
# resp.network_insights_analysis.filter_out_arns #=> Array
|
63576
|
+
# resp.network_insights_analysis.filter_out_arns[0] #=> String
|
63568
63577
|
# resp.network_insights_analysis.start_date #=> Time
|
63569
63578
|
# resp.network_insights_analysis.status #=> String, one of "running", "succeeded", "failed"
|
63570
63579
|
# resp.network_insights_analysis.status_message #=> String
|
@@ -65348,7 +65357,7 @@ module Aws::EC2
|
|
65348
65357
|
tracer: tracer
|
65349
65358
|
)
|
65350
65359
|
context[:gem_name] = 'aws-sdk-ec2'
|
65351
|
-
context[:gem_version] = '1.
|
65360
|
+
context[:gem_version] = '1.521.0'
|
65352
65361
|
Seahorse::Client::Request.new(handlers, context)
|
65353
65362
|
end
|
65354
65363
|
|
@@ -13527,6 +13527,7 @@ module Aws::EC2
|
|
13527
13527
|
NetworkInsightsAnalysis.add_member(:network_insights_path_id, Shapes::ShapeRef.new(shape: NetworkInsightsPathId, location_name: "networkInsightsPathId"))
|
13528
13528
|
NetworkInsightsAnalysis.add_member(:additional_accounts, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "additionalAccountSet"))
|
13529
13529
|
NetworkInsightsAnalysis.add_member(:filter_in_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "filterInArnSet"))
|
13530
|
+
NetworkInsightsAnalysis.add_member(:filter_out_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "filterOutArnSet"))
|
13530
13531
|
NetworkInsightsAnalysis.add_member(:start_date, Shapes::ShapeRef.new(shape: MillisecondDateTime, location_name: "startDate"))
|
13531
13532
|
NetworkInsightsAnalysis.add_member(:status, Shapes::ShapeRef.new(shape: AnalysisStatus, location_name: "status"))
|
13532
13533
|
NetworkInsightsAnalysis.add_member(:status_message, Shapes::ShapeRef.new(shape: String, location_name: "statusMessage"))
|
@@ -15816,6 +15817,7 @@ module Aws::EC2
|
|
15816
15817
|
StartNetworkInsightsAnalysisRequest.add_member(:network_insights_path_id, Shapes::ShapeRef.new(shape: NetworkInsightsPathId, required: true, location_name: "NetworkInsightsPathId"))
|
15817
15818
|
StartNetworkInsightsAnalysisRequest.add_member(:additional_accounts, Shapes::ShapeRef.new(shape: ValueStringList, location_name: "AdditionalAccount"))
|
15818
15819
|
StartNetworkInsightsAnalysisRequest.add_member(:filter_in_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "FilterInArn"))
|
15820
|
+
StartNetworkInsightsAnalysisRequest.add_member(:filter_out_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "FilterOutArn"))
|
15819
15821
|
StartNetworkInsightsAnalysisRequest.add_member(:dry_run, Shapes::ShapeRef.new(shape: Boolean, location_name: "DryRun"))
|
15820
15822
|
StartNetworkInsightsAnalysisRequest.add_member(:tag_specifications, Shapes::ShapeRef.new(shape: TagSpecificationList, location_name: "TagSpecification"))
|
15821
15823
|
StartNetworkInsightsAnalysisRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: String, required: true, location_name: "ClientToken", metadata: {"idempotencyToken" => true}))
|
data/lib/aws-sdk-ec2/types.rb
CHANGED
@@ -58188,6 +58188,11 @@ module Aws::EC2
|
|
58188
58188
|
# traverse.
|
58189
58189
|
# @return [Array<String>]
|
58190
58190
|
#
|
58191
|
+
# @!attribute [rw] filter_out_arns
|
58192
|
+
# The Amazon Resource Names (ARN) of the resources that the path must
|
58193
|
+
# ignore.
|
58194
|
+
# @return [Array<String>]
|
58195
|
+
#
|
58191
58196
|
# @!attribute [rw] start_date
|
58192
58197
|
# The time the analysis started.
|
58193
58198
|
# @return [Time]
|
@@ -58245,6 +58250,7 @@ module Aws::EC2
|
|
58245
58250
|
:network_insights_path_id,
|
58246
58251
|
:additional_accounts,
|
58247
58252
|
:filter_in_arns,
|
58253
|
+
:filter_out_arns,
|
58248
58254
|
:start_date,
|
58249
58255
|
:status,
|
58250
58256
|
:status_message,
|
@@ -70376,6 +70382,11 @@ module Aws::EC2
|
|
70376
70382
|
# traverse.
|
70377
70383
|
# @return [Array<String>]
|
70378
70384
|
#
|
70385
|
+
# @!attribute [rw] filter_out_arns
|
70386
|
+
# The Amazon Resource Names (ARN) of the resources that the path will
|
70387
|
+
# ignore.
|
70388
|
+
# @return [Array<String>]
|
70389
|
+
#
|
70379
70390
|
# @!attribute [rw] dry_run
|
70380
70391
|
# Checks whether you have the required permissions for the action,
|
70381
70392
|
# without actually making the request, and provides an error response.
|
@@ -70406,6 +70417,7 @@ module Aws::EC2
|
|
70406
70417
|
:network_insights_path_id,
|
70407
70418
|
:additional_accounts,
|
70408
70419
|
:filter_in_arns,
|
70420
|
+
:filter_out_arns,
|
70409
70421
|
:dry_run,
|
70410
70422
|
:tag_specifications,
|
70411
70423
|
:client_token)
|
data/lib/aws-sdk-ec2.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -13928,6 +13928,7 @@ module Aws
|
|
13928
13928
|
network_insights_path_id: ::String,
|
13929
13929
|
?additional_accounts: Array[::String],
|
13930
13930
|
?filter_in_arns: Array[::String],
|
13931
|
+
?filter_out_arns: Array[::String],
|
13931
13932
|
?dry_run: bool,
|
13932
13933
|
?tag_specifications: Array[
|
13933
13934
|
{
|
data/sig/types.rbs
CHANGED
@@ -12634,6 +12634,7 @@ module Aws::EC2
|
|
12634
12634
|
attr_accessor network_insights_path_id: ::String
|
12635
12635
|
attr_accessor additional_accounts: ::Array[::String]
|
12636
12636
|
attr_accessor filter_in_arns: ::Array[::String]
|
12637
|
+
attr_accessor filter_out_arns: ::Array[::String]
|
12637
12638
|
attr_accessor start_date: ::Time
|
12638
12639
|
attr_accessor status: ("running" | "succeeded" | "failed")
|
12639
12640
|
attr_accessor status_message: ::String
|
@@ -15171,6 +15172,7 @@ module Aws::EC2
|
|
15171
15172
|
attr_accessor network_insights_path_id: ::String
|
15172
15173
|
attr_accessor additional_accounts: ::Array[::String]
|
15173
15174
|
attr_accessor filter_in_arns: ::Array[::String]
|
15175
|
+
attr_accessor filter_out_arns: ::Array[::String]
|
15174
15176
|
attr_accessor dry_run: bool
|
15175
15177
|
attr_accessor tag_specifications: ::Array[Types::TagSpecification]
|
15176
15178
|
attr_accessor client_token: ::String
|