FirewallPolicyRuleResponse

data class FirewallPolicyRuleResponse(val action: String, val description: String, val direction: String, val disabled: Boolean, val enableLogging: Boolean, val kind: String, val match: FirewallPolicyRuleMatcherResponse, val priority: Int, val ruleName: String, val ruleTupleCount: Int, val targetResources: List<String>, val targetSecureTags: List<FirewallPolicyRuleSecureTagResponse>, val targetServiceAccounts: List<String>)

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).

Constructors

Link copied to clipboard
fun FirewallPolicyRuleResponse(action: String, description: String, direction: String, disabled: Boolean, enableLogging: Boolean, kind: String, match: FirewallPolicyRuleMatcherResponse, priority: Int, ruleName: String, ruleTupleCount: Int, targetResources: List<String>, targetSecureTags: List<FirewallPolicyRuleSecureTagResponse>, targetServiceAccounts: List<String>)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The Action to perform when the client connection triggers the rule. Valid actions are "allow", "deny" and "goto_next".

Link copied to clipboard

An optional description for this resource.

Link copied to clipboard

The direction in which this rule applies.

Link copied to clipboard

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.

Link copied to clipboard

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.

Link copied to clipboard

Output only Type of the resource. Always compute#firewallPolicyRule for firewall policy rules

Link copied to clipboard

A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced.

Link copied to clipboard

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 prority.

Link copied to clipboard

An optional name for the rule. This field is not a unique identifier and can be updated.

Link copied to clipboard

Calculation of the complexity of a single firewall policy rule.

Link copied to clipboard

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.

Link copied to clipboard

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.

Link copied to clipboard

A list of service accounts indicating the sets of instances that are applied with this rule.