Class: Google::Apis::CloudsearchV1::Item

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/cloudsearch_v1/classes.rb,
generated/google/apis/cloudsearch_v1/representations.rb,
generated/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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Item

Returns a new instance of Item



1653
1654
1655
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1653

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

Instance Attribute Details

#aclGoogle::Apis::CloudsearchV1::ItemAcl

Access control list information for the item. For more information see https://developers.google.com/cloud-search/docs/guides/index-your-data#acls Corresponds to the JSON property acl



1592
1593
1594
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1592

def acl
  @acl
end

#contentGoogle::Apis::CloudsearchV1::ItemContent

Content of an item to be indexed and surfaced by Cloud Search. Corresponds to the JSON property content



1597
1598
1599
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1597

def content
  @content
end

#item_typeString

Type for this item. Corresponds to the JSON property itemType

Returns:

  • (String)


1602
1603
1604
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1602

def item_type
  @item_type
end

#metadataGoogle::Apis::CloudsearchV1::ItemMetadata

Available metadata fields for the item. Corresponds to the JSON property metadata



1607
1608
1609
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1607

def 
  @metadata
end

#nameString

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

Returns:

  • (String)


1615
1616
1617
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1615

def name
  @name
end

#payloadString

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.

Returns:

  • (String)


1622
1623
1624
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1622

def payload
  @payload
end

#queueString

Queue this item belongs to. The maximum length is 100 characters. Corresponds to the JSON property queue

Returns:

  • (String)


1628
1629
1630
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1628

def queue
  @queue
end

#statusGoogle::Apis::CloudsearchV1::ItemStatus

This contains item's status and any errors. Corresponds to the JSON property status



1633
1634
1635
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1633

def status
  @status
end

#structured_dataGoogle::Apis::CloudsearchV1::ItemStructuredData

Available structured data fields for the item. Corresponds to the JSON property structuredData



1638
1639
1640
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1638

def structured_data
  @structured_data
end

#versionString

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. Corresponds to the JSON property version NOTE: Values are automatically base64 encoded/decoded in the client library.

Returns:

  • (String)


1651
1652
1653
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1651

def version
  @version
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1658

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