class Google::Apis::SqladminV1::SqlServerAuditConfig

SQL Server specific audit configuration.

Attributes

bucket[RW]

The name of the destination bucket (e.g., gs://mybucket). Corresponds to the JSON property `bucket` @return [String]

kind[RW]

This is always sql#sqlServerAuditConfig Corresponds to the JSON property `kind` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/sqladmin_v1/classes.rb, line 3078
def update!(**args)
  @bucket = args[:bucket] if args.key?(:bucket)
  @kind = args[:kind] if args.key?(:kind)
end