Class: Google::Apis::CloudsearchV1::IndexItemRequest
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::IndexItemRequest
- Defined in:
- generated/google/apis/cloudsearch_v1/classes.rb,
generated/google/apis/cloudsearch_v1/representations.rb,
generated/google/apis/cloudsearch_v1/representations.rb
Instance Attribute Summary collapse
-
#connector_name ⇒ String
Name of connector making this call.
-
#debug_options ⇒ Google::Apis::CloudsearchV1::DebugOptions
Shared request debug options for all cloudsearch RPC methods.
-
#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.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ IndexItemRequest
Returns a new instance of IndexItemRequest
1281 1282 1283 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1281 def initialize(**args) update!(**args) end |
Instance Attribute Details
#connector_name ⇒ String
Name of connector making this call.
Format: datasources/source_id
/connectors/ID
Corresponds to the JSON property connectorName
1263 1264 1265 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1263 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
1268 1269 1270 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1268 def @debug_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
1274 1275 1276 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1274 def item @item end |
#mode ⇒ String
Required. The RequestMode for this request.
Corresponds to the JSON property mode
1279 1280 1281 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1279 def mode @mode end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1286 1287 1288 1289 1290 1291 |
# File 'generated/google/apis/cloudsearch_v1/classes.rb', line 1286 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) @mode = args[:mode] if args.key?(:mode) end |