Cloud Search API . media

Instance Methods

upload(resourceName, body=None, media_body=None, media_mime_type=None, x__xgafv=None)

Uploads media for indexing.

Method Details

upload(resourceName, body=None, media_body=None, media_mime_type=None, x__xgafv=None)
Uploads media for indexing.

The upload endpoint supports direct and resumable upload protocols and
is intended for large items that can not be inlined during index requests. To
index large content:

1. Call upload to begin
   a session and get the item reference.
1. Upload the content using the item reference's resource name.
1. Call index with the item
   reference as the content.

For additional information, see
[Create a content connector using the REST API](https://developers.google.com/cloud-search/docs/guides/content-connector#rest).

Args:
  resourceName: string, Name of the media that is being downloaded.  See
ReadRequest.resource_name. (required)
  body: object, The request body.
    The object takes the form of:

{ # Media resource.
    "resourceName": "A String", # Name of the media resource.
  }

  media_body: string, The filename of the media request body, or an instance of a MediaUpload object.
  media_mime_type: string, The MIME type of the media request body, or an instance of a MediaUpload object.
  x__xgafv: string, V1 error format.
    Allowed values
      1 - v1 error format
      2 - v2 error format

Returns:
  An object of the form:

    { # Media resource.
      "resourceName": "A String", # Name of the media resource.
    }