File tree 3 files changed +6
-8
lines changed
3 files changed +6
-8
lines changed Original file line number Diff line number Diff line change 224
224
rb-fsevent (0.11.2 )
225
225
rb-inotify (0.10.1 )
226
226
ffi (~> 1.0 )
227
- rexml (3.3.6 )
228
- strscan
227
+ rexml (3.3.9 )
229
228
rouge (3.26.0 )
230
229
ruby2_keywords (0.0.5 )
231
230
rubyzip (2.3.2 )
240
239
faraday (>= 0.17.3 , < 3 )
241
240
simpleidn (0.2.1 )
242
241
unf (~> 0.1.4 )
243
- strscan (3.1.0 )
244
242
terminal-table (1.8.0 )
245
243
unicode-display_width (~> 1.1 , >= 1.1.1 )
246
244
typhoeus (1.4.0 )
Original file line number Diff line number Diff line change @@ -67,9 +67,9 @@ from marklogic import Client
67
67
client = Client('http://localhost:8000', auth=('python-user', 'pyth0n'))
68
68
```
69
69
70
- ### MarkLogic Cloud Authentication
70
+ ### Progress Data Cloud Authentication
71
71
72
- When connecting to a [ MarkLogic Cloud instance] ( https://developer.marklogic.com/products/cloud/ ) , you will need to set
72
+ When connecting to a Progress Data Cloud instance, you will need to set
73
73
the ` cloud_api_key ` and ` base_path ` arguments. You only need to specify a ` host ` as well, as port 443 and HTTPS will be
74
74
used by default. For example:
75
75
@@ -85,8 +85,8 @@ from marklogic import Client
85
85
client = Client('https://example.marklogic.cloud', cloud_api_key='some-key-value', base_path='/ml/example/manage')
86
86
```
87
87
88
- MarkLogic Cloud uses an access token for authentication; the access token is generated using the API key value. In some
89
- scenarios, you may wish to set the token expiration time to a value other than the default used by MarkLogic Cloud. To
88
+ Progress Data Cloud uses an access token for authentication; the access token is generated using the API key value. In some
89
+ scenarios, you may wish to set the token expiration time to a value other than the default used by Progress Data Cloud. To
90
90
do so, set the ` cloud_token_duration ` argument to a number greater than zero that defines the token duration in
91
91
minutes:
92
92
Original file line number Diff line number Diff line change 9
9
10
10
class MarkLogicCloudAuth (AuthBase ):
11
11
"""
12
- Handles authenticating with MarkLogic Cloud.
12
+ Handles authenticating with Progress Data Cloud.
13
13
See https://requests.readthedocs.io/en/latest/user/advanced/#custom-authentication
14
14
for more information on custom authentication classes in requests.
15
15
You can’t perform that action at this time.
0 commit comments