Class: Google::Apis::HealthcareV1alpha2::AuditLogConfig
- Inherits:
-
Object
- Object
- Google::Apis::HealthcareV1alpha2::AuditLogConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/healthcare_v1alpha2/classes.rb,
generated/google/apis/healthcare_v1alpha2/representations.rb,
generated/google/apis/healthcare_v1alpha2/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?)
Specifies whether principals can be exempted for the same LogType in lower-level resource policies.
-
#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
238 239 240 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 238 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
223 224 225 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 223 def exempted_members @exempted_members end |
#ignore_child_exemptions ⇒ Boolean Also known as: ignore_child_exemptions?
Specifies whether principals can be exempted for the same LogType in
lower-level resource policies. If true, any lower-level exemptions will
be ignored.
Corresponds to the JSON property ignoreChildExemptions
230 231 232 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 230 def ignore_child_exemptions @ignore_child_exemptions end |
#log_type ⇒ String
The log type that this config enables.
Corresponds to the JSON property logType
236 237 238 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 236 def log_type @log_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
243 244 245 246 247 |
# File 'generated/google/apis/healthcare_v1alpha2/classes.rb', line 243 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 |