This function is invoked by generated service methods (i.e. methods which implement the REST API operations
+ defined within the API definition). The purpose of this function is to give the SDK implementor the opportunity
+ to provide SDK-specific HTTP headers that will be sent with an outgoing REST API request.
+
This function is invoked for each invocation of a generated service method,
+ so the set of HTTP headers could be request-specific.
+ As an optimization, if your SDK will be returning the same set of HTTP headers for each invocation of this
+ function, it is recommended that you initialize the returned map just once (perhaps by using
+ lazy initialization) and simply return it each time the function is invoked, instead of building it each time
+ as in the example below.
+
+ If you plan to gather metrics for your SDK, the User-Agent header value must
+ be a string similar to the following:
+ my-java-sdk/0.0.1 (lang=java; java.vendor=AdoptOpenJDK; java.version=1.8.0_232; os.arch=x86_64; os.name=Linux; os.version=5.1)
+
+ In the example above, the analytics tool will parse the user-agent header and
+ use the following properties:
+ "my-java-sdk" - the name of your sdk
+ "0.0.1"- the version of your sdk
+ "lang=java" - the language of the current sdk
+ "java.vendor=AdoptOpenJDK; java.version=1.8.0_232; os.arch=x86_64; os.name=Linux; os.version=5.1" - system information
+
+ Note: It is very important that the sdk name ends with the string `-sdk`,
+ as the analytics data collector uses this to gather usage data.
+
+
Parameters:
+
serviceName - the name of the service as defined in the API definition (e.g. "MyService1")
+
serviceVersion - the version of the service as defined in the API definition (e.g. "V1")
+
operationId - the operationId as defined in the API definition (e.g. getContext)
+
Returns:
+
a Map which contains the set of headers to be included in the REST API request
+ In either mode the Stream of changes can be terminated early by calling
+ stop().
+
+ By default ChangesFollower will suppress transient errors indefinitely and
+ endeavour to run to completion or listen forever. For applications where that
+ behaviour is not desirable an alternate constructor is available where a
+ Duration may be specified to limit the time since the last successful
+ response that transient errors will be suppressed.
+
+ It should be noted that errors considered terminal, for example, the database not
+ existing or invalid credentials are never suppressed and will throw an exception
+ immediately.
+
+ The PostChangesOptions model of changes feed options is used to configure
+ the behaviour of the ChangesFollower. However, a subset of the options are
+ invalid as they are configured internally by the implementation and will cause
+ an IllegalArgumentException to be thrown if supplied. These invalid
+ options are:
+
+ It should also be noted that the PostChangesOptions.Builder.limit(long)
+ parameter will truncate the stream at the given number of changes in either
+ operating mode.
+
+ The ChangesFollower requires the Cloudant client to have
+ HTTP call and read timeouts of at least 1 minute. The default client
+ configuration has sufficiently long timeouts.
Create a new ChangesFollower using the supplied client and options that will
+ suppress transient errors and retry for as long as the given duration.
+
+
Parameters:
+
client - - Cloudant client instance to use to make requests
+
options - - Changes feed options
+
errorTolerance - - the duration to suppress errors, measured from the previous successful request.
+ Use Duration.ZERO to disable error suppression and terminate this ChangesFollower on any
+ failed request.
com.ibm.cloud.sdk.core.service.exception.ServiceResponseException - if a terminal error or unsupressed transient error
+ is recevied from the service when fetching changes
com.ibm.cloud.sdk.core.service.exception.ServiceResponseException - if a terminal error or unsupressed transient error
+ is recevied from the service when fetching changes
+ Note that Stream terminal operations block so this stop method needs to
+ be called from a different thread than the terminal operation to have any effect.
public abstract class CloudantBaseService
+extends com.ibm.cloud.sdk.core.service.BaseService
+
This class provides customizations to the generated Cloudant class.
+ It is not public API, but is used in the class hierarchy to bridge the generated Cloudant
+ class to the SDK core BaseService.
+
+
+
+
+
+
+
Field Summary
+
+
Fields inherited from class com.ibm.cloud.sdk.core.service.BaseService
This package contains classes used internally by the IBM Cloudant Java SDK. This package is not
+ API and should not be used by user code even when the classes, methods, or fields have public
+ visibility modifiers.
public static class CouchDbSessionAuthenticator.CouchDbSessionToken
+extends com.ibm.cloud.sdk.core.security.AbstractToken
+implements com.ibm.cloud.sdk.core.security.TokenServerResponse
+
Implements TokenServerResponse for an Apache CouchDB session cookie.
Setter to configure this authenticator with HttpConfigOptions. This is called
+ internally to
+ apply the configuration options of the
+ service client automatically.
Setter to configure this authenticator with a new session URL derived from the supplied
+ service URL. This is called internally to apply the service URL from the
+ service client automatically.
Retrieve server instance information.
+
+ When you access the root of an instance, IBM Cloudant returns meta-information about the instance. The response
+ includes a JSON structure that contains information about the server, including a welcome message and the server's
+ version.
+
+ **Tip:** The authentication for this endpoint is only enforced when using IAM.
Retrieve server instance information.
+
+ When you access the root of an instance, IBM Cloudant returns meta-information about the instance. The response
+ includes a JSON structure that contains information about the server, including a welcome message and the server's
+ version.
+
+ **Tip:** The authentication for this endpoint is only enforced when using IAM.
Retrieve cluster membership information.
+
+ Displays the nodes that are part of the cluster as `cluster_nodes`. The field, `all_nodes`, displays all nodes this
+ node knows about, including the ones that are part of the cluster. This endpoint is useful when you set up a
+ cluster.
Retrieve cluster membership information.
+
+ Displays the nodes that are part of the cluster as `cluster_nodes`. The field, `all_nodes`, displays all nodes this
+ node knows about, including the ones that are part of the cluster. This endpoint is useful when you set up a
+ cluster.
Retrieve one or more UUIDs.
+
+ Requests one or more Universally Unique Identifiers (UUIDs) from the instance. The response is a JSON object that
+ provides a list of UUIDs.
+
+ **Tip:** The authentication for this endpoint is only enforced when using IAM.
+
+
Parameters:
+
getUuidsOptions - the GetUuidsOptions containing the options for the call
Retrieve one or more UUIDs.
+
+ Requests one or more Universally Unique Identifiers (UUIDs) from the instance. The response is a JSON object that
+ provides a list of UUIDs.
+
+ **Tip:** The authentication for this endpoint is only enforced when using IAM.
Retrieve provisioned throughput capacity information.
+
+ View the amount of provisioned throughput capacity that is allocated to an IBM Cloudant instance and what is the
+ target provisioned throughput capacity.
Retrieve provisioned throughput capacity information.
+
+ View the amount of provisioned throughput capacity that is allocated to an IBM Cloudant instance and what is the
+ target provisioned throughput capacity.
Update the target provisioned throughput capacity.
+
+ Sets the target provisioned throughput capacity for an IBM Cloudant instance. When target capacity is changed, the
+ current capacity asynchronously changes to meet the target capacity.
this method is deprecated and may be removed in a future release
+
+
Retrieve change events for all databases.
+
+ **This endpoint is not available in IBM Cloudant.**
+
+ Lists changes to databases, like a global changes feed. Types of changes include updating the database and creating
+ or deleting a database. Like the changes feed, the feed is not guaranteed to return changes in the correct order
+ and might repeat changes. Polling modes for this method work like polling modes for the changes feed.
+
+
Parameters:
+
getDbUpdatesOptions - the GetDbUpdatesOptions containing the options for the call
this method is deprecated and may be removed in a future release
+
+
Retrieve change events for all databases.
+
+ **This endpoint is not available in IBM Cloudant.**
+
+ Lists changes to databases, like a global changes feed. Types of changes include updating the database and creating
+ or deleting a database. Like the changes feed, the feed is not guaranteed to return changes in the correct order
+ and might repeat changes. Polling modes for this method work like polling modes for the changes feed.
Query the database document changes feed.
+
+ Requests the database changes feed in the same way as `GET /{db}/_changes` does. It is widely used with the
+ `filter` query parameter because it allows one to pass more information to the filter.
+
+ ### Note
+
+ Before using the changes feed we recommend reading the
+ [FAQs](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-faq-using-changes-feed) to understand the limitations and
+ appropriate use cases.
+
+
Parameters:
+
postChangesOptions - the PostChangesOptions containing the options for the call
Query the database document changes feed as stream.
+
+ Requests the database changes feed in the same way as `GET /{db}/_changes` does. It is widely used with the
+ `filter` query parameter because it allows one to pass more information to the filter.
+
+ ### Note
+
+ Before using the changes feed we recommend reading the
+ [FAQs](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-faq-using-changes-feed) to understand the limitations and
+ appropriate use cases.
+
+
Parameters:
+
postChangesOptions - the PostChangesOptions containing the options for the call
Retrieve the HTTP headers for a database.
+
+ Returns the HTTP headers that contain a minimal amount of information about the specified database. Since the
+ response body is empty, using the HEAD method is a lightweight way to check if the database exists or not.
+
+
Parameters:
+
headDatabaseOptions - the HeadDatabaseOptions containing the options for the call
Query information about multiple databases.
+
+ This operation enables you to request information about multiple databases in a single request, instead of issuing
+ multiple `GET /{db}` requests. It returns a list that contains an information object for each database specified in
+ the request.
+
+
Parameters:
+
postDbsInfoOptions - the PostDbsInfoOptions containing the options for the call
Delete a database.
+
+ Deletes the specified database and all documents and attachments contained within it. To avoid deleting a database,
+ the server responds with a 400 HTTP status code when the request URL includes a `?rev=` parameter. This response
+ suggests that a user wanted to delete a document but forgot to add the document ID to the URL.
+
+
Parameters:
+
deleteDatabaseOptions - the DeleteDatabaseOptions containing the options for the call
Retrieve the HTTP headers for the document.
+
+ This method supports the same query arguments as the `GET /{db}/{docid}` method, but only the header information
+ (including document size and the revision as an ETag) is returned. The ETag header shows the current revision for
+ the requested document, and the Content-Length specifies the length of the data if the document was requested in
+ full. Add any of the query arguments, then the resulting HTTP headers that correspond to it are returned.
+
+
Parameters:
+
headDocumentOptions - the HeadDocumentOptions containing the options for the call
Create or modify a document in a database.
+
+ Creates or modifies a document in the specified database by using the supplied JSON document.
+
+ For creation, you may specify the document ID but you should not specify the revision. If you don't specify the
+ document ID, then the server generates an ID for your document.
+
+ For modification, you must specify the document ID and a revision identifier in the JSON document.
+
+ If your document ID includes the `_local/` or `_design/` prefix, then this operation creates or modifies a local or
+ a design document respectively.
+
+
Parameters:
+
postDocumentOptions - the PostDocumentOptions containing the options for the call
Query a list of all documents in a database.
+
+ Queries the primary index (all document IDs). The results that match the request body parameters are returned in a
+ JSON object, including a list of matching documents with basic contents, such as the ID and revision. When no
+ request body parameters are specified, results for all documents in the database are returned. Optionally, document
+ content or additional metadata can be included in the response.
+
+
Parameters:
+
postAllDocsOptions - the PostAllDocsOptions containing the options for the call
Query a list of all documents in a database as stream.
+
+ Queries the primary index (all document IDs). The results that match the request body parameters are returned in a
+ JSON object, including a list of matching documents with basic contents, such as the ID and revision. When no
+ request body parameters are specified, results for all documents in the database are returned. Optionally, document
+ content or additional metadata can be included in the response.
+
+
Parameters:
+
postAllDocsOptions - the PostAllDocsOptions containing the options for the call
Multi-query the list of all documents in a database.
+
+ Runs multiple queries using the primary index (all document IDs). Returns a JSON object that contains a list of
+ result objects, one for each query, with a structure equivalent to that of a single `_all_docs` request. This
+ enables you to request multiple queries in a single request, in place of multiple `POST /{db}/_all_docs` requests.
Multi-query the list of all documents in a database as stream.
+
+ Runs multiple queries using the primary index (all document IDs). Returns a JSON object that contains a list of
+ result objects, one for each query, with a structure equivalent to that of a single `_all_docs` request. This
+ enables you to request multiple queries in a single request, in place of multiple `POST /{db}/_all_docs` requests.
Bulk modify multiple documents in a database.
+
+ The bulk document API allows you to create, update, and delete multiple documents at the same time within a single
+ request. The basic operation is similar to creating, updating, or deleting a single document, except that you batch
+ the document structure and information.
+
+
Parameters:
+
postBulkDocsOptions - the PostBulkDocsOptions containing the options for the call
Bulk query revision information for multiple documents.
+
+ Fetch specific revisions or revision histories for multiple documents in bulk as replicators do.
+
+
Parameters:
+
postBulkGetOptions - the PostBulkGetOptions containing the options for the call
Bulk query revision information for multiple documents as mixed.
+
+ Fetch specific revisions or revision histories for multiple documents in bulk as replicators do.
+
+
Parameters:
+
postBulkGetOptions - the PostBulkGetOptions containing the options for the call
Bulk query revision information for multiple documents as related.
+
+ Fetch specific revisions or revision histories for multiple documents in bulk as replicators do.
+
+
Parameters:
+
postBulkGetOptions - the PostBulkGetOptions containing the options for the call
Bulk query revision information for multiple documents as stream.
+
+ Fetch specific revisions or revision histories for multiple documents in bulk as replicators do.
+
+
Parameters:
+
postBulkGetOptions - the PostBulkGetOptions containing the options for the call
Delete a document.
+
+ Marks the specified document as deleted by adding a `_deleted` field with the value `true`. Documents with this
+ field are not returned within requests anymore but stay in the database. You must supply the current (latest)
+ revision, either by using the `rev` parameter or by using the `If-Match` header to specify the revision.
+
+
Parameters:
+
deleteDocumentOptions - the DeleteDocumentOptions containing the options for the call
Retrieve a document.
+
+ Returns document with the specified `doc_id` from the specified database. Unless you request a specific revision,
+ the latest revision of the document is always returned.
+
+
Parameters:
+
getDocumentOptions - the GetDocumentOptions containing the options for the call
Retrieve a document as mixed.
+
+ Returns document with the specified `doc_id` from the specified database. Unless you request a specific revision,
+ the latest revision of the document is always returned.
+
+
Parameters:
+
getDocumentOptions - the GetDocumentOptions containing the options for the call
Retrieve a document as related.
+
+ Returns document with the specified `doc_id` from the specified database. Unless you request a specific revision,
+ the latest revision of the document is always returned.
+
+
Parameters:
+
getDocumentOptions - the GetDocumentOptions containing the options for the call
Retrieve a document as stream.
+
+ Returns document with the specified `doc_id` from the specified database. Unless you request a specific revision,
+ the latest revision of the document is always returned.
+
+
Parameters:
+
getDocumentOptions - the GetDocumentOptions containing the options for the call
Create or modify a document.
+
+ Creates or modifies a document in the specified database.
+
+ For creation, you must specify the document ID but you should not specify the revision.
+
+ For modification, you must specify the document ID and a revision identifier.
+
+
Parameters:
+
putDocumentOptions - the PutDocumentOptions containing the options for the call
Retrieve the HTTP headers for a design document.
+
+ This method supports the same query arguments as the `GET /{db}/_design/{ddoc}` method, but the results include
+ only the header information (including design document size, and the revision as an ETag). The ETag header shows
+ the current revision for the requested design document, and if you requested the design document in full, the
+ Content-Length specifies the length of the data. If you add any of the query arguments, then the resulting HTTP
+ headers correspond to what is returned for the equivalent GET request.
Delete a design document.
+
+ Marks the specified design document as deleted by adding a `_deleted` field with the value `true`. Documents with
+ this field are not returned with requests but stay in the database. You must supply the current (latest) revision,
+ either by using the `rev` parameter or by using the `If-Match` header to specify the revision.
Retrieve a design document.
+
+ Returns design document with the specified `doc_id` from the specified database. Unless you request a specific
+ revision, the current revision of the design document is always returned.
Retrieve information about a design document.
+
+ Retrieves information about the specified design document, including the index, index size, and current status of
+ the design document and associated index information.
Query a list of all design documents in a database.
+
+ Queries the index of all design document IDs. The results matching the request body parameters are returned in a
+ JSON object, including a list of matching design documents with basic contents, such as the ID and revision. When
+ no request body parameters are specified, results for all design documents in the database are returned.
+ Optionally, the design document content or additional metadata can be included in the response.
+
+
Parameters:
+
postDesignDocsOptions - the PostDesignDocsOptions containing the options for the call
Multi-query the list of all design documents.
+
+ This operation runs multiple view queries of all design documents in the database. This operation enables you to
+ request numerous queries in a single request, in place of multiple POST `/{db}/_design_docs` requests.
Query a MapReduce view.
+
+ This operation queries the specified MapReduce view of the specified design document. By default, the map and
+ reduce functions of the view are run to update the view before returning the response. The advantage of using the
+ HTTP `POST` method is that the query is submitted as a JSON object in the request body. This avoids the limitations
+ of passing query options as URL query parameters of a `GET` request.
+
+
Parameters:
+
postViewOptions - the PostViewOptions containing the options for the call
Query a MapReduce view as stream.
+
+ This operation queries the specified MapReduce view of the specified design document. By default, the map and
+ reduce functions of the view are run to update the view before returning the response. The advantage of using the
+ HTTP `POST` method is that the query is submitted as a JSON object in the request body. This avoids the limitations
+ of passing query options as URL query parameters of a `GET` request.
+
+
Parameters:
+
postViewOptions - the PostViewOptions containing the options for the call
Multi-query a MapReduce view as stream.
+
+ This operation runs multiple specified view queries against the view function from the specified design document.
Retrieve information about a database partition.
+
+ Given a partition key, return the database name, sizes, partition, doc count, and doc delete count.
Query a list of all documents in a database partition.
+
+ Queries the primary index (all document IDs). The results that match the query parameters are returned in a JSON
+ object, including a list of matching documents with basic contents, such as the ID and revision. When no query
+ parameters are specified, results for all documents in the database partition are returned. Optionally, document
+ content or additional metadata can be included in the response.
Query a list of all documents in a database partition as stream.
+
+ Queries the primary index (all document IDs). The results that match the query parameters are returned in a JSON
+ object, including a list of matching documents with basic contents, such as the ID and revision. When no query
+ parameters are specified, results for all documents in the database partition are returned. Optionally, document
+ content or additional metadata can be included in the response.
Query a database partition search index.
+
+ Partitioned Search indexes, which are defined in design documents, allow partition databases to be queried by using
+ Lucene Query Parser Syntax. Search indexes are defined by an index function, similar to a map function in MapReduce
+ views. The index function decides what data to index and store in the index.
Query a database partition search index as stream.
+
+ Partitioned Search indexes, which are defined in design documents, allow partition databases to be queried by using
+ Lucene Query Parser Syntax. Search indexes are defined by an index function, similar to a map function in MapReduce
+ views. The index function decides what data to index and store in the index.
Query a database partition MapReduce view function.
+
+ Runs the specified view function from the specified design document. Unlike `GET /{db}/_design/{ddoc}/_view/{view}`
+ for accessing views, the POST method supports the specification of explicit keys to be retrieved from the view
+ results. The remainder of the POST view functionality is identical to the `GET /{db}/_design/{ddoc}/_view/{view}`
+ API.
Query a database partition MapReduce view function as stream.
+
+ Runs the specified view function from the specified design document. Unlike `GET /{db}/_design/{ddoc}/_view/{view}`
+ for accessing views, the POST method supports the specification of explicit keys to be retrieved from the view
+ results. The remainder of the POST view functionality is identical to the `GET /{db}/_design/{ddoc}/_view/{view}`
+ API.
Retrieve information about which partition index is used for a query.
+
+ Shows which index is being used by the query. Parameters are the same as the
+ [`/{db}/_partition/{partition_key}/_find` endpoint](#postpartitionfind-queries).
Query a database partition index by using selector syntax.
+
+ Query documents by using a declarative JSON querying syntax. It's best practice to create an appropriate index for
+ all fields in selector by using the `_index` endpoint.
+
+ Queries without an appropriate backing index will fallback to using the built-in `_all_docs` index. This is not
+ recommended because it has a noticeable performance impact causing a full scan of the partition with each request.
+ In this case the response body will include a warning field recommending that an index is created.
Query a database partition index by using selector syntax as stream.
+
+ Query documents by using a declarative JSON querying syntax. It's best practice to create an appropriate index for
+ all fields in selector by using the `_index` endpoint.
+
+ Queries without an appropriate backing index will fallback to using the built-in `_all_docs` index. This is not
+ recommended because it has a noticeable performance impact causing a full scan of the partition with each request.
+ In this case the response body will include a warning field recommending that an index is created.
Retrieve information about which index is used for a query.
+
+ Shows which index is being used by the query. Parameters are the same as the [`_find` endpoint](#postfind).
+
+
Parameters:
+
postExplainOptions - the PostExplainOptions containing the options for the call
Query an index by using selector syntax.
+
+ Query documents by using a declarative JSON querying syntax. It's best practice to create an appropriate index for
+ all fields in selector by using the `_index` endpoint.
+
+ Queries without an appropriate backing index will fallback to using the built-in `_all_docs` index. This is not
+ recommended because it has a significant performance impact causing a full scan of the database with each request.
+ In this case the response body will include a warning field recommending that an index is created.
+
+
Parameters:
+
postFindOptions - the PostFindOptions containing the options for the call
Query an index by using selector syntax as stream.
+
+ Query documents by using a declarative JSON querying syntax. It's best practice to create an appropriate index for
+ all fields in selector by using the `_index` endpoint.
+
+ Queries without an appropriate backing index will fallback to using the built-in `_all_docs` index. This is not
+ recommended because it has a significant performance impact causing a full scan of the database with each request.
+ In this case the response body will include a warning field recommending that an index is created.
+
+
Parameters:
+
postFindOptions - the PostFindOptions containing the options for the call
Retrieve information about all indexes.
+
+ When you make a GET request to `/db/_index`, you get a list of all indexes used by Cloudant Query in the database,
+ including the primary index. In addition to the information available through this API, indexes are also stored in
+ the `indexes` property of design documents.
Query tokenization of sample text.
+
+ Returns the results of analyzer tokenization of the provided sample text. This endpoint can be used for testing
+ analyzer tokenization.
Query a search index.
+
+ Search indexes, which are defined in design documents, allow databases to be queried by using Lucene Query Parser
+ Syntax. An index function defines a search index, similar to a map function in MapReduce views. The index function
+ decides what data to index and what data to store in the index. The advantage of using the HTTP `POST` method is
+ that the query is submitted as a JSON object in the request body. This avoids the limitations of passing query
+ options as URL query parameters of a `GET` request.
+
+
Parameters:
+
postSearchOptions - the PostSearchOptions containing the options for the call
Query a search index as stream.
+
+ Search indexes, which are defined in design documents, allow databases to be queried by using Lucene Query Parser
+ Syntax. An index function defines a search index, similar to a map function in MapReduce views. The index function
+ decides what data to index and what data to store in the index. The advantage of using the HTTP `POST` method is
+ that the query is submitted as a JSON object in the request body. This avoids the limitations of passing query
+ options as URL query parameters of a `GET` request.
+
+
Parameters:
+
postSearchOptions - the PostSearchOptions containing the options for the call
Retrieve the HTTP headers for a replication document.
+
+ Retrieves the HTTP headers containing minimal amount of information about the specified replication document from
+ the `_replicator` database. The method supports the same query arguments as the `GET /_replicator/{doc_id}`
+ method, but only headers like content length and the revision (ETag header) are returned.
Retrieve HTTP headers for a replication scheduler document.
+
+ Retrieves the HTTP headers containing minimal amount of information about the specified replication scheduler
+ document. Since the response body is empty, using the HEAD method is a lightweight way to check if the replication
+ scheduler document exists or not.
Retrieve the HTTP headers for a replication scheduler job.
+
+ Returns the HTTP headers that contain a minimal amount of information about the specified replication task. Only
+ the header information is returned.
Retrieve a replication document.
+
+ Retrieves a replication document from the `_replicator` database to view the configuration of the replication. The
+ status of the replication is no longer recorded in the document but can be checked via the replication scheduler.
Create or modify a replication using a replication document.
+
+ Creates or modifies a document in the `_replicator` database to start a new replication or to edit an existing
+ replication.
Retrieve replication scheduler documents.
+
+ Lists replication documents, including information about all documents, even the ones in a completed or failed
+ state. For each document, the endpoint returns the document ID, database, replication ID, source and target, and
+ other information.
Retrieve replication scheduler documents.
+
+ Lists replication documents, including information about all documents, even the ones in a completed or failed
+ state. For each document, the endpoint returns the document ID, database, replication ID, source and target, and
+ other information.
Retrieve a replication scheduler document.
+
+ Retrieves information about a replication document from the replicator database. The endpoint returns the document
+ ID, database, replication ID, source and target, and other information.
Retrieve replication scheduler jobs.
+
+ Retrieves information about replications that were created via `/_replicate` endpoint, as well as those created
+ from replication documents. It doesn't include replications that completed or failed to start because replication
+ documents were malformed. Each job description includes source and target information, replication ID, history of
+ recent events, and other information.
Retrieve replication scheduler jobs.
+
+ Retrieves information about replications that were created via `/_replicate` endpoint, as well as those created
+ from replication documents. It doesn't include replications that completed or failed to start because replication
+ documents were malformed. Each job description includes source and target information, replication ID, history of
+ recent events, and other information.
Retrieve database permissions information.
+
+ See who has permission to read, write, and manage the database. The credentials you use to log in to the dashboard
+ automatically include `_admin` permissions to all databases you create. Everyone and everything else, including
+ users you share databases with and API keys you create, must be given a permission level explicitly.
+
+
Parameters:
+
getSecurityOptions - the GetSecurityOptions containing the options for the call
Modify database permissions.
+
+ Modify who has permission to read, write, or manage a database. This endpoint can be used to modify both Cloudant
+ and CouchDB related permissions. Be careful: by removing a Cloudant API key, a member or an admin from the list of
+ users that have access permissions, you remove it from the list of users that have access to the database.
+
+ ### Note about nobody role
+
+ The `nobody` username applies to all unauthenticated connection attempts. For example, if an application tries to
+ read data from a database, but did not identify itself, the task can continue only if the `nobody` user has the
+ role `_reader`.
+
+
Parameters:
+
putSecurityOptions - the PutSecurityOptions containing the options for the call
Generates API keys for apps or persons to enable database access.
+
+ Generates API keys to enable database access for a person or application, but without creating a new IBM Cloudant
+ account for that person or application. An API key is a randomly generated username and password. The key is given
+ the wanted access permissions for a database.
+
+
Parameters:
+
postApiKeysOptions - the PostApiKeysOptions containing the options for the call
Generates API keys for apps or persons to enable database access.
+
+ Generates API keys to enable database access for a person or application, but without creating a new IBM Cloudant
+ account for that person or application. An API key is a randomly generated username and password. The key is given
+ the wanted access permissions for a database.
Modify only Cloudant related database permissions.
+
+ Modify only Cloudant related permissions to database. Be careful: by removing an API key from the list, you remove
+ the API key from the list of users that have access to the database.
+
+ ### Note about nobody role
+
+ The `nobody` username applies to all unauthenticated connection attempts. For example, if an application tries to
+ read data from a database, but did not identify itself, the task can continue only if the `nobody` user has the
+ role `_reader`.
Retrieve CORS configuration information.
+
+ Lists all Cross-origin resource sharing (CORS) configuration. CORS defines a way in which the browser and the
+ server interact to determine whether or not to allow the request.
Retrieve CORS configuration information.
+
+ Lists all Cross-origin resource sharing (CORS) configuration. CORS defines a way in which the browser and the
+ server interact to determine whether or not to allow the request.
Modify CORS configuration.
+
+ Sets the CORS configuration. The configuration applies to all databases and all account level endpoints in your
+ account.
Retrieve the HTTP headers for an attachment.
+
+ Returns the HTTP headers that contain a minimal amount of information about the specified attachment. This method
+ supports the same query arguments as the `GET /{db}/{doc_id}/{attachment_name}` method, but only the header
+ information (including attachment size, encoding, and the MD5 hash as an ETag), is returned.
+
+
Parameters:
+
headAttachmentOptions - the HeadAttachmentOptions containing the options for the call
Delete an attachment.
+
+ Deletes the attachment with the filename, `{attachment_name}`, from the specified doc. You must supply the `rev`
+ query parameter or `If-Match` header with the current revision to delete the attachment.
Retrieve an attachment.
+
+ Returns the file attachment that is associated with the document. The raw data of the associated attachment is
+ returned, just as if you were accessing a static file. The returned Content-Type header is the same as the content
+ type set when the document attachment was submitted to the database.
+
+
Parameters:
+
getAttachmentOptions - the GetAttachmentOptions containing the options for the call
Create or modify an attachment.
+
+ Uploads the supplied content as an attachment to the specified document. The attachment name that you provide must
+ be a URL encoded string. You must supply the Content-Type header, and for an existing document, you must also
+ supply either the `rev` query argument or the `If-Match` HTTP header. If you omit the revision, a new, otherwise
+ empty, document is created with the provided attachment, or a conflict occurs. If the uploaded attachment uses an
+ existing attachment name in the remote database, it updates the corresponding stored content of the database. Since
+ you must supply the revision information to add an attachment to the document, this serves as validation to update
+ the existing attachment.
+
+
Parameters:
+
putAttachmentOptions - the PutAttachmentOptions containing the options for the call
Retrieve HTTP headers for a local document.
+
+ Retrieves the HTTP headers containing minimal amount of information about the specified local document. Since the
+ response body is empty, using the HEAD method is a lightweight way to check if the local document exists or not.
Delete a local document.
+
+ Deletes the specified local document. The semantics are identical to deleting a standard document in the specified
+ database, except that the document is not replicated.
Retrieve a local document.
+
+ Retrieves the specified local document. The semantics are identical to accessing a standard document in the
+ specified database, except that the document is not replicated.
Create or modify a local document.
+
+ Stores the specified local document. The semantics are identical to storing a standard document in the specified
+ database, except that the document is not replicated.
Query the document revisions and possible ancestors missing from the database.
+
+ The replicator is the primary user of this operation. After receiving a set of new revision IDs from the source
+ database, the replicator sends this set to the destination database's `_revs_diff` to find out which of them
+ already exists there. It can then avoid fetching and sending already-known document bodies.
+
+
Parameters:
+
postRevsDiffOptions - the PostRevsDiffOptions containing the options for the call
Retrieve shard information for a specific document.
+
+ Retrieves information about a specific shard where a particular document is stored, along with information about
+ the nodes where that shard has a replica.
Retrieve list of running tasks.
+
+ Lists running tasks, including the task type, name, status, and process ID. The result includes a JSON array of the
+ currently running tasks, with each task described as a single object. Depending on the operation type, the set of
+ response object fields might be different.
+
+
Parameters:
+
getActiveTasksOptions - the GetActiveTasksOptions containing the options for the call
Retrieve list of running tasks.
+
+ Lists running tasks, including the task type, name, status, and process ID. The result includes a JSON array of the
+ currently running tasks, with each task described as a single object. Depending on the operation type, the set of
+ response object fields might be different.
Retrieve information about whether the server is up.
+
+ Confirms that the server is up, running, and ready to respond to requests. If `maintenance_mode` is `true` or
+ `nolb`, the endpoint returns a 404 response.
+
+ **Tip:** The authentication for this endpoint is only enforced when using IAM.
Retrieve information about whether the server is up.
+
+ Confirms that the server is up, running, and ready to respond to requests. If `maintenance_mode` is `true` or
+ `nolb`, the endpoint returns a 404 response.
+
+ **Tip:** The authentication for this endpoint is only enforced when using IAM.
Modify Activity Tracker events configuration.
+
+ Configure event types that are being sent to IBM Cloud Activity Tracker for the IBM Cloudant instance.
Retrieve the current provisioned throughput capacity consumption.
+
+ View the current consumption of provisioned throughput capacity for an IBM Cloudant instance. The current
+ consumption shows the quantities of reads, writes, and global queries conducted against the instance for a given
+ second.
Retrieve the current provisioned throughput capacity consumption.
+
+ View the current consumption of provisioned throughput capacity for an IBM Cloudant instance. The current
+ consumption shows the quantities of reads, writes, and global queries conducted against the instance for a given
+ second.
The phase the active task is in. `docid_sort`, `docid_copy`, `document_copy` phases are available for
+ `database_compaction`, while `ids` and `view` phases are available for `view_compaction` type tasks.
Gets the phase.
+
+ The phase the active task is in. `docid_sort`, `docid_copy`, `document_copy` phases are available for
+ `database_compaction`, while `ids` and `view` phases are available for `view_compaction` type tasks.
Gets the types.
+
+ An array of event types that are being sent to IBM Cloud Activity Tracker for the IBM Cloudant instance.
+ "management" is a required element of this array.
Gets the results.
+
+ An array of result objects - one for each query. Each result object contains the same fields as the response to a
+ regular `/_all_docs` request.
Gets the attEncodingInfo.
+
+ Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment
+ is compressed.
Gets the conflicts.
+
+ Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
+ `include_docs` is `true`.
Gets the updateSeq.
+
+ Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the
+ database the view reflects.
Schema for the name of the Apache Lucene analyzer to use for text indexing. The default value varies depending on
+ the analyzer usage:
+ * For search indexes the default is `standard` * For query text indexes the default is `keyword` * For a query text
+ index default_field the default is `standard`.
Gets the name.
+
+ Schema for the name of the Apache Lucene analyzer to use for text indexing. The default value varies depending on
+ the analyzer usage:
+ * For search indexes the default is `standard` * For query text indexes the default is `keyword` * For a query text
+ index default_field the default is `standard`.
public static interface AnalyzerConfiguration.Name
+
Schema for the name of the Apache Lucene analyzer to use for text indexing. The default value varies depending on
+ the analyzer usage:
+ * For search indexes the default is `standard` * For query text indexes the default is `keyword` * For a query text
+ index default_field the default is `standard`.
Gets the name.
+
+ Schema for the name of the Apache Lucene analyzer to use for text indexing. The default value varies depending on
+ the analyzer usage:
+ * For search indexes the default is `standard` * For query text indexes the default is `keyword` * For a query text
+ index default_field the default is `standard`.
Gets the data.
+
+ Base64-encoded content. Available if attachment content is requested by using the query parameters
+ `attachments=true` or `atts_since`. Note that when used with a view or changes feed `include_docs` must also be
+ `true`.
Gets the digest.
+
+ Content hash digest. It starts with prefix which announce hash type (e.g. `md5-`) and continues with Base64-encoded
+ hash digest.
Gets the encodedLength.
+
+ Compressed attachment size in bytes. Available if content_type was in list of compressible types when the
+ attachment was added and the query parameter `att_encoding_info` is `true`. Note that when used with a view or
+ changes feed `include_docs` must also be `true`.
Gets the encoding.
+
+ Compression codec. Available if content_type was in list of compressible types when the attachment was added and
+ the and the query parameter `att_encoding_info` is `true`. Note that when used with a view or changes feed
+ `include_docs` must also be `true`.
Gets the allowCredentials.
+
+ Boolean value to allow authentication credentials. If set to true, browser requests must be done by using
+ withCredentials = true.
Gets the origins.
+
+ An array of strings that contain allowed origin domains. You have to specify the full URL including the protocol.
+ It is recommended that only the HTTPS protocol is used. Subdomains count as separate domains, so you have to
+ specify all subdomains used.
Gets the n.
+
+ Schema for the number of replicas of a database in a cluster. The cluster is using the default value and it cannot
+ be changed by the user.
Gets the batch.
+
+ Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted
+ response code immediately.
Gets the ddoc.
+
+ Path parameter to specify the design document name. The design document name is the design document ID excluding
+ the `_design/` prefix.
Gets the batch.
+
+ Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted
+ response code immediately.
Gets the batch.
+
+ Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted
+ response code immediately.
Gets the ddoc.
+
+ Path parameter to specify the design document name. The design document name is the design document ID excluding
+ the `_design/` prefix.
Gets the batch.
+
+ Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted
+ response code immediately.
Gets the batch.
+
+ Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted
+ response code immediately.
Gets the filters.
+
+ Schema for filter functions definition. This schema is a map where keys are the names of the filter functions and
+ values are the function definition in string format.
+
+ Filter function formats, or filters the changes feed that pass filter rules. The function takes 2 parameters:
+
+ * `doc`: The document that is being processed.
+ * `req`: A Request JavaScript object with these properties:
+
+ * `body` - string, Request body data as string.
+ If the request method is GET this field contains the value
+ `"undefined"`.
+ If the method is DELETE or HEAD the value is `""` (empty string).
+ * `cookie` - Cookies object.
+ * `form` - Form Data object, contains the decoded body as key-value
+ pairs if the Content-Type header was
+ application/x-www-form-urlencoded.
+ * `headers` - Request Headers object.
+ * `id` - string, requested document id if it was specified
+ or null otherwise.
+ * `info` - Database Information object,
+ see `DatabaseInformation`.
+ * `method` - string or an array of chars, request method.
+ String value is a method as one of: HEAD, GET, POST, PUT,
+ DELETE, OPTIONS, TRACE, COPY. For not supported methods
+ it will be represented as an array of char codes e.g. for VIEW
+ it will be 86,73,69,87.
+ * `path` - array of strings, requested path sections.
+ * `peer` - string, request source IP address.
+ * `query` - string, URL query parameters object. Note that multiple
+ keys are not supported and the last key value suppresses others.
+ * `requested_path` - array of strings,
+ actual requested path section.
+ * `raw_path` - string, raw requested path.
+ * `userCtx`: User Context Object, containing information about the
+ user writing the document (if present), see the `UserContext`.
+ * `secObj`: Security Object, with lists of database security roles,
+ see the `SecurityObject`.
+ * `uuid` - string, generated UUID by a specified algorithm in the
+ config file.
+
+ Filter functions must return true if a document passed all the rules.
Gets the validateDocUpdate.
+
+ Validate document update function can be used to prevent invalid or unauthorized document update requests from
+ being stored. Validation functions typically examine the structure of the new document to ensure that required
+ fields are present and to verify that the requesting user should be allowed to make changes to the document
+ properties. When a write request is received for a given database, the validation function in each design document
+ in that database is called in an unspecified order. If any of the validation functions throw an error, the write
+ will not succeed.
+
+ The validation function can abort the pending document write by throwing one of two error objects:
+
+ ```
+ // user is not authorized to make the change but may re-authenticate throw({ unauthorized: 'Error message here.'
+ });
+
+ // change is not allowed throw({ forbidden: 'Error message here.' });
+ ```
+
+ The function takes 4 parameters:
+
+ * `newDoc` - New version of document that will be stored
+ from the update request.
+ * `oldDoc` - Previous version of document that is already stored.
+ * `userCtx` - User Context Object, containing information about the
+ user writing the document (if present), see the `UserContext`.
+ * `secObj` - Security Object, with lists of database security roles,
+ see the `SecurityObject`.
Gets the collatorVersions.
+
+ List of collator versions. If there are multiple entries this implies a libicu upgrade has occurred but compaction
+ has not run yet.
public static interface DocumentRevisionStatus.Status
+
Status of the revision. May be one of: - `available`: Revision is available for retrieving with rev query parameter
+ - `missing`: Revision is not available - `deleted`: Revision belongs to deleted document.
Gets the status.
+
+ Status of the revision. May be one of: - `available`: Revision is available for retrieving with rev query parameter
+ - `missing`: Revision is not available - `deleted`: Revision belongs to deleted document.
Gets the fields.
+
+ Fields that were requested to be projected from the document. If no fields were requested to be projected this will
+ be empty and all fields will be returned.
Gets the selector.
+
+ JSON object describing criteria used to select documents. The selector specifies fields in the document, and
+ provides an expression to evaluate with the field content or other data.
+
+ The selector object must:
+ * Be structured as valid JSON.
+ * Contain a valid query expression.
+
+ Using a selector is significantly more efficient than using a JavaScript filter function, and is the recommended
+ option if filtering on document attributes only.
+
+ Elementary selector syntax requires you to specify one or more fields, and the corresponding values required for
+ those fields. You can create more complex selector expressions by combining operators.
+
+ Operators are identified by the use of a dollar sign `$` prefix in the name field.
+
+ There are two core types of operators in the selector syntax:
+ * Combination operators: applied at the topmost level of selection. They are used to combine selectors. A
+ combination operator takes a single argument. The argument is either another selector, or an array of selectors.
+ * Condition operators: are specific to a field, and are used to evaluate the value stored in that field. For
+ instance, the basic `$eq` operator matches when the specified field contains a value that is equal to the supplied
+ argument. See [the Cloudant Docs](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-operators) for a list of all
+ available combination and conditional operators.
+ * Only equality operators such as `$eq`, `$gt`, `$gte`, `$lt`, and `$lte` (but not `$ne`) can be used as the basis
+ of a query. You should include at least one of these in a selector.
+
+ For further reference see
+ [selector syntax](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-selector-syntax).
Gets the stable.
+
+ A parameter that specifies whether the view results should be returned form a "stable" set of shards passed to the
+ underlying view.
Gets the fields.
+
+ JSON array that uses the field syntax. Use this parameter to specify which fields of a document must be returned.
+ If it is omitted or empty, the entire document is returned.
Gets the endKey.
+
+ Query parameter to specify to stop returning records when the specified key is reached. String representation of
+ any JSON type that matches the key type emitted by the view function.
Gets the startKey.
+
+ Query parameter to specify to start returning records from the specified key. String representation of any JSON
+ type that matches the key type emitted by the view function.
Gets the range.
+
+ Header parameter to specify the byte range for a request. This allows the implementation of resumable downloads and
+ skippable streams. This is available for all attachments inside CouchDB.
Gets the heartbeat.
+
+ Query parameter to specify the period in milliseconds after which an empty line is sent in the results. Off by
+ default and only applicable for
+ `continuous` and `eventsource` feeds. Overrides any timeout to keep the feed alive indefinitely. May also be `true`
+ to use a value of `60000`.
+
+ **Note:** Delivery of heartbeats cannot be relied on at specific intervals. If your application runs in an
+ environment where idle network connections may break, `heartbeat` is not suitable as a keepalive mechanism.
+ Instead, consider one of the following options:
+ * Use the `timeout` parameter with a value that is compatible with your network environment.
+ * Switch to scheduled usage of one of the non-continuous changes feed types
+ (`normal` or `longpoll`).
+ * Use TCP keepalive.
Gets the timeout.
+
+ Query parameter to specify the maximum period in milliseconds to wait for a change before the response is sent,
+ even if there are no results. Only applicable for `longpoll` or `continuous` feeds. Default value is specified by
+ `httpd/changes_timeout` configuration option. Note that `60000` value is also the default maximum timeout to
+ prevent undetected dead connections.
Gets the since.
+
+ Query parameter to specify to start the results from the change immediately after the given update sequence. Can be
+ a valid update sequence or `now` value. Default is `0` i.e. all changes.
Gets the ddoc.
+
+ Path parameter to specify the design document name. The design document name is the design document ID excluding
+ the `_design/` prefix.
Gets the ddoc.
+
+ Path parameter to specify the design document name. The design document name is the design document ID excluding
+ the `_design/` prefix.
Gets the attEncodingInfo.
+
+ Query parameter to specify whether to include the encoding information in attachment stubs if the particular
+ attachment is compressed.
Gets the conflicts.
+
+ Query parameter to specify whether to include a list of conflicted revisions in each returned document. Active only
+ when `include_docs` is `true`.
Gets the deletedConflicts.
+
+ Query parameter to specify whether to include a list of deleted conflicted revisions in the `_deleted_conflicts`
+ property of the returned document.
Gets the meta.
+
+ Query parameter to specify whether to include document meta information. Acts the same as specifying all of the
+ conflicts, deleted_conflicts and open_revs query parameters.
Gets the attEncodingInfo.
+
+ Query parameter to specify whether to include the encoding information in attachment stubs if the particular
+ attachment is compressed.
Gets the conflicts.
+
+ Query parameter to specify whether to include a list of conflicted revisions in each returned document. Active only
+ when `include_docs` is `true`.
Gets the deletedConflicts.
+
+ Query parameter to specify whether to include a list of deleted conflicted revisions in the `_deleted_conflicts`
+ property of the returned document.
Gets the meta.
+
+ Query parameter to specify whether to include document meta information. Acts the same as specifying all of the
+ conflicts, deleted_conflicts and open_revs query parameters.
Gets the attEncodingInfo.
+
+ Query parameter to specify whether to include the encoding information in attachment stubs if the particular
+ attachment is compressed.
Gets the attEncodingInfo.
+
+ Query parameter to specify whether to include the encoding information in attachment stubs if the particular
+ attachment is compressed.
Gets the conflicts.
+
+ Query parameter to specify whether to include a list of conflicted revisions in each returned document. Active only
+ when `include_docs` is `true`.
Gets the deletedConflicts.
+
+ Query parameter to specify whether to include a list of deleted conflicted revisions in the `_deleted_conflicts`
+ property of the returned document.
Gets the meta.
+
+ Query parameter to specify whether to include document meta information. Acts the same as specifying all of the
+ conflicts, deleted_conflicts and open_revs query parameters.
Gets the ddoc.
+
+ Path parameter to specify the design document name. The design document name is the design document ID excluding
+ the `_design/` prefix.
Gets the ddoc.
+
+ Path parameter to specify the design document name. The design document name is the design document ID excluding
+ the `_design/` prefix.
public class IndexDefinition
+extends com.ibm.cloud.sdk.core.service.model.GenericModel
+
Schema for a `json` or `text` query index definition. Indexes of type `text` have additional configuration properties
+ that do not apply to `json` indexes, these are:
+ * `default_analyzer` - the default text analyzer to use * `default_field` - whether to index the text in all document
+ fields and what analyzer to use for that purpose.
Gets the defaultField.
+
+ Schema for the text index default field configuration. The default field is used to index the text of all fields
+ within a document for use with the `$text` operator.
Gets the fields.
+
+ List of field objects to index. Nested fields are also allowed, e.g. `person.name`.
+
+ For "json" type indexes each object is a mapping of field name to sort direction (asc or desc).
+
+ For "text" type indexes each object has a `name` property of the field name and a `type` property of the field type
+ (string, number, or boolean).
Gets the indexArrayLengths.
+
+ Whether to scan every document for arrays and store the length for each array found. Set the index_array_lengths
+ field to false if:
+ * You do not need to know the length of an array. * You do not use the `$size` operator. * The documents in your
+ database are complex, or not completely under your control. As a result, it is difficult to estimate the impact of
+ the extra processing that is needed to determine and store the arrays lengths.
Gets the partialFilterSelector.
+
+ JSON object describing criteria used to select documents. The selector specifies fields in the document, and
+ provides an expression to evaluate with the field content or other data.
+
+ The selector object must:
+ * Be structured as valid JSON.
+ * Contain a valid query expression.
+
+ Using a selector is significantly more efficient than using a JavaScript filter function, and is the recommended
+ option if filtering on document attributes only.
+
+ Elementary selector syntax requires you to specify one or more fields, and the corresponding values required for
+ those fields. You can create more complex selector expressions by combining operators.
+
+ Operators are identified by the use of a dollar sign `$` prefix in the name field.
+
+ There are two core types of operators in the selector syntax:
+ * Combination operators: applied at the topmost level of selection. They are used to combine selectors. A
+ combination operator takes a single argument. The argument is either another selector, or an array of selectors.
+ * Condition operators: are specific to a field, and are used to evaluate the value stored in that field. For
+ instance, the basic `$eq` operator matches when the specified field contains a value that is equal to the supplied
+ argument. See [the Cloudant Docs](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-operators) for a list of all
+ available combination and conditional operators.
+ * Only equality operators such as `$eq`, `$gt`, `$gte`, `$lt`, and `$lte` (but not `$ne`) can be used as the basis
+ of a query. You should include at least one of these in a selector.
+
+ For further reference see
+ [selector syntax](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-selector-syntax).
Gets the def.
+
+ Schema for a `json` or `text` query index definition. Indexes of type `text` have additional configuration
+ properties that do not apply to `json` indexes, these are:
+ * `default_analyzer` - the default text analyzer to use * `default_field` - whether to index the text in all
+ document fields and what analyzer to use for that purpose.
public class IndexTextOperatorDefaultField
+extends com.ibm.cloud.sdk.core.service.model.GenericModel
+
Schema for the text index default field configuration. The default field is used to index the text of all fields
+ within a document for use with the `$text` operator.
Gets the types.
+
+ An array of event types that are being sent to IBM Cloud Activity Tracker for the IBM Cloudant instance.
+ "management" is a required element of this array.
Gets the attEncodingInfo.
+
+ Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment
+ is compressed.
Gets the conflicts.
+
+ Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
+ `include_docs` is `true`.
Gets the updateSeq.
+
+ Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the
+ database the view reflects.
Gets the queries.
+
+ An array of query objects with fields for the parameters of each individual view query to be executed. The field
+ names and their meaning are the same as the query parameters of a regular `/_all_docs` request.
Gets the attEncodingInfo.
+
+ Query parameter to specify whether to include the encoding information in attachment stubs if the particular
+ attachment is compressed.
Gets the fields.
+
+ JSON array that uses the field syntax. Use this parameter to specify which fields of a document must be returned.
+ If it is omitted or empty, the entire document is returned.
Gets the selector.
+
+ JSON object describing criteria used to select documents. The selector specifies fields in the document, and
+ provides an expression to evaluate with the field content or other data.
+
+ The selector object must:
+ * Be structured as valid JSON.
+ * Contain a valid query expression.
+
+ Using a selector is significantly more efficient than using a JavaScript filter function, and is the recommended
+ option if filtering on document attributes only.
+
+ Elementary selector syntax requires you to specify one or more fields, and the corresponding values required for
+ those fields. You can create more complex selector expressions by combining operators.
+
+ Operators are identified by the use of a dollar sign `$` prefix in the name field.
+
+ There are two core types of operators in the selector syntax:
+ * Combination operators: applied at the topmost level of selection. They are used to combine selectors. A
+ combination operator takes a single argument. The argument is either another selector, or an array of selectors.
+ * Condition operators: are specific to a field, and are used to evaluate the value stored in that field. For
+ instance, the basic `$eq` operator matches when the specified field contains a value that is equal to the supplied
+ argument. See [the Cloudant Docs](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-operators) for a list of all
+ available combination and conditional operators.
+ * Only equality operators such as `$eq`, `$gt`, `$gte`, `$lt`, and `$lte` (but not `$ne`) can be used as the basis
+ of a query. You should include at least one of these in a selector.
+
+ For further reference see
+ [selector syntax](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-selector-syntax).
Gets the lastEventId.
+
+ Header parameter to specify the ID of the last events received by the server on a previous connection. Overrides
+ `since` query parameter.
Gets the attEncodingInfo.
+
+ Query parameter to specify whether to include the encoding information in attachment stubs if the particular
+ attachment is compressed.
Gets the conflicts.
+
+ Query parameter to specify whether to include a list of conflicted revisions in each returned document. Active only
+ when `include_docs` is `true`.
Gets the filter.
+
+ Query parameter to specify a filter function from a design document that will filter the changes stream emitting
+ only filtered events. For example: `design_doc/filtername`.
+
+ Additionally, some keywords are reserved for built-in filters:
+
+ * `_design` - Returns only changes to design documents.
+ * `_doc_ids` - Returns changes for documents with an ID matching one specified in
+ `doc_ids` request body parameter.
+ * `_selector` - Returns changes for documents that match the `selector`
+ request body parameter. The selector syntax is the same as used for
+ `_find`.
+ * `_view` - Returns changes for documents that match an existing map
+ function in the view specified by the query parameter `view`.
Gets the heartbeat.
+
+ Query parameter to specify the period in milliseconds after which an empty line is sent in the results. Off by
+ default and only applicable for
+ `continuous` and `eventsource` feeds. Overrides any timeout to keep the feed alive indefinitely. May also be `true`
+ to use a value of `60000`.
+
+ **Note:** Delivery of heartbeats cannot be relied on at specific intervals. If your application runs in an
+ environment where idle network connections may break, `heartbeat` is not suitable as a keepalive mechanism.
+ Instead, consider one of the following options:
+ * Use the `timeout` parameter with a value that is compatible with your network environment.
+ * Switch to scheduled usage of one of the non-continuous changes feed types
+ (`normal` or `longpoll`).
+ * Use TCP keepalive.
Gets the seqInterval.
+
+ Query parameter to specify that the update seq should only be calculated with every Nth result returned. When
+ fetching changes in a batch, setting <code>seq_interval=<batch size></code>, where
+ <batch size> is the number of results requested per batch, load can be reduced on the source database
+ as computing the seq value across many shards (especially in highly-sharded databases) is expensive.
Gets the since.
+
+ Query parameter to specify to start the results from the change immediately after the given update sequence. Can be
+ a valid update sequence or `now` value. Default is `0` i.e. all changes.
Gets the style.
+
+ Query parameter to specify how many revisions are returned in the changes array. The default, `main_only`, will
+ only return the current "winning" revision; all_docs will return all leaf revisions (including conflicts and
+ deleted former conflicts).
Gets the timeout.
+
+ Query parameter to specify the maximum period in milliseconds to wait for a change before the response is sent,
+ even if there are no results. Only applicable for `longpoll` or `continuous` feeds. Default value is specified by
+ `httpd/changes_timeout` configuration option. Note that `60000` value is also the default maximum timeout to
+ prevent undetected dead connections.
Gets the view.
+
+ Query parameter to specify a view function as a filter. Documents pass the filter if the view's map function emits
+ at least one record for them.
Gets the attEncodingInfo.
+
+ Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment
+ is compressed.
Gets the conflicts.
+
+ Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
+ `include_docs` is `true`.
Gets the updateSeq.
+
+ Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the
+ database the view reflects.
Gets the queries.
+
+ An array of query objects with fields for the parameters of each individual view query to be executed. The field
+ names and their meaning are the same as the query parameters of a regular `/_all_docs` request.
Gets the batch.
+
+ Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted
+ response code immediately.
Gets the selector.
+
+ JSON object describing criteria used to select documents. The selector specifies fields in the document, and
+ provides an expression to evaluate with the field content or other data.
+
+ The selector object must:
+ * Be structured as valid JSON.
+ * Contain a valid query expression.
+
+ Using a selector is significantly more efficient than using a JavaScript filter function, and is the recommended
+ option if filtering on document attributes only.
+
+ Elementary selector syntax requires you to specify one or more fields, and the corresponding values required for
+ those fields. You can create more complex selector expressions by combining operators.
+
+ Operators are identified by the use of a dollar sign `$` prefix in the name field.
+
+ There are two core types of operators in the selector syntax:
+ * Combination operators: applied at the topmost level of selection. They are used to combine selectors. A
+ combination operator takes a single argument. The argument is either another selector, or an array of selectors.
+ * Condition operators: are specific to a field, and are used to evaluate the value stored in that field. For
+ instance, the basic `$eq` operator matches when the specified field contains a value that is equal to the supplied
+ argument. See [the Cloudant Docs](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-operators) for a list of all
+ available combination and conditional operators.
+ * Only equality operators such as `$eq`, `$gt`, `$gte`, `$lt`, and `$lte` (but not `$ne`) can be used as the basis
+ of a query. You should include at least one of these in a selector.
+
+ For further reference see
+ [selector syntax](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-selector-syntax).
Gets the executionStats.
+
+ Use this option to find information about the query that was run. This information includes total key lookups,
+ total document lookups (when `include_docs=true` is used), and total quorum document lookups (when each document
+ replica is fetched).
Gets the fields.
+
+ JSON array that uses the field syntax. Use this parameter to specify which fields of a document must be returned.
+ If it is omitted or empty, the entire document is returned.
Gets the sort.
+
+ The sort field contains a list of pairs, each mapping a field name to a sort direction (asc or desc). The first
+ field name and direction pair is the topmost level of sort. The second pair, if provided, is the next level of
+ sort. The field can be any field, using dotted notation if desired for sub-document fields.
+
+ For example in JSON: `[{"fieldName1": "desc"}, {"fieldName2.subFieldName1": "desc"}]`
+
+ When sorting with multiple fields, ensure that there is an index already defined with all the sort fields in the
+ same order and each object in the sort array has a single key or at least one of the sort fields is included in the
+ selector. All sorting fields must use the same sort direction, either all ascending or all descending.
Gets the useIndex.
+
+ Use this option to identify a specific index for query to run against, rather than by using the IBM Cloudant Query
+ algorithm to find the best index.
Gets the r.
+
+ The read quorum that is needed for the result. The value defaults to 1, in which case the document that was found
+ in the index is returned. If set to a higher value, each document is read from at least that many replicas before
+ it is returned in the results. The request will take more time than using only the document that is stored locally
+ with the index.
Gets the selector.
+
+ JSON object describing criteria used to select documents. The selector specifies fields in the document, and
+ provides an expression to evaluate with the field content or other data.
+
+ The selector object must:
+ * Be structured as valid JSON.
+ * Contain a valid query expression.
+
+ Using a selector is significantly more efficient than using a JavaScript filter function, and is the recommended
+ option if filtering on document attributes only.
+
+ Elementary selector syntax requires you to specify one or more fields, and the corresponding values required for
+ those fields. You can create more complex selector expressions by combining operators.
+
+ Operators are identified by the use of a dollar sign `$` prefix in the name field.
+
+ There are two core types of operators in the selector syntax:
+ * Combination operators: applied at the topmost level of selection. They are used to combine selectors. A
+ combination operator takes a single argument. The argument is either another selector, or an array of selectors.
+ * Condition operators: are specific to a field, and are used to evaluate the value stored in that field. For
+ instance, the basic `$eq` operator matches when the specified field contains a value that is equal to the supplied
+ argument. See [the Cloudant Docs](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-operators) for a list of all
+ available combination and conditional operators.
+ * Only equality operators such as `$eq`, `$gt`, `$gte`, `$lt`, and `$lte` (but not `$ne`) can be used as the basis
+ of a query. You should include at least one of these in a selector.
+
+ For further reference see
+ [selector syntax](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-selector-syntax).
Gets the executionStats.
+
+ Use this option to find information about the query that was run. This information includes total key lookups,
+ total document lookups (when `include_docs=true` is used), and total quorum document lookups (when each document
+ replica is fetched).
Gets the fields.
+
+ JSON array that uses the field syntax. Use this parameter to specify which fields of a document must be returned.
+ If it is omitted or empty, the entire document is returned.
Gets the sort.
+
+ The sort field contains a list of pairs, each mapping a field name to a sort direction (asc or desc). The first
+ field name and direction pair is the topmost level of sort. The second pair, if provided, is the next level of
+ sort. The field can be any field, using dotted notation if desired for sub-document fields.
+
+ For example in JSON: `[{"fieldName1": "desc"}, {"fieldName2.subFieldName1": "desc"}]`
+
+ When sorting with multiple fields, ensure that there is an index already defined with all the sort fields in the
+ same order and each object in the sort array has a single key or at least one of the sort fields is included in the
+ selector. All sorting fields must use the same sort direction, either all ascending or all descending.
Gets the useIndex.
+
+ Use this option to identify a specific index for query to run against, rather than by using the IBM Cloudant Query
+ algorithm to find the best index.
Gets the r.
+
+ The read quorum that is needed for the result. The value defaults to 1, in which case the document that was found
+ in the index is returned. If set to a higher value, each document is read from at least that many replicas before
+ it is returned in the results. The request will take more time than using only the document that is stored locally
+ with the index.
Gets the index.
+
+ Schema for a `json` or `text` query index definition. Indexes of type `text` have additional configuration
+ properties that do not apply to `json` indexes, these are:
+ * `default_analyzer` - the default text analyzer to use * `default_field` - whether to index the text in all
+ document fields and what analyzer to use for that purpose.
Gets the ddoc.
+
+ Specifies the design document name in which the index will be created. The design document name is the design
+ document ID excluding the `_design/` prefix.
Gets the partitioned.
+
+ The default value is `true` for databases with `partitioned: true` and `false` otherwise. For databases with
+ `partitioned: false` if this option is specified the value must be `false`.
Gets the attEncodingInfo.
+
+ Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment
+ is compressed.
Gets the conflicts.
+
+ Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
+ `include_docs` is `true`.
Gets the updateSeq.
+
+ Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the
+ database the view reflects.
Gets the selector.
+
+ JSON object describing criteria used to select documents. The selector specifies fields in the document, and
+ provides an expression to evaluate with the field content or other data.
+
+ The selector object must:
+ * Be structured as valid JSON.
+ * Contain a valid query expression.
+
+ Using a selector is significantly more efficient than using a JavaScript filter function, and is the recommended
+ option if filtering on document attributes only.
+
+ Elementary selector syntax requires you to specify one or more fields, and the corresponding values required for
+ those fields. You can create more complex selector expressions by combining operators.
+
+ Operators are identified by the use of a dollar sign `$` prefix in the name field.
+
+ There are two core types of operators in the selector syntax:
+ * Combination operators: applied at the topmost level of selection. They are used to combine selectors. A
+ combination operator takes a single argument. The argument is either another selector, or an array of selectors.
+ * Condition operators: are specific to a field, and are used to evaluate the value stored in that field. For
+ instance, the basic `$eq` operator matches when the specified field contains a value that is equal to the supplied
+ argument. See [the Cloudant Docs](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-operators) for a list of all
+ available combination and conditional operators.
+ * Only equality operators such as `$eq`, `$gt`, `$gte`, `$lt`, and `$lte` (but not `$ne`) can be used as the basis
+ of a query. You should include at least one of these in a selector.
+
+ For further reference see
+ [selector syntax](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-selector-syntax).
Gets the executionStats.
+
+ Use this option to find information about the query that was run. This information includes total key lookups,
+ total document lookups (when `include_docs=true` is used), and total quorum document lookups (when each document
+ replica is fetched).
Gets the fields.
+
+ JSON array that uses the field syntax. Use this parameter to specify which fields of a document must be returned.
+ If it is omitted or empty, the entire document is returned.
Gets the sort.
+
+ The sort field contains a list of pairs, each mapping a field name to a sort direction (asc or desc). The first
+ field name and direction pair is the topmost level of sort. The second pair, if provided, is the next level of
+ sort. The field can be any field, using dotted notation if desired for sub-document fields.
+
+ For example in JSON: `[{"fieldName1": "desc"}, {"fieldName2.subFieldName1": "desc"}]`
+
+ When sorting with multiple fields, ensure that there is an index already defined with all the sort fields in the
+ same order and each object in the sort array has a single key or at least one of the sort fields is included in the
+ selector. All sorting fields must use the same sort direction, either all ascending or all descending.
Gets the useIndex.
+
+ Use this option to identify a specific index for query to run against, rather than by using the IBM Cloudant Query
+ algorithm to find the best index.
Gets the selector.
+
+ JSON object describing criteria used to select documents. The selector specifies fields in the document, and
+ provides an expression to evaluate with the field content or other data.
+
+ The selector object must:
+ * Be structured as valid JSON.
+ * Contain a valid query expression.
+
+ Using a selector is significantly more efficient than using a JavaScript filter function, and is the recommended
+ option if filtering on document attributes only.
+
+ Elementary selector syntax requires you to specify one or more fields, and the corresponding values required for
+ those fields. You can create more complex selector expressions by combining operators.
+
+ Operators are identified by the use of a dollar sign `$` prefix in the name field.
+
+ There are two core types of operators in the selector syntax:
+ * Combination operators: applied at the topmost level of selection. They are used to combine selectors. A
+ combination operator takes a single argument. The argument is either another selector, or an array of selectors.
+ * Condition operators: are specific to a field, and are used to evaluate the value stored in that field. For
+ instance, the basic `$eq` operator matches when the specified field contains a value that is equal to the supplied
+ argument. See [the Cloudant Docs](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-operators) for a list of all
+ available combination and conditional operators.
+ * Only equality operators such as `$eq`, `$gt`, `$gte`, `$lt`, and `$lte` (but not `$ne`) can be used as the basis
+ of a query. You should include at least one of these in a selector.
+
+ For further reference see
+ [selector syntax](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-selector-syntax).
Gets the executionStats.
+
+ Use this option to find information about the query that was run. This information includes total key lookups,
+ total document lookups (when `include_docs=true` is used), and total quorum document lookups (when each document
+ replica is fetched).
Gets the fields.
+
+ JSON array that uses the field syntax. Use this parameter to specify which fields of a document must be returned.
+ If it is omitted or empty, the entire document is returned.
Gets the sort.
+
+ The sort field contains a list of pairs, each mapping a field name to a sort direction (asc or desc). The first
+ field name and direction pair is the topmost level of sort. The second pair, if provided, is the next level of
+ sort. The field can be any field, using dotted notation if desired for sub-document fields.
+
+ For example in JSON: `[{"fieldName1": "desc"}, {"fieldName2.subFieldName1": "desc"}]`
+
+ When sorting with multiple fields, ensure that there is an index already defined with all the sort fields in the
+ same order and each object in the sort array has a single key or at least one of the sort fields is included in the
+ selector. All sorting fields must use the same sort direction, either all ascending or all descending.
Gets the useIndex.
+
+ Use this option to identify a specific index for query to run against, rather than by using the IBM Cloudant Query
+ algorithm to find the best index.
Gets the ddoc.
+
+ Path parameter to specify the design document name. The design document name is the design document ID excluding
+ the `_design/` prefix.
Gets the highlightFields.
+
+ Specifies which fields to highlight. If specified, the result object contains a highlights field with an entry for
+ each specified field.
Gets the highlightNumber.
+
+ Number of fragments that are returned in highlights. If the search term occurs less often than the number of
+ fragments that are specified, longer fragments are returned.
Gets the includeFields.
+
+ A JSON array of field names to include in search results. Any fields that are included must be indexed with the
+ store:true option. The default is all fields.
Gets the sort.
+
+ Specifies the sort order of the results. In a grouped search (when group_field is used), this parameter specifies
+ the sort order within a group. The default sort order is relevance. A JSON string of the form
+ "fieldname<type>" or "-fieldname<type>" for descending order, where fieldname is the
+ name of a string or number field, and type is either a number, a string, or a JSON array of strings. The type part
+ is optional, and defaults to number. Some examples are "foo", "-foo", "bar<string>",
+ "-foo<number>" and ["-foo<number>", "bar<string>"]. String fields that
+ are used for sorting must not be analyzed fields. Fields that are used for sorting must be indexed by the same
+ indexer that is used for the search query.
public static interface PostPartitionViewOptions.Update
+
Parameter to specify whether or not the view in question should be updated prior to responding to the user.
+
+ * `true` - Return results after the view is updated.
+ * `false` - Return results without updating the view.
+ * `lazy` - Return the view results without waiting for an update, but update them immediately after the request.
Gets the ddoc.
+
+ Path parameter to specify the design document name. The design document name is the design document ID excluding
+ the `_design/` prefix.
Gets the attEncodingInfo.
+
+ Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment
+ is compressed.
Gets the conflicts.
+
+ Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
+ `include_docs` is `true`.
Gets the updateSeq.
+
+ Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the
+ database the view reflects.
Gets the group.
+
+ Parameter to specify whether to group reduced results by key. Valid only if a reduce function defined in the view.
+ If the view emits key in JSON array format, then it is possible to reduce groups further based on the number of
+ array elements with the `group_level` parameter.
Gets the groupLevel.
+
+ Parameter to specify a group level to be used. Only applicable if the view uses keys that are JSON arrays. Implies
+ group is `true`. Group level groups the reduced results by the specified number of array elements. If unset,
+ results are grouped by the entire array key, returning a reduced value for each complete key.
Gets the keys.
+
+ Parameter to specify returning only documents that match any of the specified keys. A JSON array of keys that match
+ the key type emitted by the view function.
Gets the reduce.
+
+ Parameter to specify whether to use the reduce function in a map-reduce view. Default is true when a reduce
+ function is defined.
Gets the update.
+
+ Parameter to specify whether or not the view in question should be updated prior to responding to the user.
+
+ * `true` - Return results after the view is updated.
+ * `false` - Return results without updating the view.
+ * `lazy` - Return the view results without waiting for an update, but update them immediately after the request.
Gets the ddoc.
+
+ Path parameter to specify the design document name. The design document name is the design document ID excluding
+ the `_design/` prefix.
Gets the highlightFields.
+
+ Specifies which fields to highlight. If specified, the result object contains a highlights field with an entry for
+ each specified field.
Gets the highlightNumber.
+
+ Number of fragments that are returned in highlights. If the search term occurs less often than the number of
+ fragments that are specified, longer fragments are returned.
Gets the includeFields.
+
+ A JSON array of field names to include in search results. Any fields that are included must be indexed with the
+ store:true option. The default is all fields.
Gets the sort.
+
+ Specifies the sort order of the results. In a grouped search (when group_field is used), this parameter specifies
+ the sort order within a group. The default sort order is relevance. A JSON string of the form
+ "fieldname<type>" or "-fieldname<type>" for descending order, where fieldname is the
+ name of a string or number field, and type is either a number, a string, or a JSON array of strings. The type part
+ is optional, and defaults to number. Some examples are "foo", "-foo", "bar<string>",
+ "-foo<number>" and ["-foo<number>", "bar<string>"]. String fields that
+ are used for sorting must not be analyzed fields. Fields that are used for sorting must be indexed by the same
+ indexer that is used for the search query.
Gets the counts.
+
+ This field defines an array of names of string fields, for which counts are requested. The response contains counts
+ for each unique value of this field name among the documents that match the search query. Faceting must be enabled
+ for this parameter to function. This option is only available when making global queries.
Gets the drilldown.
+
+ Restrict results to documents with a dimension equal to the specified label(s). The search matches only documents
+ containing the value that was provided in the named field. It differs from using "fieldname:value" in the q
+ parameter only in that the values are not analyzed. Faceting must be enabled for this parameter to function.
Gets the groupField.
+
+ Field by which to group search matches. A string that contains the name of a string field. Fields containing other
+ data such as numbers, objects, or arrays cannot be used. This option is only available when making global queries.
Gets the groupLimit.
+
+ Maximum group count. This field can be used only if group_field is specified. This option is only available when
+ making global queries.
Gets the groupSort.
+
+ This field defines the order of the groups in a search that uses group_field. The default sort order is relevance.
+ This field can have the same values as the sort field, so single fields and arrays of fields are supported. This
+ option is only available when making global queries.
Gets the ranges.
+
+ This field defines ranges for faceted, numeric search fields. The value is a JSON object where the fields names are
+ faceted numeric search fields, and the values of the fields are JSON objects. The field names of the JSON objects
+ are names for ranges. The values are strings that describe the range, for example "[0 TO 10]". This option is only
+ available when making global queries.
Parameter to specify whether or not the view in question should be updated prior to responding to the user.
+
+ * `true` - Return results after the view is updated.
+ * `false` - Return results without updating the view.
+ * `lazy` - Return the view results without waiting for an update, but update them immediately after the request.
Gets the ddoc.
+
+ Path parameter to specify the design document name. The design document name is the design document ID excluding
+ the `_design/` prefix.
Gets the attEncodingInfo.
+
+ Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment
+ is compressed.
Gets the conflicts.
+
+ Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
+ `include_docs` is `true`.
Gets the updateSeq.
+
+ Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the
+ database the view reflects.
Gets the group.
+
+ Parameter to specify whether to group reduced results by key. Valid only if a reduce function defined in the view.
+ If the view emits key in JSON array format, then it is possible to reduce groups further based on the number of
+ array elements with the `group_level` parameter.
Gets the groupLevel.
+
+ Parameter to specify a group level to be used. Only applicable if the view uses keys that are JSON arrays. Implies
+ group is `true`. Group level groups the reduced results by the specified number of array elements. If unset,
+ results are grouped by the entire array key, returning a reduced value for each complete key.
Gets the keys.
+
+ Parameter to specify returning only documents that match any of the specified keys. A JSON array of keys that match
+ the key type emitted by the view function.
Gets the reduce.
+
+ Parameter to specify whether to use the reduce function in a map-reduce view. Default is true when a reduce
+ function is defined.
Gets the stable.
+
+ Query parameter to specify whether use the same replica of the index on each request. The default value `false`
+ contacts all replicas and returns the result from the first, fastest, responder. Setting it to `true` when used in
+ conjunction with `update=false` may improve consistency at the expense of increased latency and decreased
+ throughput if the selected replica is not the fastest of the available replicas.
+
+ **Note:** In general setting `true` is discouraged and is strictly not recommended when using `update=true`.
Gets the update.
+
+ Parameter to specify whether or not the view in question should be updated prior to responding to the user.
+
+ * `true` - Return results after the view is updated.
+ * `false` - Return results without updating the view.
+ * `lazy` - Return the view results without waiting for an update, but update them immediately after the request.
Gets the ddoc.
+
+ Path parameter to specify the design document name. The design document name is the design document ID excluding
+ the `_design/` prefix.
Gets the queries.
+
+ An array of query objects with fields for the parameters of each individual view query to be executed. The field
+ names and their meaning are the same as the query parameters of a regular view request.
Gets the blocks.
+
+ A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec
+ of provisioned throughput capacity.
Gets the origins.
+
+ An array of strings that contain allowed origin domains. You have to specify the full URL including the protocol.
+ It is recommended that only the HTTPS protocol is used. Subdomains count as separate domains, so you have to
+ specify all subdomains used.
Gets the allowCredentials.
+
+ Boolean value to allow authentication credentials. If set to true, browser requests must be done by using
+ withCredentials = true.
Gets the q.
+
+ The number of shards in the database. Each shard is a partition of the hash value range. Cloudant recommends using
+ the default value for most databases. However, if your database is expected to be larger than 250 GB or have a lot
+ of indexes, you may need to adjust the settings. In these cases, it's best to reach out to IBM Cloudant customer
+ support for guidance on how to meet your specific needs and requirements.
Gets the ddoc.
+
+ Path parameter to specify the design document name. The design document name is the design document ID excluding
+ the `_design/` prefix.
Gets the batch.
+
+ Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted
+ response code immediately.
Gets the newEdits.
+
+ Query parameter to specify whether to prevent insertion of conflicting document revisions. If false, a well-formed
+ _rev must be included in the document. False is used by the replicator to insert documents into the target database
+ even if that leads to the creation of conflicts.
Gets the batch.
+
+ Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted
+ response code immediately.
Gets the newEdits.
+
+ Query parameter to specify whether to prevent insertion of conflicting document revisions. If false, a well-formed
+ _rev must be included in the document. False is used by the replicator to insert documents into the target database
+ even if that leads to the creation of conflicts.
Gets the batch.
+
+ Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted
+ response code immediately.
Gets the batch.
+
+ Query parameter to specify whether to store in batch mode. The server will respond with a HTTP 202 Accepted
+ response code immediately.
Gets the newEdits.
+
+ Query parameter to specify whether to prevent insertion of conflicting document revisions. If false, a well-formed
+ _rev must be included in the document. False is used by the replicator to insert documents into the target database
+ even if that leads to the creation of conflicts.
Gets the n.
+
+ Schema for the number of replicas of a database in a cluster. The cluster is using the default value and it cannot
+ be changed by the user.
Gets the connectionTimeout.
+
+ HTTP connection timeout per replication. Even for very fast/reliable networks it might need to be increased if a
+ remote database is too busy.
Gets the filter.
+
+ The name of a filter function which is defined in a design document in the source database in {ddoc_id}/{filter}
+ format. It determines which documents get replicated. Using the selector option provides performance benefits when
+ compared with using the filter option. Use the selector option when possible.
Gets the retriesPerRequest.
+
+ Number of times a replication request is retried. The requests are retried with a doubling exponential backoff
+ starting at 0.25 seconds, with a cap at 5 minutes.
Gets the selector.
+
+ JSON object describing criteria used to select documents. The selector specifies fields in the document, and
+ provides an expression to evaluate with the field content or other data.
+
+ The selector object must:
+ * Be structured as valid JSON.
+ * Contain a valid query expression.
+
+ Using a selector is significantly more efficient than using a JavaScript filter function, and is the recommended
+ option if filtering on document attributes only.
+
+ Elementary selector syntax requires you to specify one or more fields, and the corresponding values required for
+ those fields. You can create more complex selector expressions by combining operators.
+
+ Operators are identified by the use of a dollar sign `$` prefix in the name field.
+
+ There are two core types of operators in the selector syntax:
+ * Combination operators: applied at the topmost level of selection. They are used to combine selectors. A
+ combination operator takes a single argument. The argument is either another selector, or an array of selectors.
+ * Condition operators: are specific to a field, and are used to evaluate the value stored in that field. For
+ instance, the basic `$eq` operator matches when the specified field contains a value that is equal to the supplied
+ argument. See [the Cloudant Docs](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-operators) for a list of all
+ available combination and conditional operators.
+ * Only equality operators such as `$eq`, `$gt`, `$gte`, `$lt`, and `$lte` (but not `$ne`) can be used as the basis
+ of a query. You should include at least one of these in a selector.
+
+ For further reference see
+ [selector syntax](https://cloud.ibm.com/docs/Cloudant?topic=Cloudant-selector-syntax).
this method is deprecated and may be removed in a future release
+
+
Gets the sourceProxy.
+
+ This setting is forbidden in IBM Cloudant replication documents. This setting may be used with alternative
+ replication mediators.
+
+ Address of a (http or socks5 protocol) proxy server through which replication with the source database should
+ occur.
this method is deprecated and may be removed in a future release
+
+
Gets the targetProxy.
+
+ This setting is forbidden in IBM Cloudant replication documents. This setting may be used with alternative
+ replication mediators.
+
+ Address of a (http or socks5 protocol) proxy server through which replication with the target database should
+ occur.
Gets the useBulkGet.
+
+ Specify whether to use _bulk_get for fetching documents from the source. If unset, the server configured default
+ will be used.
Gets the useCheckpoints.
+
+ Specify if checkpoints should be saved during replication. Using checkpoints means a replication can be efficiently
+ resumed.
Gets the winningRevsOnly.
+
+ Replicate only the winning revisions. Replication with this mode discards conflicting revisions. Replication IDs
+ and checkpoints generated by this mode are different to those generated by default, so it is possible to first
+ replicate the winning revisions then later backfill remaining revisions with a regular replication job.
Gets the workerBatchSize.
+
+ Controls how many documents are processed. After each batch a checkpoint is written so this controls how frequently
+ checkpointing occurs.
Gets the workerProcesses.
+
+ Controls how many separate processes will read from the changes manager and write to the target. A higher number
+ can improve throughput.
Gets the errorCount.
+
+ Consecutive errors count. Indicates how many times in a row this replication has crashed. Replication will be
+ retried with an exponential backoff based on this number. As soon as the replication succeeds this count is reset
+ to 0. To can be used to get an idea why a particular replication is not making progress.
Gets the info.
+
+ Schema for scheduler document information. A JSON object that may contain additional information about the state.
+ For error states this will contain an error field and string value.
this method is deprecated and may be removed in a future release
+
+
Gets the sourceProxy.
+
+ Forbidden in IBM Cloudant mediated replications.
+
+ Address of the (http or socks5 protocol) proxy server through which replication with the source database occurs.
this method is deprecated and may be removed in a future release
+
+
Gets the targetProxy.
+
+ Forbidden in IBM Cloudant mediated replications.
+
+ Address of the (http or socks5 protocol) proxy server through which replication with the target database occurs.
public class SchedulerInfo
+extends com.ibm.cloud.sdk.core.service.model.GenericModel
+
Schema for scheduler document information. A JSON object that may contain additional information about the state. For
+ error states this will contain an error field and string value.
Gets the info.
+
+ Schema for scheduler document information. A JSON object that may contain additional information about the state.
+ For error states this will contain an error field and string value.
Gets the index.
+
+ String form of a JavaScript function that is called for each document in the database. The function takes the
+ document as a parameter, extracts some data from it, and then calls the `index` function to index that data. The
+ index function takes 2, or optionally 3, parameters.
+
+ * The first parameter is the name of the field you intend to use when
+ querying the index. If the special value `"default"` is used when you
+ define the name, you do not have to specify a field name at query time.
+ * The second parameter is the data to be indexed. This data must be only a
+ string, number, or boolean. Other types will cause an error to be thrown
+ by the index function call.
+ * The optional third parameter is a JavaScript object with these
+ properties:
+
+ * `facet` - boolean, default `false` - Creates a faceted index.
+ * `index` - boolean, default `true` - If set to `false`, the data
+ cannot be used for searches, but can still be retrieved from the
+ index if `store` is set to `true`.
+ * `store` - boolean, default `true` - If true, the value is returned
+ in the search result; otherwise, the value is not returned.
Gets the ranges.
+
+ The range facet syntax reuses the standard Lucene syntax for ranges to return counts of results that fit into each
+ specified category.
Gets the ranges.
+
+ The range facet syntax reuses the standard Lucene syntax for ranges to return counts of results that fit into each
+ specified category.
Gets the blocks.
+
+ A number of blocks of throughput units. A block consists of 100 reads/sec, 50 writes/sec, and 5 global queries/sec
+ of provisioned throughput capacity.
Gets the preferred.
+
+ Sum of unique shards. This value is zero when at least one copy of every shard range is up-to-date and the view is
+ able to answer a query without index building delays.
Gets the results.
+
+ An array of result objects - one for each query. Each result object contains the same fields as the response to a
+ regular view request.
Parameter to specify whether or not the view in question should be updated prior to responding to the user.
+
+ * `true` - Return results after the view is updated.
+ * `false` - Return results without updating the view.
+ * `lazy` - Return the view results without waiting for an update, but update them immediately after the request.
Gets the attEncodingInfo.
+
+ Parameter to specify whether to include the encoding information in attachment stubs if the particular attachment
+ is compressed.
Gets the conflicts.
+
+ Parameter to specify whether to include a list of conflicted revisions in each returned document. Active only when
+ `include_docs` is `true`.
Gets the updateSeq.
+
+ Parameter to specify whether to include in the response an update_seq value indicating the sequence id of the
+ database the view reflects.
Gets the group.
+
+ Parameter to specify whether to group reduced results by key. Valid only if a reduce function defined in the view.
+ If the view emits key in JSON array format, then it is possible to reduce groups further based on the number of
+ array elements with the `group_level` parameter.
Gets the groupLevel.
+
+ Parameter to specify a group level to be used. Only applicable if the view uses keys that are JSON arrays. Implies
+ group is `true`. Group level groups the reduced results by the specified number of array elements. If unset,
+ results are grouped by the entire array key, returning a reduced value for each complete key.
Gets the keys.
+
+ Parameter to specify returning only documents that match any of the specified keys. A JSON array of keys that match
+ the key type emitted by the view function.
Gets the reduce.
+
+ Parameter to specify whether to use the reduce function in a map-reduce view. Default is true when a reduce
+ function is defined.
Gets the stable.
+
+ Query parameter to specify whether use the same replica of the index on each request. The default value `false`
+ contacts all replicas and returns the result from the first, fastest, responder. Setting it to `true` when used in
+ conjunction with `update=false` may improve consistency at the expense of increased latency and decreased
+ throughput if the selected replica is not the fastest of the available replicas.
+
+ **Note:** In general setting `true` is discouraged and is strictly not recommended when using `update=true`.
Gets the update.
+
+ Parameter to specify whether or not the view in question should be updated prior to responding to the user.
+
+ * `true` - Return results after the view is updated.
+ * `false` - Return results without updating the view.
+ * `lazy` - Return the view results without waiting for an update, but update them immediately after the request.
+Starting from the Overview page, you can browse the documentation using the links in each page, and in the navigation bar at the top of each page. The Index and Search box allow you to navigate to specific declarations and summary pages, including: All Packages, All Classes and Interfaces
+
+
Search
+
You can search for definitions of modules, packages, types, fields, methods, system properties and other terms defined in the API. These items can be searched using part or all of the name, optionally using "camelCase" abbreviations, or multiple search terms separated by whitespace. Some examples:
+The following sections describe the different kinds of pages in this collection.
+
+
Overview
+
The Overview page is the front page of this API document and provides a list of all packages with a summary for each. This page can also contain an overall description of the set of packages.
+
+
+
Package
+
Each package has a page that contains a list of its classes and interfaces, with a summary for each. These pages may contain the following categories:
+
+
Interfaces
+
Classes
+
Enums
+
Exception Classes
+
Annotation Types
+
+
+
+
Class or Interface
+
Each class, interface, nested class and nested interface has its own separate page. Each of these pages has three sections consisting of a declaration and description, member summary tables, and detailed member descriptions. Entries in each of these sections are omitted if they are empty or not applicable.
+
+
Class Inheritance Diagram
+
Direct Subclasses
+
All Known Subinterfaces
+
All Known Implementing Classes
+
Class or Interface Declaration
+
Class or Interface Description
+
+
+
+
Nested Class Summary
+
Enum Constant Summary
+
Field Summary
+
Property Summary
+
Constructor Summary
+
Method Summary
+
Required Element Summary
+
Optional Element Summary
+
+
+
+
Enum Constant Details
+
Field Details
+
Property Details
+
Constructor Details
+
Method Details
+
Element Details
+
+
Note: Annotation interfaces have required and optional elements, but not methods. Only enum classes have enum constants. The components of a record class are displayed as part of the declaration of the record class. Properties are a feature of JavaFX.
+
The summary entries are alphabetical, while the detailed descriptions are in the order they appear in the source code. This preserves the logical groupings established by the programmer.
+
+
+
Other Files
+
Packages and modules may contain pages with additional information related to the declarations nearby.
+
+
+
Use
+
Each documented package, class and interface has its own Use page. This page describes what packages, classes, methods, constructors and fields use any part of the given class or package. Given a class or interface A, its Use page includes subclasses of A, fields declared as A, methods that return A, and methods and constructors with parameters of type A. You can access this page by first going to the package, class or interface, then clicking on the USE link in the navigation bar.
+
+
+
Tree (Class Hierarchy)
+
There is a Class Hierarchy page for all packages, plus a hierarchy for each package. Each hierarchy page contains a list of classes and a list of interfaces. Classes are organized by inheritance structure starting with java.lang.Object. Interfaces do not inherit from java.lang.Object.
+
+
When viewing the Overview page, clicking on TREE displays the hierarchy for all packages.
+
When viewing a particular package, class or interface page, clicking on TREE displays the hierarchy for only that package.
+
+
+
+
Deprecated API
+
The Deprecated API page lists all of the API that have been deprecated. A deprecated API is not recommended for use, generally due to shortcomings, and a replacement API is usually given. Deprecated APIs may be removed in future implementations.
The All Packages page contains an alphabetic index of all packages contained in the documentation.
+
+
+
All Classes and Interfaces
+
The All Classes and Interfaces page contains an alphabetic index of all classes and interfaces contained in the documentation, including annotation interfaces, enum classes, and record classes.
+
+
+
Index
+
The Index contains an alphabetic index of all classes, interfaces, constructors, methods, and fields in the documentation, as well as summary pages such as All Packages, All Classes and Interfaces.
+
+
+
+This help file applies to API documentation generated by the standard doclet.
+
+
+
+
diff --git a/docs/0.8.2/legal/ADDITIONAL_LICENSE_INFO b/docs/0.8.2/legal/ADDITIONAL_LICENSE_INFO
new file mode 100644
index 000000000..ff700cd09
--- /dev/null
+++ b/docs/0.8.2/legal/ADDITIONAL_LICENSE_INFO
@@ -0,0 +1,37 @@
+ ADDITIONAL INFORMATION ABOUT LICENSING
+
+Certain files distributed by Oracle America, Inc. and/or its affiliates are
+subject to the following clarification and special exception to the GPLv2,
+based on the GNU Project exception for its Classpath libraries, known as the
+GNU Classpath Exception.
+
+Note that Oracle includes multiple, independent programs in this software
+package. Some of those programs are provided under licenses deemed
+incompatible with the GPLv2 by the Free Software Foundation and others.
+For example, the package includes programs licensed under the Apache
+License, Version 2.0 and may include FreeType. Such programs are licensed
+to you under their original licenses.
+
+Oracle facilitates your further distribution of this package by adding the
+Classpath Exception to the necessary parts of its GPLv2 code, which permits
+you to use that code in combination with other independent modules not
+licensed under the GPLv2. However, note that this would not permit you to
+commingle code under an incompatible license with Oracle's GPLv2 licensed
+code by, for example, cutting and pasting such code into a file also
+containing Oracle's GPLv2 licensed code and then distributing the result.
+
+Additionally, if you were to remove the Classpath Exception from any of the
+files to which it applies and distribute the result, you would likely be
+required to license some or all of the other code in that distribution under
+the GPLv2 as well, and since the GPLv2 is incompatible with the license terms
+of some items included in the distribution by Oracle, removing the Classpath
+Exception could therefore effectively compromise your ability to further
+distribute the package.
+
+Failing to distribute notices associated with some files may also create
+unexpected legal consequences.
+
+Proceed with caution and we recommend that you obtain the advice of a lawyer
+skilled in open source matters before removing the Classpath Exception or
+making modifications to this package which may subsequently be redistributed
+and/or involve the use of third party software.
diff --git a/docs/0.8.2/legal/ASSEMBLY_EXCEPTION b/docs/0.8.2/legal/ASSEMBLY_EXCEPTION
new file mode 100644
index 000000000..429666664
--- /dev/null
+++ b/docs/0.8.2/legal/ASSEMBLY_EXCEPTION
@@ -0,0 +1,27 @@
+
+OPENJDK ASSEMBLY EXCEPTION
+
+The OpenJDK source code made available by Oracle America, Inc. (Oracle) at
+openjdk.org ("OpenJDK Code") is distributed under the terms of the GNU
+General Public License version 2
+only ("GPL2"), with the following clarification and special exception.
+
+ Linking this OpenJDK Code statically or dynamically with other code
+ is making a combined work based on this library. Thus, the terms
+ and conditions of GPL2 cover the whole combination.
+
+ As a special exception, Oracle gives you permission to link this
+ OpenJDK Code with certain code licensed by Oracle as indicated at
+ https://openjdk.org/legal/exception-modules-2007-05-08.html
+ ("Designated Exception Modules") to produce an executable,
+ regardless of the license terms of the Designated Exception Modules,
+ and to copy and distribute the resulting executable under GPL2,
+ provided that the Designated Exception Modules continue to be
+ governed by the licenses under which they were offered by Oracle.
+
+As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code
+to build an executable that includes those portions of necessary code that
+Oracle could not provide under GPL2 (or that Oracle has provided under GPL2
+with the Classpath exception). If you modify or add to the OpenJDK code,
+that new GPL2 code may still be combined with Designated Exception Modules
+if the new code is made subject to this exception by its copyright holder.
diff --git a/docs/0.8.2/legal/LICENSE b/docs/0.8.2/legal/LICENSE
new file mode 100644
index 000000000..8b400c7ab
--- /dev/null
+++ b/docs/0.8.2/legal/LICENSE
@@ -0,0 +1,347 @@
+The GNU General Public License (GPL)
+
+Version 2, June 1991
+
+Copyright (C) 1989, 1991 Free Software Foundation, Inc.
+51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
+
+Everyone is permitted to copy and distribute verbatim copies of this license
+document, but changing it is not allowed.
+
+Preamble
+
+The licenses for most software are designed to take away your freedom to share
+and change it. By contrast, the GNU General Public License is intended to
+guarantee your freedom to share and change free software--to make sure the
+software is free for all its users. This General Public License applies to
+most of the Free Software Foundation's software and to any other program whose
+authors commit to using it. (Some other Free Software Foundation software is
+covered by the GNU Library General Public License instead.) You can apply it to
+your programs, too.
+
+When we speak of free software, we are referring to freedom, not price. Our
+General Public Licenses are designed to make sure that you have the freedom to
+distribute copies of free software (and charge for this service if you wish),
+that you receive source code or can get it if you want it, that you can change
+the software or use pieces of it in new free programs; and that you know you
+can do these things.
+
+To protect your rights, we need to make restrictions that forbid anyone to deny
+you these rights or to ask you to surrender the rights. These restrictions
+translate to certain responsibilities for you if you distribute copies of the
+software, or if you modify it.
+
+For example, if you distribute copies of such a program, whether gratis or for
+a fee, you must give the recipients all the rights that you have. You must
+make sure that they, too, receive or can get the source code. And you must
+show them these terms so they know their rights.
+
+We protect your rights with two steps: (1) copyright the software, and (2)
+offer you this license which gives you legal permission to copy, distribute
+and/or modify the software.
+
+Also, for each author's protection and ours, we want to make certain that
+everyone understands that there is no warranty for this free software. If the
+software is modified by someone else and passed on, we want its recipients to
+know that what they have is not the original, so that any problems introduced
+by others will not reflect on the original authors' reputations.
+
+Finally, any free program is threatened constantly by software patents. We
+wish to avoid the danger that redistributors of a free program will
+individually obtain patent licenses, in effect making the program proprietary.
+To prevent this, we have made it clear that any patent must be licensed for
+everyone's free use or not licensed at all.
+
+The precise terms and conditions for copying, distribution and modification
+follow.
+
+TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION
+
+0. This License applies to any program or other work which contains a notice
+placed by the copyright holder saying it may be distributed under the terms of
+this General Public License. The "Program", below, refers to any such program
+or work, and a "work based on the Program" means either the Program or any
+derivative work under copyright law: that is to say, a work containing the
+Program or a portion of it, either verbatim or with modifications and/or
+translated into another language. (Hereinafter, translation is included
+without limitation in the term "modification".) Each licensee is addressed as
+"you".
+
+Activities other than copying, distribution and modification are not covered by
+this License; they are outside its scope. The act of running the Program is
+not restricted, and the output from the Program is covered only if its contents
+constitute a work based on the Program (independent of having been made by
+running the Program). Whether that is true depends on what the Program does.
+
+1. You may copy and distribute verbatim copies of the Program's source code as
+you receive it, in any medium, provided that you conspicuously and
+appropriately publish on each copy an appropriate copyright notice and
+disclaimer of warranty; keep intact all the notices that refer to this License
+and to the absence of any warranty; and give any other recipients of the
+Program a copy of this License along with the Program.
+
+You may charge a fee for the physical act of transferring a copy, and you may
+at your option offer warranty protection in exchange for a fee.
+
+2. You may modify your copy or copies of the Program or any portion of it, thus
+forming a work based on the Program, and copy and distribute such modifications
+or work under the terms of Section 1 above, provided that you also meet all of
+these conditions:
+
+ a) You must cause the modified files to carry prominent notices stating
+ that you changed the files and the date of any change.
+
+ b) You must cause any work that you distribute or publish, that in whole or
+ in part contains or is derived from the Program or any part thereof, to be
+ licensed as a whole at no charge to all third parties under the terms of
+ this License.
+
+ c) If the modified program normally reads commands interactively when run,
+ you must cause it, when started running for such interactive use in the
+ most ordinary way, to print or display an announcement including an
+ appropriate copyright notice and a notice that there is no warranty (or
+ else, saying that you provide a warranty) and that users may redistribute
+ the program under these conditions, and telling the user how to view a copy
+ of this License. (Exception: if the Program itself is interactive but does
+ not normally print such an announcement, your work based on the Program is
+ not required to print an announcement.)
+
+These requirements apply to the modified work as a whole. If identifiable
+sections of that work are not derived from the Program, and can be reasonably
+considered independent and separate works in themselves, then this License, and
+its terms, do not apply to those sections when you distribute them as separate
+works. But when you distribute the same sections as part of a whole which is a
+work based on the Program, the distribution of the whole must be on the terms
+of this License, whose permissions for other licensees extend to the entire
+whole, and thus to each and every part regardless of who wrote it.
+
+Thus, it is not the intent of this section to claim rights or contest your
+rights to work written entirely by you; rather, the intent is to exercise the
+right to control the distribution of derivative or collective works based on
+the Program.
+
+In addition, mere aggregation of another work not based on the Program with the
+Program (or with a work based on the Program) on a volume of a storage or
+distribution medium does not bring the other work under the scope of this
+License.
+
+3. You may copy and distribute the Program (or a work based on it, under
+Section 2) in object code or executable form under the terms of Sections 1 and
+2 above provided that you also do one of the following:
+
+ a) Accompany it with the complete corresponding machine-readable source
+ code, which must be distributed under the terms of Sections 1 and 2 above
+ on a medium customarily used for software interchange; or,
+
+ b) Accompany it with a written offer, valid for at least three years, to
+ give any third party, for a charge no more than your cost of physically
+ performing source distribution, a complete machine-readable copy of the
+ corresponding source code, to be distributed under the terms of Sections 1
+ and 2 above on a medium customarily used for software interchange; or,
+
+ c) Accompany it with the information you received as to the offer to
+ distribute corresponding source code. (This alternative is allowed only
+ for noncommercial distribution and only if you received the program in
+ object code or executable form with such an offer, in accord with
+ Subsection b above.)
+
+The source code for a work means the preferred form of the work for making
+modifications to it. For an executable work, complete source code means all
+the source code for all modules it contains, plus any associated interface
+definition files, plus the scripts used to control compilation and installation
+of the executable. However, as a special exception, the source code
+distributed need not include anything that is normally distributed (in either
+source or binary form) with the major components (compiler, kernel, and so on)
+of the operating system on which the executable runs, unless that component
+itself accompanies the executable.
+
+If distribution of executable or object code is made by offering access to copy
+from a designated place, then offering equivalent access to copy the source
+code from the same place counts as distribution of the source code, even though
+third parties are not compelled to copy the source along with the object code.
+
+4. You may not copy, modify, sublicense, or distribute the Program except as
+expressly provided under this License. Any attempt otherwise to copy, modify,
+sublicense or distribute the Program is void, and will automatically terminate
+your rights under this License. However, parties who have received copies, or
+rights, from you under this License will not have their licenses terminated so
+long as such parties remain in full compliance.
+
+5. You are not required to accept this License, since you have not signed it.
+However, nothing else grants you permission to modify or distribute the Program
+or its derivative works. These actions are prohibited by law if you do not
+accept this License. Therefore, by modifying or distributing the Program (or
+any work based on the Program), you indicate your acceptance of this License to
+do so, and all its terms and conditions for copying, distributing or modifying
+the Program or works based on it.
+
+6. Each time you redistribute the Program (or any work based on the Program),
+the recipient automatically receives a license from the original licensor to
+copy, distribute or modify the Program subject to these terms and conditions.
+You may not impose any further restrictions on the recipients' exercise of the
+rights granted herein. You are not responsible for enforcing compliance by
+third parties to this License.
+
+7. If, as a consequence of a court judgment or allegation of patent
+infringement or for any other reason (not limited to patent issues), conditions
+are imposed on you (whether by court order, agreement or otherwise) that
+contradict the conditions of this License, they do not excuse you from the
+conditions of this License. If you cannot distribute so as to satisfy
+simultaneously your obligations under this License and any other pertinent
+obligations, then as a consequence you may not distribute the Program at all.
+For example, if a patent license would not permit royalty-free redistribution
+of the Program by all those who receive copies directly or indirectly through
+you, then the only way you could satisfy both it and this License would be to
+refrain entirely from distribution of the Program.
+
+If any portion of this section is held invalid or unenforceable under any
+particular circumstance, the balance of the section is intended to apply and
+the section as a whole is intended to apply in other circumstances.
+
+It is not the purpose of this section to induce you to infringe any patents or
+other property right claims or to contest validity of any such claims; this
+section has the sole purpose of protecting the integrity of the free software
+distribution system, which is implemented by public license practices. Many
+people have made generous contributions to the wide range of software
+distributed through that system in reliance on consistent application of that
+system; it is up to the author/donor to decide if he or she is willing to
+distribute software through any other system and a licensee cannot impose that
+choice.
+
+This section is intended to make thoroughly clear what is believed to be a
+consequence of the rest of this License.
+
+8. If the distribution and/or use of the Program is restricted in certain
+countries either by patents or by copyrighted interfaces, the original
+copyright holder who places the Program under this License may add an explicit
+geographical distribution limitation excluding those countries, so that
+distribution is permitted only in or among countries not thus excluded. In
+such case, this License incorporates the limitation as if written in the body
+of this License.
+
+9. The Free Software Foundation may publish revised and/or new versions of the
+General Public License from time to time. Such new versions will be similar in
+spirit to the present version, but may differ in detail to address new problems
+or concerns.
+
+Each version is given a distinguishing version number. If the Program
+specifies a version number of this License which applies to it and "any later
+version", you have the option of following the terms and conditions either of
+that version or of any later version published by the Free Software Foundation.
+If the Program does not specify a version number of this License, you may
+choose any version ever published by the Free Software Foundation.
+
+10. If you wish to incorporate parts of the Program into other free programs
+whose distribution conditions are different, write to the author to ask for
+permission. For software which is copyrighted by the Free Software Foundation,
+write to the Free Software Foundation; we sometimes make exceptions for this.
+Our decision will be guided by the two goals of preserving the free status of
+all derivatives of our free software and of promoting the sharing and reuse of
+software generally.
+
+NO WARRANTY
+
+11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR
+THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE
+STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE
+PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED,
+INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
+FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND
+PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE,
+YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION.
+
+12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL
+ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE
+PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY
+GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR
+INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA
+BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A
+FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER
+OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+END OF TERMS AND CONDITIONS
+
+How to Apply These Terms to Your New Programs
+
+If you develop a new program, and you want it to be of the greatest possible
+use to the public, the best way to achieve this is to make it free software
+which everyone can redistribute and change under these terms.
+
+To do so, attach the following notices to the program. It is safest to attach
+them to the start of each source file to most effectively convey the exclusion
+of warranty; and each file should have at least the "copyright" line and a
+pointer to where the full notice is found.
+
+ One line to give the program's name and a brief idea of what it does.
+
+ Copyright (C)
+
+ This program is free software; you can redistribute it and/or modify it
+ under the terms of the GNU General Public License as published by the Free
+ Software Foundation; either version 2 of the License, or (at your option)
+ any later version.
+
+ This program is distributed in the hope that it will be useful, but WITHOUT
+ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+ more details.
+
+ You should have received a copy of the GNU General Public License along
+ with this program; if not, write to the Free Software Foundation, Inc.,
+ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+
+Also add information on how to contact you by electronic and paper mail.
+
+If the program is interactive, make it output a short notice like this when it
+starts in an interactive mode:
+
+ Gnomovision version 69, Copyright (C) year name of author Gnomovision comes
+ with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free
+ software, and you are welcome to redistribute it under certain conditions;
+ type 'show c' for details.
+
+The hypothetical commands 'show w' and 'show c' should show the appropriate
+parts of the General Public License. Of course, the commands you use may be
+called something other than 'show w' and 'show c'; they could even be
+mouse-clicks or menu items--whatever suits your program.
+
+You should also get your employer (if you work as a programmer) or your school,
+if any, to sign a "copyright disclaimer" for the program, if necessary. Here
+is a sample; alter the names:
+
+ Yoyodyne, Inc., hereby disclaims all copyright interest in the program
+ 'Gnomovision' (which makes passes at compilers) written by James Hacker.
+
+ signature of Ty Coon, 1 April 1989
+
+ Ty Coon, President of Vice
+
+This General Public License does not permit incorporating your program into
+proprietary programs. If your program is a subroutine library, you may
+consider it more useful to permit linking proprietary applications with the
+library. If this is what you want to do, use the GNU Library General Public
+License instead of this License.
+
+
+"CLASSPATH" EXCEPTION TO THE GPL
+
+Certain source files distributed by Oracle America and/or its affiliates are
+subject to the following clarification and special exception to the GPL, but
+only where Oracle has expressly included in the particular source file's header
+the words "Oracle designates this particular file as subject to the "Classpath"
+exception as provided by Oracle in the LICENSE file that accompanied this code."
+
+ Linking this library statically or dynamically with other modules is making
+ a combined work based on this library. Thus, the terms and conditions of
+ the GNU General Public License cover the whole combination.
+
+ As a special exception, the copyright holders of this library give you
+ permission to link this library with independent modules to produce an
+ executable, regardless of the license terms of these independent modules,
+ and to copy and distribute the resulting executable under terms of your
+ choice, provided that you also meet, for each linked independent module,
+ the terms and conditions of the license of that module. An independent
+ module is a module which is not derived from or based on this library. If
+ you modify this library, you may extend this exception to your version of
+ the library, but you are not obligated to do so. If you do not wish to do
+ so, delete this exception statement from your version.
diff --git a/docs/0.8.2/legal/jquery.md b/docs/0.8.2/legal/jquery.md
new file mode 100644
index 000000000..d468b3183
--- /dev/null
+++ b/docs/0.8.2/legal/jquery.md
@@ -0,0 +1,72 @@
+## jQuery v3.6.1
+
+### jQuery License
+```
+jQuery v 3.6.1
+Copyright OpenJS Foundation and other contributors, https://openjsf.org/
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+******************************************
+
+The jQuery JavaScript Library v3.6.1 also includes Sizzle.js
+
+Sizzle.js includes the following license:
+
+Copyright JS Foundation and other contributors, https://js.foundation/
+
+This software consists of voluntary contributions made by many
+individuals. For exact contribution history, see the revision history
+available at https://github.com/jquery/sizzle
+
+The following license applies to all parts of this software except as
+documented below:
+
+====
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+====
+
+All files located in the node_modules and external directories are
+externally maintained libraries used by this software which have their
+own licenses; we recommend you read them, as their terms may differ from
+the terms above.
+
+*********************
+
+```
diff --git a/docs/0.8.2/legal/jqueryUI.md b/docs/0.8.2/legal/jqueryUI.md
new file mode 100644
index 000000000..8bda9d7a8
--- /dev/null
+++ b/docs/0.8.2/legal/jqueryUI.md
@@ -0,0 +1,49 @@
+## jQuery UI v1.13.2
+
+### jQuery UI License
+```
+Copyright jQuery Foundation and other contributors, https://jquery.org/
+
+This software consists of voluntary contributions made by many
+individuals. For exact contribution history, see the revision history
+available at https://github.com/jquery/jquery-ui
+
+The following license applies to all parts of this software except as
+documented below:
+
+====
+
+Permission is hereby granted, free of charge, to any person obtaining
+a copy of this software and associated documentation files (the
+"Software"), to deal in the Software without restriction, including
+without limitation the rights to use, copy, modify, merge, publish,
+distribute, sublicense, and/or sell copies of the Software, and to
+permit persons to whom the Software is furnished to do so, subject to
+the following conditions:
+
+The above copyright notice and this permission notice shall be
+included in all copies or substantial portions of the Software.
+
+THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
+EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
+MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
+NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
+LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
+OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
+WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
+
+====
+
+Copyright and related rights for sample code are waived via CC0. Sample
+code is defined as all source code contained within the demos directory.
+
+CC0: http://creativecommons.org/publicdomain/zero/1.0/
+
+====
+
+All files located in the node_modules and external directories are
+externally maintained libraries used by this software which have their
+own licenses; we recommend you read them, as their terms may differ from
+the terms above.
+
+```
diff --git a/docs/0.8.2/link.svg b/docs/0.8.2/link.svg
new file mode 100644
index 000000000..7ccc5ed08
--- /dev/null
+++ b/docs/0.8.2/link.svg
@@ -0,0 +1,31 @@
+
+
+
+
+
diff --git a/docs/0.8.2/member-search-index.js b/docs/0.8.2/member-search-index.js
new file mode 100644
index 000000000..d46940cdd
--- /dev/null
+++ b/docs/0.8.2/member-search-index.js
@@ -0,0 +1 @@
+memberSearchIndex = [{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAttachmentOptions","l":"accept()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetLocalDocumentOptions","l":"accept()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions","l":"accept()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsQueriesOptions","l":"accept()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAttachmentOptions.Builder","l":"accept(String)","u":"accept(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetLocalDocumentOptions.Builder","l":"accept(String)","u":"accept(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions.Builder","l":"accept(String)","u":"accept(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsQueriesOptions.Builder","l":"accept(String)","u":"accept(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostActivityTrackerEventsOptions.Builder","l":"activityTrackerEvents(ActivityTrackerEvents)","u":"activityTrackerEvents(com.ibm.cloud.cloudant.v1.model.ActivityTrackerEvents)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument.Builder","l":"add(String, Object)","u":"add(java.lang.String,java.lang.Object)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document.Builder","l":"add(String, Object)","u":"add(java.lang.String,java.lang.Object)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"add(String, Object)","u":"add(java.lang.String,java.lang.Object)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexField.Builder","l":"add(String, String)","u":"add(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkGetQueryDocument.Builder","l":"addAttsSince(String)","u":"addAttsSince(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument.Builder","l":"addConflicts(String)","u":"addConflicts(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document.Builder","l":"addConflicts(String)","u":"addConflicts(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"addConflicts(String)","u":"addConflicts(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"addCounts(String)","u":"addCounts(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument.Builder","l":"addDeletedConflicts(String)","u":"addDeletedConflicts(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document.Builder","l":"addDeletedConflicts(String)","u":"addDeletedConflicts(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"addDeletedConflicts(String)","u":"addDeletedConflicts(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"addDocIds(String)","u":"addDocIds(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"addDocIds(String)","u":"addDocIds(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkGetOptions.Builder","l":"addDocs(BulkGetQueryDocument)","u":"addDocs(com.ibm.cloud.cloudant.v1.model.BulkGetQueryDocument)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkDocs.Builder","l":"addDocs(Document)","u":"addDocs(com.ibm.cloud.cloudant.v1.model.Document)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"addDrilldown(List)","u":"addDrilldown(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexDefinition.Builder","l":"addFields(IndexField)","u":"addFields(com.ibm.cloud.cloudant.v1.model.IndexField)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"addFields(String)","u":"addFields(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions.Builder","l":"addFields(String)","u":"addFields(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions.Builder","l":"addFields(String)","u":"addFields(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions.Builder","l":"addFields(String)","u":"addFields(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions.Builder","l":"addFields(String)","u":"addFields(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"addGroupSort(String)","u":"addGroupSort(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"addHighlightFields(String)","u":"addHighlightFields(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"addHighlightFields(String)","u":"addHighlightFields(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Revisions.Builder","l":"addIds(String)","u":"addIds(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"addIncludeFields(String)","u":"addIncludeFields(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"addIncludeFields(String)","u":"addIncludeFields(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"addKeys(Object)","u":"addKeys(java.lang.Object)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"addKeys(Object)","u":"addKeys(java.lang.Object)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery.Builder","l":"addKeys(Object)","u":"addKeys(java.lang.Object)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery.Builder","l":"addKeys(String)","u":"addKeys(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions.Builder","l":"addKeys(String)","u":"addKeys(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDbsInfoOptions.Builder","l":"addKeys(String)","u":"addKeys(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions.Builder","l":"addKeys(String)","u":"addKeys(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions.Builder","l":"addKeys(String)","u":"addKeys(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SecurityObject.Builder","l":"addNames(String)","u":"addNames(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCorsConfigurationOptions.Builder","l":"addOrigins(String)","u":"addOrigins(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsQueriesOptions.Builder","l":"addQueries(AllDocsQuery)","u":"addQueries(com.ibm.cloud.cloudant.v1.model.AllDocsQuery)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsQueriesOptions.Builder","l":"addQueries(AllDocsQuery)","u":"addQueries(com.ibm.cloud.cloudant.v1.model.AllDocsQuery)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewQueriesOptions.Builder","l":"addQueries(ViewQuery)","u":"addQueries(com.ibm.cloud.cloudant.v1.model.ViewQuery)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument.Builder","l":"addRevsInfo(DocumentRevisionStatus)","u":"addRevsInfo(com.ibm.cloud.cloudant.v1.model.DocumentRevisionStatus)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document.Builder","l":"addRevsInfo(DocumentRevisionStatus)","u":"addRevsInfo(com.ibm.cloud.cloudant.v1.model.DocumentRevisionStatus)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"addRevsInfo(DocumentRevisionStatus)","u":"addRevsInfo(com.ibm.cloud.cloudant.v1.model.DocumentRevisionStatus)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SecurityObject.Builder","l":"addRoles(String)","u":"addRoles(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"UserContext.Builder","l":"addRoles(String)","u":"addRoles(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions.Builder","l":"addSort(Map)","u":"addSort(java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions.Builder","l":"addSort(Map)","u":"addSort(java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions.Builder","l":"addSort(Map)","u":"addSort(java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions.Builder","l":"addSort(Map)","u":"addSort(java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"addSort(String)","u":"addSort(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"addSort(String)","u":"addSort(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerDocsOptions.Builder","l":"addStates(String)","u":"addStates(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Builder","l":"addStopwords(String)","u":"addStopwords(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Builder","l":"addStopwords(String)","u":"addStopwords(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActivityTrackerEvents.Builder","l":"addTypes(String)","u":"addTypes(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostActivityTrackerEventsOptions.Builder","l":"addTypes(String)","u":"addTypes(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions.Builder","l":"addUseIndex(String)","u":"addUseIndex(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions.Builder","l":"addUseIndex(String)","u":"addUseIndex(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions.Builder","l":"addUseIndex(String)","u":"addUseIndex(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions.Builder","l":"addUseIndex(String)","u":"addUseIndex(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"UserContext.Roles","l":"ADMIN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCloudantSecurityConfigurationOptions","l":"admins()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutSecurityOptions","l":"admins()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Security","l":"admins()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCloudantSecurityConfigurationOptions.Builder","l":"admins(SecurityObject)","u":"admins(com.ibm.cloud.cloudant.v1.model.SecurityObject)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutSecurityOptions.Builder","l":"admins(SecurityObject)","u":"admins(com.ibm.cloud.cloudant.v1.model.SecurityObject)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Security.Builder","l":"admins(SecurityObject)","u":"admins(com.ibm.cloud.cloudant.v1.model.SecurityObject)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCorsConfigurationOptions","l":"allowCredentials()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCorsConfigurationOptions.Builder","l":"allowCredentials(Boolean)","u":"allowCredentials(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexTextOperatorDefaultField","l":"analyzer()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions","l":"analyzer()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchIndexDefinition","l":"analyzer()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexTextOperatorDefaultField.Builder","l":"analyzer(Analyzer)","u":"analyzer(com.ibm.cloud.cloudant.v1.model.Analyzer)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchIndexDefinition.Builder","l":"analyzer(AnalyzerConfiguration)","u":"analyzer(com.ibm.cloud.cloudant.v1.model.AnalyzerConfiguration)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Builder","l":"analyzer(String)","u":"analyzer(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabaseAuthIam","l":"apiKey()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabaseAuthIam.Builder","l":"apiKey(String)","u":"apiKey(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"ARABIC"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"ARABIC"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"ARABIC"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"ARMENIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"ARMENIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"ARMENIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions","l":"attachment()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions.Builder","l":"attachment(File)","u":"attachment(java.io.File)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions.Builder","l":"attachment(InputStream)","u":"attachment(java.io.InputStream)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteAttachmentOptions","l":"attachmentName()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAttachmentOptions","l":"attachmentName()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadAttachmentOptions","l":"attachmentName()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions","l":"attachmentName()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteAttachmentOptions.Builder","l":"attachmentName(String)","u":"attachmentName(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAttachmentOptions.Builder","l":"attachmentName(String)","u":"attachmentName(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadAttachmentOptions.Builder","l":"attachmentName(String)","u":"attachmentName(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions.Builder","l":"attachmentName(String)","u":"attachmentName(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery","l":"attachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions","l":"attachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions","l":"attachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetLocalDocumentOptions","l":"attachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetReplicationDocumentOptions","l":"attachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions","l":"attachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkGetOptions","l":"attachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions","l":"attachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions","l":"attachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions","l":"attachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions","l":"attachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions","l":"attachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery","l":"attachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery.Builder","l":"attachments(Boolean)","u":"attachments(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions.Builder","l":"attachments(Boolean)","u":"attachments(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions.Builder","l":"attachments(Boolean)","u":"attachments(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetLocalDocumentOptions.Builder","l":"attachments(Boolean)","u":"attachments(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetReplicationDocumentOptions.Builder","l":"attachments(Boolean)","u":"attachments(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions.Builder","l":"attachments(Boolean)","u":"attachments(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkGetOptions.Builder","l":"attachments(Boolean)","u":"attachments(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"attachments(Boolean)","u":"attachments(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions.Builder","l":"attachments(Boolean)","u":"attachments(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions.Builder","l":"attachments(Boolean)","u":"attachments(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"attachments(Boolean)","u":"attachments(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"attachments(Boolean)","u":"attachments(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery.Builder","l":"attachments(Boolean)","u":"attachments(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument.Builder","l":"attachments(Map)","u":"attachments(java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document.Builder","l":"attachments(Map)","u":"attachments(java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"attachments(Map)","u":"attachments(java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery","l":"attEncodingInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions","l":"attEncodingInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions","l":"attEncodingInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetLocalDocumentOptions","l":"attEncodingInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetReplicationDocumentOptions","l":"attEncodingInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions","l":"attEncodingInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkGetOptions","l":"attEncodingInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions","l":"attEncodingInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions","l":"attEncodingInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions","l":"attEncodingInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions","l":"attEncodingInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions","l":"attEncodingInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery","l":"attEncodingInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery.Builder","l":"attEncodingInfo(Boolean)","u":"attEncodingInfo(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions.Builder","l":"attEncodingInfo(Boolean)","u":"attEncodingInfo(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions.Builder","l":"attEncodingInfo(Boolean)","u":"attEncodingInfo(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetLocalDocumentOptions.Builder","l":"attEncodingInfo(Boolean)","u":"attEncodingInfo(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetReplicationDocumentOptions.Builder","l":"attEncodingInfo(Boolean)","u":"attEncodingInfo(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions.Builder","l":"attEncodingInfo(Boolean)","u":"attEncodingInfo(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkGetOptions.Builder","l":"attEncodingInfo(Boolean)","u":"attEncodingInfo(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"attEncodingInfo(Boolean)","u":"attEncodingInfo(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions.Builder","l":"attEncodingInfo(Boolean)","u":"attEncodingInfo(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions.Builder","l":"attEncodingInfo(Boolean)","u":"attEncodingInfo(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"attEncodingInfo(Boolean)","u":"attEncodingInfo(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"attEncodingInfo(Boolean)","u":"attEncodingInfo(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery.Builder","l":"attEncodingInfo(Boolean)","u":"attEncodingInfo(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkGetQueryDocument","l":"attsSince()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkGetQueryDocument.Builder","l":"attsSince(List)","u":"attsSince(java.util.List)"},{"p":"com.ibm.cloud.cloudant.security","c":"CouchDbSessionAuthenticator","l":"AUTH_TYPE"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabase","l":"auth()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabase.Builder","l":"auth(ReplicationDatabaseAuth)","u":"auth(com.ibm.cloud.cloudant.v1.model.ReplicationDatabaseAuth)"},{"p":"com.ibm.cloud.cloudant.security","c":"CouchDbSessionAuthenticator","l":"authenticate(Request.Builder)","u":"authenticate(okhttp3.Request.Builder)"},{"p":"com.ibm.cloud.cloudant.security","c":"CouchDbSessionAuthenticator","l":"authenticationType()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument.Builder","l":"autoupdate(Boolean)","u":"autoupdate(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocumentRevisionStatus.Status","l":"AVAILABLE"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabaseAuth","l":"basic()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabaseAuth.Builder","l":"basic(ReplicationDatabaseAuthBasic)","u":"basic(com.ibm.cloud.cloudant.v1.model.ReplicationDatabaseAuthBasic)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"BASQUE"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"BASQUE"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"BASQUE"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteAttachmentOptions","l":"batch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDesignDocumentOptions","l":"batch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDocumentOptions","l":"batch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteLocalDocumentOptions","l":"batch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteReplicationDocumentOptions","l":"batch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDocumentOptions","l":"batch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDesignDocumentOptions","l":"batch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions","l":"batch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions","l":"batch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutReplicationDocumentOptions","l":"batch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteAttachmentOptions.Builder","l":"batch(String)","u":"batch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDesignDocumentOptions.Builder","l":"batch(String)","u":"batch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDocumentOptions.Builder","l":"batch(String)","u":"batch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteLocalDocumentOptions.Builder","l":"batch(String)","u":"batch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteReplicationDocumentOptions.Builder","l":"batch(String)","u":"batch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDocumentOptions.Builder","l":"batch(String)","u":"batch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDesignDocumentOptions.Builder","l":"batch(String)","u":"batch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions.Builder","l":"batch(String)","u":"batch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions.Builder","l":"batch(String)","u":"batch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutReplicationDocumentOptions.Builder","l":"batch(String)","u":"batch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCapacityThroughputConfigurationOptions","l":"blocks()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCapacityThroughputConfigurationOptions.Builder","l":"blocks(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkDocsOptions","l":"body()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDocumentOptions","l":"body()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions","l":"body()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions","l":"body()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkDocsOptions.Builder","l":"body(File)","u":"body(java.io.File)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDocumentOptions.Builder","l":"body(File)","u":"body(java.io.File)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions.Builder","l":"body(File)","u":"body(java.io.File)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions.Builder","l":"body(File)","u":"body(java.io.File)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkDocsOptions.Builder","l":"body(InputStream)","u":"body(java.io.InputStream)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDocumentOptions.Builder","l":"body(InputStream)","u":"body(java.io.InputStream)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions.Builder","l":"body(InputStream)","u":"body(java.io.InputStream)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions.Builder","l":"body(InputStream)","u":"body(java.io.InputStream)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions","l":"bookmark()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions","l":"bookmark()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions","l":"bookmark()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions","l":"bookmark()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions","l":"bookmark()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"bookmark()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions.Builder","l":"bookmark(String)","u":"bookmark(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions.Builder","l":"bookmark(String)","u":"bookmark(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions.Builder","l":"bookmark(String)","u":"bookmark(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions.Builder","l":"bookmark(String)","u":"bookmark(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"bookmark(String)","u":"bookmark(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"bookmark(String)","u":"bookmark(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"BRAZILIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"BRAZILIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"BRAZILIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActivityTrackerEvents.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Attachment.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkDocs.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkGetQueryDocument.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteAttachmentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDatabaseOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDesignDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteIndexOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteLocalDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteReplicationDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentViewsMapReduce.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocumentRevisionStatus.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAllDbsOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAttachmentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDatabaseInformationOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDbUpdatesOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentInformationOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentShardsInfoOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetIndexesInformationOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetLocalDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetPartitionInformationOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetReplicationDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerDocsOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerJobOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerJobsOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSearchInfoOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSecurityOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetShardsInformationOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetUuidsOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadAttachmentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDatabaseOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDesignDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadLocalDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadReplicationDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadSchedulerDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadSchedulerJobOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexDefinition.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexField.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexTextOperatorDefaultField.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostActivityTrackerEventsOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsQueriesOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkDocsOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkGetOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDbsInfoOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsQueriesOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostIndexOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostRevsDiffOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewQueriesOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCapacityThroughputConfigurationOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCloudantSecurityConfigurationOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCorsConfigurationOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDatabaseOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDesignDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutReplicationDocumentOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutSecurityOptions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationCreateTargetParameters.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabase.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabaseAuth.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabaseAuthBasic.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabaseAuthIam.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Revisions.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchIndexDefinition.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Security.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SecurityObject.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"UserContext.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery.Builder","l":"build()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActivityTrackerEvents.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Attachment.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkDocs.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkGetQueryDocument.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteAttachmentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDatabaseOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDesignDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteIndexOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteLocalDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteReplicationDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentViewsMapReduce.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocumentRevisionStatus.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAllDbsOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAttachmentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDatabaseInformationOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDbUpdatesOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentInformationOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentShardsInfoOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetIndexesInformationOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetLocalDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetPartitionInformationOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetReplicationDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerDocsOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerJobOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerJobsOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSearchInfoOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSecurityOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetShardsInformationOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetUuidsOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadAttachmentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDatabaseOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDesignDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadLocalDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadReplicationDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadSchedulerDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadSchedulerJobOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexDefinition.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexField.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexTextOperatorDefaultField.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostActivityTrackerEventsOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsQueriesOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkDocsOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkGetOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDbsInfoOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsQueriesOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostIndexOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostRevsDiffOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewQueriesOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCapacityThroughputConfigurationOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCloudantSecurityConfigurationOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCorsConfigurationOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDatabaseOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDesignDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutReplicationDocumentOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutSecurityOptions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationCreateTargetParameters.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabase.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabaseAuth.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabaseAuthBasic.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabaseAuthIam.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Revisions.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchIndexDefinition.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Security.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SecurityObject.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"UserContext.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery.Builder","l":"Builder()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkDocs.Builder","l":"Builder(List)","u":"%3Cinit%3E(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActivityTrackerEvents.Builder","l":"Builder(List)","u":"%3Cinit%3E(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostActivityTrackerEventsOptions.Builder","l":"Builder(List)","u":"%3Cinit%3E(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDbsInfoOptions.Builder","l":"Builder(List)","u":"%3Cinit%3E(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCorsConfigurationOptions.Builder","l":"Builder(List)","u":"%3Cinit%3E(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Revisions.Builder","l":"Builder(List, Long)","u":"%3Cinit%3E(java.util.List,java.lang.Long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCapacityThroughputConfigurationOptions.Builder","l":"Builder(Long)","u":"%3Cinit%3E(java.lang.Long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"Builder(ReplicationDatabase, ReplicationDatabase)","u":"%3Cinit%3E(com.ibm.cloud.cloudant.v1.model.ReplicationDatabase,com.ibm.cloud.cloudant.v1.model.ReplicationDatabase)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkGetQueryDocument.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDatabaseOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteReplicationDocumentOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentViewsMapReduce.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDatabaseInformationOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetIndexesInformationOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetReplicationDocumentOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerDocumentOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerJobOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSecurityOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetShardsInformationOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDatabaseOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadReplicationDocumentOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadSchedulerDocumentOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadSchedulerJobOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkDocsOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDocumentOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDatabaseOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutSecurityOptions.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabase.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabaseAuthIam.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchIndexDefinition.Builder","l":"Builder(String)","u":"%3Cinit%3E(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostIndexOptions.Builder","l":"Builder(String, IndexDefinition)","u":"%3Cinit%3E(java.lang.String,com.ibm.cloud.cloudant.v1.model.IndexDefinition)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsQueriesOptions.Builder","l":"Builder(String, List)","u":"%3Cinit%3E(java.lang.String,java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsQueriesOptions.Builder","l":"Builder(String, List)","u":"%3Cinit%3E(java.lang.String,java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkGetOptions.Builder","l":"Builder(String, List)","u":"%3Cinit%3E(java.lang.String,java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"UserContext.Builder","l":"Builder(String, List)","u":"%3Cinit%3E(java.lang.String,java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostRevsDiffOptions.Builder","l":"Builder(String, Map>)","u":"%3Cinit%3E(java.lang.String,java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCloudantSecurityConfigurationOptions.Builder","l":"Builder(String, Map>)","u":"%3Cinit%3E(java.lang.String,java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions.Builder","l":"Builder(String, Map)","u":"%3Cinit%3E(java.lang.String,java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions.Builder","l":"Builder(String, Map)","u":"%3Cinit%3E(java.lang.String,java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutReplicationDocumentOptions.Builder","l":"Builder(String, ReplicationDocument)","u":"%3Cinit%3E(java.lang.String,com.ibm.cloud.cloudant.v1.model.ReplicationDocument)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDesignDocumentOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDocumentOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteLocalDocumentOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocumentRevisionStatus.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentInformationOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentShardsInfoOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetLocalDocumentOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetPartitionInformationOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDesignDocumentOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDocumentOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadLocalDocumentOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabaseAuthBasic.Builder","l":"Builder(String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDesignDocumentOptions.Builder","l":"Builder(String, String, DesignDocument)","u":"%3Cinit%3E(java.lang.String,java.lang.String,com.ibm.cloud.cloudant.v1.model.DesignDocument)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions.Builder","l":"Builder(String, String, Map)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions.Builder","l":"Builder(String, String, Map)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteAttachmentOptions.Builder","l":"Builder(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAttachmentOptions.Builder","l":"Builder(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSearchInfoOptions.Builder","l":"Builder(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadAttachmentOptions.Builder","l":"Builder(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"Builder(String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions.Builder","l":"Builder(String, String, String, InputStream, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.io.InputStream,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewQueriesOptions.Builder","l":"Builder(String, String, String, List)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteIndexOptions.Builder","l":"Builder(String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"Builder(String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"Builder(String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"Builder(String, String, String, String, String)","u":"%3Cinit%3E(java.lang.String,java.lang.String,java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"BULGARIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"BULGARIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"BULGARIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkDocsOptions","l":"bulkDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkDocsOptions.Builder","l":"bulkDocs(BulkDocs)","u":"bulkDocs(com.ibm.cloud.cloudant.v1.model.BulkDocs)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"cancel(Boolean)","u":"cancel(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"CATALAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"CATALAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"CATALAN"},{"p":"com.ibm.cloud.cloudant.features","c":"ChangesFollower","l":"ChangesFollower(Cloudant, PostChangesOptions)","u":"%3Cinit%3E(com.ibm.cloud.cloudant.v1.Cloudant,com.ibm.cloud.cloudant.v1.model.PostChangesOptions)"},{"p":"com.ibm.cloud.cloudant.features","c":"ChangesFollower","l":"ChangesFollower(Cloudant, PostChangesOptions, Duration)","u":"%3Cinit%3E(com.ibm.cloud.cloudant.v1.Cloudant,com.ibm.cloud.cloudant.v1.model.PostChangesOptions,java.time.Duration)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"checkpointInterval(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"CHINESE"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"CHINESE"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"CHINESE"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"CJK"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"CJK"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"CJK"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"CLASSIC"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"CLASSIC"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"CLASSIC"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCloudantSecurityConfigurationOptions","l":"cloudant()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutSecurityOptions","l":"cloudant()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Security","l":"cloudant()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCloudantSecurityConfigurationOptions.Builder","l":"cloudant(Map>)","u":"cloudant(java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutSecurityOptions.Builder","l":"cloudant(Map>)","u":"cloudant(java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Security.Builder","l":"cloudant(Map>)","u":"cloudant(java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"Cloudant(String, Authenticator)","u":"%3Cinit%3E(java.lang.String,com.ibm.cloud.sdk.core.security.Authenticator)"},{"p":"com.ibm.cloud.cloudant.internal","c":"CloudantBaseService","l":"CloudantBaseService(String, Authenticator)","u":"%3Cinit%3E(java.lang.String,com.ibm.cloud.sdk.core.security.Authenticator)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerDocsOptions.States","l":"COMPLETED"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument.State","l":"COMPLETED"},{"p":"com.ibm.cloud.cloudant.internal","c":"CloudantBaseService","l":"configureClient(HttpConfigOptions)","u":"configureClient(com.ibm.cloud.sdk.core.http.HttpConfigOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery","l":"conflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions","l":"conflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions","l":"conflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetReplicationDocumentOptions","l":"conflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions","l":"conflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions","l":"conflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions","l":"conflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions","l":"conflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions","l":"conflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions","l":"conflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions","l":"conflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions","l":"conflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions","l":"conflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions","l":"conflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery","l":"conflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery.Builder","l":"conflicts(Boolean)","u":"conflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions.Builder","l":"conflicts(Boolean)","u":"conflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions.Builder","l":"conflicts(Boolean)","u":"conflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetReplicationDocumentOptions.Builder","l":"conflicts(Boolean)","u":"conflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions.Builder","l":"conflicts(Boolean)","u":"conflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"conflicts(Boolean)","u":"conflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions.Builder","l":"conflicts(Boolean)","u":"conflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions.Builder","l":"conflicts(Boolean)","u":"conflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions.Builder","l":"conflicts(Boolean)","u":"conflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions.Builder","l":"conflicts(Boolean)","u":"conflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions.Builder","l":"conflicts(Boolean)","u":"conflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions.Builder","l":"conflicts(Boolean)","u":"conflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"conflicts(Boolean)","u":"conflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"conflicts(Boolean)","u":"conflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery.Builder","l":"conflicts(Boolean)","u":"conflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument.Builder","l":"conflicts(List)","u":"conflicts(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document.Builder","l":"conflicts(List)","u":"conflicts(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"conflicts(List)","u":"conflicts(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"connectionTimeout(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Attachment","l":"contentType()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDocumentOptions","l":"contentType()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions","l":"contentType()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions","l":"contentType()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions","l":"contentType()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Attachment.Builder","l":"contentType(String)","u":"contentType(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDocumentOptions.Builder","l":"contentType(String)","u":"contentType(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions.Builder","l":"contentType(String)","u":"contentType(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions.Builder","l":"contentType(String)","u":"contentType(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions.Builder","l":"contentType(String)","u":"contentType(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDbUpdatesOptions.Feed","l":"CONTINUOUS"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Feed","l":"CONTINUOUS"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"continuous(Boolean)","u":"continuous(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCloudantSecurityConfigurationOptions","l":"couchdbAuthOnly()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutSecurityOptions","l":"couchdbAuthOnly()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Security","l":"couchdbAuthOnly()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCloudantSecurityConfigurationOptions.Builder","l":"couchdbAuthOnly(Boolean)","u":"couchdbAuthOnly(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutSecurityOptions.Builder","l":"couchdbAuthOnly(Boolean)","u":"couchdbAuthOnly(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Security.Builder","l":"couchdbAuthOnly(Boolean)","u":"couchdbAuthOnly(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.security","c":"CouchDbSessionAuthenticator.CouchDbSessionToken","l":"CouchDbSessionToken(long)","u":"%3Cinit%3E(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetUuidsOptions","l":"count()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetUuidsOptions.Builder","l":"count(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"counts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"counts(List)","u":"counts(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerDocsOptions.States","l":"CRASHING"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument.State","l":"CRASHING"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DbEvent.Type","l":"CREATED"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexResult.Result","l":"CREATED"},{"p":"","c":"CreateDbAndDoc","l":"CreateDbAndDoc()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"createTarget(Boolean)","u":"createTarget(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"createTargetParams(ReplicationCreateTargetParameters)","u":"createTargetParams(com.ibm.cloud.cloudant.v1.model.ReplicationCreateTargetParameters)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"CZECH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"CZECH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"CZECH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"DANISH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"DANISH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"DANISH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActivityTrackerEvents.Types","l":"DATA"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostActivityTrackerEventsOptions.Types","l":"DATA"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Attachment","l":"data()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Attachment.Builder","l":"data(byte[])"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask.Type","l":"DATABASE_COMPACTION"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"UserContext.Roles","l":"DB_UPDATES"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteAttachmentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDatabaseOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDesignDocumentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDocumentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteIndexOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteLocalDocumentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAttachmentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDatabaseInformationOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentInformationOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentShardsInfoOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetIndexesInformationOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetLocalDocumentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetPartitionInformationOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSearchInfoOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSecurityOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetShardsInformationOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadAttachmentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDatabaseOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDesignDocumentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDocumentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadLocalDocumentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsQueriesOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkDocsOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkGetOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsQueriesOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDocumentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostIndexOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostRevsDiffOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewQueriesOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCloudantSecurityConfigurationOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDatabaseOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDesignDocumentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutSecurityOptions","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"UserContext","l":"db()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteAttachmentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDatabaseOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDesignDocumentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDocumentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteIndexOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteLocalDocumentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAttachmentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDatabaseInformationOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentInformationOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentShardsInfoOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetIndexesInformationOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetLocalDocumentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetPartitionInformationOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSearchInfoOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSecurityOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetShardsInformationOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadAttachmentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDatabaseOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDesignDocumentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDocumentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadLocalDocumentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsQueriesOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkDocsOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkGetOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsQueriesOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDocumentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostIndexOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostRevsDiffOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewQueriesOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCloudantSecurityConfigurationOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDatabaseOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDesignDocumentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutSecurityOptions.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"UserContext.Builder","l":"db(String)","u":"db(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDesignDocumentOptions","l":"ddoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteIndexOptions","l":"ddoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentInformationOptions","l":"ddoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions","l":"ddoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSearchInfoOptions","l":"ddoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDesignDocumentOptions","l":"ddoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostIndexOptions","l":"ddoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions","l":"ddoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions","l":"ddoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"ddoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions","l":"ddoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewQueriesOptions","l":"ddoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDesignDocumentOptions","l":"ddoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDesignDocumentOptions.Builder","l":"ddoc(String)","u":"ddoc(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteIndexOptions.Builder","l":"ddoc(String)","u":"ddoc(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentInformationOptions.Builder","l":"ddoc(String)","u":"ddoc(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions.Builder","l":"ddoc(String)","u":"ddoc(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSearchInfoOptions.Builder","l":"ddoc(String)","u":"ddoc(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDesignDocumentOptions.Builder","l":"ddoc(String)","u":"ddoc(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostIndexOptions.Builder","l":"ddoc(String)","u":"ddoc(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"ddoc(String)","u":"ddoc(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"ddoc(String)","u":"ddoc(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"ddoc(String)","u":"ddoc(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"ddoc(String)","u":"ddoc(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewQueriesOptions.Builder","l":"ddoc(String)","u":"ddoc(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDesignDocumentOptions.Builder","l":"ddoc(String)","u":"ddoc(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"DEFAULT_SERVICE_NAME"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"DEFAULT_SERVICE_URL"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexDefinition","l":"defaultAnalyzer()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexDefinition.Builder","l":"defaultAnalyzer(Analyzer)","u":"defaultAnalyzer(com.ibm.cloud.cloudant.v1.model.Analyzer)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexDefinition","l":"defaultField()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexDefinition.Builder","l":"defaultField(IndexTextOperatorDefaultField)","u":"defaultField(com.ibm.cloud.cloudant.v1.model.IndexTextOperatorDefaultField)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"deleteAttachment(DeleteAttachmentOptions)","u":"deleteAttachment(com.ibm.cloud.cloudant.v1.model.DeleteAttachmentOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DbEvent.Type","l":"DELETED"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocumentRevisionStatus.Status","l":"DELETED"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument.Builder","l":"deleted(Boolean)","u":"deleted(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document.Builder","l":"deleted(Boolean)","u":"deleted(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"deleted(Boolean)","u":"deleted(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"deleteDatabase(DeleteDatabaseOptions)","u":"deleteDatabase(com.ibm.cloud.cloudant.v1.model.DeleteDatabaseOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions","l":"deletedConflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions","l":"deletedConflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetReplicationDocumentOptions","l":"deletedConflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions.Builder","l":"deletedConflicts(Boolean)","u":"deletedConflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions.Builder","l":"deletedConflicts(Boolean)","u":"deletedConflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetReplicationDocumentOptions.Builder","l":"deletedConflicts(Boolean)","u":"deletedConflicts(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument.Builder","l":"deletedConflicts(List)","u":"deletedConflicts(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document.Builder","l":"deletedConflicts(List)","u":"deletedConflicts(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"deletedConflicts(List)","u":"deletedConflicts(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"deleteDesignDocument(DeleteDesignDocumentOptions)","u":"deleteDesignDocument(com.ibm.cloud.cloudant.v1.model.DeleteDesignDocumentOptions)"},{"p":"","c":"DeleteDoc","l":"DeleteDoc()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"deleteDocument(DeleteDocumentOptions)","u":"deleteDocument(com.ibm.cloud.cloudant.v1.model.DeleteDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"deleteIndex(DeleteIndexOptions)","u":"deleteIndex(com.ibm.cloud.cloudant.v1.model.DeleteIndexOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"deleteLocalDocument(DeleteLocalDocumentOptions)","u":"deleteLocalDocument(com.ibm.cloud.cloudant.v1.model.DeleteLocalDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"deleteReplicationDocument(DeleteReplicationDocumentOptions)","u":"deleteReplicationDocument(com.ibm.cloud.cloudant.v1.model.DeleteReplicationDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery","l":"descending()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAllDbsOptions","l":"descending()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions","l":"descending()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions","l":"descending()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions","l":"descending()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions","l":"descending()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions","l":"descending()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions","l":"descending()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery","l":"descending()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery.Builder","l":"descending(Boolean)","u":"descending(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAllDbsOptions.Builder","l":"descending(Boolean)","u":"descending(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions.Builder","l":"descending(Boolean)","u":"descending(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"descending(Boolean)","u":"descending(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions.Builder","l":"descending(Boolean)","u":"descending(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions.Builder","l":"descending(Boolean)","u":"descending(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"descending(Boolean)","u":"descending(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"descending(Boolean)","u":"descending(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery.Builder","l":"descending(Boolean)","u":"descending(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"UserContext.Roles","l":"DESIGN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDesignDocumentOptions","l":"designDocument()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"DesignDocument()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDesignDocumentOptions.Builder","l":"designDocument(DesignDocument)","u":"designDocument(com.ibm.cloud.cloudant.v1.model.DesignDocument)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Attachment","l":"digest()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Attachment.Builder","l":"digest(String)","u":"digest(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask.Phase","l":"DOCID_COPY"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask.Phase","l":"DOCID_SORT"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteAttachmentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDocumentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteLocalDocumentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteReplicationDocumentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAttachmentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentShardsInfoOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetLocalDocumentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetReplicationDocumentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerDocumentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadAttachmentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDocumentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadLocalDocumentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadReplicationDocumentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadSchedulerDocumentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutReplicationDocumentOptions","l":"docId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteAttachmentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDocumentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteLocalDocumentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteReplicationDocumentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAttachmentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentShardsInfoOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetLocalDocumentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetReplicationDocumentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerDocumentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadAttachmentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDocumentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadLocalDocumentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadReplicationDocumentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadSchedulerDocumentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutReplicationDocumentOptions.Builder","l":"docId(String)","u":"docId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions","l":"docIds()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"docIds(List)","u":"docIds(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"docIds(List)","u":"docIds(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkDocs","l":"docs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkGetOptions","l":"docs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostBulkGetOptions.Builder","l":"docs(List)","u":"docs(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkDocs.Builder","l":"docs(List)","u":"docs(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask.Phase","l":"DOCUMENT_COPY"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDocumentOptions","l":"document()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions","l":"document()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions","l":"document()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document","l":"Document()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDocumentOptions.Builder","l":"document(Document)","u":"document(com.ibm.cloud.cloudant.v1.model.Document)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions.Builder","l":"document(Document)","u":"document(com.ibm.cloud.cloudant.v1.model.Document)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutLocalDocumentOptions.Builder","l":"document(Document)","u":"document(com.ibm.cloud.cloudant.v1.model.Document)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostRevsDiffOptions","l":"documentRevisions()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostRevsDiffOptions.Builder","l":"documentRevisions(Map>)","u":"documentRevisions(java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"drilldown()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"drilldown(List>)","u":"drilldown(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"DUTCH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"DUTCH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"DUTCH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"EMAIL"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"EMAIL"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"EMAIL"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCorsConfigurationOptions","l":"enableCors()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutCorsConfigurationOptions.Builder","l":"enableCors(Boolean)","u":"enableCors(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexTextOperatorDefaultField","l":"enabled()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexTextOperatorDefaultField.Builder","l":"enabled(Boolean)","u":"enabled(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Attachment","l":"encodedLength()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Attachment.Builder","l":"encodedLength(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Attachment","l":"encoding()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Attachment.Builder","l":"encoding(String)","u":"encoding(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery","l":"endKey()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAllDbsOptions","l":"endKey()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions","l":"endKey()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions","l":"endKey()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions","l":"endKey()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions","l":"endKey()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions","l":"endKey()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery","l":"endKey()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"endKey(Object)","u":"endKey(java.lang.Object)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"endKey(Object)","u":"endKey(java.lang.Object)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery.Builder","l":"endKey(Object)","u":"endKey(java.lang.Object)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery.Builder","l":"endKey(String)","u":"endKey(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAllDbsOptions.Builder","l":"endKey(String)","u":"endKey(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions.Builder","l":"endKey(String)","u":"endKey(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions.Builder","l":"endKey(String)","u":"endKey(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions.Builder","l":"endKey(String)","u":"endKey(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions","l":"endKeyDocId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions","l":"endKeyDocId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery","l":"endKeyDocId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"endKeyDocId(String)","u":"endKeyDocId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"endKeyDocId(String)","u":"endKeyDocId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery.Builder","l":"endKeyDocId(String)","u":"endKeyDocId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"ENGLISH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"ENGLISH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"ENGLISH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerDocsOptions.States","l":"ERROR"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument.State","l":"ERROR"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDbUpdatesOptions.Feed","l":"EVENTSOURCE"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Feed","l":"EVENTSOURCE"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions","l":"executionStats()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions","l":"executionStats()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions","l":"executionStats()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions","l":"executionStats()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions.Builder","l":"executionStats(Boolean)","u":"executionStats(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions.Builder","l":"executionStats(Boolean)","u":"executionStats(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions.Builder","l":"executionStats(Boolean)","u":"executionStats(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions.Builder","l":"executionStats(Boolean)","u":"executionStats(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexResult.Result","l":"EXISTS"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask.ProcessStatus","l":"EXITING"},{"p":"com.ibm.cloud.cloudant.security","c":"CouchDbSessionAuthenticator.CouchDbSessionToken","l":"expiryTime"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerDocsOptions.States","l":"FAILED"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument.State","l":"FAILED"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDbUpdatesOptions","l":"feed()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions","l":"feed()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDbUpdatesOptions.Builder","l":"feed(String)","u":"feed(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"feed(String)","u":"feed(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration","l":"fields()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexDefinition","l":"fields()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions","l":"fields()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions","l":"fields()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions","l":"fields()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions","l":"fields()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions","l":"fields()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexDefinition.Builder","l":"fields(List)","u":"fields(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"fields(List)","u":"fields(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostExplainOptions.Builder","l":"fields(List)","u":"fields(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostFindOptions.Builder","l":"fields(List)","u":"fields(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionExplainOptions.Builder","l":"fields(List)","u":"fields(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionFindOptions.Builder","l":"fields(List)","u":"fields(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Builder","l":"fields(Map)","u":"fields(java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions","l":"filter()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"filter(String)","u":"filter(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"filter(String)","u":"filter(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument.Builder","l":"filters(Map)","u":"filters(java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"FINNISH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"FINNISH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"FINNISH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Attachment","l":"follows()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Attachment.Builder","l":"follows(Boolean)","u":"follows(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"FRENCH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"FRENCH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"FRENCH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"GALICIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"GALICIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"GALICIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask.ProcessStatus","l":"GARBAGE_COLLECTING"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"GERMAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"GERMAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"GERMAN"},{"p":"com.ibm.cloud.cloudant.security","c":"CouchDbSessionAuthenticator.CouchDbSessionToken","l":"getAccessToken()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ContentInformationSizes","l":"getActive()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionInformationSizes","l":"getActive()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getActiveTasks()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getActiveTasks(GetActiveTasksOptions)","u":"getActiveTasks(com.ibm.cloud.cloudant.v1.model.GetActiveTasksOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetActiveTasksOptions","l":"GetActiveTasksOptions()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getActivityTrackerEvents()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getActivityTrackerEvents(GetActivityTrackerEventsOptions)","u":"getActivityTrackerEvents(com.ibm.cloud.cloudant.v1.model.GetActivityTrackerEventsOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetActivityTrackerEventsOptions","l":"GetActivityTrackerEventsOptions()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getAllDbs()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getAllDbs(GetAllDbsOptions)","u":"getAllDbs(com.ibm.cloud.cloudant.v1.model.GetAllDbsOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"MembershipInformation","l":"getAllNodes()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getAttachment(GetAttachmentOptions)","u":"getAttachment(com.ibm.cloud.cloudant.v1.model.GetAttachmentOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"getAttachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document","l":"getAttachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getAttachments()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SessionAuthentication","l":"getAuthenticated()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SessionAuthentication","l":"getAuthenticationDb()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SessionAuthentication","l":"getAuthenticationHandlers()"},{"p":"com.ibm.cloud.cloudant.internal","c":"DelegatingAuthenticatorFactory","l":"getAuthenticator(String)","u":"getAuthenticator(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ThroughputInformation","l":"getBlocks()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultOpts","l":"getBookmark()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"FindResult","l":"getBookmark()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResult","l":"getBookmark()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResultProperties","l":"getBookmark()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getBulkGetAttempts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getBulkGetDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResult","l":"getBy()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResultProperties","l":"getBy()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getCapacityThroughputInformation()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getCapacityThroughputInformation(GetCapacityThroughputInformationOptions)","u":"getCapacityThroughputInformation(com.ibm.cloud.cloudant.v1.model.GetCapacityThroughputInformationOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetCapacityThroughputInformationOptions","l":"GetCapacityThroughputInformationOptions()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocsResultRow","l":"getCausedBy()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocumentResult","l":"getCausedBy()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewResultRow","l":"getCausedBy()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ChangesResultItem","l":"getChanges()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getChangesDone()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getChangesPending()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerInfo","l":"getChangesPending()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getCheckpointedSourceSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerInfo","l":"getCheckpointedSourceSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getCheckpointInterval()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getCheckpointInterval()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformation","l":"getCluster()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"MembershipInformation","l":"getClusterNodes()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentViewIndex","l":"getCollatorVersions()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchIndexInfo","l":"getCommittedSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformation","l":"getCommittedUpdateSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformation","l":"getCompactedSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"getConflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document","l":"getConflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultMrArgs","l":"getConflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getConflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getConnectionTimeout()"},{"p":"com.ibm.cloud.cloudant.security","c":"CouchDbSessionAuthenticator","l":"getCookieJar()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getCorsInformation()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getCorsInformation(GetCorsInformationOptions)","u":"getCorsInformation(com.ibm.cloud.cloudant.v1.model.GetCorsInformationOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetCorsInformationOptions","l":"GetCorsInformationOptions()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ServerInformation","l":"getCouchdb()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionedIndexesInformation","l":"getCount()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionInformationIndexes","l":"getCount()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResult","l":"getCounts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResultProperties","l":"getCounts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getCreateTargetParams()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"CapacityThroughputInformation","l":"getCurrent()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getCurrentThroughputInformation()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getCurrentThroughputInformation(GetCurrentThroughputInformationOptions)","u":"getCurrentThroughputInformation(com.ibm.cloud.cloudant.v1.model.GetCurrentThroughputInformationOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetCurrentThroughputInformationOptions","l":"GetCurrentThroughputInformationOptions()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getDatabase()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument","l":"getDatabase()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJob","l":"getDatabase()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getDatabaseInformation(GetDatabaseInformationOptions)","u":"getDatabaseInformation(com.ibm.cloud.cloudant.v1.model.GetDatabaseInformationOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResult","l":"getDbname()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformation","l":"getDbName()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DbEvent","l":"getDbName()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionInformation","l":"getDbName()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getDbUpdates()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getDbUpdates(GetDbUpdatesOptions)","u":"getDbUpdates(com.ibm.cloud.cloudant.v1.model.GetDbUpdatesOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexInformation","l":"getDdoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexInformation","l":"getDef()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"getDeletedConflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document","l":"getDeletedConflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getDeletedConflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getDesignDocument()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getDesignDocument(GetDesignDocumentOptions)","u":"getDesignDocument(com.ibm.cloud.cloudant.v1.model.GetDesignDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getDesignDocumentInformation(GetDesignDocumentInformationOptions)","u":"getDesignDocumentInformation(com.ibm.cloud.cloudant.v1.model.GetDesignDocumentInformationOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultMrArgs","l":"getDirection()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformation","l":"getDiskFormatVersion()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchIndexInfo","l":"getDiskSize()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ChangesResultItem","l":"getDoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocsResultRow","l":"getDoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResultRow","l":"getDoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewResultRow","l":"getDoc()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformation","l":"getDocCount()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionInformation","l":"getDocCount()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchIndexInfo","l":"getDocCount()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformation","l":"getDocDelCount()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionInformation","l":"getDocDelCount()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchIndexInfo","l":"getDocDelCount()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getDocId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument","l":"getDocId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJob","l":"getDocId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getDocIds()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkGetResultItem","l":"getDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"FindResult","l":"getDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocsResult","l":"getDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getDocsRead()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerInfo","l":"getDocsRead()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getDocsWritten()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerInfo","l":"getDocsWritten()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getDocument(GetDocumentOptions)","u":"getDocument(com.ibm.cloud.cloudant.v1.model.GetDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getDocumentAsMixed(GetDocumentOptions)","u":"getDocumentAsMixed(com.ibm.cloud.cloudant.v1.model.GetDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getDocumentAsRelated(GetDocumentOptions)","u":"getDocumentAsRelated(com.ibm.cloud.cloudant.v1.model.GetDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getDocumentAsStream(GetDocumentOptions)","u":"getDocumentAsStream(com.ibm.cloud.cloudant.v1.model.GetDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getDocumentShardsInfo(GetDocumentShardsInfoOptions)","u":"getDocumentShardsInfo(com.ibm.cloud.cloudant.v1.model.GetDocumentShardsInfoOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getDocWriteFailures()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerInfo","l":"getDocWriteFailures()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultMrArgs","l":"getEndKey()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformation","l":"getEngine()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkGetResultDocument","l":"getError()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DbsInfoResult","l":"getError()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocsResultRow","l":"getError()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocumentResult","l":"getError()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerInfo","l":"getError()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewResultRow","l":"getError()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument","l":"getErrorCount()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"FindResult","l":"getExecutionStats()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExecutionStats","l":"getExecutionTimeMs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ContentInformationSizes","l":"getExternal()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionInformationSizes","l":"getExternal()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ServerInformation","l":"getFeatures()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ServerInformation","l":"getFeaturesFlags()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResult","l":"getFields()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultOpts","l":"getFields()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResultRow","l":"getFields()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ContentInformationSizes","l":"getFile()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getFilter()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"getFilters()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResult","l":"getGroups()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResultRow","l":"getHighlights()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJob","l":"getHistory()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getHttpConnections()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkGetResultItem","l":"getId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ChangesResultItem","l":"getId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"getId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocsResultRow","l":"getId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document","l":"getId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocumentResult","l":"getId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexResult","l":"getId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument","l":"getId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJob","l":"getId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResultRow","l":"getId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewResultRow","l":"getId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getIndex()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResult","l":"getIndex()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getIndexerPid()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"getIndexes()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexesInformation","l":"getIndexes()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionedIndexesInformation","l":"getIndexes()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionInformationIndexes","l":"getIndexes()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getIndexesInformation(GetIndexesInformationOptions)","u":"getIndexesInformation(com.ibm.cloud.cloudant.v1.model.GetIndexesInformationOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DbsInfoResult","l":"getInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument","l":"getInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJob","l":"getInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SessionInformation","l":"getInfo()"},{"p":"","c":"GetInfoFromExistingDatabase","l":"GetInfoFromExistingDatabase()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJobsResult","l":"getJobs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ApiKeysResult","l":"getKey()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DbsInfoResult","l":"getKey()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocsResultRow","l":"getKey()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewResultRow","l":"getKey()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"getLanguage()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentViewIndex","l":"getLanguage()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ChangesResult","l":"getLastSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DbUpdates","l":"getLastSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument","l":"getLastUpdated()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResult","l":"getLimit()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultOpts","l":"getLimit()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionedIndexesInformation","l":"getLimit()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionInformationIndexes","l":"getLimit()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getLocalDocument(GetLocalDocumentOptions)","u":"getLocalDocument(com.ibm.cloud.cloudant.v1.model.GetLocalDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"getLocalSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document","l":"getLocalSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getLocalSeq()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getMembershipInformation()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getMembershipInformation(GetMembershipInformationOptions)","u":"getMembershipInformation(com.ibm.cloud.cloudant.v1.model.GetMembershipInformationOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetMembershipInformationOptions","l":"GetMembershipInformationOptions()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"UpdatesPending","l":"getMinimum()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"RevsDiff","l":"getMissing()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getMissingRevisionsFound()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerInfo","l":"getMissingRevisionsFound()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResult","l":"getMrargs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformationCluster","l":"getN()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentInformation","l":"getName()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexField","l":"getName()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexInformation","l":"getName()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexResult","l":"getName()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchInfoResult","l":"getName()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ServerVendor","l":"getName()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getNode()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument","l":"getNode()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJob","l":"getNode()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocumentShardInfo","l":"getNodes()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkGetResultDocument","l":"getOk()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"getOptions()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResult","l":"getOpts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"CorsInformation","l":"getOrigins()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultMrArgs","l":"getPartition()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultOpts","l":"getPartition()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionInformation","l":"getPartition()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResult","l":"getPartitioned()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformation","l":"getPartitionedIndexes()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionInformation","l":"getPartitionedIndexes()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getPartitionInformation(GetPartitionInformationOptions)","u":"getPartitionInformation(com.ibm.cloud.cloudant.v1.model.GetPartitionInformationOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ApiKeysResult","l":"getPassword()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ChangesResult","l":"getPending()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchIndexInfo","l":"getPendingSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getPhase()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getPid()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJob","l":"getPid()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"RevsDiff","l":"getPossibleAncestors()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"UpdatesPending","l":"getPreferred()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getProcessStatus()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getProgress()"},{"p":"com.ibm.cloud.cloudant.common","c":"SdkCommon","l":"getProjectName()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformation","l":"getProps()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformationCluster","l":"getQ()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"CurrentThroughputInformationThroughput","l":"getQuery()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ThroughputInformation","l":"getQuery()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getQueryParams()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformationCluster","l":"getR()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultOpts","l":"getR()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocumentShardInfo","l":"getRange()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResult","l":"getRanges()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResultProperties","l":"getRanges()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"CurrentThroughputInformationThroughput","l":"getRead()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ThroughputInformation","l":"getRead()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocsResultRow","l":"getReason()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocumentResult","l":"getReason()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJobEvent","l":"getReason()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewResultRow","l":"getReason()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getReplicationDocument(GetReplicationDocumentOptions)","u":"getReplicationDocument(com.ibm.cloud.cloudant.v1.model.GetReplicationDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getReplicationId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexResult","l":"getResult()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQueriesResult","l":"getResults()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkGetResult","l":"getResults()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ChangesResult","l":"getResults()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DbUpdates","l":"getResults()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQueriesResult","l":"getResults()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExecutionStats","l":"getResultsReturned()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getRetriesPerRequest()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Change","l":"getRev()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"getRev()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocsResultRowValue","l":"getRev()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document","l":"getRev()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocumentResult","l":"getRev()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getRev()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"getRevisions()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document","l":"getRevisions()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getRevisions()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getRevisionsChecked()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerInfo","l":"getRevisionsChecked()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"getRevsInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document","l":"getRevsInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getRevsInfo()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsResult","l":"getRows()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResult","l":"getRows()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResultProperties","l":"getRows()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewResult","l":"getRows()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getSchedulerDocs()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getSchedulerDocs(GetSchedulerDocsOptions)","u":"getSchedulerDocs(com.ibm.cloud.cloudant.v1.model.GetSchedulerDocsOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getSchedulerDocument(GetSchedulerDocumentOptions)","u":"getSchedulerDocument(com.ibm.cloud.cloudant.v1.model.GetSchedulerDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getSchedulerJob(GetSchedulerJobOptions)","u":"getSchedulerJob(com.ibm.cloud.cloudant.v1.model.GetSchedulerJobOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getSchedulerJobs()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getSchedulerJobs(GetSchedulerJobsOptions)","u":"getSchedulerJobs(com.ibm.cloud.cloudant.v1.model.GetSchedulerJobsOptions)"},{"p":"com.ibm.cloud.cloudant.common","c":"SdkCommon","l":"getSdkHeaders(String)","u":"getSdkHeaders(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.common","c":"SdkCommon","l":"getSdkHeaders(String, String, String)","u":"getSdkHeaders(java.lang.String,java.lang.String,java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionedIndexesDetailedInformation","l":"getSearch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionInformationIndexesIndexes","l":"getSearch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchInfoResult","l":"getSearchIndex()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getSearchInfo(GetSearchInfoOptions)","u":"getSearchInfo(com.ibm.cloud.cloudant.v1.model.GetSearchInfoOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getSecurity(GetSecurityOptions)","u":"getSecurity(com.ibm.cloud.cloudant.v1.model.GetSecurityOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"UpInformation","l":"getSeeds()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResult","l":"getSelector()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getSelector()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ChangesResultItem","l":"getSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DbEvent","l":"getSeq()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getServerInformation()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getServerInformation(GetServerInformationOptions)","u":"getServerInformation(com.ibm.cloud.cloudant.v1.model.GetServerInformationOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetServerInformationOptions","l":"GetServerInformationOptions()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getSessionInformation()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getSessionInformation(GetSessionInformationOptions)","u":"getSessionInformation(com.ibm.cloud.cloudant.v1.model.GetSessionInformationOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSessionInformationOptions","l":"GetSessionInformationOptions()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ShardsInformation","l":"getShards()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getShardsInformation(GetShardsInformationOptions)","u":"getShardsInformation(com.ibm.cloud.cloudant.v1.model.GetShardsInformationOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentViewIndex","l":"getSignature()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchIndexInfo","l":"getSignature()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getSinceSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformation","l":"getSizes()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentViewIndex","l":"getSizes()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionInformation","l":"getSizes()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResult","l":"getSkip()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultOpts","l":"getSkip()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getSocketOptions()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultOpts","l":"getSort()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getSource()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getSource()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument","l":"getSource()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJob","l":"getSource()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getSourceProxy()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument","l":"getSourceProxy()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getSourceSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerInfo","l":"getSourceSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getStartedOn()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultMrArgs","l":"getStartKey()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument","l":"getStartTime()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJob","l":"getStartTime()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument","l":"getState()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"UpInformation","l":"getStatus()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getTarget()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"CapacityThroughputInformation","l":"getTarget()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getTarget()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument","l":"getTarget()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJob","l":"getTarget()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getTargetProxy()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument","l":"getTargetProxy()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"CapacityThroughputInformationCurrent","l":"getThroughput()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"CapacityThroughputInformationTarget","l":"getThroughput()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"CurrentThroughputInformation","l":"getThroughput()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getThroughSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerInfo","l":"getThroughSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJobEvent","l":"getTimestamp()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchAnalyzeResult","l":"getTokens()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"UpdatesPending","l":"getTotal()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getTotalChanges()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExecutionStats","l":"getTotalDocsExamined()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExecutionStats","l":"getTotalKeysExamined()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExecutionStats","l":"getTotalQuorumDocsExamined()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsResult","l":"getTotalRows()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexesInformation","l":"getTotalRows()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocsResult","l":"getTotalRows()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJobsResult","l":"getTotalRows()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResult","l":"getTotalRows()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchResultProperties","l":"getTotalRows()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewResult","l":"getTotalRows()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getType()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DbEvent","l":"getType()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexField","l":"getType()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexInformation","l":"getType()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJobEvent","l":"getType()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultMrArgs","l":"getUpdate()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getUpdatedOn()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsResult","l":"getUpdateSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformation","l":"getUpdateSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewResult","l":"getUpdateSeq()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentViewIndex","l":"getUpdatesPending()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getUpInformation()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getUpInformation(GetUpInformationOptions)","u":"getUpInformation(com.ibm.cloud.cloudant.v1.model.GetUpInformationOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetUpInformationOptions","l":"GetUpInformationOptions()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultOpts","l":"getUseIndex()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getUser()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerJob","l":"getUser()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getUserCtx()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SessionInformation","l":"getUserCtx()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformation","l":"getUuid()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getUuids()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"UuidsResult","l":"getUuids()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"getUuids(GetUuidsOptions)","u":"getUuids(com.ibm.cloud.cloudant.v1.model.GetUuidsOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"getValidateDocUpdate()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocsResultRow","l":"getValue()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewResultRow","l":"getValue()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ServerVendor","l":"getVariant()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ServerInformation","l":"getVendor()"},{"p":"com.ibm.cloud.cloudant.common","c":"SdkCommon","l":"getVersion()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ServerInformation","l":"getVersion()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ServerVendor","l":"getVersion()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"getView()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionedIndexesDetailedInformation","l":"getView()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PartitionInformationIndexesIndexes","l":"getView()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentInformation","l":"getViewIndex()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"getViews()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultMrArgs","l":"getViewType()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformationCluster","l":"getW()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentViewIndex","l":"getWaitingClients()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"FindResult","l":"getWarning()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getWorkerBatchSize()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"getWorkerProcesses()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"CurrentThroughputInformationThroughput","l":"getWrite()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ThroughputInformation","l":"getWrite()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"GREEK"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"GREEK"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"GREEK"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions","l":"group()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions","l":"group()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery","l":"group()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"group(Boolean)","u":"group(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"group(Boolean)","u":"group(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery.Builder","l":"group(Boolean)","u":"group(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"groupField()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"groupField(String)","u":"groupField(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions","l":"groupLevel()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions","l":"groupLevel()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery","l":"groupLevel()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"groupLevel(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"groupLevel(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery.Builder","l":"groupLevel(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"groupLimit()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"groupLimit(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"groupSort()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"groupSort(List)","u":"groupSort(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"headAttachment(HeadAttachmentOptions)","u":"headAttachment(com.ibm.cloud.cloudant.v1.model.HeadAttachmentOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"headDatabase(HeadDatabaseOptions)","u":"headDatabase(com.ibm.cloud.cloudant.v1.model.HeadDatabaseOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"headDesignDocument(HeadDesignDocumentOptions)","u":"headDesignDocument(com.ibm.cloud.cloudant.v1.model.HeadDesignDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"headDocument(HeadDocumentOptions)","u":"headDocument(com.ibm.cloud.cloudant.v1.model.HeadDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabase","l":"headers()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabase.Builder","l":"headers(Map)","u":"headers(java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"headLocalDocument(HeadLocalDocumentOptions)","u":"headLocalDocument(com.ibm.cloud.cloudant.v1.model.HeadLocalDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"headReplicationDocument(HeadReplicationDocumentOptions)","u":"headReplicationDocument(com.ibm.cloud.cloudant.v1.model.HeadReplicationDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"headSchedulerDocument(HeadSchedulerDocumentOptions)","u":"headSchedulerDocument(com.ibm.cloud.cloudant.v1.model.HeadSchedulerDocumentOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"headSchedulerJob(HeadSchedulerJobOptions)","u":"headSchedulerJob(com.ibm.cloud.cloudant.v1.model.HeadSchedulerJobOptions)"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"headUpInformation()"},{"p":"com.ibm.cloud.cloudant.v1","c":"Cloudant","l":"headUpInformation(HeadUpInformationOptions)","u":"headUpInformation(com.ibm.cloud.cloudant.v1.model.HeadUpInformationOptions)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadUpInformationOptions","l":"HeadUpInformationOptions()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDbUpdatesOptions","l":"heartbeat()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions","l":"heartbeat()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDbUpdatesOptions.Builder","l":"heartbeat(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"heartbeat(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions","l":"highlightFields()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"highlightFields()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"highlightFields(List)","u":"highlightFields(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"highlightFields(List)","u":"highlightFields(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions","l":"highlightNumber()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"highlightNumber()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"highlightNumber(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"highlightNumber(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions","l":"highlightPostTag()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"highlightPostTag()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"highlightPostTag(String)","u":"highlightPostTag(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"highlightPostTag(String)","u":"highlightPostTag(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions","l":"highlightPreTag()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"highlightPreTag()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"highlightPreTag(String)","u":"highlightPreTag(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"highlightPreTag(String)","u":"highlightPreTag(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions","l":"highlightSize()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"highlightSize()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"highlightSize(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"highlightSize(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"HINDI"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"HINDI"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"HINDI"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"httpConnections(long)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"HUNGARIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"HUNGARIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"HUNGARIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabaseAuth","l":"iam()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDatabaseAuth.Builder","l":"iam(ReplicationDatabaseAuthIam)","u":"iam(com.ibm.cloud.cloudant.v1.model.ReplicationDatabaseAuthIam)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkGetQueryDocument","l":"id()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"BulkGetQueryDocument.Builder","l":"id(String)","u":"id(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument.Builder","l":"id(String)","u":"id(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document.Builder","l":"id(String)","u":"id(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument.Builder","l":"id(String)","u":"id(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask.Phase","l":"IDS"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Revisions","l":"ids()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Revisions.Builder","l":"ids(List)","u":"ids(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteAttachmentOptions","l":"ifMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDesignDocumentOptions","l":"ifMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDocumentOptions","l":"ifMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteReplicationDocumentOptions","l":"ifMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAttachmentOptions","l":"ifMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadAttachmentOptions","l":"ifMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions","l":"ifMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDesignDocumentOptions","l":"ifMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions","l":"ifMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutReplicationDocumentOptions","l":"ifMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteAttachmentOptions.Builder","l":"ifMatch(String)","u":"ifMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDesignDocumentOptions.Builder","l":"ifMatch(String)","u":"ifMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteDocumentOptions.Builder","l":"ifMatch(String)","u":"ifMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteReplicationDocumentOptions.Builder","l":"ifMatch(String)","u":"ifMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAttachmentOptions.Builder","l":"ifMatch(String)","u":"ifMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadAttachmentOptions.Builder","l":"ifMatch(String)","u":"ifMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutAttachmentOptions.Builder","l":"ifMatch(String)","u":"ifMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDesignDocumentOptions.Builder","l":"ifMatch(String)","u":"ifMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutDocumentOptions.Builder","l":"ifMatch(String)","u":"ifMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PutReplicationDocumentOptions.Builder","l":"ifMatch(String)","u":"ifMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAttachmentOptions","l":"ifNoneMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions","l":"ifNoneMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions","l":"ifNoneMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetLocalDocumentOptions","l":"ifNoneMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetReplicationDocumentOptions","l":"ifNoneMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadAttachmentOptions","l":"ifNoneMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDesignDocumentOptions","l":"ifNoneMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDocumentOptions","l":"ifNoneMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadLocalDocumentOptions","l":"ifNoneMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadReplicationDocumentOptions","l":"ifNoneMatch()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetAttachmentOptions.Builder","l":"ifNoneMatch(String)","u":"ifNoneMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDesignDocumentOptions.Builder","l":"ifNoneMatch(String)","u":"ifNoneMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetDocumentOptions.Builder","l":"ifNoneMatch(String)","u":"ifNoneMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetLocalDocumentOptions.Builder","l":"ifNoneMatch(String)","u":"ifNoneMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetReplicationDocumentOptions.Builder","l":"ifNoneMatch(String)","u":"ifNoneMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadAttachmentOptions.Builder","l":"ifNoneMatch(String)","u":"ifNoneMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDesignDocumentOptions.Builder","l":"ifNoneMatch(String)","u":"ifNoneMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadDocumentOptions.Builder","l":"ifNoneMatch(String)","u":"ifNoneMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadLocalDocumentOptions.Builder","l":"ifNoneMatch(String)","u":"ifNoneMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadReplicationDocumentOptions.Builder","l":"ifNoneMatch(String)","u":"ifNoneMatch(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery","l":"includeDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions","l":"includeDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions","l":"includeDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions","l":"includeDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions","l":"includeDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions","l":"includeDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions","l":"includeDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"includeDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions","l":"includeDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery","l":"includeDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery.Builder","l":"includeDocs(Boolean)","u":"includeDocs(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions.Builder","l":"includeDocs(Boolean)","u":"includeDocs(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostChangesOptions.Builder","l":"includeDocs(Boolean)","u":"includeDocs(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions.Builder","l":"includeDocs(Boolean)","u":"includeDocs(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions.Builder","l":"includeDocs(Boolean)","u":"includeDocs(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"includeDocs(Boolean)","u":"includeDocs(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"includeDocs(Boolean)","u":"includeDocs(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"includeDocs(Boolean)","u":"includeDocs(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"includeDocs(Boolean)","u":"includeDocs(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery.Builder","l":"includeDocs(Boolean)","u":"includeDocs(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions","l":"includeFields()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"includeFields()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"includeFields(List)","u":"includeFields(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"includeFields(List)","u":"includeFields(java.util.List)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery","l":"inclusiveEnd()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions","l":"inclusiveEnd()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions","l":"inclusiveEnd()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions","l":"inclusiveEnd()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions","l":"inclusiveEnd()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions","l":"inclusiveEnd()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery","l":"inclusiveEnd()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery.Builder","l":"inclusiveEnd(Boolean)","u":"inclusiveEnd(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions.Builder","l":"inclusiveEnd(Boolean)","u":"inclusiveEnd(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions.Builder","l":"inclusiveEnd(Boolean)","u":"inclusiveEnd(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions.Builder","l":"inclusiveEnd(Boolean)","u":"inclusiveEnd(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"inclusiveEnd(Boolean)","u":"inclusiveEnd(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"inclusiveEnd(Boolean)","u":"inclusiveEnd(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery.Builder","l":"inclusiveEnd(Boolean)","u":"inclusiveEnd(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteIndexOptions","l":"index()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSearchInfoOptions","l":"index()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostIndexOptions","l":"index()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions","l":"index()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions","l":"index()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchIndexDefinition","l":"index()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostIndexOptions.Builder","l":"index(IndexDefinition)","u":"index(com.ibm.cloud.cloudant.v1.model.IndexDefinition)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteIndexOptions.Builder","l":"index(String)","u":"index(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSearchInfoOptions.Builder","l":"index(String)","u":"index(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionSearchOptions.Builder","l":"index(String)","u":"index(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchOptions.Builder","l":"index(String)","u":"index(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SearchIndexDefinition.Builder","l":"index(String)","u":"index(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexDefinition","l":"indexArrayLengths()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexDefinition.Builder","l":"indexArrayLengths(Boolean)","u":"indexArrayLengths(java.lang.Boolean)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask.Type","l":"INDEXER"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument.Builder","l":"indexes(Map)","u":"indexes(java.util.Map)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexField","l":"IndexField()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"INDONESIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"INDONESIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"INDONESIAN"},{"p":"features","c":"Initialize","l":"Initialize()","u":"%3Cinit%3E()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerDocsOptions.States","l":"INITIALIZING"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SchedulerDocument.State","l":"INITIALIZING"},{"p":"com.ibm.cloud.cloudant.security","c":"CouchDbSessionAuthenticator","l":"invalidateToken()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"IRISH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"IRISH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"IRISH"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"CorsInformation","l":"isAllowCredentials()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"isAutoupdate()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"isCancel()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformation","l":"isCompactRunning()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentViewIndex","l":"isCompactRunning()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultOpts","l":"isConflicts()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"isContinuous()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"isContinuous()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResult","l":"isCovering()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"isCreateTarget()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ChangesResultItem","l":"isDeleted()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocument","l":"isDeleted()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocsResultRowValue","l":"isDeleted()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Document","l":"isDeleted()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"isDeleted()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"CorsInformation","l":"isEnableCors()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultOpts","l":"isExecutionStats()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultMrArgs","l":"isIncludeDocs()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ApiKeysResult","l":"isOk()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DocumentResult","l":"isOk()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Ok","l":"isOk()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"SessionInformation","l":"isOk()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DatabaseInformationProps","l":"isPartitioned()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexInformation","l":"isPartitioned()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultMrArgs","l":"isReduce()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ActiveTask","l":"isRetry()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultMrArgs","l":"isStable()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultOpts","l":"isStable()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultOpts","l":"isStale()"},{"p":"com.ibm.cloud.cloudant.security","c":"CouchDbSessionAuthenticator.CouchDbSessionToken","l":"isTokenValid()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ExplainResultOpts","l":"isUpdate()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentViewIndex","l":"isUpdaterRunning()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"isUseBulkGet()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"isUseCheckpoints()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DesignDocumentViewIndex","l":"isWaitingCommit()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ReplicationDocument","l":"isWinningRevsOnly()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"ITALIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"ITALIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"ITALIAN"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"Analyzer.Name","l":"JAPANESE"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AnalyzerConfiguration.Name","l":"JAPANESE"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostSearchAnalyzeOptions.Analyzer","l":"JAPANESE"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerJobOptions","l":"jobId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadSchedulerJobOptions","l":"jobId()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"GetSchedulerJobOptions.Builder","l":"jobId(String)","u":"jobId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"HeadSchedulerJobOptions.Builder","l":"jobId(String)","u":"jobId(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"DeleteIndexOptions.Type","l":"JSON"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"IndexInformation.Type","l":"JSON"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostIndexOptions.Type","l":"JSON"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery","l":"key()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions","l":"key()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions","l":"key()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions","l":"key()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions","l":"key()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions","l":"key()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery","l":"key()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"key(Object)","u":"key(java.lang.Object)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions.Builder","l":"key(Object)","u":"key(java.lang.Object)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery.Builder","l":"key(Object)","u":"key(java.lang.Object)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery.Builder","l":"key(String)","u":"key(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions.Builder","l":"key(String)","u":"key(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions.Builder","l":"key(String)","u":"key(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions.Builder","l":"key(String)","u":"key(java.lang.String)"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"AllDocsQuery","l":"keys()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostAllDocsOptions","l":"keys()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDbsInfoOptions","l":"keys()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostDesignDocsOptions","l":"keys()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionAllDocsOptions","l":"keys()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions","l":"keys()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostViewOptions","l":"keys()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"ViewQuery","l":"keys()"},{"p":"com.ibm.cloud.cloudant.v1.model","c":"PostPartitionViewOptions.Builder","l":"keys(List