Skip to content

Commit

Permalink
build(generated): [WIP] 521-add branch-diff-links
Browse files Browse the repository at this point in the history
Generated SDK source code using:
- Generator version 3.79.0
- Specification version 1.0.0-dev0.1.4
- Automation (cloudant-sdks) version 5d4d9ae

Signed-off-by: cloudant-sdks-automation <[email protected]>
  • Loading branch information
cloudant-sdks-automation committed Oct 20, 2023
1 parent db7cbda commit ae240b2
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 13 deletions.
2 changes: 2 additions & 0 deletions KNOWN_ISSUES.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,3 +84,5 @@ const client = CloudantV1.newInstance({ serviceName: 'YOUR_SERVICE_NAME' });
client.setEnableGzipCompression(false);
...
```

dummy 2
19 changes: 6 additions & 13 deletions cloudant/v1.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1015,9 +1015,8 @@ class CloudantV1 extends CloudantBaseService {
* @param {boolean} [params.partitioned] - Query parameter to specify whether to enable database partitions when
* creating a database.
* @param {number} [params.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.
* range. Its value is set by the service. For more information about modifying database configuration, contact IBM
* Cloudant support.
* @param {OutgoingHttpHeaders} [params.headers] - Custom request headers
* @returns {Promise<CloudantV1.Response<CloudantV1.Ok>>}
*/
Expand Down Expand Up @@ -7449,10 +7448,8 @@ namespace CloudantV1 {
db: string;
/** Query parameter to specify whether to enable database partitions when creating a database. */
partitioned?: boolean;
/** 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.
/** The number of shards in the database. Each shard is a partition of the hash value range. Its value is set by
* the service. For more information about modifying database configuration, contact IBM Cloudant support.
*/
q?: number;
headers?: OutgoingHttpHeaders;
Expand Down Expand Up @@ -10500,9 +10497,7 @@ namespace CloudantV1 {

/** Schema for database cluster information. */
export interface DatabaseInformationCluster {
/** 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.
*/
/** Schema for the number of replicas of a database in a cluster. */
n: number;
/** Schema for the number of shards in a database. Each shard is a partition of the hash value range. */
q: number;
Expand Down Expand Up @@ -11107,9 +11102,7 @@ namespace CloudantV1 {

/** Request parameters to use during target database creation. */
export interface ReplicationCreateTargetParameters {
/** 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.
*/
/** Schema for the number of replicas of a database in a cluster. */
n?: number;
/** Parameter to specify whether to enable database partitions when creating the target database. */
partitioned?: boolean;
Expand Down

0 comments on commit ae240b2

Please sign in to comment.