Class: Google::Apis::DeploymentmanagerAlpha::AuditLogConfig
- Inherits:
- 
      Object
      
        - Object
- Google::Apis::DeploymentmanagerAlpha::AuditLogConfig
 
- 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
Provides the configuration for logging a type of permissions. Example:
"audit_log_configs": [ "log_type": "DATA_READ", "exempted_members": [ "
user:foo@gmail.com" ] , "log_type": "DATA_WRITE", ]
This enables 'DATA_READ' and 'DATA_WRITE' logging, while exempting foo@gmail.
com from DATA_READ logging.
Instance Attribute Summary collapse
- 
  
    
      #exempted_members  ⇒ Array<String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    Specifies the identities that do not cause logging for this type of permission. 
- 
  
    
      #log_type  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The log type that this config enables. 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ AuditLogConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    A new instance of AuditLogConfig. 
- 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Update properties of this object. 
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ AuditLogConfig
Returns a new instance of AuditLogConfig
| 118 119 120 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 118 def initialize(**args) update!(**args) end | 
Instance Attribute Details
#exempted_members ⇒ Array<String>
Specifies the identities that do not cause logging for this type of permission.
Follows the same format of [Binding.members][].
Corresponds to the JSON property exemptedMembers
| 111 112 113 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 111 def exempted_members @exempted_members end | 
#log_type ⇒ String
The log type that this config enables.
Corresponds to the JSON property logType
| 116 117 118 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 116 def log_type @log_type end | 
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
| 123 124 125 126 | # File 'generated/google/apis/deploymentmanager_alpha/classes.rb', line 123 def update!(**args) @exempted_members = args[:exempted_members] if args.key?(:exempted_members) @log_type = args[:log_type] if args.key?(:log_type) end |