Class FirewallPolicyRule
Represents a rule that describes one or more match conditions along with the action to be taken when traffic matches this condition (allow or deny).
Implements
Inherited Members
Namespace: Google.Apis.Compute.v1.Data
Assembly: Google.Apis.Compute.v1.dll
Syntax
public class FirewallPolicyRule : IDirectResponseSchema
Properties
Action
The Action to perform when the client connection triggers the rule. Valid actions for firewall rules are: "allow", "deny", "apply_security_profile_group" and "goto_next". Valid actions for packet mirroring rules are: "mirror", "do_not_mirror" and "goto_next".
Declaration
[JsonProperty("action")]
public virtual string Action { get; set; }
Property Value
Type | Description |
---|---|
string |
Description
An optional description for this resource.
Declaration
[JsonProperty("description")]
public virtual string Description { get; set; }
Property Value
Type | Description |
---|---|
string |
Direction
The direction in which this rule applies.
Declaration
[JsonProperty("direction")]
public virtual string Direction { get; set; }
Property Value
Type | Description |
---|---|
string |
Disabled
Denotes whether the firewall policy rule is disabled. When set to true, the firewall policy rule is not enforced and traffic behaves as if it did not exist. If this is unspecified, the firewall policy rule will be enabled.
Declaration
[JsonProperty("disabled")]
public virtual bool? Disabled { get; set; }
Property Value
Type | Description |
---|---|
bool? |
ETag
The ETag of the item.
Declaration
public virtual string ETag { get; set; }
Property Value
Type | Description |
---|---|
string |
EnableLogging
Denotes whether to enable logging for a particular rule. If logging is enabled, logs will be exported to the configured export destination in Stackdriver. Logs may be exported to BigQuery or Pub/Sub. Note: you cannot enable logging on "goto_next" rules.
Declaration
[JsonProperty("enableLogging")]
public virtual bool? EnableLogging { get; set; }
Property Value
Type | Description |
---|---|
bool? |
Kind
[Output only] Type of the resource. Returns compute#firewallPolicyRule for firewall rules and compute#packetMirroringRule for packet mirroring rules.
Declaration
[JsonProperty("kind")]
public virtual string Kind { get; set; }
Property Value
Type | Description |
---|---|
string |
Match
A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced.
Declaration
[JsonProperty("match")]
public virtual FirewallPolicyRuleMatcher Match { get; set; }
Property Value
Type | Description |
---|---|
FirewallPolicyRuleMatcher |
Priority
An integer indicating the priority of a rule in the list. The priority must be a positive value between 0 and 2147483647. Rules are evaluated from highest to lowest priority where 0 is the highest priority and 2147483647 is the lowest priority.
Declaration
[JsonProperty("priority")]
public virtual int? Priority { get; set; }
Property Value
Type | Description |
---|---|
int? |
RuleName
An optional name for the rule. This field is not a unique identifier and can be updated.
Declaration
[JsonProperty("ruleName")]
public virtual string RuleName { get; set; }
Property Value
Type | Description |
---|---|
string |
RuleTupleCount
[Output Only] Calculation of the complexity of a single firewall policy rule.
Declaration
[JsonProperty("ruleTupleCount")]
public virtual int? RuleTupleCount { get; set; }
Property Value
Type | Description |
---|---|
int? |
SecurityProfileGroup
A fully-qualified URL of a SecurityProfile resource instance. Example: https://networksecurity.googleapis.com/v1/projects/{project}/locations/{location}/securityProfileGroups/my-security-profile-group Must be specified if action is one of 'apply_security_profile_group' or 'mirror'. Cannot be specified for other actions.
Declaration
[JsonProperty("securityProfileGroup")]
public virtual string SecurityProfileGroup { get; set; }
Property Value
Type | Description |
---|---|
string |
TargetResources
A list of network resource URLs to which this rule applies. This field allows you to control which network's VMs get this rule. If this field is left blank, all VMs within the organization will receive the rule.
Declaration
[JsonProperty("targetResources")]
public virtual IList<string> TargetResources { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
TargetSecureTags
A list of secure tags that controls which instances the firewall rule applies to. If targetSecureTag are specified, then the firewall rule applies only to instances in the VPC network that have one of those EFFECTIVE secure tags, if all the target_secure_tag are in INEFFECTIVE state, then this rule will be ignored. targetSecureTag may not be set at the same time as targetServiceAccounts. If neither targetServiceAccounts nor targetSecureTag are specified, the firewall rule applies to all instances on the specified network. Maximum number of target label tags allowed is 256.
Declaration
[JsonProperty("targetSecureTags")]
public virtual IList<FirewallPolicyRuleSecureTag> TargetSecureTags { get; set; }
Property Value
Type | Description |
---|---|
IList<FirewallPolicyRuleSecureTag> |
TargetServiceAccounts
A list of service accounts indicating the sets of instances that are applied with this rule.
Declaration
[JsonProperty("targetServiceAccounts")]
public virtual IList<string> TargetServiceAccounts { get; set; }
Property Value
Type | Description |
---|---|
IList<string> |
TlsInspect
Boolean flag indicating if the traffic should be TLS decrypted. Can be set only if action = 'apply_security_profile_group' and cannot be set for other actions.
Declaration
[JsonProperty("tlsInspect")]
public virtual bool? TlsInspect { get; set; }
Property Value
Type | Description |
---|---|
bool? |