aws-sdk-networkfirewall 1.64.0 → 1.66.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.
@@ -54,7 +54,7 @@ module Aws::NetworkFirewall
54
54
  autoload :EndpointProvider, 'aws-sdk-networkfirewall/endpoint_provider'
55
55
  autoload :Endpoints, 'aws-sdk-networkfirewall/endpoints'
56
56
 
57
- GEM_VERSION = '1.64.0'
57
+ GEM_VERSION = '1.66.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -415,6 +415,29 @@ module Aws
415
415
  ) -> _CreateTLSInspectionConfigurationResponseSuccess
416
416
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTLSInspectionConfigurationResponseSuccess
417
417
 
418
+ interface _CreateVpcEndpointAssociationResponseSuccess
419
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateVpcEndpointAssociationResponse]
420
+ def vpc_endpoint_association: () -> Types::VpcEndpointAssociation
421
+ def vpc_endpoint_association_status: () -> Types::VpcEndpointAssociationStatus
422
+ end
423
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#create_vpc_endpoint_association-instance_method
424
+ def create_vpc_endpoint_association: (
425
+ firewall_arn: ::String,
426
+ vpc_id: ::String,
427
+ subnet_mapping: {
428
+ subnet_id: ::String,
429
+ ip_address_type: ("DUALSTACK" | "IPV4" | "IPV6")?
430
+ },
431
+ ?description: ::String,
432
+ ?tags: Array[
433
+ {
434
+ key: ::String,
435
+ value: ::String
436
+ },
437
+ ]
438
+ ) -> _CreateVpcEndpointAssociationResponseSuccess
439
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVpcEndpointAssociationResponseSuccess
440
+
418
441
  interface _DeleteFirewallResponseSuccess
419
442
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteFirewallResponse]
420
443
  def firewall: () -> Types::Firewall
@@ -470,6 +493,17 @@ module Aws
470
493
  ) -> _DeleteTLSInspectionConfigurationResponseSuccess
471
494
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteTLSInspectionConfigurationResponseSuccess
472
495
 
496
+ interface _DeleteVpcEndpointAssociationResponseSuccess
497
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteVpcEndpointAssociationResponse]
498
+ def vpc_endpoint_association: () -> Types::VpcEndpointAssociation
499
+ def vpc_endpoint_association_status: () -> Types::VpcEndpointAssociationStatus
500
+ end
501
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#delete_vpc_endpoint_association-instance_method
502
+ def delete_vpc_endpoint_association: (
503
+ vpc_endpoint_association_arn: ::String
504
+ ) -> _DeleteVpcEndpointAssociationResponseSuccess
505
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVpcEndpointAssociationResponseSuccess
506
+
473
507
  interface _DescribeFirewallResponseSuccess
474
508
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFirewallResponse]
475
509
  def update_token: () -> ::String
@@ -483,6 +517,20 @@ module Aws
483
517
  ) -> _DescribeFirewallResponseSuccess
484
518
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFirewallResponseSuccess
485
519
 
520
+ interface _DescribeFirewallMetadataResponseSuccess
521
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFirewallMetadataResponse]
522
+ def firewall_arn: () -> ::String
523
+ def firewall_policy_arn: () -> ::String
524
+ def description: () -> ::String
525
+ def status: () -> ("PROVISIONING" | "DELETING" | "READY")
526
+ def supported_availability_zones: () -> ::Hash[::String, Types::AvailabilityZoneMetadata]
527
+ end
528
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#describe_firewall_metadata-instance_method
529
+ def describe_firewall_metadata: (
530
+ ?firewall_arn: ::String
531
+ ) -> _DescribeFirewallMetadataResponseSuccess
532
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFirewallMetadataResponseSuccess
533
+
486
534
  interface _DescribeFirewallPolicyResponseSuccess
487
535
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFirewallPolicyResponse]
488
536
  def update_token: () -> ::String
@@ -500,6 +548,8 @@ module Aws
500
548
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFlowOperationResponse]
501
549
  def firewall_arn: () -> ::String
502
550
  def availability_zone: () -> ::String
