aws-sdk-networkfirewall 1.91.0 → 1.92.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.
@@ -851,6 +851,165 @@ module Aws::NetworkFirewall
851
851
  include Aws::Structure
852
852
  end
853
853
 
854
+ # High-level information about a container association, returned by the
855
+ # ListContainerAssociations operation. You can use this information to
856
+ # retrieve the full details of a container association using
857
+ # DescribeContainerAssociation.
858
+ #
859
+ # @!attribute [rw] arn
860
+ # The Amazon Resource Name (ARN) of the container association.
861
+ # @return [String]
862
+ #
863
+ # @!attribute [rw] name
864
+ # The descriptive name of the container association.
865
+ # @return [String]
866
+ #
867
+ # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/ContainerAssociationSummary AWS API Documentation
868
+ #
869
+ class ContainerAssociationSummary < Struct.new(
870
+ :arn,
871
+ :name)
872
+ SENSITIVE = []
873
+ include Aws::Structure
874
+ end
875
+
876
+ # A key-value pair that defines a container attribute filter for a
877
+ # container monitoring configuration.
878
+ #
879
+ # @!attribute [rw] key
880
+ # The key of the container attribute to filter on.
881
+ # @return [String]
882
+ #
883
+ # @!attribute [rw] value
884
+ # The value of the container attribute to filter on.
885
+ # @return [String]
886
+ #
887
+ # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/ContainerAttribute AWS API Documentation
888
+ #
889
+ class ContainerAttribute < Struct.new(
890
+ :key,
891
+ :value)
892
+ SENSITIVE = []
893
+ include Aws::Structure
894
+ end
895
+
896
+ # Defines a container cluster to monitor, along with optional attribute
897
+ # filters that narrow the scope of monitored containers within the
898
+ # cluster.
899
+ #
900
+ # @!attribute [rw] cluster_arn
901
+ # The Amazon Resource Name (ARN) of the container cluster to monitor.
902
+ # @return [String]
903
+ #
904
+ # @!attribute [rw] attribute_filters
905
+ # A list of key-value pairs that filter which containers within the
906
+ # cluster are monitored. Only containers that match the specified
907
+ # attributes are included.
908
+ # @return [Array<Types::ContainerAttribute>]
909
+ #
910
+ # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/ContainerMonitoringConfiguration AWS API Documentation
911
+ #
912
+ class ContainerMonitoringConfiguration < Struct.new(
913
+ :cluster_arn,
914
+ :attribute_filters)
915
+ SENSITIVE = []
916
+ include Aws::Structure
917
+ end
918
+
919
+ # @!attribute [rw] container_association_name
920
+ # The descriptive name of the container association. You can't change
921
+ # the name of a container association after you create it.
922
+ # @return [String]
923
+ #
924
+ # @!attribute [rw] description
925
+ # A description of the container association.
926
+ # @return [String]
927
+ #
928
+ # @!attribute [rw] type
929
+ # The type of container orchestration platform for the clusters in
930
+ # this association. Valid values are `ECS` and `EKS`. You can't
931
+ # change the type after creation.
932
+ # @return [String]
933
+ #
934
+ # @!attribute [rw] container_monitoring_configurations
935
+ # The list of container monitoring configurations that define which
936
+ # clusters and container attributes to monitor.
937
+ # @return [Array<Types::ContainerMonitoringConfiguration>]
938
+ #
939
+ # @!attribute [rw] tags
940
+ # The key:value pairs to associate with the resource.
941
+ # @return [Array<Types::Tag>]
942
+ #
943
+ # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/CreateContainerAssociationRequest AWS API Documentation
944
+ #
945
+ class CreateContainerAssociationRequest < Struct.new(
946
+ :container_association_name,
947
+ :description,
948
+ :type,
949
+ :container_monitoring_configurations,
950
+ :tags)
951
+ SENSITIVE = []
952
+ include Aws::Structure
953
+ end
954
+
955
+ # @!attribute [rw] container_association_name
956
+ # The descriptive name of the container association.
957
+ # @return [String]
958
+ #
959
+ # @!attribute [rw] container_association_arn
960
+ # The Amazon Resource Name (ARN) of the container association.
961
+ # @return [String]
962
+ #
963
+ # @!attribute [rw] description
964
+ # A description of the container association.
965
+ # @return [String]
966
+ #
967
+ # @!attribute [rw] type
968
+ # The type of container orchestration platform. Either `ECS` or `EKS`.
969
+ # @return [String]
970
+ #
971
+ # @!attribute [rw] container_monitoring_configurations
972
+ # The container monitoring configurations for this container
973
+ # association.
974
+ # @return [Array<Types::ContainerMonitoringConfiguration>]
975
+ #
976
+ # @!attribute [rw] status
977
+ # The current status of the container association.
978
+ # @return [String]
979
+ #
980
+ # @!attribute [rw] tags
981
+ # The key:value pairs associated with the resource.
982
+ # @return [Array<Types::Tag>]
983
+ #
984
+ # @!attribute [rw] update_token
985
+ # A token used for optimistic locking. Network Firewall returns a
986
+ # token to your requests that access the container association. The
987
+ # token marks the state of the container association resource at the
988
+ # time of the request. To make an update to the container association,
989
+ # provide the token in your request. Network Firewall uses the token
990
+ # to ensure that the container association hasn't changed since you
991
+ # last retrieved it. If it has changed, the operation fails with an
992
+ # `InvalidTokenException`. If this happens, retrieve the container
993
+ # association again to get a current copy of it with a new token.
994
+ # Reapply your changes as needed, then try the operation again using
995
+ # the new token.
996
+ # @return [String]
997
+ #
998
+ # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/CreateContainerAssociationResponse AWS API Documentation
999
+ #
1000
+ class CreateContainerAssociationResponse < Struct.new(
1001
+ :container_association_name,
1002
+ :container_association_arn,
1003
+ :description,
1004
+ :type,
1005
+ :container_monitoring_configurations,
1006
+ :status,
1007
+ :tags,
1008
+ :update_token)
1009
+ SENSITIVE = []
1010
+ include Aws::Structure
1011
+ end
1012
+
854
1013
  # @!attribute [rw] firewall_policy_name
