ci: regenerated with OpenAPI Doc 0.0.3, Speakeasy CLI 1.136.1

This commit is contained in:
speakeasybot
2024-01-11 22:04:07 +00:00
parent 5121a0365c
commit a72d859944
419 changed files with 5569 additions and 957 deletions

View File

@@ -9,10 +9,10 @@ You can override the default server globally by passing a server index to the `s
#### Example
```python
import sdk
import plex_api
s = sdk.SDK(
server_idx=1,
s = plex_api.PlexAPI(
server_idx=0,
access_token="<YOUR_API_KEY_HERE>",
)
@@ -35,10 +35,10 @@ Some of the server options above contain variables. If you want to set the value
The default server can also be overridden globally by passing a URL to the `server_url: str` optional parameter when initializing the SDK client instance. For example:
```python
import sdk
import plex_api
s = sdk.SDK(
server_url="http://10.10.10.47:32400",
s = plex_api.PlexAPI(
server_url="{protocol}://{ip}:{port}",
access_token="<YOUR_API_KEY_HERE>",
)