Class: Google::Apis::ComputeAlpha::InstancesGetEffectiveFirewallsResponseOrganizationFirewallPolicy
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::InstancesGetEffectiveFirewallsResponseOrganizationFirewallPolicy
- 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
Overview
A pruned SecurityPolicy containing ID and any applicable firewall rules.
Instance Attribute Summary collapse
-
#id ⇒ Fixnum
The unique identifier for the security policy.
-
#rules ⇒ Array<Google::Apis::ComputeAlpha::SecurityPolicyRule>
The rules that apply to the network.
Instance Method Summary collapse
-
#initialize(**args) ⇒ InstancesGetEffectiveFirewallsResponseOrganizationFirewallPolicy
constructor
A new instance of InstancesGetEffectiveFirewallsResponseOrganizationFirewallPolicy.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ InstancesGetEffectiveFirewallsResponseOrganizationFirewallPolicy
Returns a new instance of InstancesGetEffectiveFirewallsResponseOrganizationFirewallPolicy.
16517 16518 16519 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16517 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ Fixnum
The unique identifier for the security policy. This identifier is defined by
the server.
Corresponds to the JSON property id
16510 16511 16512 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16510 def id @id end |
#rules ⇒ Array<Google::Apis::ComputeAlpha::SecurityPolicyRule>
The rules that apply to the network.
Corresponds to the JSON property rules
16515 16516 16517 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16515 def rules @rules end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
16522 16523 16524 16525 |
# File 'generated/google/apis/compute_alpha/classes.rb', line 16522 def update!(**args) @id = args[:id] if args.key?(:id) @rules = args[:rules] if args.key?(:rules) end |