855
1014
  # The descriptive name of the firewall policy. You can't change the
856
1015
  # name of a firewall policy after you create it.
@@ -1809,6 +1968,47 @@ module Aws::NetworkFirewall
1809
1968
  include Aws::Structure
1810
1969
  end
1811
1970
 
1971
+ # @!attribute [rw] container_association_name
1972
+ # The descriptive name of the container association. You must specify
1973
+ # the ARN or the name, and you can specify both.
1974
+ # @return [String]
1975
+ #
1976
+ # @!attribute [rw] container_association_arn
1977
+ # The Amazon Resource Name (ARN) of the container association. You
1978
+ # must specify the ARN or the name, and you can specify both.
1979
+ # @return [String]
1980
+ #
1981
+ # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DeleteContainerAssociationRequest AWS API Documentation
1982
+ #
1983
+ class DeleteContainerAssociationRequest < Struct.new(
1984
+ :container_association_name,
1985
+ :container_association_arn)
1986
+ SENSITIVE = []
1987
+ include Aws::Structure
1988
+ end
1989
+
1990
+ # @!attribute [rw] container_association_name
1991
+ # The descriptive name of the container association.
1992
+ # @return [String]
1993
+ #
1994
+ # @!attribute [rw] container_association_arn
1995
+ # The Amazon Resource Name (ARN) of the container association.
1996
+ # @return [String]
1997
+ #
1998
+ # @!attribute [rw] status
1999
+ # The current status of the container association.
2000
+ # @return [String]
2001
+ #
2002
+ # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DeleteContainerAssociationResponse AWS API Documentation
2003
+ #
2004
+ class DeleteContainerAssociationResponse < Struct.new(
2005
+ :container_association_name,
2006
+ :container_association_arn,
2007
+ :status)
2008
+ SENSITIVE = []
2009
+ include Aws::Structure
2010
+ end
2011
+
1812
2012
  # @!attribute [rw] firewall_policy_name
