Class: Google::Apis::SqladminV1::SqlServerAuditConfig
- Inherits:
-
Object
- Object
- Google::Apis::SqladminV1::SqlServerAuditConfig
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/sqladmin_v1/classes.rb,
lib/google/apis/sqladmin_v1/representations.rb,
lib/google/apis/sqladmin_v1/representations.rb
Overview
SQL Server specific audit configuration.
Instance Attribute Summary collapse
-
#bucket ⇒ String
The name of the destination bucket (e.g., gs://mybucket).
-
#kind ⇒ String
This is always sql#sqlServerAuditConfig Corresponds to the JSON property
kind. -
#retention_interval ⇒ String
How long to keep generated audit files.
-
#upload_interval ⇒ String
How often to upload generated audit files.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SqlServerAuditConfig
constructor
A new instance of SqlServerAuditConfig.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SqlServerAuditConfig
Returns a new instance of SqlServerAuditConfig.
6155 6156 6157 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 6155 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bucket ⇒ String
The name of the destination bucket (e.g., gs://mybucket).
Corresponds to the JSON property bucket
6138 6139 6140 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 6138 def bucket @bucket end |
#kind ⇒ String
This is always sql#sqlServerAuditConfig
Corresponds to the JSON property kind
6143 6144 6145 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 6143 def kind @kind end |
#retention_interval ⇒ String
How long to keep generated audit files.
Corresponds to the JSON property retentionInterval
6148 6149 6150 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 6148 def retention_interval @retention_interval end |
#upload_interval ⇒ String
How often to upload generated audit files.
Corresponds to the JSON property uploadInterval
6153 6154 6155 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 6153 def upload_interval @upload_interval end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6160 6161 6162 6163 6164 6165 |
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 6160 def update!(**args) @bucket = args[:bucket] if args.key?(:bucket) @kind = args[:kind] if args.key?(:kind) @retention_interval = args[:retention_interval] if args.key?(:retention_interval) @upload_interval = args[:upload_interval] if args.key?(:upload_interval) end |