Class: Google::Apis::SqladminV1::SqlActiveDirectoryConfig

Inherits:
Object
  • Object
show all
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

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SqlActiveDirectoryConfig

Returns a new instance of SqlActiveDirectoryConfig.



4086
4087
4088
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4086

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#domainString

The name of the domain (e.g., mydomain.com). Corresponds to the JSON property domain

Returns:

  • (String)


4079
4080
4081
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4079

def domain
  @domain
end

#kindString

This is always sql#activeDirectoryConfig. Corresponds to the JSON property kind

Returns:

  • (String)


4084
4085
4086
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4084

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4091
4092
4093
4094
# File 'lib/google/apis/sqladmin_v1/classes.rb', line 4091

def update!(**args)
  @domain = args[:domain] if args.key?(:domain)
  @kind = args[:kind] if args.key?(:kind)
end