1813
2013
  # The descriptive name of the firewall policy. You can't change the
1814
2014
  # name of a firewall policy after you create it.
@@ -2265,6 +2465,88 @@ module Aws::NetworkFirewall
2265
2465
  include Aws::Structure
2266
2466
  end
2267
2467
 
2468
+ # @!attribute [rw] container_association_name
2469
+ # The descriptive name of the container association. You must specify
2470
+ # the ARN or the name, and you can specify both.
2471
+ # @return [String]
2472
+ #
2473
+ # @!attribute [rw] container_association_arn
2474
+ # The Amazon Resource Name (ARN) of the container association. You
2475
+ # must specify the ARN or the name, and you can specify both.
2476
+ # @return [String]
2477
+ #
2478
+ # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DescribeContainerAssociationRequest AWS API Documentation
2479
+ #
2480
+ class DescribeContainerAssociationRequest < Struct.new(
2481
+ :container_association_name,
2482
+ :container_association_arn)
2483
+ SENSITIVE = []
2484
+ include Aws::Structure
2485
+ end
2486
+
2487
+ # @!attribute [rw] container_association_name
2488
+ # The descriptive name of the container association.
2489
+ # @return [String]
2490
+ #
2491
+ # @!attribute [rw] container_association_arn
2492
+ # The Amazon Resource Name (ARN) of the container association.
2493
+ # @return [String]
2494
+ #
2495
+ # @!attribute [rw] description
2496
+ # A description of the container association.
2497
+ # @return [String]
2498
+ #
2499
+ # @!attribute [rw] type
2500
+ # The type of container orchestration platform. Either `ECS` or `EKS`.
2501
+ # @return [String]
2502
+ #
2503
+ # @!attribute [rw] container_monitoring_configurations
2504
+ # The container monitoring configurations for this container
2505
+ # association.
2506
+ # @return [Array<Types::ContainerMonitoringConfiguration>]
2507
+ #
2508
+ # @!attribute [rw] status
2509
+ # The current status of the container association.
2510
+ # @return [String]
2511
+ #
2512
+ # @!attribute [rw] resolved_cidr_count
2513
+ # The number of CIDR blocks that have been resolved from the monitored
2514
+ # containers for this container association.
2515
+ # @return [Integer]
2516
+ #
2517
+ # @!attribute [rw] last_updated_time
2518
+ # The last time that the container association was updated or resolved
2519
+ # new container IP addresses.
2520
+ # @return [Time]
2521
+ #
2522
+ # @!attribute [rw] tags
2523
+ # The key:value pairs associated with the resource.
2524
+ # @return [Array<Types::Tag>]
2525
+ #
2526
+ # @!attribute [rw] update_token
2527
+ # A token used for optimistic locking. Network Firewall returns a
2528
+ # token to your requests that access the container association. The
2529
+ # token marks the state of the container association resource at the
2530
+ # time of the request.
2531
+ # @return [String]
2532
+ #
2533
+ # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/DescribeContainerAssociationResponse AWS API Documentation
2534
+ #
2535
+ class DescribeContainerAssociationResponse < Struct.new(
2536
+ :container_association_name,
2537
+ :container_association_arn,
2538
+ :description,
2539
+ :type,
2540
+ :container_monitoring_configurations,
2541
+ :status,
2542
+ :resolved_cidr_count,
2543
+ :last_updated_time,
2544
+ :tags,
2545
+ :update_token)
2546
+ SENSITIVE = []
2547
+ include Aws::Structure
2548
+ end
2549
+
2268
2550
  # @!attribute [rw] firewall_arn
