Class: Google::Apis::NetworkmanagementV1::FirewallInfo
- Inherits:
-
Object
- Object
- Google::Apis::NetworkmanagementV1::FirewallInfo
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/networkmanagement_v1/classes.rb,
lib/google/apis/networkmanagement_v1/representations.rb,
lib/google/apis/networkmanagement_v1/representations.rb
Overview
For display only. Metadata associated with a VPC firewall rule, an implied VPC firewall rule, or a hierarchical firewall policy rule.
Instance Attribute Summary collapse
-
#action ⇒ String
Possible values: ALLOW, DENY Corresponds to the JSON property
action. -
#direction ⇒ String
Possible values: INGRESS, EGRESS Corresponds to the JSON property
direction. -
#display_name ⇒ String
The display name of the VPC firewall rule.
-
#firewall_rule_type ⇒ String
The firewall rule's type.
-
#network_uri ⇒ String
The URI of the VPC network that the firewall rule is associated with.
-
#policy ⇒ String
The hierarchical firewall policy that this rule is associated with.
-
#priority ⇒ Fixnum
The priority of the firewall rule.
-
#target_service_accounts ⇒ Array<String>
The target service accounts specified by the firewall rule.
-
#target_tags ⇒ Array<String>
The target tags defined by the VPC firewall rule.
-
#uri ⇒ String
The URI of the VPC firewall rule.
Instance Method Summary collapse
-
#initialize(**args) ⇒ FirewallInfo
constructor
A new instance of FirewallInfo.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ FirewallInfo
Returns a new instance of FirewallInfo.
584 585 586 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 584 def initialize(**args) update!(**args) end |
Instance Attribute Details
#action ⇒ String
Possible values: ALLOW, DENY
Corresponds to the JSON property action
532 533 534 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 532 def action @action end |
#direction ⇒ String
Possible values: INGRESS, EGRESS
Corresponds to the JSON property direction
537 538 539 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 537 def direction @direction end |
#display_name ⇒ String
The display name of the VPC firewall rule. This field is not applicable to
hierarchical firewall policy rules.
Corresponds to the JSON property displayName
543 544 545 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 543 def display_name @display_name end |
#firewall_rule_type ⇒ String
The firewall rule's type.
Corresponds to the JSON property firewallRuleType
548 549 550 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 548 def firewall_rule_type @firewall_rule_type end |
#network_uri ⇒ String
The URI of the VPC network that the firewall rule is associated with. This
field is not applicable to hierarchical firewall policy rules.
Corresponds to the JSON property networkUri
554 555 556 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 554 def network_uri @network_uri end |
#policy ⇒ String
The hierarchical firewall policy that this rule is associated with. This field
is not applicable to VPC firewall rules.
Corresponds to the JSON property policy
560 561 562 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 560 def policy @policy end |
#priority ⇒ Fixnum
The priority of the firewall rule.
Corresponds to the JSON property priority
565 566 567 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 565 def priority @priority end |
#target_service_accounts ⇒ Array<String>
The target service accounts specified by the firewall rule.
Corresponds to the JSON property targetServiceAccounts
570 571 572 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 570 def target_service_accounts @target_service_accounts end |
#target_tags ⇒ Array<String>
The target tags defined by the VPC firewall rule. This field is not applicable
to hierarchical firewall policy rules.
Corresponds to the JSON property targetTags
576 577 578 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 576 def @target_tags end |
#uri ⇒ String
The URI of the VPC firewall rule. This field is not applicable to implied
firewall rules or hierarchical firewall policy rules.
Corresponds to the JSON property uri
582 583 584 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 582 def uri @uri end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
589 590 591 592 593 594 595 596 597 598 599 600 |
# File 'lib/google/apis/networkmanagement_v1/classes.rb', line 589 def update!(**args) @action = args[:action] if args.key?(:action) @direction = args[:direction] if args.key?(:direction) @display_name = args[:display_name] if args.key?(:display_name) @firewall_rule_type = args[:firewall_rule_type] if args.key?(:firewall_rule_type) @network_uri = args[:network_uri] if args.key?(:network_uri) @policy = args[:policy] if args.key?(:policy) @priority = args[:priority] if args.key?(:priority) @target_service_accounts = args[:target_service_accounts] if args.key?(:target_service_accounts) @target_tags = args[:target_tags] if args.key?(:target_tags) @uri = args[:uri] if args.key?(:uri) end |