551
+ def vpc_endpoint_association_arn: () -> ::String
552
+ def vpc_endpoint_id: () -> ::String
503
553
  def flow_operation_id: () -> ::String
504
554
  def flow_operation_type: () -> ("FLOW_FLUSH" | "FLOW_CAPTURE")
505
555
  def flow_operation_status: () -> ("COMPLETED" | "IN_PROGRESS" | "FAILED" | "COMPLETED_WITH_ERRORS")
@@ -511,6 +561,8 @@ module Aws
511
561
  def describe_flow_operation: (
512
562
  firewall_arn: ::String,
513
563
  ?availability_zone: ::String,
564
+ ?vpc_endpoint_association_arn: ::String,
565
+ ?vpc_endpoint_id: ::String,
514
566
  flow_operation_id: ::String
515
567
  ) -> _DescribeFlowOperationResponseSuccess
516
568
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeFlowOperationResponseSuccess
@@ -583,6 +635,17 @@ module Aws
583
635
  ) -> _DescribeTLSInspectionConfigurationResponseSuccess
584
636
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeTLSInspectionConfigurationResponseSuccess
585
637
 
638
+ interface _DescribeVpcEndpointAssociationResponseSuccess
639
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeVpcEndpointAssociationResponse]
640
+ def vpc_endpoint_association: () -> Types::VpcEndpointAssociation
641
+ def vpc_endpoint_association_status: () -> Types::VpcEndpointAssociationStatus
642
+ end
643
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#describe_vpc_endpoint_association-instance_method
644
+ def describe_vpc_endpoint_association: (
645
+ vpc_endpoint_association_arn: ::String
646
+ ) -> _DescribeVpcEndpointAssociationResponseSuccess
647
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeVpcEndpointAssociationResponseSuccess
648
+
586
649
  interface _DisassociateSubnetsResponseSuccess
587
650
  include ::Seahorse::Client::_ResponseSuccess[Types::DisassociateSubnetsResponse]
588
651
  def firewall_arn: () -> ::String
@@ -662,6 +725,8 @@ module Aws
662
725
  include ::Seahorse::Client::_ResponseSuccess[Types::ListFlowOperationResultsResponse]
663
726
  def firewall_arn: () -> ::String
664
727
  def availability_zone: () -> ::String
728
+ def vpc_endpoint_association_arn: () -> ::String
729
+ def vpc_endpoint_id: () -> ::String
665
730
  def flow_operation_id: () -> ::String
666
731
  def flow_operation_status: () -> ("COMPLETED" | "IN_PROGRESS" | "FAILED" | "COMPLETED_WITH_ERRORS")
667
732
  def status_message: () -> ::String
@@ -675,7 +740,9 @@ module Aws
675
740
  flow_operation_id: ::String,
676
741
  ?next_token: ::String,
677
742
  ?max_results: ::Integer,
678
- ?availability_zone: ::String
743
+ ?availability_zone: ::String,
744
+ ?vpc_endpoint_id: ::String,
745
+ ?vpc_endpoint_association_arn: ::String
679
746
  ) -> _ListFlowOperationResultsResponseSuccess
680
747
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListFlowOperationResultsResponseSuccess
681
748
 
@@ -688,6 +755,8 @@ module Aws
688
755
  def list_flow_operations: (
689
756
  firewall_arn: ::String,
690
757
  ?availability_zone: ::String,
758
+ ?vpc_endpoint_association_arn: ::String,
759
+ ?vpc_endpoint_id: ::String,
691
760
  ?flow_operation_type: ("FLOW_FLUSH" | "FLOW_CAPTURE"),
692
761
  ?next_token: ::String,
693
762
  ?max_results: ::Integer
@@ -734,6 +803,19 @@ module Aws
734
803
  ) -> _ListTagsForResourceResponseSuccess
735
804
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListTagsForResourceResponseSuccess
736
805
 
