class Google::Apis::GameservicesV1beta::AuditLogConfig
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.
Attributes
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` @return [Array<String>]
Corresponds to the JSON property `ignoreChildExemptions` @return [Boolean]
Corresponds to the JSON property `ignoreChildExemptions` @return [Boolean]
The log type that this config enables. Corresponds to the JSON property `logType` @return [String]
Public Class Methods
# File lib/google/apis/gameservices_v1beta/classes.rb, line 97 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/gameservices_v1beta/classes.rb, line 102 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