Show / Hide Table of Contents

Class PacketMirroringFilter

Inheritance
System.Object
PacketMirroringFilter
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class PacketMirroringFilter : IDirectResponseSchema

Properties

CidrRanges

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.

Declaration
[JsonProperty("cidrRanges")]
public virtual IList<string> CidrRanges { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Direction

Direction of traffic to mirror, either INGRESS, EGRESS, or BOTH. The default is BOTH.

Declaration
[JsonProperty("direction")]
public virtual string Direction { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

IPProtocols

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.

Declaration
[JsonProperty("IPProtocols")]
public virtual IList<string> IPProtocols { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<System.String>

Implements

IDirectResponseSchema
In This Article
Back to top