Class: Google::Apis::SqladminV1::SqlActiveDirectoryConfig
- Inherits:
 - 
      Object
      
        
- Object
 - Google::Apis::SqladminV1::SqlActiveDirectoryConfig
 
 
- 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
- 
  
    
      #domain  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the domain (e.g., mydomain.com).
 - 
  
    
      #kind  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
This is always sql#activeDirectoryConfig.
 
Instance Method Summary collapse
- 
  
    
      #initialize(**args)  ⇒ SqlActiveDirectoryConfig 
    
    
  
  
  
    constructor
  
  
  
  
  
  
  
    
A new instance of SqlActiveDirectoryConfig.
 - 
  
    
      #update!(**args)  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    
Update properties of this object.
 
Constructor Details
#initialize(**args) ⇒ SqlActiveDirectoryConfig
Returns a new instance of SqlActiveDirectoryConfig.
      4005 4006 4007  | 
    
      # File 'lib/google/apis/sqladmin_v1/classes.rb', line 4005 def initialize(**args) update!(**args) end  | 
  
Instance Attribute Details
#domain ⇒ String
The name of the domain (e.g., mydomain.com).
Corresponds to the JSON property domain
      3998 3999 4000  | 
    
      # File 'lib/google/apis/sqladmin_v1/classes.rb', line 3998 def domain @domain end  | 
  
#kind ⇒ String
This is always sql#activeDirectoryConfig.
Corresponds to the JSON property kind
      4003 4004 4005  | 
    
      # File 'lib/google/apis/sqladmin_v1/classes.rb', line 4003 def kind @kind end  | 
  
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
      4010 4011 4012 4013  | 
    
      # File 'lib/google/apis/sqladmin_v1/classes.rb', line 4010 def update!(**args) @domain = args[:domain] if args.key?(:domain) @kind = args[:kind] if args.key?(:kind) end  |