class Google::Apis::ManagedidentitiesV1beta1::SqlIntegration
Represents the Sql instance integrated with AD.
Attributes
create_time[RW]
Output only. The time sql integration 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 sql integration. Corresponds to the JSON property `state` @return [String]
update_time[RW]
Output only. The time sql integration was updated. Corresponds to the JSON property `updateTime` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/managedidentities_v1beta1/classes.rb, line 1816 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_v1beta1/classes.rb, line 1821 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