Show / Hide Table of Contents

Class FirewallPolicyRuleMatcher

Represents a match condition that incoming traffic is evaluated against. Exactly one field must be specified.

Inheritance
System.Object
FirewallPolicyRuleMatcher
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 FirewallPolicyRuleMatcher : IDirectResponseSchema

Properties

DestIpRanges

CIDR IP address range. Maximum number of destination CIDR IP ranges allowed is 5000.

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

ETag

The ETag of the item.

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

Layer4Configs

Pairs of IP protocols and ports that the rule should match.

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

SrcIpRanges

CIDR IP address range. Maximum number of source CIDR IP ranges allowed is 5000.

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

Implements

IDirectResponseSchema
In This Article
Back to top