Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaSpannerSource

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

Overview

The Spanner source for importing data

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaSpannerSource

Returns a new instance of GoogleCloudDiscoveryengineV1alphaSpannerSource.



11324
11325
11326
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 11324

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

Instance Attribute Details

#database_idString

Required. The database ID of the source Spanner table. Corresponds to the JSON property databaseId

Returns:

  • (String)


11298
11299
11300
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 11298

def database_id
  @database_id
end

#enable_data_boostBoolean Also known as: enable_data_boost?

Whether to apply data boost on Spanner export. Enabling this option will incur additional cost. More info can be found here. Corresponds to the JSON property enableDataBoost

Returns:

  • (Boolean)


11305
11306
11307
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 11305

def enable_data_boost
  @enable_data_boost
end

#instance_idString

Required. The instance ID of the source Spanner table. Corresponds to the JSON property instanceId

Returns:

  • (String)


11311
11312
11313
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 11311

def instance_id
  @instance_id
end

#project_idString

The project ID that the Spanner source is in with a length limit of 128 characters. If not specified, inherits the project ID from the parent request. Corresponds to the JSON property projectId

Returns:

  • (String)


11317
11318
11319
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 11317

def project_id
  @project_id
end

#table_idString

Required. The table name of the Spanner database that needs to be imported. Corresponds to the JSON property tableId

Returns:

  • (String)


11322
11323
11324
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 11322

def table_id
  @table_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



11329
11330
11331
11332
11333
11334
11335
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 11329

def update!(**args)
  @database_id = args[:database_id] if args.key?(:database_id)
  @enable_data_boost = args[:enable_data_boost] if args.key?(:enable_data_boost)
  @instance_id = args[:instance_id] if args.key?(:instance_id)
  @project_id = args[:project_id] if args.key?(:project_id)
  @table_id = args[:table_id] if args.key?(:table_id)
end