class Google::Apis::ManagedidentitiesV1alpha1::SqlIntegration

Represents the SQL instance integrated with AD.

Attributes

create_time[RW]

Output only. The time the instance was created. Corresponds to the JSON property `createTime` @return [String]

name[RW]

The unique name of the sql integration in the form of `projects/`project_id`/ locations/global/domains/`domain_name`/sqlIntegrations/`sql_integration“ Corresponds to the JSON property `name` @return [String]

sql_instance[RW]

The full resource name of an integrated sql instance Corresponds to the JSON property `sqlInstance` @return [String]

state[RW]

Output only. The current state of the managed OU. Corresponds to the JSON property `state` @return [String]

update_time[RW]

Output only. Last update time for this SQL instance. Corresponds to the JSON property `updateTime` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/managedidentities_v1alpha1/classes.rb, line 1750
def update!(**args)
  @create_time = args[:create_time] if args.key?(:create_time)
  @name = args[:name] if args.key?(:name)
  @sql_instance = args[:sql_instance] if args.key?(:sql_instance)
  @state = args[:state] if args.key?(:state)
  @update_time = args[:update_time] if args.key?(:update_time)
end