Class: Google::Apis::ManagedidentitiesV1beta1::SqlIntegration

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/managedidentities_v1beta1/classes.rb,
lib/google/apis/managedidentities_v1beta1/representations.rb,
lib/google/apis/managedidentities_v1beta1/representations.rb

Overview

Represents the Sql instance integrated with AD.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SqlIntegration

Returns a new instance of SqlIntegration.



1668
1669
1670
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 1668

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

Instance Attribute Details

#create_timeString

Output only. The time sql integration was created. Synthetic field is populated automatically by CCFE. Corresponds to the JSON property createTime

Returns:

  • (String)


1644
1645
1646
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 1644

def create_time
  @create_time
end

#nameString

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 propertyname`

Returns:

  • (String)


1650
1651
1652
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 1650

def name
  @name
end

#sql_instanceString

The full resource name of an integrated sql instance Corresponds to the JSON property sqlInstance

Returns:

  • (String)


1655
1656
1657
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 1655

def sql_instance
  @sql_instance
end

#stateString

Output only. The current state of the sql integration. Corresponds to the JSON property state

Returns:

  • (String)


1660
1661
1662
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 1660

def state
  @state
end

#update_timeString

Output only. The time sql integration was updated. Synthetic field is populated automatically by CCFE. Corresponds to the JSON property updateTime

Returns:

  • (String)


1666
1667
1668
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 1666

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1673
1674
1675
1676
1677
1678
1679
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 1673

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