Class: Google::Apis::ComputeAlpha::NetworksGetEffectiveFirewallsResponseOrganizationFirewallPolicy

Inherits:
Object
  • Object
show all
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

A pruned SecurityPolicy containing ID and any applicable firewall rules.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ NetworksGetEffectiveFirewallsResponseOrganizationFirewallPolicy

Returns a new instance of NetworksGetEffectiveFirewallsResponseOrganizationFirewallPolicy.



33092
33093
33094
# File 'lib/google/apis/compute_alpha/classes.rb', line 33092

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

Instance Attribute Details

#idFixnum

[Output Only] The unique identifier for the security policy. This identifier is defined by the server. Corresponds to the JSON property id

Returns:

  • (Fixnum)


33085
33086
33087
# File 'lib/google/apis/compute_alpha/classes.rb', line 33085

def id
  @id
end

#rulesArray<Google::Apis::ComputeAlpha::SecurityPolicyRule>

The rules that apply to the network. Corresponds to the JSON property rules



33090
33091
33092
# File 'lib/google/apis/compute_alpha/classes.rb', line 33090

def rules
  @rules
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



33097
33098
33099
33100
# File 'lib/google/apis/compute_alpha/classes.rb', line 33097

def update!(**args)
  @id = args[:id] if args.key?(:id)
  @rules = args[:rules] if args.key?(:rules)
end