Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions docs/creating-client.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,9 @@ from marklogic import Client
client = Client('http://localhost:8000', auth=('python-user', 'pyth0n'))
```

### MarkLogic Cloud Authentication
### Progress Data Cloud Authentication

When connecting to a [MarkLogic Cloud instance](https://developer.marklogic.com/products/cloud/), you will need to set
When connecting to a Progress Data Cloud instance, you will need to set
the `cloud_api_key` and `base_path` arguments. You only need to specify a `host` as well, as port 443 and HTTPS will be
used by default. For example:

Expand All @@ -85,8 +85,8 @@ from marklogic import Client
client = Client('https://example.marklogic.cloud', cloud_api_key='some-key-value', base_path='/ml/example/manage')
```

MarkLogic Cloud uses an access token for authentication; the access token is generated using the API key value. In some
scenarios, you may wish to set the token expiration time to a value other than the default used by MarkLogic Cloud. To
Progress Data Cloud uses an access token for authentication; the access token is generated using the API key value. In some
scenarios, you may wish to set the token expiration time to a value other than the default used by Progress Data Cloud. To
do so, set the `cloud_token_duration` argument to a number greater than zero that defines the token duration in
minutes:

Expand Down
2 changes: 1 addition & 1 deletion marklogic/cloud_auth.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class MarkLogicCloudAuth(AuthBase):
"""
Handles authenticating with MarkLogic Cloud.
Handles authenticating with Progress Data Cloud.
See https://requests.readthedocs.io/en/latest/user/advanced/#custom-authentication
for more information on custom authentication classes in requests.

Expand Down