Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDataStore
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDataStore
- 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
DataStore captures global settings and configs at the DataStore level.
Instance Attribute Summary collapse
-
#content_config ⇒ String
Immutable.
-
#create_time ⇒ String
Output only.
-
#default_schema_id ⇒ String
Output only.
-
#display_name ⇒ String
Required.
-
#industry_vertical ⇒ String
Immutable.
-
#name ⇒ String
Immutable.
-
#solution_types ⇒ Array<String>
The solutions that the data store enrolls.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaDataStore
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaDataStore.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaDataStore
Returns a new instance of GoogleCloudDiscoveryengineV1alphaDataStore.
2276 2277 2278 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2276 def initialize(**args) update!(**args) end |
Instance Attribute Details
#content_config ⇒ String
Immutable. The content config of the data store. If this field is unset, the
server behavior defaults to ContentConfig.NO_CONTENT.
Corresponds to the JSON property contentConfig
2236 2237 2238 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2236 def content_config @content_config end |
#create_time ⇒ String
Output only. Timestamp the DataStore was created at.
Corresponds to the JSON property createTime
2241 2242 2243 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2241 def create_time @create_time end |
#default_schema_id ⇒ String
Output only. The id of the default Schema asscociated to this data store.
Corresponds to the JSON property defaultSchemaId
2246 2247 2248 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2246 def default_schema_id @default_schema_id end |
#display_name ⇒ String
Required. The data store display name. This field must be a UTF-8 encoded
string with a length limit of 128 characters. Otherwise, an INVALID_ARGUMENT
error is returned.
Corresponds to the JSON property displayName
2253 2254 2255 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2253 def display_name @display_name end |
#industry_vertical ⇒ String
Immutable. The industry vertical that the data store registers.
Corresponds to the JSON property industryVertical
2258 2259 2260 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2258 def industry_vertical @industry_vertical end |
#name ⇒ String
Immutable. The full resource name of the data store. Format: projects/
project/locations/
location/collections/
collection_id/dataStores/
data_store_id`. This field must be a UTF-8 encoded string with a length limit
of 1024 characters.
Corresponds to the JSON property
name`
2266 2267 2268 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2266 def name @name end |
#solution_types ⇒ Array<String>
The solutions that the data store enrolls. Available solutions for each
industry_vertical: * MEDIA
: SOLUTION_TYPE_RECOMMENDATION
and
SOLUTION_TYPE_SEARCH
. * SITE_SEARCH
: SOLUTION_TYPE_SEARCH
is
automatically enrolled. Other solutions cannot be enrolled.
Corresponds to the JSON property solutionTypes
2274 2275 2276 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2274 def solution_types @solution_types end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2281 2282 2283 2284 2285 2286 2287 2288 2289 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 2281 def update!(**args) @content_config = args[:content_config] if args.key?(:content_config) @create_time = args[:create_time] if args.key?(:create_time) @default_schema_id = args[:default_schema_id] if args.key?(:default_schema_id) @display_name = args[:display_name] if args.key?(:display_name) @industry_vertical = args[:industry_vertical] if args.key?(:industry_vertical) @name = args[:name] if args.key?(:name) @solution_types = args[:solution_types] if args.key?(:solution_types) end |