ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.274.1

This commit is contained in:
speakeasybot
2024-04-25 00:33:14 +00:00
parent 6748e94a9a
commit 707d9e00b8
385 changed files with 4445 additions and 2632 deletions

View File

@@ -0,0 +1,24 @@
{/* Start Python Global Parameters */}
A parameter is configured globally. This parameter must be set on the SDK client instance itself during initialization. When configured as an option during SDK initialization, This global value will be used as the default on the operations that use it. When such operations are called, there is a place in each to override the global value, if needed.
For example, you can set `X-Plex-Client-Identifier` to `'Postman'` at SDK initialization and then you do not have to pass the same value on calls to operations like `get_pin`. But if you want to do so you may, which will locally override the global setting. See the example code below for a demonstration.
```python
import plex_api
s = plex_api.PlexAPI(
x_plex_client_identifier='Postman',
)
res = s.plex.get_pin(strong=False, x_plex_client_identifier='Postman')
if res.object is not None:
# handle response
pass
```
{/* End Python Global Parameters */}