Class: Google::Apis::CloudsearchV1::IndexItemRequest
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::IndexItemRequest
- 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
-
#connector_name ⇒ String
The name of connector making this call.
-
#debug_options ⇒ Google::Apis::CloudsearchV1::DebugOptions
Shared request debug options for all cloudsearch RPC methods.
-
#index_item_options ⇒ Google::Apis::CloudsearchV1::IndexItemOptions
Corresponds to the JSON property
indexItemOptions
. -
#item ⇒ Google::Apis::CloudsearchV1::Item
Represents a single object that is an item in the search index, such as a file, folder, or a database record.
-
#mode ⇒ String
Required.
Instance Method Summary collapse
-
#initialize(**args) ⇒ IndexItemRequest
constructor
A new instance of IndexItemRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ IndexItemRequest
Returns a new instance of IndexItemRequest.
11773 11774 11775 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11773 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connector_name ⇒ String
The name of connector making this call. Format: datasources/source_id
/
connectors/ID
Corresponds to the JSON property connectorName
11750 11751 11752 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11750 def connector_name @connector_name end |
#debug_options ⇒ Google::Apis::CloudsearchV1::DebugOptions
Shared request debug options for all cloudsearch RPC methods.
Corresponds to the JSON property debugOptions
11755 11756 11757 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11755 def @debug_options end |
#index_item_options ⇒ Google::Apis::CloudsearchV1::IndexItemOptions
Corresponds to the JSON property indexItemOptions
11760 11761 11762 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11760 def @index_item_options end |
#item ⇒ Google::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
11766 11767 11768 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11766 def item @item end |
#mode ⇒ String
Required. The RequestMode for this request.
Corresponds to the JSON property mode
11771 11772 11773 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11771 def mode @mode end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
11778 11779 11780 11781 11782 11783 11784 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 11778 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 |