Class: Google::Apis::ComputeAlpha::SecurityPolicyRule
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::ComputeAlpha::SecurityPolicyRule
 
- Defined in:
- generated/google/apis/compute_alpha/classes.rb,
 generated/google/apis/compute_alpha/representations.rb,
 generated/google/apis/compute_alpha/representations.rb
Overview
Represents a rule that describes one or more match conditions along with the action to be taken when traffic matches this condition (allow or deny).
Instance Attribute Summary collapse
- 
  
    
      #action  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The Action to preform when the client connection triggers the rule. 
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An optional description of this resource. 
- 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    [Output only] Type of the resource. 
- 
  
    
      #match  ⇒ Google::Apis::ComputeAlpha::SecurityPolicyRuleMatcher 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Represents a match condition that incoming traffic is evaluated against. 
- 
  
    
      #preview  ⇒ Boolean 
    
    
      (also: #preview?)
    
  
  
  
  
    
    
  
  
  
  
  
  
    If set to true, the specified action is not enforced. 
- 
  
    
      #priority  ⇒ Fixnum 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    An integer indicating the priority of a rule in the list. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SecurityPolicyRule 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of SecurityPolicyRule. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ SecurityPolicyRule
Returns a new instance of SecurityPolicyRule
| 22151 22152 22153 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22151 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#action ⇒ String
The Action to preform when the client connection triggers the rule. Can
currently be either "allow" or "deny()" where valid values for status are 403,
404, and 502.
Corresponds to the JSON property action
| 22118 22119 22120 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22118 def action @action end | 
#description ⇒ String
An optional description of this resource. Provide this property when you
create the resource.
Corresponds to the JSON property description
| 22124 22125 22126 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22124 def description @description end | 
#kind ⇒ String
[Output only] Type of the resource. Always compute#securityPolicyRule for
security policy rules
Corresponds to the JSON property kind
| 22130 22131 22132 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22130 def kind @kind end | 
#match ⇒ Google::Apis::ComputeAlpha::SecurityPolicyRuleMatcher
Represents a match condition that incoming traffic is evaluated against.
Exactly one field must be specified.
Corresponds to the JSON property match
| 22136 22137 22138 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22136 def match @match end | 
#preview ⇒ Boolean Also known as: preview?
If set to true, the specified action is not enforced.
Corresponds to the JSON property preview
| 22141 22142 22143 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22141 def preview @preview end | 
#priority ⇒ Fixnum
An integer indicating the priority of a rule in the list. The priority must be
a positive value between 0 and 2147483647. Rules are evaluated in the
increasing order of priority.
Corresponds to the JSON property priority
| 22149 22150 22151 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22149 def priority @priority end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 22156 22157 22158 22159 22160 22161 22162 22163 | # File 'generated/google/apis/compute_alpha/classes.rb', line 22156 def update!(**args) @action = args[:action] if args.key?(:action) @description = args[:description] if args.key?(:description) @kind = args[:kind] if args.key?(:kind) @match = args[:match] if args.key?(:match) @preview = args[:preview] if args.key?(:preview) @priority = args[:priority] if args.key?(:priority) end |