Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata

Inherits:
Object
  • Object
show all
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 Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata

Returns a new instance of GoogleCloudAiplatformV1beta1FeatureOnlineStoreBigtableBigtableMetadata.



15813
15814
15815
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15813

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

Instance Attribute Details

#instance_idString

The Cloud Bigtable instance id. Corresponds to the JSON property instanceId

Returns:

  • (String)


15801
15802
15803
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15801

def instance_id
  @instance_id
end

#table_idString

The Cloud Bigtable table id. Corresponds to the JSON property tableId

Returns:

  • (String)


15806
15807
15808
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15806

def table_id
  @table_id
end

#tenant_project_idString

Tenant project ID. Corresponds to the JSON property tenantProjectId

Returns:

  • (String)


15811
15812
15813
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15811

def tenant_project_id
  @tenant_project_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



15818
15819
15820
15821
15822
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 15818

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