Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BatchGetDocumentsMetadataResponseDocumentMetadata
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BatchGetDocumentsMetadataResponseDocumentMetadata
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/discoveryengine_v1/classes.rb,
lib/google/apis/discoveryengine_v1/representations.rb,
lib/google/apis/discoveryengine_v1/representations.rb
Overview
The metadata of a Document.
Instance Attribute Summary collapse
-
#data_ingestion_source ⇒ String
The data ingestion source of the Document.
-
#last_refreshed_time ⇒ String
The timestamp of the last time the Document was last indexed.
-
#matcher_value ⇒ Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BatchGetDocumentsMetadataResponseDocumentMetadataMatcherValue
The value of the matcher that was used to match the Document.
-
#state ⇒ String
The state of the document.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1BatchGetDocumentsMetadataResponseDocumentMetadata
constructor
A new instance of GoogleCloudDiscoveryengineV1BatchGetDocumentsMetadataResponseDocumentMetadata.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1BatchGetDocumentsMetadataResponseDocumentMetadata
Returns a new instance of GoogleCloudDiscoveryengineV1BatchGetDocumentsMetadataResponseDocumentMetadata.
2205 2206 2207 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2205 def initialize(**args) update!(**args) end |
Instance Attribute Details
#data_ingestion_source ⇒ String
The data ingestion source of the Document. Allowed values are: * batch
: Data
ingested via Batch API, e.g., ImportDocuments. * streaming
Data ingested via
Streaming API, e.g., FHIR streaming.
Corresponds to the JSON property dataIngestionSource
2188 2189 2190 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2188 def data_ingestion_source @data_ingestion_source end |
#last_refreshed_time ⇒ String
The timestamp of the last time the Document was last indexed.
Corresponds to the JSON property lastRefreshedTime
2193 2194 2195 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2193 def last_refreshed_time @last_refreshed_time end |
#matcher_value ⇒ Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1BatchGetDocumentsMetadataResponseDocumentMetadataMatcherValue
The value of the matcher that was used to match the Document.
Corresponds to the JSON property matcherValue
2198 2199 2200 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2198 def matcher_value @matcher_value end |
#state ⇒ String
The state of the document.
Corresponds to the JSON property state
2203 2204 2205 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2203 def state @state end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2210 2211 2212 2213 2214 2215 |
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 2210 def update!(**args) @data_ingestion_source = args[:data_ingestion_source] if args.key?(:data_ingestion_source) @last_refreshed_time = args[:last_refreshed_time] if args.key?(:last_refreshed_time) @matcher_value = args[:matcher_value] if args.key?(:matcher_value) @state = args[:state] if args.key?(:state) end |