2269
2551
  # The Amazon Resource Name (ARN) of the firewall.
2270
2552
  # @return [String]
@@ -4319,9 +4601,8 @@ module Aws::NetworkFirewall
4319
4601
  # Describes the amount of time that can pass without any traffic sent
4320
4602
  # through the firewall before the firewall determines that the
4321
4603
  # connection is idle and Network Firewall removes the flow entry from
4322
- # its flow table. Existing connections and flows are not impacted when
4323
- # you update this value. Only new connections after you update this
4324
- # value are impacted.
4604
+ # its flow table. When you update this value, existing connections will
4605
+ # be treated according to your stream exception policy configuration.
4325
4606
  #
4326
4607
  # @!attribute [rw] tcp_idle_timeout_seconds
4327
4608
  # The number of seconds that can pass without any TCP traffic sent
@@ -4794,6 +5075,51 @@ module Aws::NetworkFirewall
4794
5075
  include Aws::Structure
4795
5076
  end
4796
5077
 
5078
+ # @!attribute [rw] max_results
5079
+ # The maximum number of objects that you want Network Firewall to
5080
+ # return for this request. If more objects are available, in the
5081
+ # response, Network Firewall provides a `NextToken` value that you can
5082
+ # use in a subsequent call to get the next batch of objects.
5083
+ # @return [Integer]
5084
+ #
5085
+ # @!attribute [rw] next_token
5086
+ # When you request a list of objects with a `MaxResults` setting, if
5087
+ # the number of objects that are still available for retrieval exceeds
5088
+ # the maximum you requested, Network Firewall returns a `NextToken`
5089
+ # value in the response. To retrieve the next batch of objects, use
5090
+ # the token returned from the prior request in your next request.
5091
+ # @return [String]
5092
+ #
5093
+ # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/ListContainerAssociationsRequest AWS API Documentation
5094
+ #
5095
+ class ListContainerAssociationsRequest < Struct.new(
5096
+ :max_results,
5097
+ :next_token)
5098
+ SENSITIVE = []
5099
+ include Aws::Structure
5100
+ end
5101
+
5102
+ # @!attribute [rw] container_associations
5103
+ # The container association metadata objects.
5104
+ # @return [Array<Types::ContainerAssociationSummary>]
5105
+ #
5106
+ # @!attribute [rw] next_token
5107
+ # When you request a list of objects with a `MaxResults` setting, if
5108
+ # the number of objects that are still available for retrieval exceeds
5109
+ # the maximum you requested, Network Firewall returns a `NextToken`
5110
+ # value in the response. To retrieve the next batch of objects, use
5111
+ # the token returned from the prior request in your next request.
5112
+ # @return [String]
5113
+ #
5114
+ # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/ListContainerAssociationsResponse AWS API Documentation
5115
+ #
5116
+ class ListContainerAssociationsResponse < Struct.new(
5117
+ :container_associations,
5118
+ :next_token)
5119
+ SENSITIVE = []
5120
+ include Aws::Structure
5121
+ end
5122
+
4797
5123
  # @!attribute [rw] next_token
4798
5124
  # When you request a list of objects with a `MaxResults` setting, if
4799
5125
  # the number of objects that are still available for retrieval exceeds
@@ -8228,6 +8554,113 @@ module Aws::NetworkFirewall
8228
8554
  include Aws::Structure
8229
8555
  end
8230
8556
 
