Class: Google::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1Document

Inherits:
Object
  • Object
show all
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

Document captures all raw metadata information of items to be recommended or searched.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1Document

Returns a new instance of GoogleCloudDiscoveryengineV1Document.



4241
4242
4243
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4241

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

Instance Attribute Details

#contentGoogle::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1DocumentContent

Unstructured data linked to this document. Corresponds to the JSON property content



4182
4183
4184
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4182

def content
  @content
end

#derived_struct_dataHash<String,Object>

Output only. This field is OUTPUT_ONLY. It contains derived data that are not in the original input document. Corresponds to the JSON property derivedStructData

Returns:

  • (Hash<String,Object>)


4188
4189
4190
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4188

def derived_struct_data
  @derived_struct_data
end

#idString

Immutable. The identifier of the document. Id should conform to RFC-1034 standard with a length limit of 63 characters. Corresponds to the JSON property id

Returns:

  • (String)


4195
4196
4197
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4195

def id
  @id
end

#index_statusGoogle::Apis::DiscoveryengineV1::GoogleCloudDiscoveryengineV1DocumentIndexStatus

Index status of the document. Corresponds to the JSON property indexStatus



4200
4201
4202
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4200

def index_status
  @index_status
end

#index_timeString

Output only. The last time the document was indexed. If this field is set, the document could be returned in search results. This field is OUTPUT_ONLY. If this field is not populated, it means the document has never been indexed. Corresponds to the JSON property indexTime

Returns:

  • (String)


4207
4208
4209
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4207

def index_time
  @index_time
end

#json_dataString

The JSON string representation of the document. It should conform to the registered Schema or an INVALID_ARGUMENT error is thrown. Corresponds to the JSON property jsonData

Returns:

  • (String)


4213
4214
4215
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4213

def json_data
  @json_data
end

#nameString

Immutable. The full resource name of the document. Format: projects/project/ locations/location/collections/collection/dataStores/data_store/branches/ branch/documents/document_id`. This field must be a UTF-8 encoded string with a length limit of 1024 characters. Corresponds to the JSON propertyname`

Returns:

  • (String)


4221
4222
4223
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4221

def name
  @name
end

#parent_document_idString

The identifier of the parent document. Currently supports at most two level document hierarchy. Id should conform to RFC-1034 standard with a length limit of 63 characters. Corresponds to the JSON property parentDocumentId

Returns:

  • (String)


4228
4229
4230
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4228

def parent_document_id
  @parent_document_id
end

#schema_idString

The identifier of the schema located in the same data store. Corresponds to the JSON property schemaId

Returns:

  • (String)


4233
4234
4235
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4233

def schema_id
  @schema_id
end

#struct_dataHash<String,Object>

The structured JSON data for the document. It should conform to the registered Schema or an INVALID_ARGUMENT error is thrown. Corresponds to the JSON property structData

Returns:

  • (Hash<String,Object>)


4239
4240
4241
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4239

def struct_data
  @struct_data
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4246
4247
4248
4249
4250
4251
4252
4253
4254
4255
4256
4257
# File 'lib/google/apis/discoveryengine_v1/classes.rb', line 4246

def update!(**args)
  @content = args[:content] if args.key?(:content)
  @derived_struct_data = args[:derived_struct_data] if args.key?(:derived_struct_data)
  @id = args[:id] if args.key?(:id)
  @index_status = args[:index_status] if args.key?(:index_status)
  @index_time = args[:index_time] if args.key?(:index_time)
  @json_data = args[:json_data] if args.key?(:json_data)
  @name = args[:name] if args.key?(:name)
  @parent_document_id = args[:parent_document_id] if args.key?(:parent_document_id)
  @schema_id = args[:schema_id] if args.key?(:schema_id)
  @struct_data = args[:struct_data] if args.key?(:struct_data)
end