Class: Google::Apis::CloudsearchV1::Item
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::Item
- Includes:
- Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
- Defined in:
- lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb
Overview
Represents a single object that is an item in the search index, such as a file, folder, or a database record.
Instance Attribute Summary collapse
-
#acl ⇒ Google::Apis::CloudsearchV1::ItemAcl
Access control list information for the item.
-
#content ⇒ Google::Apis::CloudsearchV1::ItemContent
Content of an item to be indexed and surfaced by Cloud Search.
-
#item_type ⇒ String
The type for this item.
-
#metadata ⇒ Google::Apis::CloudsearchV1::ItemMetadata
Available metadata fields for the item.
-
#name ⇒ String
The name of the Item.
-
#payload ⇒ String
Additional state connector can store for this item.
-
#queue ⇒ String
Queue this item belongs to.
-
#status ⇒ Google::Apis::CloudsearchV1::ItemStatus
This contains item's status and any errors.
-
#structured_data ⇒ Google::Apis::CloudsearchV1::ItemStructuredData
Available structured data fields for the item.
-
#version ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Item
constructor
A new instance of Item.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Item
Returns a new instance of Item.
4152 4153 4154 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4152 def initialize(**args) update!(**args) end |
Instance Attribute Details
#acl ⇒ Google::Apis::CloudsearchV1::ItemAcl
Access control list information for the item. For more information see Map
ACLs.
Corresponds to the JSON property acl
4092 4093 4094 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4092 def acl @acl end |
#content ⇒ Google::Apis::CloudsearchV1::ItemContent
Content of an item to be indexed and surfaced by Cloud Search. Only UTF-8
encoded strings are allowed as inlineContent. If the content is uploaded and
not binary, it must be UTF-8 encoded.
Corresponds to the JSON property content
4099 4100 4101 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4099 def content @content end |
#item_type ⇒ String
The type for this item.
Corresponds to the JSON property itemType
4104 4105 4106 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4104 def item_type @item_type end |
#metadata ⇒ Google::Apis::CloudsearchV1::ItemMetadata
Available metadata fields for the item.
Corresponds to the JSON property metadata
4109 4110 4111 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4109 def @metadata end |
#name ⇒ String
The name of the Item. Format: datasources/source_id
/items/item_id
This is
a required field. The maximum length is 1536 characters.
Corresponds to the JSON property name
4115 4116 4117 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4115 def name @name end |
#payload ⇒ String
Additional state connector can store for this item. The maximum length is
10000 bytes.
Corresponds to the JSON property payload
NOTE: Values are automatically base64 encoded/decoded in the client library.
4122 4123 4124 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4122 def payload @payload end |
#queue ⇒ String
Queue this item belongs to. The maximum length is 100 characters.
Corresponds to the JSON property queue
4127 4128 4129 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4127 def queue @queue end |
#status ⇒ Google::Apis::CloudsearchV1::ItemStatus
This contains item's status and any errors.
Corresponds to the JSON property status
4132 4133 4134 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4132 def status @status end |
#structured_data ⇒ Google::Apis::CloudsearchV1::ItemStructuredData
Available structured data fields for the item.
Corresponds to the JSON property structuredData
4137 4138 4139 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4137 def structured_data @structured_data end |
#version ⇒ String
Required. The indexing system stores the version from the datasource as a byte
string and compares the Item version in the index to the version of the queued
Item using lexical ordering. Cloud Search Indexing won't index or delete any
queued item with a version value that is less than or equal to the version of
the currently indexed item. The maximum length for this field is 1024 bytes.
For information on how item version affects the deletion process, refer to
Handle revisions after manual deletes.
Corresponds to the JSON property version
NOTE: Values are automatically base64 encoded/decoded in the client library.
4150 4151 4152 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4150 def version @version end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 4157 def update!(**args) @acl = args[:acl] if args.key?(:acl) @content = args[:content] if args.key?(:content) @item_type = args[:item_type] if args.key?(:item_type) @metadata = args[:metadata] if args.key?(:metadata) @name = args[:name] if args.key?(:name) @payload = args[:payload] if args.key?(:payload) @queue = args[:queue] if args.key?(:queue) @status = args[:status] if args.key?(:status) @structured_data = args[:structured_data] if args.key?(:structured_data) @version = args[:version] if args.key?(:version) end |