neops_workflow_engine_client 0.0.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- neops_workflow_engine_client/__init__.py +33 -0
- neops_workflow_engine_client/api/__init__.py +5 -0
- neops_workflow_engine_client/api/default_api.py +505 -0
- neops_workflow_engine_client/api_client.py +797 -0
- neops_workflow_engine_client/api_response.py +21 -0
- neops_workflow_engine_client/configuration.py +450 -0
- neops_workflow_engine_client/exceptions.py +199 -0
- neops_workflow_engine_client/models/__init__.py +16 -0
- neops_workflow_engine_client/py.typed +0 -0
- neops_workflow_engine_client/rest.py +257 -0
- neops_workflow_engine_client-0.0.0.dist-info/METADATA +127 -0
- neops_workflow_engine_client-0.0.0.dist-info/RECORD +13 -0
- neops_workflow_engine_client-0.0.0.dist-info/WHEEL +4 -0
|
@@ -0,0 +1,257 @@
|
|
|
1
|
+
# coding: utf-8
|
|
2
|
+
|
|
3
|
+
"""
|
|
4
|
+
Neops Workflow Engine
|
|
5
|
+
|
|
6
|
+
Neops workflow engine API documentation
|
|
7
|
+
|
|
8
|
+
The version of the OpenAPI document: 1.0
|
|
9
|
+
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
10
|
+
|
|
11
|
+
Do not edit the class manually.
|
|
12
|
+
""" # noqa: E501
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
import io
|
|
16
|
+
import json
|
|
17
|
+
import re
|
|
18
|
+
import ssl
|
|
19
|
+
|
|
20
|
+
import urllib3
|
|
21
|
+
|
|
22
|
+
from neops_workflow_engine_client.exceptions import ApiException, ApiValueError
|
|
23
|
+
|
|
24
|
+
SUPPORTED_SOCKS_PROXIES = {"socks5", "socks5h", "socks4", "socks4a"}
|
|
25
|
+
RESTResponseType = urllib3.HTTPResponse
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
def is_socks_proxy_url(url):
|
|
29
|
+
if url is None:
|
|
30
|
+
return False
|
|
31
|
+
split_section = url.split("://")
|
|
32
|
+
if len(split_section) < 2:
|
|
33
|
+
return False
|
|
34
|
+
else:
|
|
35
|
+
return split_section[0].lower() in SUPPORTED_SOCKS_PROXIES
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
class RESTResponse(io.IOBase):
|
|
39
|
+
|
|
40
|
+
def __init__(self, resp) -> None:
|
|
41
|
+
self.response = resp
|
|
42
|
+
self.status = resp.status
|
|
43
|
+
self.reason = resp.reason
|
|
44
|
+
self.data = None
|
|
45
|
+
|
|
46
|
+
def read(self):
|
|
47
|
+
if self.data is None:
|
|
48
|
+
self.data = self.response.data
|
|
49
|
+
return self.data
|
|
50
|
+
|
|
51
|
+
def getheaders(self):
|
|
52
|
+
"""Returns a dictionary of the response headers."""
|
|
53
|
+
return self.response.headers
|
|
54
|
+
|
|
55
|
+
def getheader(self, name, default=None):
|
|
56
|
+
"""Returns a given response header."""
|
|
57
|
+
return self.response.headers.get(name, default)
|
|
58
|
+
|
|
59
|
+
|
|
60
|
+
class RESTClientObject:
|
|
61
|
+
|
|
62
|
+
def __init__(self, configuration) -> None:
|
|
63
|
+
# urllib3.PoolManager will pass all kw parameters to connectionpool
|
|
64
|
+
# https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/poolmanager.py#L75 # noqa: E501
|
|
65
|
+
# https://github.com/shazow/urllib3/blob/f9409436f83aeb79fbaf090181cd81b784f1b8ce/urllib3/connectionpool.py#L680 # noqa: E501
|
|
66
|
+
# Custom SSL certificates and client certificates: http://urllib3.readthedocs.io/en/latest/advanced-usage.html # noqa: E501
|
|
67
|
+
|
|
68
|
+
# cert_reqs
|
|
69
|
+
if configuration.verify_ssl:
|
|
70
|
+
cert_reqs = ssl.CERT_REQUIRED
|
|
71
|
+
else:
|
|
72
|
+
cert_reqs = ssl.CERT_NONE
|
|
73
|
+
|
|
74
|
+
pool_args = {
|
|
75
|
+
"cert_reqs": cert_reqs,
|
|
76
|
+
"ca_certs": configuration.ssl_ca_cert,
|
|
77
|
+
"cert_file": configuration.cert_file,
|
|
78
|
+
"key_file": configuration.key_file,
|
|
79
|
+
}
|
|
80
|
+
if configuration.assert_hostname is not None:
|
|
81
|
+
pool_args['assert_hostname'] = (
|
|
82
|
+
configuration.assert_hostname
|
|
83
|
+
)
|
|
84
|
+
|
|
85
|
+
if configuration.retries is not None:
|
|
86
|
+
pool_args['retries'] = configuration.retries
|
|
87
|
+
|
|
88
|
+
if configuration.tls_server_name:
|
|
89
|
+
pool_args['server_hostname'] = configuration.tls_server_name
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
if configuration.socket_options is not None:
|
|
93
|
+
pool_args['socket_options'] = configuration.socket_options
|
|
94
|
+
|
|
95
|
+
if configuration.connection_pool_maxsize is not None:
|
|
96
|
+
pool_args['maxsize'] = configuration.connection_pool_maxsize
|
|
97
|
+
|
|
98
|
+
# https pool manager
|
|
99
|
+
self.pool_manager: urllib3.PoolManager
|
|
100
|
+
|
|
101
|
+
if configuration.proxy:
|
|
102
|
+
if is_socks_proxy_url(configuration.proxy):
|
|
103
|
+
from urllib3.contrib.socks import SOCKSProxyManager
|
|
104
|
+
pool_args["proxy_url"] = configuration.proxy
|
|
105
|
+
pool_args["headers"] = configuration.proxy_headers
|
|
106
|
+
self.pool_manager = SOCKSProxyManager(**pool_args)
|
|
107
|
+
else:
|
|
108
|
+
pool_args["proxy_url"] = configuration.proxy
|
|
109
|
+
pool_args["proxy_headers"] = configuration.proxy_headers
|
|
110
|
+
self.pool_manager = urllib3.ProxyManager(**pool_args)
|
|
111
|
+
else:
|
|
112
|
+
self.pool_manager = urllib3.PoolManager(**pool_args)
|
|
113
|
+
|
|
114
|
+
def request(
|
|
115
|
+
self,
|
|
116
|
+
method,
|
|
117
|
+
url,
|
|
118
|
+
headers=None,
|
|
119
|
+
body=None,
|
|
120
|
+
post_params=None,
|
|
121
|
+
_request_timeout=None
|
|
122
|
+
):
|
|
123
|
+
"""Perform requests.
|
|
124
|
+
|
|
125
|
+
:param method: http request method
|
|
126
|
+
:param url: http request url
|
|
127
|
+
:param headers: http request headers
|
|
128
|
+
:param body: request json body, for `application/json`
|
|
129
|
+
:param post_params: request post parameters,
|
|
130
|
+
`application/x-www-form-urlencoded`
|
|
131
|
+
and `multipart/form-data`
|
|
132
|
+
:param _request_timeout: timeout setting for this request. If one
|
|
133
|
+
number provided, it will be total request
|
|
134
|
+
timeout. It can also be a pair (tuple) of
|
|
135
|
+
(connection, read) timeouts.
|
|
136
|
+
"""
|
|
137
|
+
method = method.upper()
|
|
138
|
+
assert method in [
|
|
139
|
+
'GET',
|
|
140
|
+
'HEAD',
|
|
141
|
+
'DELETE',
|
|
142
|
+
'POST',
|
|
143
|
+
'PUT',
|
|
144
|
+
'PATCH',
|
|
145
|
+
'OPTIONS'
|
|
146
|
+
]
|
|
147
|
+
|
|
148
|
+
if post_params and body:
|
|
149
|
+
raise ApiValueError(
|
|
150
|
+
"body parameter cannot be used with post_params parameter."
|
|
151
|
+
)
|
|
152
|
+
|
|
153
|
+
post_params = post_params or {}
|
|
154
|
+
headers = headers or {}
|
|
155
|
+
|
|
156
|
+
timeout = None
|
|
157
|
+
if _request_timeout:
|
|
158
|
+
if isinstance(_request_timeout, (int, float)):
|
|
159
|
+
timeout = urllib3.Timeout(total=_request_timeout)
|
|
160
|
+
elif (
|
|
161
|
+
isinstance(_request_timeout, tuple)
|
|
162
|
+
and len(_request_timeout) == 2
|
|
163
|
+
):
|
|
164
|
+
timeout = urllib3.Timeout(
|
|
165
|
+
connect=_request_timeout[0],
|
|
166
|
+
read=_request_timeout[1]
|
|
167
|
+
)
|
|
168
|
+
|
|
169
|
+
try:
|
|
170
|
+
# For `POST`, `PUT`, `PATCH`, `OPTIONS`, `DELETE`
|
|
171
|
+
if method in ['POST', 'PUT', 'PATCH', 'OPTIONS', 'DELETE']:
|
|
172
|
+
|
|
173
|
+
# no content type provided or payload is json
|
|
174
|
+
content_type = headers.get('Content-Type')
|
|
175
|
+
if (
|
|
176
|
+
not content_type
|
|
177
|
+
or re.search('json', content_type, re.IGNORECASE)
|
|
178
|
+
):
|
|
179
|
+
request_body = None
|
|
180
|
+
if body is not None:
|
|
181
|
+
request_body = json.dumps(body)
|
|
182
|
+
r = self.pool_manager.request(
|
|
183
|
+
method,
|
|
184
|
+
url,
|
|
185
|
+
body=request_body,
|
|
186
|
+
timeout=timeout,
|
|
187
|
+
headers=headers,
|
|
188
|
+
preload_content=False
|
|
189
|
+
)
|
|
190
|
+
elif content_type == 'application/x-www-form-urlencoded':
|
|
191
|
+
r = self.pool_manager.request(
|
|
192
|
+
method,
|
|
193
|
+
url,
|
|
194
|
+
fields=post_params,
|
|
195
|
+
encode_multipart=False,
|
|
196
|
+
timeout=timeout,
|
|
197
|
+
headers=headers,
|
|
198
|
+
preload_content=False
|
|
199
|
+
)
|
|
200
|
+
elif content_type == 'multipart/form-data':
|
|
201
|
+
# must del headers['Content-Type'], or the correct
|
|
202
|
+
# Content-Type which generated by urllib3 will be
|
|
203
|
+
# overwritten.
|
|
204
|
+
del headers['Content-Type']
|
|
205
|
+
# Ensures that dict objects are serialized
|
|
206
|
+
post_params = [(a, json.dumps(b)) if isinstance(b, dict) else (a,b) for a, b in post_params]
|
|
207
|
+
r = self.pool_manager.request(
|
|
208
|
+
method,
|
|
209
|
+
url,
|
|
210
|
+
fields=post_params,
|
|
211
|
+
encode_multipart=True,
|
|
212
|
+
timeout=timeout,
|
|
213
|
+
headers=headers,
|
|
214
|
+
preload_content=False
|
|
215
|
+
)
|
|
216
|
+
# Pass a `string` parameter directly in the body to support
|
|
217
|
+
# other content types than JSON when `body` argument is
|
|
218
|
+
# provided in serialized form.
|
|
219
|
+
elif isinstance(body, str) or isinstance(body, bytes):
|
|
220
|
+
r = self.pool_manager.request(
|
|
221
|
+
method,
|
|
222
|
+
url,
|
|
223
|
+
body=body,
|
|
224
|
+
timeout=timeout,
|
|
225
|
+
headers=headers,
|
|
226
|
+
preload_content=False
|
|
227
|
+
)
|
|
228
|
+
elif headers['Content-Type'].startswith('text/') and isinstance(body, bool):
|
|
229
|
+
request_body = "true" if body else "false"
|
|
230
|
+
r = self.pool_manager.request(
|
|
231
|
+
method,
|
|
232
|
+
url,
|
|
233
|
+
body=request_body,
|
|
234
|
+
preload_content=False,
|
|
235
|
+
timeout=timeout,
|
|
236
|
+
headers=headers)
|
|
237
|
+
else:
|
|
238
|
+
# Cannot generate the request from given parameters
|
|
239
|
+
msg = """Cannot prepare a request message for provided
|
|
240
|
+
arguments. Please check that your arguments match
|
|
241
|
+
declared content type."""
|
|
242
|
+
raise ApiException(status=0, reason=msg)
|
|
243
|
+
# For `GET`, `HEAD`
|
|
244
|
+
else:
|
|
245
|
+
r = self.pool_manager.request(
|
|
246
|
+
method,
|
|
247
|
+
url,
|
|
248
|
+
fields={},
|
|
249
|
+
timeout=timeout,
|
|
250
|
+
headers=headers,
|
|
251
|
+
preload_content=False
|
|
252
|
+
)
|
|
253
|
+
except urllib3.exceptions.SSLError as e:
|
|
254
|
+
msg = "\n".join([type(e).__name__, str(e)])
|
|
255
|
+
raise ApiException(status=0, reason=msg)
|
|
256
|
+
|
|
257
|
+
return RESTResponse(r)
|
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: neops_workflow_engine_client
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: Neops Workflow Engine
|
|
5
|
+
Home-page: https://github.com/GIT_USER_ID/GIT_REPO_ID
|
|
6
|
+
License: NoLicense
|
|
7
|
+
Keywords: OpenAPI,OpenAPI-Generator,Neops Workflow Engine
|
|
8
|
+
Author: OpenAPI Generator Community
|
|
9
|
+
Author-email: team@openapitools.org
|
|
10
|
+
Requires-Python: >=3.8,<4.0
|
|
11
|
+
Classifier: License :: Other/Proprietary License
|
|
12
|
+
Classifier: Programming Language :: Python :: 3
|
|
13
|
+
Classifier: Programming Language :: Python :: 3.8
|
|
14
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
15
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
16
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
18
|
+
Requires-Dist: pydantic (>=2)
|
|
19
|
+
Requires-Dist: python-dateutil (>=2.8.2)
|
|
20
|
+
Requires-Dist: typing-extensions (>=4.7.1)
|
|
21
|
+
Requires-Dist: urllib3 (>=1.25.3,<3.0.0)
|
|
22
|
+
Project-URL: Repository, https://github.com/GIT_USER_ID/GIT_REPO_ID
|
|
23
|
+
Description-Content-Type: text/markdown
|
|
24
|
+
|
|
25
|
+
# Neops Task Engine Client
|
|
26
|
+
Neops workflow engine API documentation
|
|
27
|
+
|
|
28
|
+
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
|
|
29
|
+
|
|
30
|
+
- API version: 1.0
|
|
31
|
+
- Package version: 0.0.0
|
|
32
|
+
- Generator version: 7.9.0
|
|
33
|
+
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
|
|
34
|
+
|
|
35
|
+
## Requirements.
|
|
36
|
+
|
|
37
|
+
Python 3.7+
|
|
38
|
+
|
|
39
|
+
## Installation & Usage
|
|
40
|
+
### pip install
|
|
41
|
+
|
|
42
|
+
If the python package is hosted on a repository, you can install directly using:
|
|
43
|
+
|
|
44
|
+
```sh
|
|
45
|
+
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
|
|
46
|
+
```
|
|
47
|
+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
|
|
48
|
+
|
|
49
|
+
Then import the package:
|
|
50
|
+
```python
|
|
51
|
+
import neops_workflow_engine_client
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
### Setuptools
|
|
55
|
+
|
|
56
|
+
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
|
|
57
|
+
|
|
58
|
+
```sh
|
|
59
|
+
python setup.py install --user
|
|
60
|
+
```
|
|
61
|
+
(or `sudo python setup.py install` to install the package for all users)
|
|
62
|
+
|
|
63
|
+
Then import the package:
|
|
64
|
+
```python
|
|
65
|
+
import neops_workflow_engine_client
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
### Tests
|
|
69
|
+
|
|
70
|
+
Execute `pytest` to run the tests.
|
|
71
|
+
|
|
72
|
+
## Getting Started
|
|
73
|
+
|
|
74
|
+
Please follow the [installation procedure](#installation--usage) and then run the following:
|
|
75
|
+
|
|
76
|
+
```python
|
|
77
|
+
|
|
78
|
+
import neops_workflow_engine_client
|
|
79
|
+
from neops_workflow_engine_client.rest import ApiException
|
|
80
|
+
from pprint import pprint
|
|
81
|
+
|
|
82
|
+
# Defining the host is optional and defaults to http://localhost
|
|
83
|
+
# See configuration.py for a list of all supported configuration parameters.
|
|
84
|
+
configuration = neops_workflow_engine_client.Configuration(
|
|
85
|
+
host = "http://localhost"
|
|
86
|
+
)
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
# Enter a context with an instance of the API client
|
|
91
|
+
with neops_workflow_engine_client.ApiClient(configuration) as api_client:
|
|
92
|
+
# Create an instance of the API class
|
|
93
|
+
api_instance = neops_workflow_engine_client.DefaultApi(api_client)
|
|
94
|
+
|
|
95
|
+
try:
|
|
96
|
+
api_instance.app_controller_get_hello()
|
|
97
|
+
except ApiException as e:
|
|
98
|
+
print("Exception when calling DefaultApi->app_controller_get_hello: %s\n" % e)
|
|
99
|
+
|
|
100
|
+
```
|
|
101
|
+
|
|
102
|
+
## Documentation for API Endpoints
|
|
103
|
+
|
|
104
|
+
All URIs are relative to *http://localhost*
|
|
105
|
+
|
|
106
|
+
Class | Method | HTTP request | Description
|
|
107
|
+
------------ | ------------- | ------------- | -------------
|
|
108
|
+
*DefaultApi* | [**app_controller_get_hello**](docs/DefaultApi.md#app_controller_get_hello) | **GET** / |
|
|
109
|
+
*DefaultApi* | [**health_controller_healthy**](docs/DefaultApi.md#health_controller_healthy) | **GET** /health |
|
|
110
|
+
|
|
111
|
+
|
|
112
|
+
## Documentation For Models
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
<a id="documentation-for-authorization"></a>
|
|
117
|
+
## Documentation For Authorization
|
|
118
|
+
|
|
119
|
+
Endpoints do not require authorization.
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
## Author
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
neops_workflow_engine_client/__init__.py,sha256=l7EjCGowq4KMoci0cJyHWruawOgkdQ11xoHAE7D4fvE,1051
|
|
2
|
+
neops_workflow_engine_client/api/__init__.py,sha256=W6yCvNCRr10UbQ9u1vL5GULXi135yt5gzAf2onRPWY8,116
|
|
3
|
+
neops_workflow_engine_client/api/default_api.py,sha256=c1UZaBlubzL9TnSRUbLDc4h3tmMwoWaQNHD3BRZDcR4,18803
|
|
4
|
+
neops_workflow_engine_client/api_client.py,sha256=VIaBtu2ZofdvM4k0yd3qJ4xyw1quJyPiyTsSR4wt44g,27496
|
|
5
|
+
neops_workflow_engine_client/api_response.py,sha256=eMxw1mpmJcoGZ3gs9z6jM4oYoZ10Gjk333s9sKxGv7s,652
|
|
6
|
+
neops_workflow_engine_client/configuration.py,sha256=CPTc83bObQMmFOmGicsUYRI-zHjfHUtCD11Bswfnvs4,15000
|
|
7
|
+
neops_workflow_engine_client/exceptions.py,sha256=HGjdDIqDEwAqVOBjFF104lHkLK4lOAutv5s7Z68gwt8,5917
|
|
8
|
+
neops_workflow_engine_client/models/__init__.py,sha256=EZReICnjZ5q-N9XSMfNRMhz0vjc-Q6W6cSgsPbcUb70,313
|
|
9
|
+
neops_workflow_engine_client/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
10
|
+
neops_workflow_engine_client/rest.py,sha256=9hr9dsfMPlq82QeBGVUUHFv9Z_SXKuLbQVCcOR6mlB8,9371
|
|
11
|
+
neops_workflow_engine_client-0.0.0.dist-info/METADATA,sha256=0TRm8iRWE1NQDAmIN_rEAPH1ETCSjklg64H3lYQxrEI,3503
|
|
12
|
+
neops_workflow_engine_client-0.0.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
|
|
13
|
+
neops_workflow_engine_client-0.0.0.dist-info/RECORD,,
|