Class: Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDocument
- Inherits:
-
Object
- Object
- Google::Apis::DiscoveryengineV1alpha::GoogleCloudDiscoveryengineV1alphaDocument
- 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
-
#id ⇒ String
Immutable.
-
#json_data ⇒ String
The JSON string representation of the document.
-
#name ⇒ String
Immutable.
-
#parent_document_id ⇒ String
The identifier of the parent document.
-
#schema_id ⇒ String
Required.
-
#struct_data ⇒ Hash<String,Object>
The structured JSON data for the document.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaDocument
constructor
A new instance of GoogleCloudDiscoveryengineV1alphaDocument.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudDiscoveryengineV1alphaDocument
Returns a new instance of GoogleCloudDiscoveryengineV1alphaDocument.
240 241 242 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 240 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
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
206 207 208 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 206 def id @id end |
#json_data ⇒ String
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
212 213 214 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 212 def json_data @json_data end |
#name ⇒ String
Immutable. The full resource name of the document. Format: projects/
project/
locations/
location/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 property
name`
220 221 222 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 220 def name @name end |
#parent_document_id ⇒ String
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
227 228 229 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 227 def parent_document_id @parent_document_id end |
#schema_id ⇒ String
Required. The identifier of the schema located in the same data store.
Corresponds to the JSON property schemaId
232 233 234 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 232 def schema_id @schema_id end |
#struct_data ⇒ Hash<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
238 239 240 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 238 def struct_data @struct_data end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
245 246 247 248 249 250 251 252 |
# File 'lib/google/apis/discoveryengine_v1alpha/classes.rb', line 245 def update!(**args) @id = args[:id] if args.key?(:id) @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 |