Class: Google::Apis::ComputeV1::PacketMirroringFilter
- Inherits:
-
Object
- Object
- Google::Apis::ComputeV1::PacketMirroringFilter
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- generated/google/apis/compute_v1/classes.rb,
generated/google/apis/compute_v1/representations.rb,
generated/google/apis/compute_v1/representations.rb
Instance Attribute Summary collapse
-
#cidr_ranges ⇒ Array<String>
IP CIDR ranges that apply as filter on the source (ingress) or destination ( egress) IP in the IP header.
-
#direction ⇒ String
Direction of traffic to mirror, either INGRESS, EGRESS, or BOTH.
-
#ip_protocols ⇒ Array<String>
Protocols that apply as filter on mirrored traffic.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PacketMirroringFilter
constructor
A new instance of PacketMirroringFilter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PacketMirroringFilter
Returns a new instance of PacketMirroringFilter.
21445 21446 21447 |
# File 'generated/google/apis/compute_v1/classes.rb', line 21445 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cidr_ranges ⇒ Array<String>
IP CIDR ranges that apply as filter on the source (ingress) or destination (
egress) IP in the IP header. Only IPv4 is supported. If no ranges are
specified, all traffic that matches the specified IPProtocols is mirrored. If
neither cidrRanges nor IPProtocols is specified, all traffic is mirrored.
Corresponds to the JSON property cidrRanges
21437 21438 21439 |
# File 'generated/google/apis/compute_v1/classes.rb', line 21437 def cidr_ranges @cidr_ranges end |
#direction ⇒ String
Direction of traffic to mirror, either INGRESS, EGRESS, or BOTH. The default
is BOTH.
Corresponds to the JSON property direction
21443 21444 21445 |
# File 'generated/google/apis/compute_v1/classes.rb', line 21443 def direction @direction end |
#ip_protocols ⇒ Array<String>
Protocols that apply as filter on mirrored traffic. If no protocols are
specified, all traffic that matches the specified CIDR ranges is mirrored. If
neither cidrRanges nor IPProtocols is specified, all traffic is mirrored.
Corresponds to the JSON property IPProtocols
21429 21430 21431 |
# File 'generated/google/apis/compute_v1/classes.rb', line 21429 def ip_protocols @ip_protocols end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
21450 21451 21452 21453 21454 |
# File 'generated/google/apis/compute_v1/classes.rb', line 21450 def update!(**args) @ip_protocols = args[:ip_protocols] if args.key?(:ip_protocols) @cidr_ranges = args[:cidr_ranges] if args.key?(:cidr_ranges) @direction = args[:direction] if args.key?(:direction) end |