wds-client 0.2.43__tar.gz → 0.2.44__tar.gz
Sign up to get free protection for your applications and to get access to all the features.
- wds-client-0.2.44/PKG-INFO +12 -0
- {wds-client-0.2.43 → wds-client-0.2.44}/README.md +2 -11
- wds-client-0.2.44/setup.py +41 -0
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_attribute_schema.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_batch_operation.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_batch_record_request.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_batch_response.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_build.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_commit.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_component.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_components.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_db_component.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_error_response.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_general_wds_information_api.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_git.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_inline_object.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_instances_api.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_record_attribute_definition.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_record_query_response.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_record_request.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_record_response.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_record_type_schema.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_records_api.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_request_body_search.py +1 -1
- wds-client-0.2.44/test/test_schema_api.py +54 -0
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_search_operator.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_search_request.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_search_sort_direction.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_stack_trace_element.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_status_response.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_tsv_upload_response.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/test/test_version_response.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/__init__.py +2 -2
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/api/general_wds_information_api.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/api/instances_api.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/api/records_api.py +1 -1
- wds-client-0.2.44/wds_client/api/schema_api.py +420 -0
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/api_client.py +2 -2
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/configuration.py +2 -2
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/exceptions.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/__init__.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/attribute_schema.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/batch_operation.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/batch_record_request.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/batch_response.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/build.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/commit.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/component.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/components.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/db_component.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/error_response.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/git.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/inline_object.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/record_attribute_definition.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/record_query_response.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/record_request.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/record_response.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/record_type_schema.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/request_body_search.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/search_operator.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/search_request.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/search_sort_direction.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/stack_trace_element.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/status_response.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/tsv_upload_response.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/models/version_response.py +1 -1
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/rest.py +1 -1
- wds-client-0.2.44/wds_client.egg-info/PKG-INFO +12 -0
- wds-client-0.2.43/PKG-INFO +0 -12
- wds-client-0.2.43/setup.py +0 -41
- wds-client-0.2.43/test/test_schema_api.py +0 -82
- wds-client-0.2.43/wds_client/api/schema_api.py +0 -989
- wds-client-0.2.43/wds_client.egg-info/PKG-INFO +0 -12
- {wds-client-0.2.43 → wds-client-0.2.44}/setup.cfg +0 -0
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client/api/__init__.py +0 -0
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client.egg-info/SOURCES.txt +0 -0
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client.egg-info/dependency_links.txt +0 -0
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client.egg-info/requires.txt +0 -0
- {wds-client-0.2.43 → wds-client-0.2.44}/wds_client.egg-info/top_level.txt +0 -0
@@ -0,0 +1,12 @@
|
|
1
|
+
Metadata-Version: 2.1
|
2
|
+
Name: wds-client
|
3
|
+
Version: 0.2.44
|
4
|
+
Summary: Workspace Data Service
|
5
|
+
Home-page:
|
6
|
+
Author: OpenAPI Generator community
|
7
|
+
Author-email: team@openapitools.org
|
8
|
+
License: BSD
|
9
|
+
Keywords: OpenAPI,OpenAPI-Generator,Workspace Data Service
|
10
|
+
|
11
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
12
|
+
|
@@ -1,10 +1,5 @@
|
|
1
1
|
# wds-client
|
2
|
-
This page lists
|
3
|
-
are marked as deprecated. This is incongruous, but by using the deprecated flag, we can force
|
4
|
-
swagger-ui to display those endpoints differently.
|
5
|
-
|
6
|
-
Error codes and responses for proposed APIs are likely to change as we gain more clarity on their
|
7
|
-
implementation.
|
2
|
+
This page lists current APIs.
|
8
3
|
|
9
4
|
As of v0.2, all APIs are subject to change without notice.
|
10
5
|
|
@@ -12,7 +7,7 @@ As of v0.2, all APIs are subject to change without notice.
|
|
12
7
|
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
13
8
|
|
14
9
|
- API version: v0.2
|
15
|
-
- Package version: 0.2.
|
10
|
+
- Package version: 0.2.44
|
16
11
|
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
17
12
|
|
18
13
|
## Requirements.
|
@@ -101,13 +96,9 @@ Class | Method | HTTP request | Description
|
|
101
96
|
*RecordsApi* | [**query_records**](docs/RecordsApi.md#query_records) | **POST** /{instanceid}/search/{v}/{type} | Query records
|
102
97
|
*RecordsApi* | [**update_record**](docs/RecordsApi.md#update_record) | **PATCH** /{instanceid}/records/{v}/{type}/{id} | Update record
|
103
98
|
*RecordsApi* | [**upload_tsv**](docs/RecordsApi.md#upload_tsv) | **POST** /{instanceid}/tsv/{v}/{type} | Import records to a record type from a tsv file
|
104
|
-
*SchemaApi* | [**delete_attribute**](docs/SchemaApi.md#delete_attribute) | **DELETE** /{instanceid}/types/{type}/attributes/{v}/{attribute} | Delete attribute (pending)
|
105
99
|
*SchemaApi* | [**delete_record_type**](docs/SchemaApi.md#delete_record_type) | **DELETE** /{instanceid}/types/{v}/{type} | Delete record type
|
106
100
|
*SchemaApi* | [**describe_all_record_types**](docs/SchemaApi.md#describe_all_record_types) | **GET** /{instanceid}/types/{v} | Describe all record types
|
107
|
-
*SchemaApi* | [**describe_attribute**](docs/SchemaApi.md#describe_attribute) | **GET** /{instanceid}/types/{type}/attributes/{v}/{attribute} | Describe attribute (pending)
|
108
101
|
*SchemaApi* | [**describe_record_type**](docs/SchemaApi.md#describe_record_type) | **GET** /{instanceid}/types/{v}/{type} | Describe record type
|
109
|
-
*SchemaApi* | [**update_attribute**](docs/SchemaApi.md#update_attribute) | **PATCH** /{instanceid}/types/{type}/attributes/{v}/{attribute} | Update attribute (pending)
|
110
|
-
*SchemaApi* | [**update_record_type**](docs/SchemaApi.md#update_record_type) | **PATCH** /{instanceid}/types/{v}/{type} | Update record type (pending)
|
111
102
|
|
112
103
|
|
113
104
|
## Documentation For Models
|
@@ -0,0 +1,41 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
Workspace Data Service
|
5
|
+
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
|
+
|
8
|
+
The version of the OpenAPI document: v0.2
|
9
|
+
Generated by: https://openapi-generator.tech
|
10
|
+
"""
|
11
|
+
|
12
|
+
|
13
|
+
from setuptools import setup, find_packages # noqa: H301
|
14
|
+
|
15
|
+
NAME = "wds-client"
|
16
|
+
VERSION = "0.2.44"
|
17
|
+
# To install the library, run the following
|
18
|
+
#
|
19
|
+
# python setup.py install
|
20
|
+
#
|
21
|
+
# prerequisite: setuptools
|
22
|
+
# http://pypi.python.org/pypi/setuptools
|
23
|
+
|
24
|
+
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
|
25
|
+
|
26
|
+
setup(
|
27
|
+
name=NAME,
|
28
|
+
version=VERSION,
|
29
|
+
description="Workspace Data Service",
|
30
|
+
author="OpenAPI Generator community",
|
31
|
+
author_email="team@openapitools.org",
|
32
|
+
url="",
|
33
|
+
keywords=["OpenAPI", "OpenAPI-Generator", "Workspace Data Service"],
|
34
|
+
install_requires=REQUIRES,
|
35
|
+
packages=find_packages(exclude=["test", "tests"]),
|
36
|
+
include_package_data=True,
|
37
|
+
license="BSD",
|
38
|
+
long_description="""\
|
39
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
40
|
+
"""
|
41
|
+
)
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -0,0 +1,54 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
|
3
|
+
"""
|
4
|
+
Workspace Data Service
|
5
|
+
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
|
+
|
8
|
+
The version of the OpenAPI document: v0.2
|
9
|
+
Generated by: https://openapi-generator.tech
|
10
|
+
"""
|
11
|
+
|
12
|
+
|
13
|
+
from __future__ import absolute_import
|
14
|
+
|
15
|
+
import unittest
|
16
|
+
|
17
|
+
import wds_client
|
18
|
+
from wds_client.api.schema_api import SchemaApi # noqa: E501
|
19
|
+
from wds_client.rest import ApiException
|
20
|
+
|
21
|
+
|
22
|
+
class TestSchemaApi(unittest.TestCase):
|
23
|
+
"""SchemaApi unit test stubs"""
|
24
|
+
|
25
|
+
def setUp(self):
|
26
|
+
self.api = wds_client.api.schema_api.SchemaApi() # noqa: E501
|
27
|
+
|
28
|
+
def tearDown(self):
|
29
|
+
pass
|
30
|
+
|
31
|
+
def test_delete_record_type(self):
|
32
|
+
"""Test case for delete_record_type
|
33
|
+
|
34
|
+
Delete record type # noqa: E501
|
35
|
+
"""
|
36
|
+
pass
|
37
|
+
|
38
|
+
def test_describe_all_record_types(self):
|
39
|
+
"""Test case for describe_all_record_types
|
40
|
+
|
41
|
+
Describe all record types # noqa: E501
|
42
|
+
"""
|
43
|
+
pass
|
44
|
+
|
45
|
+
def test_describe_record_type(self):
|
46
|
+
"""Test case for describe_record_type
|
47
|
+
|
48
|
+
Describe record type # noqa: E501
|
49
|
+
"""
|
50
|
+
pass
|
51
|
+
|
52
|
+
|
53
|
+
if __name__ == '__main__':
|
54
|
+
unittest.main()
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -5,7 +5,7 @@
|
|
5
5
|
"""
|
6
6
|
Workspace Data Service
|
7
7
|
|
8
|
-
This page lists
|
8
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
9
9
|
|
10
10
|
The version of the OpenAPI document: v0.2
|
11
11
|
Generated by: https://openapi-generator.tech
|
@@ -14,7 +14,7 @@
|
|
14
14
|
|
15
15
|
from __future__ import absolute_import
|
16
16
|
|
17
|
-
__version__ = "0.2.
|
17
|
+
__version__ = "0.2.44"
|
18
18
|
|
19
19
|
# import apis into sdk package
|
20
20
|
from wds_client.api.general_wds_information_api import GeneralWDSInformationApi
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|
@@ -3,7 +3,7 @@
|
|
3
3
|
"""
|
4
4
|
Workspace Data Service
|
5
5
|
|
6
|
-
This page lists
|
6
|
+
This page lists current APIs. As of v0.2, all APIs are subject to change without notice. # noqa: E501
|
7
7
|
|
8
8
|
The version of the OpenAPI document: v0.2
|
9
9
|
Generated by: https://openapi-generator.tech
|