Class: Google::Apis::CloudsearchV1::PushItemRequest
- Inherits:
-
Object
- Object
- Google::Apis::CloudsearchV1::PushItemRequest
- 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
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::PushItem
Represents an item to be pushed to the indexing queue.
Instance Method Summary collapse
-
#initialize(**args) ⇒ PushItemRequest
constructor
A new instance of PushItemRequest.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ PushItemRequest
Returns a new instance of PushItemRequest.
3239 3240 3241 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3239 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
3227 3228 3229 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3227 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
3232 3233 3234 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3232 def @debug_options end |
#item ⇒ Google::Apis::CloudsearchV1::PushItem
Represents an item to be pushed to the indexing queue.
Corresponds to the JSON property item
3237 3238 3239 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3237 def item @item end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3244 3245 3246 3247 3248 |
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 3244 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 |