Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BigtableSource

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

Overview

The Cloud Bigtable source for importing data.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1BigtableSource

Returns a new instance of GoogleCloudDiscoveryengineV1BigtableSource.



1834
1835
1836
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1834

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

Instance Attribute Details

#bigtable_optionsGoogle::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BigtableOptions

The Bigtable Options object that contains information to support the import. Corresponds to the JSON property bigtableOptions



1816
1817
1818
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1816

def bigtable_options
  @bigtable_options
end

#instance_idString

Required. The instance ID of the Cloud Bigtable that needs to be imported. Corresponds to the JSON property instanceId

Returns:

  • (String)


1821
1822
1823
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1821

def instance_id
  @instance_id
end

#project_idString

The project ID that the Bigtable 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)


1827
1828
1829
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1827

def project_id
  @project_id
end

#table_idString

Required. The table ID of the Cloud Bigtable that needs to be imported. Corresponds to the JSON property tableId

Returns:

  • (String)


1832
1833
1834
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1832

def table_id
  @table_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1839
1840
1841
1842
1843
1844
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 1839

def update!(**args)
  @bigtable_options = args[:bigtable_options] if args.key?(:bigtable_options)
  @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