Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBigtableSource
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBigtableSource
- 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 Cloud Bigtable source for importing data
Instance Attribute Summary collapse
-
#bigtable_options ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBigtableOptions
The Bigtable Options object that contains information to support the import.
-
#instance_id ⇒ String
Required.
-
#project_id ⇒ String
The project ID (can be project # or ID) that the Bigtable source is in with a length limit of 128 characters.
-
#table_id ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaBigtableSource
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaBigtableSource.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaBigtableSource
Returns a new instance of GoogleCloudDiscoveryengineV1alphaBigtableSource.
1975 1976 1977 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1975 def initialize(**args) update!(**args) end |
Instance Attribute Details
#bigtable_options ⇒ Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaBigtableOptions
The Bigtable Options object that contains information to support the import.
Corresponds to the JSON property bigtableOptions
1956 1957 1958 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1956 def @bigtable_options end |
#instance_id ⇒ String
Required. The instance ID of the Cloud Bigtable that needs to be exported.
Corresponds to the JSON property instanceId
1961 1962 1963 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1961 def instance_id @instance_id end |
#project_id ⇒ String
The project ID (can be project # or 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
1968 1969 1970 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1968 def project_id @project_id end |
#table_id ⇒ String
Required. The table ID of the Cloud Bigtable that needs to be exported.
Corresponds to the JSON property tableId
1973 1974 1975 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1973 def table_id @table_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1980 1981 1982 1983 1984 1985 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 1980 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 |