Class: Google::Apis::DeploymentmanagerAlpha::Rule
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::DeploymentmanagerAlpha::Rule
 
 
- Includes:
 - Core::Hashable, Core::JsonObjectSupport
 
- Defined in:
 - generated/google/apis/deploymentmanager_alpha/classes.rb,
generated/google/apis/deploymentmanager_alpha/representations.rb,
generated/google/apis/deploymentmanager_alpha/representations.rb 
Overview
A rule to be applied in a Policy.
Instance Attribute Summary collapse
- 
  
    
      #action  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Required Corresponds to the JSON property
action. - 
  
    
      #conditions  ⇒ Array<Google::Apis::DeploymentmanagerAlpha::Condition> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Additional restrictions that must be met.
 - 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Human-readable description of the rule.
 - 
  
    
      #ins  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If one or more 'in' clauses are specified, the rule matches if the PRINCIPAL/ AUTHORITY_SELECTOR is in at least one of these entries.
 - 
  
    
      #log_configs  ⇒ Array<Google::Apis::DeploymentmanagerAlpha::LogConfig> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The config returned to callers of tech.iam.IAM.CheckPolicy for any entries that match the LOG action.
 - 
  
    
      #not_ins  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
If one or more 'not_in' clauses are specified, the rule matches if the PRINCIPAL/AUTHORITY_SELECTOR is in none of the entries.
 - 
  
    
      #permissions  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A permission is a string of form '..' (e.g., 'storage.buckets.list').
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ Rule 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of Rule.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Rule
Returns a new instance of Rule
      2228 2229 2230  | 
    
      # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2228 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#action ⇒ String
Required
Corresponds to the JSON property action
      2190 2191 2192  | 
    
      # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2190 def action @action end  | 
  
#conditions ⇒ Array<Google::Apis::DeploymentmanagerAlpha::Condition>
Additional restrictions that must be met. All conditions must pass for the
rule to match.
Corresponds to the JSON property conditions
      2196 2197 2198  | 
    
      # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2196 def conditions @conditions end  | 
  
#description ⇒ String
Human-readable description of the rule.
Corresponds to the JSON property description
      2201 2202 2203  | 
    
      # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2201 def description @description end  | 
  
#ins ⇒ Array<String>
If one or more 'in' clauses are specified, the rule matches if the PRINCIPAL/
AUTHORITY_SELECTOR is in at least one of these entries.
Corresponds to the JSON property ins
      2207 2208 2209  | 
    
      # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2207 def ins @ins end  | 
  
#log_configs ⇒ Array<Google::Apis::DeploymentmanagerAlpha::LogConfig>
The config returned to callers of tech.iam.IAM.CheckPolicy for any entries
that match the LOG action.
Corresponds to the JSON property logConfigs
      2213 2214 2215  | 
    
      # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2213 def log_configs @log_configs end  | 
  
#not_ins ⇒ Array<String>
If one or more 'not_in' clauses are specified, the rule matches if the
PRINCIPAL/AUTHORITY_SELECTOR is in none of the entries.
Corresponds to the JSON property notIns
      2219 2220 2221  | 
    
      # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2219 def not_ins @not_ins end  | 
  
#permissions ⇒ Array<String>
A permission is a string of form '..' (e.g., 'storage.buckets.list'). A value
of '' matches all permissions, and a verb part of '' (e.g., 'storage.buckets.
*') matches all verbs.
Corresponds to the JSON property permissions
      2226 2227 2228  | 
    
      # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2226 def @permissions end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      2233 2234 2235 2236 2237 2238 2239 2240 2241  | 
    
      # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 2233 def update!(**args) @action = args[:action] if args.key?(:action) @conditions = args[:conditions] if args.key?(:conditions) @description = args[:description] if args.key?(:description) @ins = args[:ins] if args.key?(:ins) @log_configs = args[:log_configs] if args.key?(:log_configs) @not_ins = args[:not_ins] if args.key?(:not_ins) @permissions = args[:permissions] if args.key?(:permissions) end  |