Class: Google::Apis::ComputeBeta::InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::ComputeBeta::InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
 
 
- Includes:
 - Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
 
- Defined in:
 - lib/google/apis/compute_beta/classes.rb,
lib/google/apis/compute_beta/representations.rb,
lib/google/apis/compute_beta/representations.rb 
Instance Attribute Summary collapse
- 
  
    
      #display_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] Deprecated, please use short name instead.
 - 
  
    
      #name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] The name of the firewall policy.
 - 
  
    
      #priority  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output only] Priority of firewall policy association.
 - 
  
    
      #rules  ⇒ Array<Google::Apis::ComputeBeta::FirewallPolicyRule> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The rules that apply to the network.
 - 
  
    
      #short_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] The short name of the firewall policy.
 - 
  
    
      #type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
[Output Only] The type of the firewall policy.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy
Returns a new instance of InstancesGetEffectiveFirewallsResponseEffectiveFirewallPolicy.
      19765 19766 19767  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 19765 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#display_name ⇒ String
[Output Only] Deprecated, please use short name instead. The display name of
the firewall policy.
Corresponds to the JSON property displayName
      19736 19737 19738  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 19736 def display_name @display_name end  | 
  
#name ⇒ String
[Output Only] The name of the firewall policy.
Corresponds to the JSON property name
      19741 19742 19743  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 19741 def name @name end  | 
  
#priority ⇒ Fixnum
[Output only] Priority of firewall policy association. Not applicable for type=
HIERARCHY.
Corresponds to the JSON property priority
      19747 19748 19749  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 19747 def priority @priority end  | 
  
#rules ⇒ Array<Google::Apis::ComputeBeta::FirewallPolicyRule>
The rules that apply to the network.
Corresponds to the JSON property rules
      19752 19753 19754  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 19752 def rules @rules end  | 
  
#short_name ⇒ String
[Output Only] The short name of the firewall policy.
Corresponds to the JSON property shortName
      19757 19758 19759  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 19757 def short_name @short_name end  | 
  
#type ⇒ String
[Output Only] The type of the firewall policy. Can be one of HIERARCHY,
NETWORK, NETWORK_REGIONAL, SYSTEM_GLOBAL, SYSTEM_REGIONAL.
Corresponds to the JSON property type
      19763 19764 19765  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 19763 def type @type end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      19770 19771 19772 19773 19774 19775 19776 19777  | 
    
      # File 'lib/google/apis/compute_beta/classes.rb', line 19770 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @name = args[:name] if args.key?(:name) @priority = args[:priority] if args.key?(:priority) @rules = args[:rules] if args.key?(:rules) @short_name = args[:short_name] if args.key?(:short_name) @type = args[:type] if args.key?(:type) end  |