Class: Google::Apis::ComputeAlpha::AuditLogConfig
- Inherits:
-
Object
- Object
- Google::Apis::ComputeAlpha::AuditLogConfig
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/compute_alpha/classes.rb,
lib/google/apis/compute_alpha/representations.rb,
lib/google/apis/compute_alpha/representations.rb
Overview
Provides the configuration for logging a type of permissions. Example: "
audit_log_configs": [
"log_type": "DATA_READ", "exempted_members": [ "user:
jose@example.com" ] ,
"log_type": "DATA_WRITE" ]
This enables '
DATA_READ' and 'DATA_WRITE' logging, while exempting jose@example.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.
-
#ignore_child_exemptions ⇒ Boolean
(also: #ignore_child_exemptions?)
This is deprecated and has no effect.
-
#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.
Constructor Details
#initialize(**args) ⇒ AuditLogConfig
Returns a new instance of AuditLogConfig.
1966 1967 1968 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 1966 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
1953 1954 1955 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 1953 def exempted_members @exempted_members end |
#ignore_child_exemptions ⇒ Boolean Also known as: ignore_child_exemptions?
This is deprecated and has no effect. Do not use.
Corresponds to the JSON property ignoreChildExemptions
1958 1959 1960 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 1958 def ignore_child_exemptions @ignore_child_exemptions end |
#log_type ⇒ String
The log type that this config enables.
Corresponds to the JSON property logType
1964 1965 1966 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 1964 def log_type @log_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1971 1972 1973 1974 1975 |
# File 'lib/google/apis/compute_alpha/classes.rb', line 1971 def update!(**args) @exempted_members = args[:exempted_members] if args.key?(:exempted_members) @ignore_child_exemptions = args[:ignore_child_exemptions] if args.key?(:ignore_child_exemptions) @log_type = args[:log_type] if args.key?(:log_type) end |