You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
*[delete_api_endpoint](docs/sdks/apiendpoints/README.md#delete_api_endpoint) - Delete an ApiEndpoint.
61
61
*[find_api_endpoint](docs/sdks/apiendpoints/README.md#find_api_endpoint) - Find an ApiEndpoint via its displayName.
@@ -66,13 +66,13 @@ if res.classes is not None:
66
66
*[get_api_endpoint](docs/sdks/apiendpoints/README.md#get_api_endpoint) - Get an ApiEndpoint.
67
67
*[upsert_api_endpoint](docs/sdks/apiendpoints/README.md#upsert_api_endpoint) - Upsert an ApiEndpoint.
68
68
69
-
### [.metadata](docs/sdks/metadata/README.md)
69
+
### [metadata](docs/sdks/metadata/README.md)
70
70
71
71
*[delete_version_metadata](docs/sdks/metadata/README.md#delete_version_metadata) - Delete metadata for a particular apiID and versionID.
72
72
*[get_version_metadata](docs/sdks/metadata/README.md#get_version_metadata) - Get all metadata for a particular apiID and versionID.
73
73
*[insert_version_metadata](docs/sdks/metadata/README.md#insert_version_metadata) - Insert metadata for a particular apiID and versionID.
74
74
75
-
### [.schemas](docs/sdks/schemas/README.md)
75
+
### [schemas](docs/sdks/schemas/README.md)
76
76
77
77
*[delete_schema](docs/sdks/schemas/README.md#delete_schema) - Delete a particular schema revision for an Api.
78
78
*[download_schema](docs/sdks/schemas/README.md#download_schema) - Download the latest schema for a particular apiID.
@@ -83,19 +83,19 @@ if res.classes is not None:
83
83
*[get_schemas](docs/sdks/schemas/README.md#get_schemas) - Get information about all schemas associated with a particular apiID.
84
84
*[register_schema](docs/sdks/schemas/README.md#register_schema) - Register a schema.
85
85
86
-
### [.requests](docs/sdks/requests/README.md)
86
+
### [requests](docs/sdks/requests/README.md)
87
87
88
88
*[generate_request_postman_collection](docs/sdks/requests/README.md#generate_request_postman_collection) - Generate a Postman collection for a particular request.
89
89
*[get_request_from_event_log](docs/sdks/requests/README.md#get_request_from_event_log) - Get information about a particular request.
90
90
*[query_event_log](docs/sdks/requests/README.md#query_event_log) - Query the event log to retrieve a list of requests.
91
91
92
-
### [.plugins](docs/sdks/plugins/README.md)
92
+
### [plugins](docs/sdks/plugins/README.md)
93
93
94
94
*[get_plugins](docs/sdks/plugins/README.md#get_plugins) - Get all plugins for the current workspace.
95
95
*[run_plugin](docs/sdks/plugins/README.md#run_plugin) - Run a plugin
96
96
*[upsert_plugin](docs/sdks/plugins/README.md#upsert_plugin) - Upsert a plugin
97
97
98
-
### [.embeds](docs/sdks/embeds/README.md)
98
+
### [embeds](docs/sdks/embeds/README.md)
99
99
100
100
*[get_embed_access_token](docs/sdks/embeds/README.md#get_embed_access_token) - Get an embed access token for the current workspace.
101
101
*[get_valid_embed_access_tokens](docs/sdks/embeds/README.md#get_valid_embed_access_tokens) - Get all valid embed access tokens for the current workspace.
@@ -125,7 +125,38 @@ Here's an example of one such pagination call:
125
125
<!-- Start Error Handling -->
126
126
# Error Handling
127
127
128
-
Handling errors in your SDK should largely match your expectations. All operations return a response object or raise an error. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate Error type.
128
+
Handling errors in this SDK should largely match your expectations. All operations return a response object or raise an error. If Error objects are specified in your OpenAPI Spec, the SDK will raise the appropriate Error type.
The Python SDK makes API calls using the (requests)[https://pypi.org/project/requests/] HTTP library. In order to provide a convenient way to configure timeouts, cookies, proxies, custom headers, and other low-level configuration, you can initialize the SDK client with a custom `requests.Session` object.
196
227
197
228
198
-
For example, you could specify a header for every request that your sdk makes as follows:
229
+
For example, you could specify a header for every request that this sdk makes as follows:
199
230
200
231
```python
201
232
import speakeasy
@@ -210,12 +241,11 @@ s = speakeasy.Speakeasy(client: http_client)
210
241
211
242
212
243
<!-- Start Authentication -->
213
-
214
244
# Authentication
215
245
216
246
## Per-Client Security Schemes
217
247
218
-
Your SDK supports the following security scheme globally:
248
+
This SDK supports the following security scheme globally:
0 commit comments