Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDocument

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

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) ⇒ GoogleCloudDiscoveryengineV1alphaDocument

Returns a new instance of GoogleCloudDiscoveryengineV1alphaDocument.



8793
8794
8795
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8793

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

Instance Attribute Details

#acl_infoGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDocumentAclInfo

ACL Information of the Document. Corresponds to the JSON property aclInfo



8729
8730
8731
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8729

def acl_info
  @acl_info
end

#contentGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDocumentContent

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



8734
8735
8736
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8734

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>)


8740
8741
8742
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8740

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 128 characters. Corresponds to the JSON property id

Returns:

  • (String)


8747
8748
8749
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8747

def id
  @id
end

#index_statusGoogle::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDocumentIndexStatus

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



8752
8753
8754
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8752

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)


8759
8760
8761
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8759

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)


8765
8766
8767
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8765

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)


8773
8774
8775
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8773

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)


8780
8781
8782
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8780

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)


8785
8786
8787
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8785

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>)


8791
8792
8793
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8791

def struct_data
  @struct_data
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



8798
8799
8800
8801
8802
8803
8804
8805
8806
8807
8808
8809
8810
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 8798

def update!(**args)
  @acl_info = args[:acl_info] if args.key?(:acl_info)
  @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