Class: Google::Apis::ComputeAlpha::PacketMirroringFilter
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::PacketMirroringFilter
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/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.
-
#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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ PacketMirroringFilter
Returns a new instance of PacketMirroringFilter
22943 22944 22945 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 22943 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
22941 22942 22943 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 22941 def cidr_ranges @cidr_ranges 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
22933 22934 22935 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 22933 def ip_protocols @ip_protocols end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
22948 22949 22950 22951 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 22948 def update!(**args) @ip_protocols = args[:ip_protocols] if args.key?(:ip_protocols) @cidr_ranges = args[:cidr_ranges] if args.key?(:cidr_ranges) end |