Class: Google::Apis::ManagedidentitiesV1beta1::SqlIntegration
- Inherits:
-
Object
- Object
- Google::Apis::ManagedidentitiesV1beta1::SqlIntegration
- 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
-
#create_time ⇒ String
Output only.
-
#name ⇒ 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`. -
#sql_instance ⇒ String
The full resource name of an integrated sql instance Corresponds to the JSON property
sqlInstance
. -
#state ⇒ String
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SqlIntegration
constructor
A new instance of SqlIntegration.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ SqlIntegration
Returns a new instance of SqlIntegration.
2250 2251 2252 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 2250 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. The time sql integration was created.
Corresponds to the JSON property createTime
2227 2228 2229 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 2227 def create_time @create_time end |
#name ⇒ 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`
2233 2234 2235 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 2233 def name @name end |
#sql_instance ⇒ String
The full resource name of an integrated sql instance
Corresponds to the JSON property sqlInstance
2238 2239 2240 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 2238 def sql_instance @sql_instance end |
#state ⇒ String
Output only. The current state of the sql integration.
Corresponds to the JSON property state
2243 2244 2245 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 2243 def state @state end |
#update_time ⇒ String
Output only. The time sql integration was updated.
Corresponds to the JSON property updateTime
2248 2249 2250 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 2248 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2255 2256 2257 2258 2259 2260 2261 |
# File 'lib/google/apis/managedidentities_v1beta1/classes.rb', line 2255 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 |