Class: Google::Apis::CesV1::DataStoreSettingsEngine

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/ces_v1/classes.rb,
lib/google/apis/ces_v1/representations.rb,
lib/google/apis/ces_v1/representations.rb

Overview

An engine to which the data stores are connected. See Vertex AI Search: https:/ /cloud.google.com/generative-ai-app-builder/docs/enterprise-search- introduction.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ DataStoreSettingsEngine

Returns a new instance of DataStoreSettingsEngine.



2031
2032
2033
# File 'lib/google/apis/ces_v1/classes.rb', line 2031

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

Instance Attribute Details

#nameString

Output only. The resource name of the engine. Format: projects/project/ locations/location/collections/collection/engines/engine` Corresponds to the JSON propertyname`

Returns:

  • (String)


2024
2025
2026
# File 'lib/google/apis/ces_v1/classes.rb', line 2024

def name
  @name
end

#typeString

Output only. The type of the engine. Corresponds to the JSON property type

Returns:

  • (String)


2029
2030
2031
# File 'lib/google/apis/ces_v1/classes.rb', line 2029

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2036
2037
2038
2039
# File 'lib/google/apis/ces_v1/classes.rb', line 2036

def update!(**args)
  @name = args[:name] if args.key?(:name)
  @type = args[:type] if args.key?(:type)
end