class Google::Apis::GameservicesV1::CloudAuditOptions

Write a Cloud Audit log

Attributes

authorization_logging_options[RW]

Authorization-related information used by Cloud Audit Logging. Corresponds to the JSON property `authorizationLoggingOptions` @return [Google::Apis::GameservicesV1::AuthorizationLoggingOptions]

log_name[RW]

The log_name to populate in the Cloud Audit Record. Corresponds to the JSON property `logName` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/gameservices_v1/classes.rb, line 232
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/gameservices_v1/classes.rb, line 237
def update!(**args)
  @authorization_logging_options = args[:authorization_logging_options] if args.key?(:authorization_logging_options)
  @log_name = args[:log_name] if args.key?(:log_name)
end