Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb
Overview
Metadata of the Bigtable instance. This is used by direct read access to the Bigtable in tenant project.
Instance Attribute Summary collapse
-
#instance_id ⇒ String
The Cloud Bigtable instance id.
-
#table_id ⇒ String
The Cloud Bigtable table id.
-
#tenant_project_id ⇒ String
Tenant project ID.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata
constructor
A new instance of GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata
Returns a new instance of GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata.
15747 15748 15749 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15747 def initialize(**args) update!(**args) end |
Instance Attribute Details
#instance_id ⇒ String
The Cloud Bigtable instance id.
Corresponds to the JSON property instanceId
15735 15736 15737 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15735 def instance_id @instance_id end |
#table_id ⇒ String
The Cloud Bigtable table id.
Corresponds to the JSON property tableId
15740 15741 15742 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15740 def table_id @table_id end |
#tenant_project_id ⇒ String
Tenant project ID.
Corresponds to the JSON property tenantProjectId
15745 15746 15747 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15745 def tenant_project_id @tenant_project_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
15752 15753 15754 15755 15756 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15752 def update!(**args) @instance_id = args[:instance_id] if args.key?(:instance_id) @table_id = args[:table_id] if args.key?(:table_id) @tenant_project_id = args[:tenant_project_id] if args.key?(:tenant_project_id) end |