Class: Google::Apis::AiplatformV1::GoogleCloudAiplatformV1SchemaPredictParamsGroundingConfigSourceEntry

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

Overview

Single source entry for the grounding checking.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1SchemaPredictParamsGroundingConfigSourceEntry

Returns a new instance of GoogleCloudAiplatformV1SchemaPredictParamsGroundingConfigSourceEntry.



16522
16523
16524
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 16522

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

Instance Attribute Details

#enterprise_datastoreString

The uri of the Enterprise Search data source. Corresponds to the JSON property enterpriseDatastore

Returns:

  • (String)


16515
16516
16517
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 16515

def enterprise_datastore
  @enterprise_datastore
end

#typeString

The type of the grounding checking source. Corresponds to the JSON property type

Returns:

  • (String)


16520
16521
16522
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 16520

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



16527
16528
16529
16530
# File 'lib/google/apis/aiplatform_v1/classes.rb', line 16527

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