Class: Google::Apis::CloudsearchV1::IndexItemRequest

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ IndexItemRequest

Returns a new instance of IndexItemRequest.



3880
3881
3882
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3880

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

Instance Attribute Details

#connector_nameString

The name of connector making this call. Format: datasources/source_id/ connectors/ID Corresponds to the JSON property connectorName

Returns:

  • (String)


3857
3858
3859
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3857

def connector_name
  @connector_name
end

#debug_optionsGoogle::Apis::CloudsearchV1::DebugOptions

Shared request debug options for all cloudsearch RPC methods. Corresponds to the JSON property debugOptions



3862
3863
3864
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3862

def debug_options
  @debug_options
end

#index_item_optionsGoogle::Apis::CloudsearchV1::IndexItemOptions

Corresponds to the JSON property indexItemOptions



3867
3868
3869
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3867

def index_item_options
  @index_item_options
end

#itemGoogle::Apis::CloudsearchV1::Item

Represents a single object that is an item in the search index, such as a file, folder, or a database record. Corresponds to the JSON property item



3873
3874
3875
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3873

def item
  @item
end

#modeString

Required. The RequestMode for this request. Corresponds to the JSON property mode

Returns:

  • (String)


3878
3879
3880
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3878

def mode
  @mode
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



3885
3886
3887
3888
3889
3890
3891
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3885

def update!(**args)
  @connector_name = args[:connector_name] if args.key?(:connector_name)
  @debug_options = args[:debug_options] if args.key?(:debug_options)
  @index_item_options = args[:index_item_options] if args.key?(:index_item_options)
  @item = args[:item] if args.key?(:item)
  @mode = args[:mode] if args.key?(:mode)
end