8557
+ # @!attribute [rw] container_association_name
8558
+ # The descriptive name of the container association. You must specify
8559
+ # the ARN or the name, and you can specify both.
8560
+ # @return [String]
8561
+ #
8562
+ # @!attribute [rw] container_association_arn
8563
+ # The Amazon Resource Name (ARN) of the container association. You
8564
+ # must specify the ARN or the name, and you can specify both.
8565
+ # @return [String]
8566
+ #
8567
+ # @!attribute [rw] description
8568
+ # A description of the container association.
8569
+ # @return [String]
8570
+ #
8571
+ # @!attribute [rw] type
8572
+ # The type of container orchestration platform. This must match the
8573
+ # type specified when the container association was created.
8574
+ # @return [String]
8575
+ #
8576
+ # @!attribute [rw] container_monitoring_configurations
8577
+ # The updated list of container monitoring configurations that define
8578
+ # which clusters and container attributes to monitor.
8579
+ # @return [Array<Types::ContainerMonitoringConfiguration>]
8580
+ #
8581
+ # @!attribute [rw] tags
8582
+ # The key:value pairs associated with the resource.
8583
+ # @return [Array<Types::Tag>]
8584
+ #
8585
+ # @!attribute [rw] update_token
8586
+ # A token used for optimistic locking. Network Firewall returns a
8587
+ # token to your requests that access the container association. The
8588
+ # token marks the state of the container association resource at the
8589
+ # time of the request. To make an update to the container association,
8590
+ # provide the token in your request. Network Firewall uses the token
8591
+ # to ensure that the container association hasn't changed since you
8592
+ # last retrieved it. If it has changed, the operation fails with an
8593
+ # `InvalidTokenException`. If this happens, retrieve the container
8594
+ # association again to get a current copy of it with a new token.
8595
+ # Reapply your changes as needed, then try the operation again using
8596
+ # the new token.
8597
+ # @return [String]
8598
+ #
8599
+ # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/UpdateContainerAssociationRequest AWS API Documentation
8600
+ #
8601
+ class UpdateContainerAssociationRequest < Struct.new(
8602
+ :container_association_name,
8603
+ :container_association_arn,
8604
+ :description,
8605
+ :type,
8606
+ :container_monitoring_configurations,
8607
+ :tags,
8608
+ :update_token)
8609
+ SENSITIVE = []
8610
+ include Aws::Structure
8611
+ end
8612
+
8613
+ # @!attribute [rw] container_association_name
8614
+ # The descriptive name of the container association.
8615
+ # @return [String]
8616
+ #
8617
+ # @!attribute [rw] container_association_arn
8618
+ # The Amazon Resource Name (ARN) of the container association.
8619
+ # @return [String]
8620
+ #
8621
+ # @!attribute [rw] description
8622
+ # A description of the container association.
8623
+ # @return [String]
8624
+ #
8625
+ # @!attribute [rw] type
8626
+ # The type of container orchestration platform. Either `ECS` or `EKS`.
8627
+ # @return [String]
8628
+ #
8629
+ # @!attribute [rw] container_monitoring_configurations
8630
+ # The container monitoring configurations for this container
8631
+ # association.
8632
+ # @return [Array<Types::ContainerMonitoringConfiguration>]
8633
+ #
8634
+ # @!attribute [rw] status
8635
+ # The current status of the container association.
8636
+ # @return [String]
8637
+ #
8638
+ # @!attribute [rw] tags
8639
+ # The key:value pairs associated with the resource.
8640
+ # @return [Array<Types::Tag>]
8641
+ #
8642
+ # @!attribute [rw] update_token
8643
+ # A token used for optimistic locking. Network Firewall returns a
8644
+ # token to your requests that access the container association. The
8645
+ # token marks the state of the container association resource at the
8646
+ # time of the request.
8647
+ # @return [String]
8648
+ #
8649
+ # @see http://docs.aws.amazon.com/goto/WebAPI/network-firewall-2020-11-12/UpdateContainerAssociationResponse AWS API Documentation
8650
+ #
8651
+ class UpdateContainerAssociationResponse < Struct.new(
8652
+ :container_association_name,
8653
+ :container_association_arn,
8654
+ :description,
8655
+ :type,
8656
+ :container_monitoring_configurations,
8657
+ :status,
8658
+ :tags,
8659
+ :update_token)
8660
+ SENSITIVE = []
8661
+ include Aws::Structure
8662
+ end
8663
+
8231
8664
  # @!attribute [rw] enabled_analysis_types
