Skip to content

Commit 29f8390

Browse files
author
SachinVarghese
committed
Updating generated SDK for Deploy v2.0.0-dev
1 parent c54dec9 commit 29f8390

File tree

154 files changed

+11345
-5360
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

154 files changed

+11345
-5360
lines changed

config/python.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"projectName": "seldon-deploy-sdk",
33
"packageName": "seldon_deploy_sdk",
4-
"packageVersion": "1.6.0",
4+
"packageVersion": "2.0.0-dev",
55
"packageUrl": "https://deploy.seldon.io"
66
}

python/README.md

Lines changed: 58 additions & 42 deletions
Large diffs are not rendered by default.

python/docs/AIXExplainerSpec.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

python/docs/AlibiExplainerSpec.md

Lines changed: 0 additions & 14 deletions
This file was deleted.

python/docs/Batcher.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

python/docs/DriftDetectorApi.md

Lines changed: 41 additions & 41 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,22 @@ All URIs are relative to *http://X.X.X.X/seldon-deploy/api/v1alpha1*
44

55
Method | HTTP request | Description
66
------------- | ------------- | -------------
7-
[**create_drift_detector_inference_service**](DriftDetectorApi.md#create_drift_detector_inference_service) | **POST** /namespaces/{namespace}/inferenceservices/{name}/monitor/drift-detector |
87
[**create_drift_detector_seldon_deployment**](DriftDetectorApi.md#create_drift_detector_seldon_deployment) | **POST** /namespaces/{namespace}/seldondeployments/{name}/monitor/drift-detector |
9-
[**delete_drift_detector_inference_service**](DriftDetectorApi.md#delete_drift_detector_inference_service) | **DELETE** /namespaces/{namespace}/inferenceservices/{name}/monitor/drift-detector/{detectorName} |
8+
[**create_drift_detector_seldon_pipeline**](DriftDetectorApi.md#create_drift_detector_seldon_pipeline) | **POST** /namespaces/{namespace}/pipelines/{name}/monitor/drift-detector |
109
[**delete_drift_detector_seldon_deployment**](DriftDetectorApi.md#delete_drift_detector_seldon_deployment) | **DELETE** /namespaces/{namespace}/seldondeployments/{name}/monitor/drift-detector/{detectorName} |
11-
[**list_drift_detector_inference_service**](DriftDetectorApi.md#list_drift_detector_inference_service) | **GET** /namespaces/{namespace}/inferenceservices/{name}/monitor/drift-detector |
10+
[**delete_drift_detector_seldon_pipeline**](DriftDetectorApi.md#delete_drift_detector_seldon_pipeline) | **DELETE** /namespaces/{namespace}/pipelines/{name}/monitor/drift-detector/{detectorName} |
1211
[**list_drift_detector_seldon_deployment**](DriftDetectorApi.md#list_drift_detector_seldon_deployment) | **GET** /namespaces/{namespace}/seldondeployments/{name}/monitor/drift-detector |
13-
[**read_drift_detector_inference_service**](DriftDetectorApi.md#read_drift_detector_inference_service) | **GET** /namespaces/{namespace}/inferenceservices/{name}/monitor/drift-detector/{detectorName} |
12+
[**list_drift_detector_seldon_pipeline**](DriftDetectorApi.md#list_drift_detector_seldon_pipeline) | **GET** /namespaces/{namespace}/pipelines/{name}/monitor/drift-detector |
1413
[**read_drift_detector_seldon_deployment**](DriftDetectorApi.md#read_drift_detector_seldon_deployment) | **GET** /namespaces/{namespace}/seldondeployments/{name}/monitor/drift-detector/{detectorName} |
14+
[**read_drift_detector_seldon_pipeline**](DriftDetectorApi.md#read_drift_detector_seldon_pipeline) | **GET** /namespaces/{namespace}/pipelines/{name}/monitor/drift-detector/{detectorName} |
1515

1616

17-
# **create_drift_detector_inference_service**
18-
> DetectorData create_drift_detector_inference_service(name, namespace, detector_data)
17+
# **create_drift_detector_seldon_deployment**
18+
> DetectorData create_drift_detector_seldon_deployment(name, namespace, detector_data)
1919
2020

2121

22-
Create the specified Inference Service Drift Detector
22+
Create the specified Seldon Deployment Drift Detector
2323

2424
### Example
2525
```python
@@ -40,10 +40,10 @@ namespace = 'namespace_example' # str | Namespace provides a logical grouping of
4040
detector_data = seldon_deploy_sdk.DetectorConfigData() # DetectorConfigData | Deployment Detector Data
4141

4242
try:
43-
api_response = api_instance.create_drift_detector_inference_service(name, namespace, detector_data)
43+
api_response = api_instance.create_drift_detector_seldon_deployment(name, namespace, detector_data)
4444
pprint(api_response)
4545
except ApiException as e:
46-
print("Exception when calling DriftDetectorApi->create_drift_detector_inference_service: %s\n" % e)
46+
print("Exception when calling DriftDetectorApi->create_drift_detector_seldon_deployment: %s\n" % e)
4747
```
4848

4949
### Parameters
@@ -69,12 +69,12 @@ Name | Type | Description | Notes
6969

7070
[[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)
7171

72-
# **create_drift_detector_seldon_deployment**
73-
> DetectorData create_drift_detector_seldon_deployment(name, namespace, detector_data)
72+
# **create_drift_detector_seldon_pipeline**
73+
> DetectorData create_drift_detector_seldon_pipeline(name, namespace, detector_data)
7474
7575

7676

77-
Create the specified Seldon Deployment Drift Detector
77+
Create the specified Seldon Pipeline Drift Detector
7878

7979
### Example
8080
```python
@@ -95,10 +95,10 @@ namespace = 'namespace_example' # str | Namespace provides a logical grouping of
9595
detector_data = seldon_deploy_sdk.DetectorConfigData() # DetectorConfigData | Deployment Detector Data
9696

9797
try:
98-
api_response = api_instance.create_drift_detector_seldon_deployment(name, namespace, detector_data)
98+
api_response = api_instance.create_drift_detector_seldon_pipeline(name, namespace, detector_data)
9999
pprint(api_response)
100100
except ApiException as e:
101-
print("Exception when calling DriftDetectorApi->create_drift_detector_seldon_deployment: %s\n" % e)
101+
print("Exception when calling DriftDetectorApi->create_drift_detector_seldon_pipeline: %s\n" % e)
102102
```
103103

104104
### Parameters
@@ -124,8 +124,8 @@ Name | Type | Description | Notes
124124

125125
[[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)
126126

127-
# **delete_drift_detector_inference_service**
128-
> Message delete_drift_detector_inference_service(name, namespace, detector_name)
127+
# **delete_drift_detector_seldon_deployment**
128+
> Message delete_drift_detector_seldon_deployment(name, namespace, detector_name)
129129
130130

131131

@@ -150,10 +150,10 @@ namespace = 'namespace_example' # str | Namespace provides a logical grouping of
150150
detector_name = 'detector_name_example' # str | Detector Name
151151

152152
try:
153-
api_response = api_instance.delete_drift_detector_inference_service(name, namespace, detector_name)
153+
api_response = api_instance.delete_drift_detector_seldon_deployment(name, namespace, detector_name)
154154
pprint(api_response)
155155
except ApiException as e:
156-
print("Exception when calling DriftDetectorApi->delete_drift_detector_inference_service: %s\n" % e)
156+
print("Exception when calling DriftDetectorApi->delete_drift_detector_seldon_deployment: %s\n" % e)
157157
```
158158

159159
### Parameters
@@ -179,12 +179,12 @@ Name | Type | Description | Notes
179179

180180
[[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)
181181

182-
# **delete_drift_detector_seldon_deployment**
183-
> Message delete_drift_detector_seldon_deployment(name, namespace, detector_name)
182+
# **delete_drift_detector_seldon_pipeline**
183+
> Message delete_drift_detector_seldon_pipeline(name, namespace, detector_name)
184184
185185

186186

187-
Read the specified Seldon Deployment Drift Detector
187+
Read the specified Seldon Pipeline Drift Detector
188188

189189
### Example
190190
```python
@@ -205,10 +205,10 @@ namespace = 'namespace_example' # str | Namespace provides a logical grouping of
205205
detector_name = 'detector_name_example' # str | Detector Name
206206

207207
try:
208-
api_response = api_instance.delete_drift_detector_seldon_deployment(name, namespace, detector_name)
208+
api_response = api_instance.delete_drift_detector_seldon_pipeline(name, namespace, detector_name)
209209
pprint(api_response)
210210
except ApiException as e:
211-
print("Exception when calling DriftDetectorApi->delete_drift_detector_seldon_deployment: %s\n" % e)
211+
print("Exception when calling DriftDetectorApi->delete_drift_detector_seldon_pipeline: %s\n" % e)
212212
```
213213

214214
### Parameters
@@ -234,8 +234,8 @@ Name | Type | Description | Notes
234234

235235
[[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)
236236

237-
# **list_drift_detector_inference_service**
238-
> list[DetectorData] list_drift_detector_inference_service(name, namespace)
237+
# **list_drift_detector_seldon_deployment**
238+
> list[DetectorData] list_drift_detector_seldon_deployment(name, namespace)
239239
240240

241241

@@ -259,10 +259,10 @@ name = 'name_example' # str | Name identifies a resource
259259
namespace = 'namespace_example' # str | Namespace provides a logical grouping of resources
260260

261261
try:
262-
api_response = api_instance.list_drift_detector_inference_service(name, namespace)
262+
api_response = api_instance.list_drift_detector_seldon_deployment(name, namespace)
263263
pprint(api_response)
264264
except ApiException as e:
265-
print("Exception when calling DriftDetectorApi->list_drift_detector_inference_service: %s\n" % e)
265+
print("Exception when calling DriftDetectorApi->list_drift_detector_seldon_deployment: %s\n" % e)
266266
```
267267

268268
### Parameters
@@ -287,12 +287,12 @@ Name | Type | Description | Notes
287287

288288
[[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)
289289

290-
# **list_drift_detector_seldon_deployment**
291-
> list[DetectorData] list_drift_detector_seldon_deployment(name, namespace)
290+
# **list_drift_detector_seldon_pipeline**
291+
> list[DetectorData] list_drift_detector_seldon_pipeline(name, namespace)
292292
293293

294294

295-
Read the specified Seldon Deployment Drift Detector
295+
List the specified Seldon Pipeline Drift Detector
296296

297297
### Example
298298
```python
@@ -312,10 +312,10 @@ name = 'name_example' # str | Name identifies a resource
312312
namespace = 'namespace_example' # str | Namespace provides a logical grouping of resources
313313

314314
try:
315-
api_response = api_instance.list_drift_detector_seldon_deployment(name, namespace)
315+
api_response = api_instance.list_drift_detector_seldon_pipeline(name, namespace)
316316
pprint(api_response)
317317
except ApiException as e:
318-
print("Exception when calling DriftDetectorApi->list_drift_detector_seldon_deployment: %s\n" % e)
318+
print("Exception when calling DriftDetectorApi->list_drift_detector_seldon_pipeline: %s\n" % e)
319319
```
320320

321321
### Parameters
@@ -340,8 +340,8 @@ Name | Type | Description | Notes
340340

341341
[[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)
342342

343-
# **read_drift_detector_inference_service**
344-
> DetectorData read_drift_detector_inference_service(name, namespace, detector_name)
343+
# **read_drift_detector_seldon_deployment**
344+
> DetectorData read_drift_detector_seldon_deployment(name, namespace, detector_name)
345345
346346

347347

@@ -366,10 +366,10 @@ namespace = 'namespace_example' # str | Namespace provides a logical grouping of
366366
detector_name = 'detector_name_example' # str | Detector Name
367367

368368
try:
369-
api_response = api_instance.read_drift_detector_inference_service(name, namespace, detector_name)
369+
api_response = api_instance.read_drift_detector_seldon_deployment(name, namespace, detector_name)
370370
pprint(api_response)
371371
except ApiException as e:
372-
print("Exception when calling DriftDetectorApi->read_drift_detector_inference_service: %s\n" % e)
372+
print("Exception when calling DriftDetectorApi->read_drift_detector_seldon_deployment: %s\n" % e)
373373
```
374374

375375
### Parameters
@@ -395,12 +395,12 @@ Name | Type | Description | Notes
395395

396396
[[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)
397397

398-
# **read_drift_detector_seldon_deployment**
399-
> DetectorData read_drift_detector_seldon_deployment(name, namespace, detector_name)
398+
# **read_drift_detector_seldon_pipeline**
399+
> DetectorData read_drift_detector_seldon_pipeline(name, namespace, detector_name)
400400
401401

402402

403-
Read the specified Seldon Deployment Drift Detector
403+
Read the specified Seldon Pipeline Drift Detector
404404

405405
### Example
406406
```python
@@ -421,10 +421,10 @@ namespace = 'namespace_example' # str | Namespace provides a logical grouping of
421421
detector_name = 'detector_name_example' # str | Detector Name
422422

423423
try:
424-
api_response = api_instance.read_drift_detector_seldon_deployment(name, namespace, detector_name)
424+
api_response = api_instance.read_drift_detector_seldon_pipeline(name, namespace, detector_name)
425425
pprint(api_response)
426426
except ApiException as e:
427-
print("Exception when calling DriftDetectorApi->read_drift_detector_seldon_deployment: %s\n" % e)
427+
print("Exception when calling DriftDetectorApi->read_drift_detector_seldon_pipeline: %s\n" % e)
428428
```
429429

430430
### Parameters

python/docs/EndpointSpec.md

Lines changed: 0 additions & 12 deletions
This file was deleted.

0 commit comments

Comments
 (0)