Class: Google::Apis::ComputeAlpha::SecurityPolicyRuleMatcherConfig

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/compute_alpha/classes.rb,
generated/google/apis/compute_alpha/representations.rb,
generated/google/apis/compute_alpha/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ SecurityPolicyRuleMatcherConfig

Returns a new instance of SecurityPolicyRuleMatcherConfig.



30588
30589
30590
# File 'generated/google/apis/compute_alpha/classes.rb', line 30588

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#dest_ip_rangesArray<String>

CIDR IP address range. This field may only be specified when versioned_expr is set to FIREWALL. Corresponds to the JSON property destIpRanges

Returns:

  • (Array<String>)


30569
30570
30571
# File 'generated/google/apis/compute_alpha/classes.rb', line 30569

def dest_ip_ranges
  @dest_ip_ranges
end

#dest_portsArray<Google::Apis::ComputeAlpha::SecurityPolicyRuleMatcherConfigDestinationPort>

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



30575
30576
30577
# File 'generated/google/apis/compute_alpha/classes.rb', line 30575

def dest_ports
  @dest_ports
end

#layer4_configsArray<Google::Apis::ComputeAlpha::SecurityPolicyRuleMatcherConfigLayer4Config>

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



30581
30582
30583
# File 'generated/google/apis/compute_alpha/classes.rb', line 30581

def layer4_configs
  @layer4_configs
end

#src_ip_rangesArray<String>

CIDR IP address range. Corresponds to the JSON property srcIpRanges

Returns:

  • (Array<String>)


30586
30587
30588
# File 'generated/google/apis/compute_alpha/classes.rb', line 30586

def src_ip_ranges
  @src_ip_ranges
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



30593
30594
30595
30596
30597
30598
# File 'generated/google/apis/compute_alpha/classes.rb', line 30593

def update!(**args)
  @dest_ip_ranges = args[:dest_ip_ranges] if args.key?(:dest_ip_ranges)
  @dest_ports = args[:dest_ports] if args.key?(:dest_ports)
  @layer4_configs = args[:layer4_configs] if args.key?(:layer4_configs)
  @src_ip_ranges = args[:src_ip_ranges] if args.key?(:src_ip_ranges)
end