8232
8665
  # An optional setting indicating the specific traffic analysis types
8233
8666
  # to enable on the firewall.
@@ -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.91.0'
57
+ GEM_VERSION = '1.92.0'
58
58
 
59
59
  end
60
60
 
data/sig/client.rbs CHANGED
@@ -166,6 +166,42 @@ module Aws
166
166
  ) -> _AttachRuleGroupsToProxyConfigurationResponseSuccess
167
167
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AttachRuleGroupsToProxyConfigurationResponseSuccess
168
168
 
169
+ interface _CreateContainerAssociationResponseSuccess
170
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateContainerAssociationResponse]
171
+ def container_association_name: () -> ::String
172
+ def container_association_arn: () -> ::String
173
+ def description: () -> ::String
174
+ def type: () -> ("ECS" | "EKS")
175
+ def container_monitoring_configurations: () -> ::Array[Types::ContainerMonitoringConfiguration]
176
+ def status: () -> ("ACTIVE" | "CREATING" | "DELETING")
177
+ def tags: () -> ::Array[Types::Tag]
178
+ def update_token: () -> ::String
179
+ end
180
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#create_container_association-instance_method
181
+ def create_container_association: (
182
+ container_association_name: ::String,
183
+ ?description: ::String,
184
+ type: ("ECS" | "EKS"),
185
+ container_monitoring_configurations: Array[
186
+ {
187
+ cluster_arn: ::String,
188
+ attribute_filters: Array[
189
+ {
190
+ key: ::String,
191
+ value: ::String
192
+ }
193
+ ]?
194
+ }
195
+ ],
196
+ ?tags: Array[
197
+ {
198
+ key: ::String,
199
+ value: ::String
200
+ }
201
+ ]
202
+ ) -> _CreateContainerAssociationResponseSuccess
203
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateContainerAssociationResponseSuccess
204
+
169
205
  interface _CreateFirewallResponseSuccess
170
206
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateFirewallResponse]
171
207
  def firewall: () -> Types::Firewall
@@ -419,6 +455,19 @@ module Aws
419
455
  ) -> _CreateVpcEndpointAssociationResponseSuccess
420
456
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateVpcEndpointAssociationResponseSuccess
421
457
 
458
+ interface _DeleteContainerAssociationResponseSuccess
459
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteContainerAssociationResponse]
460
+ def container_association_name: () -> ::String
461
+ def container_association_arn: () -> ::String
462
+ def status: () -> ("ACTIVE" | "CREATING" | "DELETING")
463
+ end
464
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#delete_container_association-instance_method
465
+ def delete_container_association: (
466
+ ?container_association_name: ::String,
467
+ ?container_association_arn: ::String
468
+ ) -> _DeleteContainerAssociationResponseSuccess
469
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteContainerAssociationResponseSuccess
470
+
422
471
  interface _DeleteFirewallResponseSuccess
423
472
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteFirewallResponse]
424
473
  def firewall: () -> Types::Firewall
@@ -546,6 +595,26 @@ module Aws
546
595
  ) -> _DeleteVpcEndpointAssociationResponseSuccess
547
596
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteVpcEndpointAssociationResponseSuccess
548
597
 
598
+ interface _DescribeContainerAssociationResponseSuccess
599
+ include ::Seahorse::Client::_ResponseSuccess[Types::DescribeContainerAssociationResponse]
600
+ def container_association_name: () -> ::String
601
+ def container_association_arn: () -> ::String
602
+ def description: () -> ::String
603
+ def type: () -> ("ECS" | "EKS")
604
+ def container_monitoring_configurations: () -> ::Array[Types::ContainerMonitoringConfiguration]
605
+ def status: () -> ("ACTIVE" | "CREATING" | "DELETING")
606
+ def resolved_cidr_count: () -> ::Integer
607
+ def last_updated_time: () -> ::Time
608
+ def tags: () -> ::Array[Types::Tag]
609
+ def update_token: () -> ::String
610
+ end
611
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#describe_container_association-instance_method
612
+ def describe_container_association: (
613
+ ?container_association_name: ::String,
614
+ ?container_association_arn: ::String
615
+ ) -> _DescribeContainerAssociationResponseSuccess
616
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DescribeContainerAssociationResponseSuccess
617
+
549
618
  interface _DescribeFirewallResponseSuccess
