Class: Google::Cloud::Compute::V1::FirewallPolicyRule
- Inherits:
-
Object
- Object
- Google::Cloud::Compute::V1::FirewallPolicyRule
- Extended by:
- Protobuf::MessageExts::ClassMethods
- Includes:
- Protobuf::MessageExts
- Defined in:
- proto_docs/google/cloud/compute/v1/compute.rb
Overview
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).
Defined Under Namespace
Modules: Direction
Instance Attribute Summary collapse
-
#action ⇒ ::String
The Action to perform when the client connection triggers the rule.
-
#description ⇒ ::String
An optional description for this resource.
-
#direction ⇒ ::String
The direction in which this rule applies.
-
#disabled ⇒ ::Boolean
Denotes whether the firewall policy rule is disabled.
-
#enable_logging ⇒ ::Boolean
Denotes whether to enable logging for a particular rule.
-
#kind ⇒ ::String
[Output only] Type of the resource.
-
#match ⇒ ::Google::Cloud::Compute::V1::FirewallPolicyRuleMatcher
A match condition that incoming traffic is evaluated against.
-
#priority ⇒ ::Integer
An integer indicating the priority of a rule in the list.
-
#rule_tuple_count ⇒ ::Integer
[Output Only] Calculation of the complexity of a single firewall policy rule.
-
#target_resources ⇒ ::Array<::String>
A list of network resource URLs to which this rule applies.
-
#target_service_accounts ⇒ ::Array<::String>
A list of service accounts indicating the sets of instances that are applied with this rule.
Instance Attribute Details
#action ⇒ ::String
Returns The Action to perform when the client connection triggers the rule. Can currently be either "allow" or "deny()" where valid values for status are 403, 404, and 502.
6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 6124 class FirewallPolicyRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The direction in which this rule applies. module Direction # A value indicating that the enum field is not set. UNDEFINED_DIRECTION = 0 EGRESS = 432880501 INGRESS = 516931221 end end |
#description ⇒ ::String
Returns An optional description for this resource.
6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 6124 class FirewallPolicyRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The direction in which this rule applies. module Direction # A value indicating that the enum field is not set. UNDEFINED_DIRECTION = 0 EGRESS = 432880501 INGRESS = 516931221 end end |
#direction ⇒ ::String
Returns The direction in which this rule applies. Check the Direction enum for the list of possible values.
6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 6124 class FirewallPolicyRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The direction in which this rule applies. module Direction # A value indicating that the enum field is not set. UNDEFINED_DIRECTION = 0 EGRESS = 432880501 INGRESS = 516931221 end end |
#disabled ⇒ ::Boolean
Returns 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.
6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 6124 class FirewallPolicyRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The direction in which this rule applies. module Direction # A value indicating that the enum field is not set. UNDEFINED_DIRECTION = 0 EGRESS = 432880501 INGRESS = 516931221 end end |
#enable_logging ⇒ ::Boolean
Returns 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.
6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 6124 class FirewallPolicyRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The direction in which this rule applies. module Direction # A value indicating that the enum field is not set. UNDEFINED_DIRECTION = 0 EGRESS = 432880501 INGRESS = 516931221 end end |
#kind ⇒ ::String
Returns [Output only] Type of the resource. Always compute#firewallPolicyRule for firewall policy rules.
6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 6124 class FirewallPolicyRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The direction in which this rule applies. module Direction # A value indicating that the enum field is not set. UNDEFINED_DIRECTION = 0 EGRESS = 432880501 INGRESS = 516931221 end end |
#match ⇒ ::Google::Cloud::Compute::V1::FirewallPolicyRuleMatcher
Returns A match condition that incoming traffic is evaluated against. If it evaluates to true, the corresponding 'action' is enforced.
6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 6124 class FirewallPolicyRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The direction in which this rule applies. module Direction # A value indicating that the enum field is not set. UNDEFINED_DIRECTION = 0 EGRESS = 432880501 INGRESS = 516931221 end end |
#priority ⇒ ::Integer
Returns 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.
6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 6124 class FirewallPolicyRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The direction in which this rule applies. module Direction # A value indicating that the enum field is not set. UNDEFINED_DIRECTION = 0 EGRESS = 432880501 INGRESS = 516931221 end end |
#rule_tuple_count ⇒ ::Integer
Returns [Output Only] Calculation of the complexity of a single firewall policy rule.
6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 6124 class FirewallPolicyRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The direction in which this rule applies. module Direction # A value indicating that the enum field is not set. UNDEFINED_DIRECTION = 0 EGRESS = 432880501 INGRESS = 516931221 end end |
#target_resources ⇒ ::Array<::String>
Returns 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.
6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 6124 class FirewallPolicyRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The direction in which this rule applies. module Direction # A value indicating that the enum field is not set. UNDEFINED_DIRECTION = 0 EGRESS = 432880501 INGRESS = 516931221 end end |
#target_service_accounts ⇒ ::Array<::String>
Returns A list of service accounts indicating the sets of instances that are applied with this rule.
6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 |
# File 'proto_docs/google/cloud/compute/v1/compute.rb', line 6124 class FirewallPolicyRule include ::Google::Protobuf::MessageExts extend ::Google::Protobuf::MessageExts::ClassMethods # The direction in which this rule applies. module Direction # A value indicating that the enum field is not set. UNDEFINED_DIRECTION = 0 EGRESS = 432880501 INGRESS = 516931221 end end |