class Google::Apis::SqladminV1beta4::SqlActiveDirectoryConfig

Active Directory configuration, relevant only for Cloud SQL for SQL Server.

Attributes

domain[RW]

The name of the domain (e.g., mydomain.com). Corresponds to the JSON property `domain` @return [String]

kind[RW]

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

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/sqladmin_v1beta4/classes.rb, line 3033
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_v1beta4/classes.rb, line 3038
def update!(**args)
  @domain = args[:domain] if args.key?(:domain)
  @kind = args[:kind] if args.key?(:kind)
end