Show / Hide Table of Contents

Class SecurityPolicyRuleMatcherConfig

Inheritance
System.Object
SecurityPolicyRuleMatcherConfig
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.alpha.Data
Assembly: Google.Apis.Compute.alpha.dll
Syntax
public class SecurityPolicyRuleMatcherConfig : IDirectResponseSchema

Properties

DestIpRanges

CIDR IP address range. This field may only be specified when versioned_expr is set to FIREWALL.

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

DestPorts

Pairs of IP protocols and ports that the rule should match. This field may only be specified when versioned_expr is set to FIREWALL.

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

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. This field may only be specified when versioned_expr is set to FIREWALL.

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

SrcIpRanges

CIDR IP address range. Maximum number of src_ip_ranges allowed is 10.

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