-
Notifications
You must be signed in to change notification settings - Fork 16
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Adrian Gonzalez-Martin
authored
Jan 31, 2023
1 parent
af04dd7
commit f2986fe
Showing
38 changed files
with
2,185 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"projectName": "seldon-deploy-sdk", | ||
"packageName": "seldon_deploy_sdk", | ||
"packageVersion": "2.0.0", | ||
"packageVersion": "2.0.1", | ||
"packageUrl": "https://deploy.seldon.io" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
# seldon_deploy_sdk.HealthcheckServiceApi | ||
|
||
All URIs are relative to *http://X.X.X.X/seldon-deploy/api/v1alpha1* | ||
|
||
Method | HTTP request | Description | ||
------------- | ------------- | ------------- | ||
[**healthcheck_service_get_dependency_health**](HealthcheckServiceApi.md#healthcheck_service_get_dependency_health) | **GET** /healthcheck/{dependency} | List the current health of a specific Seldon Deploy dependency or all of them | ||
|
||
|
||
# **healthcheck_service_get_dependency_health** | ||
> V1DependencyHealthResponse healthcheck_service_get_dependency_health(dependency) | ||
List the current health of a specific Seldon Deploy dependency or all of them | ||
|
||
### Example | ||
```python | ||
from __future__ import print_function | ||
import time | ||
import seldon_deploy_sdk | ||
from seldon_deploy_sdk.rest import ApiException | ||
from pprint import pprint | ||
|
||
# Configure OAuth2 access token for authorization: OAuth2 | ||
configuration = seldon_deploy_sdk.Configuration() | ||
configuration.access_token = 'YOUR_ACCESS_TOKEN' | ||
|
||
# create an instance of the API class | ||
api_instance = seldon_deploy_sdk.HealthcheckServiceApi(seldon_deploy_sdk.ApiClient(configuration)) | ||
dependency = 'dependency_example' # str | | ||
|
||
try: | ||
# List the current health of a specific Seldon Deploy dependency or all of them | ||
api_response = api_instance.healthcheck_service_get_dependency_health(dependency) | ||
pprint(api_response) | ||
except ApiException as e: | ||
print("Exception when calling HealthcheckServiceApi->healthcheck_service_get_dependency_health: %s\n" % e) | ||
``` | ||
|
||
### Parameters | ||
|
||
Name | Type | Description | Notes | ||
------------- | ------------- | ------------- | ------------- | ||
**dependency** | **str**| | | ||
|
||
### Return type | ||
|
||
[**V1DependencyHealthResponse**](V1DependencyHealthResponse.md) | ||
|
||
### Authorization | ||
|
||
[OAuth2](../README.md#OAuth2) | ||
|
||
### HTTP request headers | ||
|
||
- **Content-Type**: application/json | ||
- **Accept**: application/json | ||
|
||
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# V1DependencyHealthResponse | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
**dependencies_health** | [**list[V1DeployDependencyHealth]**](V1DeployDependencyHealth.md) | | [optional] | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# V1DeployDependency | ||
|
||
## Properties | ||
Name | Type | Description | Notes | ||
------------ | ------------- | ------------- | ------------- | ||
|
||
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md) | ||
|
||
|
Oops, something went wrong.