class Google::Apis::CloudsearchV1::PushItemRequest

Attributes

connector_name[RW]

Name of connector making this call. Format: datasources/`source_id`/connectors/ `ID` Corresponds to the JSON property `connectorName` @return [String]

debug_options[RW]

Shared request debug options for all cloudsearch RPC methods. Corresponds to the JSON property `debugOptions` @return [Google::Apis::CloudsearchV1::DebugOptions]

item[RW]

Represents an item to be pushed to the indexing queue. Corresponds to the JSON property `item` @return [Google::Apis::CloudsearchV1::PushItem]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/cloudsearch_v1/classes.rb, line 3238
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/cloudsearch_v1/classes.rb, line 3243
def update!(**args)
  @connector_name = args[:connector_name] if args.key?(:connector_name)
  @debug_options = args[:debug_options] if args.key?(:debug_options)
  @item = args[:item] if args.key?(:item)
end