Class: Google::Apis::ComputeAlpha::FirewallPolicyRuleMatcher
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::FirewallPolicyRuleMatcher
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
Represents a match condition that incoming traffic is evaluated against. Exactly one field must be specified.
Instance Attribute Summary collapse
-
#dest_address_groups ⇒ Array<String>
Address groups which should be matched against the traffic destination.
-
#dest_ip_ranges ⇒ Array<String>
CIDR IP address range.
-
#layer4_configs ⇒ Array<Google::Apis::ComputeAlpha::FirewallPolicyRuleMatcherLayer4Config>
Pairs of IP protocols and ports that the rule should match.
-
#src_address_groups ⇒ Array<String>
Address groups which should be matched against the traffic source.
-
#src_ip_ranges ⇒ Array<String>
CIDR IP address range.
-
#src_secure_tags ⇒ Array<Google::Apis::ComputeAlpha::FirewallPolicyRuleSecureTag>
List of secure tag values, which should be matched at the source of the traffic.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FirewallPolicyRuleMatcher
constructor
A new instance of FirewallPolicyRuleMatcher.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FirewallPolicyRuleMatcher
Returns a new instance of FirewallPolicyRuleMatcher.
8818 8819 8820 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 8818 def initialize(**args) update!(**args) end |
Instance Attribute Details
#dest_address_groups ⇒ Array<String>
Address groups which should be matched against the traffic destination.
Maximum number of destination address groups is 10.
Corresponds to the JSON property destAddressGroups
8786 8787 8788 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 8786 def dest_address_groups @dest_address_groups end |
#dest_ip_ranges ⇒ Array<String>
CIDR IP address range. Maximum number of destination CIDR IP ranges allowed is
5000.
Corresponds to the JSON property destIpRanges
8792 8793 8794 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 8792 def dest_ip_ranges @dest_ip_ranges end |
#layer4_configs ⇒ Array<Google::Apis::ComputeAlpha::FirewallPolicyRuleMatcherLayer4Config>
Pairs of IP protocols and ports that the rule should match.
Corresponds to the JSON property layer4Configs
8797 8798 8799 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 8797 def layer4_configs @layer4_configs end |
#src_address_groups ⇒ Array<String>
Address groups which should be matched against the traffic source. Maximum
number of source address groups is 10.
Corresponds to the JSON property srcAddressGroups
8803 8804 8805 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 8803 def src_address_groups @src_address_groups end |
#src_ip_ranges ⇒ Array<String>
CIDR IP address range. Maximum number of source CIDR IP ranges allowed is 5000.
Corresponds to the JSON property srcIpRanges
8808 8809 8810 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 8808 def src_ip_ranges @src_ip_ranges end |
#src_secure_tags ⇒ Array<Google::Apis::ComputeAlpha::FirewallPolicyRuleSecureTag>
List of secure tag values, which should be matched at the source of the
traffic. For INGRESS rule, if all the srcSecureTag are INEFFECTIVE, and there
is no srcIpRange, this rule will be ignored. Maximum number of source tag
values allowed is 256.
Corresponds to the JSON property srcSecureTags
8816 8817 8818 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 8816 def @src_secure_tags end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
8823 8824 8825 8826 8827 8828 8829 8830 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 8823 def update!(**args) @dest_address_groups = args[:dest_address_groups] if args.key?(:dest_address_groups) @dest_ip_ranges = args[:dest_ip_ranges] if args.key?(:dest_ip_ranges) @layer4_configs = args[:layer4_configs] if args.key?(:layer4_configs) @src_address_groups = args[:src_address_groups] if args.key?(:src_address_groups) @src_ip_ranges = args[:src_ip_ranges] if args.key?(:src_ip_ranges) @src_secure_tags = args[:src_secure_tags] if args.key?(:src_secure_tags) end |