Class: Google::Apis::DataplexV1::GoogleIamV1AuditLogConfig
- Inherits:
-
Object
- Object
- Google::Apis::DataplexV1::GoogleIamV1AuditLogConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/dataplex_v1/classes.rb,
lib/google/apis/dataplex_v1/representations.rb,
lib/google/apis/dataplex_v1/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.
-
#log_type ⇒ String
The log type that this config enables.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleIamV1AuditLogConfig
constructor
A new instance of GoogleIamV1AuditLogConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleIamV1AuditLogConfig
Returns a new instance of GoogleIamV1AuditLogConfig.
7750 7751 7752 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7750 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
7743 7744 7745 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7743 def exempted_members @exempted_members end |
#log_type ⇒ String
The log type that this config enables.
Corresponds to the JSON property logType
7748 7749 7750 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7748 def log_type @log_type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
7755 7756 7757 7758 |
# File 'lib/google/apis/dataplex_v1/classes.rb', line 7755 def update!(**args) @exempted_members = args[:exempted_members] if args.key?(:exempted_members) @log_type = args[:log_type] if args.key?(:log_type) end |