806
+ interface _ListVpcEndpointAssociationsResponseSuccess
807
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListVpcEndpointAssociationsResponse]
808
+ def next_token: () -> ::String
809
+ def vpc_endpoint_associations: () -> ::Array[Types::VpcEndpointAssociationMetadata]
810
+ end
811
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#list_vpc_endpoint_associations-instance_method
812
+ def list_vpc_endpoint_associations: (
813
+ ?next_token: ::String,
814
+ ?max_results: ::Integer,
815
+ ?firewall_arn: ::String
816
+ ) -> _ListVpcEndpointAssociationsResponseSuccess
817
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListVpcEndpointAssociationsResponseSuccess
818
+
737
819
  interface _PutResourcePolicyResponseSuccess
738
820
  include ::Seahorse::Client::_ResponseSuccess[Types::PutResourcePolicyResponse]
739
821
  end
@@ -766,6 +848,8 @@ module Aws
766
848
  def start_flow_capture: (
767
849
  firewall_arn: ::String,
768
850
  ?availability_zone: ::String,
851
+ ?vpc_endpoint_association_arn: ::String,
852
+ ?vpc_endpoint_id: ::String,
769
853
  ?minimum_flow_age_in_seconds: ::Integer,
770
854
  flow_filters: Array[
771
855
  {
@@ -793,6 +877,8 @@ module Aws
793
877
  def start_flow_flush: (
794
878
  firewall_arn: ::String,
795
879
  ?availability_zone: ::String,
880
+ ?vpc_endpoint_association_arn: ::String,
881
+ ?vpc_endpoint_id: ::String,
796
882
  ?minimum_flow_age_in_seconds: ::Integer,
797
883
  flow_filters: Array[
798
884
  {
data/sig/types.rbs CHANGED
@@ -8,6 +8,11 @@
8
8
  module Aws::NetworkFirewall
9
9
  module Types
10
10
 
11
+ class AZSyncState
12
+ attr_accessor attachment: Types::Attachment
13
+ SENSITIVE: []
14
+ end
15
+
11
16
  class ActionDefinition
12
17
  attr_accessor publish_metric_action: Types::PublishMetricAction
13
18
  SENSITIVE: []
@@ -83,6 +88,11 @@ module Aws::NetworkFirewall
83
88
  SENSITIVE: []
84
89
  end
85
90
 
91
+ class AvailabilityZoneMetadata
92
+ attr_accessor ip_address_type: ("DUALSTACK" | "IPV4" | "IPV6")
93
+ SENSITIVE: []
94
+ end
95
+
86
96
  class CIDRSummary
87
97
  attr_accessor available_cidr_count: ::Integer
88
98
  attr_accessor utilized_cidr_count: ::Integer
@@ -174,6 +184,21 @@ module Aws::NetworkFirewall
174
184
  SENSITIVE: []
175
185
  end
176
186
 
187
+ class CreateVpcEndpointAssociationRequest
188
+ attr_accessor firewall_arn: ::String
189
+ attr_accessor vpc_id: ::String
190
+ attr_accessor subnet_mapping: Types::SubnetMapping
191
+ attr_accessor description: ::String
192
+ attr_accessor tags: ::Array[Types::Tag]
193
+ SENSITIVE: []
194
+ end
195
+
196
+ class CreateVpcEndpointAssociationResponse
197
+ attr_accessor vpc_endpoint_association: Types::VpcEndpointAssociation
198
+ attr_accessor vpc_endpoint_association_status: Types::VpcEndpointAssociationStatus
199
+ SENSITIVE: []
200
+ end
201
+
177
202
  class CustomAction
178
203
  attr_accessor action_name: ::String
179
204
  attr_accessor action_definition: Types::ActionDefinition
@@ -234,6 +259,31 @@ module Aws::NetworkFirewall
234
259
  SENSITIVE: []
235
260
  end
236
261
 
262
+ class DeleteVpcEndpointAssociationRequest
263
+ attr_accessor vpc_endpoint_association_arn: ::String
264
+ SENSITIVE: []
265
+ end
266
+
267
+ class DeleteVpcEndpointAssociationResponse
268
+ attr_accessor vpc_endpoint_association: Types::VpcEndpointAssociation
269
+ attr_accessor vpc_endpoint_association_status: Types::VpcEndpointAssociationStatus
270
+ SENSITIVE: []
271
+ end
272
+
273
+ class DescribeFirewallMetadataRequest
274
+ attr_accessor firewall_arn: ::String
275
+ SENSITIVE: []
276
+ end
277
+
278
+ class DescribeFirewallMetadataResponse
279
+ attr_accessor firewall_arn: ::String
280
+ attr_accessor firewall_policy_arn: ::String
281
+ attr_accessor description: ::String
282
+ attr_accessor status: ("PROVISIONING" | "DELETING" | "READY")
283
+ attr_accessor supported_availability_zones: ::Hash[::String, Types::AvailabilityZoneMetadata]
284
+ SENSITIVE: []
285
+ end
286
+
237
287
  class DescribeFirewallPolicyRequest
238
288
  attr_accessor firewall_policy_name: ::String
239
289
  attr_accessor firewall_policy_arn: ::String
@@ -263,6 +313,8 @@ module Aws::NetworkFirewall
263
313
  class DescribeFlowOperationRequest
264
314
  attr_accessor firewall_arn: ::String
265
315
  attr_accessor availability_zone: ::String
316
+ attr_accessor vpc_endpoint_association_arn: ::String
317
+ attr_accessor vpc_endpoint_id: ::String
266
318
  attr_accessor flow_operation_id: ::String
267
319
  SENSITIVE: []
268
320
  end
@@ -270,6 +322,8 @@ module Aws::NetworkFirewall
270
322
  class DescribeFlowOperationResponse
271
323
  attr_accessor firewall_arn: ::String
272
324
  attr_accessor availability_zone: ::String
325
+ attr_accessor vpc_endpoint_association_arn: ::String
326
+ attr_accessor vpc_endpoint_id: ::String
273
327
  attr_accessor flow_operation_id: ::String
274
328
  attr_accessor flow_operation_type: ("FLOW_FLUSH" | "FLOW_CAPTURE")
275
329
  attr_accessor flow_operation_status: ("COMPLETED" | "IN_PROGRESS" | "FAILED" | "COMPLETED_WITH_ERRORS")
@@ -347,6 +401,17 @@ module Aws::NetworkFirewall
347
401
  SENSITIVE: []
348
402
  end
349
403
 
404
+ class DescribeVpcEndpointAssociationRequest
405
+ attr_accessor vpc_endpoint_association_arn: ::String
406
+ SENSITIVE: []
407
+ end
408
+
409
+ class DescribeVpcEndpointAssociationResponse
410
+ attr_accessor vpc_endpoint_association: Types::VpcEndpointAssociation
411
+ attr_accessor vpc_endpoint_association_status: Types::VpcEndpointAssociationStatus
412
+ SENSITIVE: []
413
+ end
414
+
350
415
  class Dimension
351
416
  attr_accessor value: ::String
352
417
  SENSITIVE: []
@@ -387,6 +452,7 @@ module Aws::NetworkFirewall
387
452
  attr_accessor firewall_id: ::String
388
453
  attr_accessor tags: ::Array[Types::Tag]
389
454
  attr_accessor encryption_configuration: Types::EncryptionConfiguration
455
+ attr_accessor number_of_associations: ::Integer
390
456
  attr_accessor enabled_analysis_types: ::Array[("TLS_SNI" | "HTTP_HOST")]
391
457
  SENSITIVE: []
392
458
  end
@@ -609,12 +675,16 @@ module Aws::NetworkFirewall
609
675
  attr_accessor next_token: ::String
610
676
  attr_accessor max_results: ::Integer
611
677
  attr_accessor availability_zone: ::String
678
+ attr_accessor vpc_endpoint_id: ::String
679
+ attr_accessor vpc_endpoint_association_arn: ::String
612
680
  SENSITIVE: []
613
681
  end
614
682
 
615
683
  class ListFlowOperationResultsResponse
616
684
  attr_accessor firewall_arn: ::String
617
685
  attr_accessor availability_zone: ::String
686
+ attr_accessor vpc_endpoint_association_arn: ::String
687
+ attr_accessor vpc_endpoint_id: ::String
618
688
  attr_accessor flow_operation_id: ::String
619
689
  attr_accessor flow_operation_status: ("COMPLETED" | "IN_PROGRESS" | "FAILED" | "COMPLETED_WITH_ERRORS")
620
690
  attr_accessor status_message: ::String
@@ -627,6 +697,8 @@ module Aws::NetworkFirewall
627
697
  class ListFlowOperationsRequest
628
698
  attr_accessor firewall_arn: ::String
629
699
  attr_accessor availability_zone: ::String
700
+ attr_accessor vpc_endpoint_association_arn: ::String
701
+ attr_accessor vpc_endpoint_id: ::String
630
702
  attr_accessor flow_operation_type: ("FLOW_FLUSH" | "FLOW_CAPTURE")
631
703
  attr_accessor next_token: ::String
632
704
  attr_accessor max_results: ::Integer
@@ -679,6 +751,19 @@ module Aws::NetworkFirewall
679
751
  SENSITIVE: []
680
752
  end
681
753
 
754
+ class ListVpcEndpointAssociationsRequest
755
+ attr_accessor next_token: ::String
756
+ attr_accessor max_results: ::Integer
757
+ attr_accessor firewall_arn: ::String
758
+ SENSITIVE: []
759
+ end
760
+
761
+ class ListVpcEndpointAssociationsResponse
762
+ attr_accessor next_token: ::String
763
+ attr_accessor vpc_endpoint_associations: ::Array[Types::VpcEndpointAssociationMetadata]
764
+ SENSITIVE: []
765
+ end
766
+
682
767
  class LogDestinationConfig
683
768
  attr_accessor log_type: ("ALERT" | "FLOW" | "TLS")
684
769
  attr_accessor log_destination_type: ("S3" | "CloudWatchLogs" | "KinesisDataFirehose")
@@ -866,6 +951,8 @@ module Aws::NetworkFirewall
866
951
  class StartFlowCaptureRequest
867
952
  attr_accessor firewall_arn: ::String
868
953
  attr_accessor availability_zone: ::String
954
+ attr_accessor vpc_endpoint_association_arn: ::String
955
+ attr_accessor vpc_endpoint_id: ::String
869
956
  attr_accessor minimum_flow_age_in_seconds: ::Integer
870
957
  attr_accessor flow_filters: ::Array[Types::FlowFilter]
871
958
  SENSITIVE: []
@@ -881,6 +968,8 @@ module Aws::NetworkFirewall
881
968
  class StartFlowFlushRequest
882
969
  attr_accessor firewall_arn: ::String
883
970
  attr_accessor availability_zone: ::String
971
+ attr_accessor vpc_endpoint_association_arn: ::String
972
+ attr_accessor vpc_endpoint_id: ::String
884
973
  attr_accessor minimum_flow_age_in_seconds: ::Integer
885
974
  attr_accessor flow_filters: ::Array[Types::FlowFilter]
886
975
  SENSITIVE: []
@@ -1196,5 +1285,27 @@ module Aws::NetworkFirewall
1196
1285
  attr_accessor tls_inspection_configuration_response: Types::TLSInspectionConfigurationResponse
1197
1286
  SENSITIVE: []
1198
1287
  end
1288
+
1289
+ class VpcEndpointAssociation
1290
+ attr_accessor vpc_endpoint_association_id: ::String
1291
+ attr_accessor vpc_endpoint_association_arn: ::String
1292
+ attr_accessor firewall_arn: ::String
1293
+ attr_accessor vpc_id: ::String
1294
+ attr_accessor subnet_mapping: Types::SubnetMapping
1295
+ attr_accessor description: ::String
1296
+ attr_accessor tags: ::Array[Types::Tag]
1297
+ SENSITIVE: []
1298
+ end
1299
+
1300
+ class VpcEndpointAssociationMetadata
1301
+ attr_accessor vpc_endpoint_association_arn: ::String
1302
+ SENSITIVE: []
1303
+ end
1304
+
1305
+ class VpcEndpointAssociationStatus
1306
+ attr_accessor status: ("PROVISIONING" | "DELETING" | "READY")
1307
+ attr_accessor association_sync_state: ::Hash[::String, Types::AZSyncState]
1308
+ SENSITIVE: []
1309
+ end
1199
1310
  end
1200
1311
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-networkfirewall
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.64.0
4
+ version: 1.66.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services