Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExampleStore
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExampleStore
- 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
Represents an executable service to manage and retrieve examples.
Instance Attribute Summary collapse
-
#create_time ⇒ String
Output only.
-
#description ⇒ String
Optional.
-
#display_name ⇒ String
Required.
-
#example_store_config ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExampleStoreConfig
Configuration for the Example Store.
-
#name ⇒ String
Identifier.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ExampleStore
constructor
A new instance of GoogleCloudAiplatformV1beta1ExampleStore.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ExampleStore
Returns a new instance of GoogleCloudAiplatformV1beta1ExampleStore.
12876 12877 12878 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12876 def initialize(**args) update!(**args) end |
Instance Attribute Details
#create_time ⇒ String
Output only. Timestamp when this ExampleStore was created.
Corresponds to the JSON property createTime
12848 12849 12850 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12848 def create_time @create_time end |
#description ⇒ String
Optional. Description of the ExampleStore.
Corresponds to the JSON property description
12853 12854 12855 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12853 def description @description end |
#display_name ⇒ String
Required. Display name of the ExampleStore.
Corresponds to the JSON property displayName
12858 12859 12860 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12858 def display_name @display_name end |
#example_store_config ⇒ Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ExampleStoreConfig
Configuration for the Example Store.
Corresponds to the JSON property exampleStoreConfig
12863 12864 12865 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12863 def example_store_config @example_store_config end |
#name ⇒ String
Identifier. The resource name of the ExampleStore. This is a unique identifier.
Format: projects/project/locations/location/exampleStores/example_store
Corresponds to the JSON property name
12869 12870 12871 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12869 def name @name end |
#update_time ⇒ String
Output only. Timestamp when this ExampleStore was most recently updated.
Corresponds to the JSON property updateTime
12874 12875 12876 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12874 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
12881 12882 12883 12884 12885 12886 12887 12888 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 12881 def update!(**args) @create_time = args[:create_time] if args.key?(:create_time) @description = args[:description] if args.key?(:description) @display_name = args[:display_name] if args.key?(:display_name) @example_store_config = args[:example_store_config] if args.key?(:example_store_config) @name = args[:name] if args.key?(:name) @update_time = args[:update_time] if args.key?(:update_time) end |