550
619
  include ::Seahorse::Client::_ResponseSuccess[Types::DescribeFirewallResponse]
551
620
  def update_token: () -> ::String
@@ -841,6 +910,18 @@ module Aws
841
910
  ) -> _ListAnalysisReportsResponseSuccess
842
911
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAnalysisReportsResponseSuccess
843
912
 
913
+ interface _ListContainerAssociationsResponseSuccess
914
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListContainerAssociationsResponse]
915
+ def container_associations: () -> ::Array[Types::ContainerAssociationSummary]
916
+ def next_token: () -> ::String
917
+ end
918
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#list_container_associations-instance_method
919
+ def list_container_associations: (
920
+ ?max_results: ::Integer,
921
+ ?next_token: ::String
922
+ ) -> _ListContainerAssociationsResponseSuccess
923
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListContainerAssociationsResponseSuccess
924
+
844
925
  interface _ListFirewallPoliciesResponseSuccess
845
926
  include ::Seahorse::Client::_ResponseSuccess[Types::ListFirewallPoliciesResponse]
846
927
  def next_token: () -> ::String
@@ -1110,6 +1191,44 @@ module Aws
1110
1191
  ) -> _UpdateAvailabilityZoneChangeProtectionResponseSuccess
1111
1192
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAvailabilityZoneChangeProtectionResponseSuccess
1112
1193
 
1194
+ interface _UpdateContainerAssociationResponseSuccess
1195
+ include ::Seahorse::Client::_ResponseSuccess[Types::UpdateContainerAssociationResponse]
1196
+ def container_association_name: () -> ::String
1197
+ def container_association_arn: () -> ::String
1198
+ def description: () -> ::String
1199
+ def type: () -> ("ECS" | "EKS")
1200
+ def container_monitoring_configurations: () -> ::Array[Types::ContainerMonitoringConfiguration]
1201
+ def status: () -> ("ACTIVE" | "CREATING" | "DELETING")
1202
+ def tags: () -> ::Array[Types::Tag]
1203
+ def update_token: () -> ::String
1204
+ end
1205
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/NetworkFirewall/Client.html#update_container_association-instance_method
1206
+ def update_container_association: (
1207
+ ?container_association_name: ::String,
1208
+ ?container_association_arn: ::String,
1209
+ ?description: ::String,
1210
+ type: ("ECS" | "EKS"),
1211
+ container_monitoring_configurations: Array[
1212
+ {
1213
+ cluster_arn: ::String,
1214
+ attribute_filters: Array[
1215
+ {
1216
+ key: ::String,
1217
+ value: ::String
1218
+ }
1219
+ ]?
1220
+ }
1221
+ ],
1222
+ ?tags: Array[
1223
+ {
1224
+ key: ::String,
1225
+ value: ::String
1226
+ }
1227
+ ],
1228
+ update_token: ::String
1229
+ ) -> _UpdateContainerAssociationResponseSuccess
1230
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateContainerAssociationResponseSuccess
1231
+
1113
1232
  interface _UpdateFirewallAnalysisSettingsResponseSuccess
1114
1233
  include ::Seahorse::Client::_ResponseSuccess[Types::UpdateFirewallAnalysisSettingsResponse]
1115
1234
  def enabled_analysis_types: () -> ::Array[("TLS_SNI" | "HTTP_HOST")]