class Google::Apis::ManagedidentitiesV1::SqlIntegration
Represents the SQL instance integrated with Managed AD.
Attributes
Output only. The time the SQL integration was created. Corresponds to the JSON property `createTime` @return [String]
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]
The full resource name of an integrated SQL instance Corresponds to the JSON property `sqlInstance` @return [String]
Output only. The current state of the SQL integration. Corresponds to the JSON property `state` @return [String]
Output only. The time the SQL integration was updated. Corresponds to the JSON property `updateTime` @return [String]
Public Class Methods
# File lib/google/apis/managedidentities_v1/classes.rb, line 1820 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/managedidentities_v1/classes.rb, line 1825 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