Skip to content

Commit 50a8d3d

Browse files
committed
add tasks per device option
1 parent 2eaefc9 commit 50a8d3d

37 files changed

+3041
-40
lines changed

README.md

Lines changed: 25 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,39 @@
11
# epiccore
2-
REST API for interacting with EPIC (https://epic.zenotech.com) services. <br />
3-
Please note this API is in BETA and does not yet contain all EPIC functionality.
2+
REST API for interacting with EPIC (https://epic.zenotech.com) services. <br /> Please note this API is in BETA and does not yet contain all EPIC functionality.
43

54
This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:
65

76
- API version: v2
7+
- Package version: 1.0.0
88
- Build package: org.openapitools.codegen.languages.PythonClientCodegen
99

1010
## Requirements.
1111

12-
Python 3.4+
12+
Python 2.7 and 3.4+
1313

1414
## Installation & Usage
15+
### pip install
1516

16-
You can install using:
17+
If the python package is hosted on a repository, you can install directly using:
1718

1819
```sh
19-
pip install epicore
20+
pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git
2021
```
22+
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/GIT_USER_ID/GIT_REPO_ID.git`)
23+
24+
Then import the package:
25+
```python
26+
import epiccore
27+
```
28+
29+
### Setuptools
30+
31+
Install via [Setuptools](http://pypi.python.org/pypi/setuptools).
32+
33+
```sh
34+
python setup.py install --user
35+
```
36+
(or `sudo python setup.py install` to install the package for all users)
2137

2238
Then import the package:
2339
```python
@@ -62,13 +78,13 @@ configuration = epiccore.Configuration(
6278
with epiccore.ApiClient(configuration) as api_client:
6379
# Create an instance of the API class
6480
api_instance = epiccore.BillingApi(api_client)
65-
81+
6682
try:
6783
api_response = api_instance.billing_limits_list()
6884
pprint(api_response)
6985
except ApiException as e:
7086
print("Exception when calling BillingApi->billing_limits_list: %s\n" % e)
71-
87+
7288
```
7389

7490
## Documentation for API Endpoints
@@ -152,6 +168,7 @@ Class | Method | HTTP request | Description
152168
- [Discount](docs/Discount.md)
153169
- [EnvironmentVariable](docs/EnvironmentVariable.md)
154170
- [File](docs/File.md)
171+
- [FileDetails](docs/FileDetails.md)
155172
- [Folder](docs/Folder.md)
156173
- [FolderDetails](docs/FolderDetails.md)
157174
- [IaasCost](docs/IaasCost.md)
@@ -225,5 +242,4 @@ Class | Method | HTTP request | Description
225242

226243
## Author
227244

228-
229-
245+

docs/Application.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Application
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**pk** | **int** | | [optional] [readonly]
7+
**name** | **str** | | [optional] [readonly]
8+
9+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
11+

docs/DataApi.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ Name | Type | Description | Notes
9494
[[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)
9595

9696
# **data_file_read**
97-
> File data_file_read(id)
97+
> FileDetails data_file_read(id)
9898
9999

100100

@@ -151,7 +151,7 @@ Name | Type | Description | Notes
151151

152152
### Return type
153153

154-
[**File**](File.md)
154+
[**FileDetails**](FileDetails.md)
155155

156156
### Authorization
157157

docs/DataLocation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Name | Type | Description | Notes
55
------------ | ------------- | ------------- | -------------
66
**s3_obj_key** | **str** | Root path for EPIC data store | [optional] [readonly]
77
**s3_location** | **str** | S3 Bucket name for EPIC data store | [optional] [readonly]
8-
**aws_region** | **str** | The step logs | [optional] [readonly]
8+
**aws_region** | **str** | AWS Region | [optional] [readonly]
99
**session_token** | [**SessionToken**](SessionToken.md) | | [optional]
1010

1111
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)

docs/EnvVar.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# EnvVar
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**variable_name** | **str** | |
7+
**value** | **str** | |
8+
9+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
10+
11+

docs/EnvVarTemplate.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# EnvVarTemplate
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**variable_name** | **str** | |
7+
**help_text** | **str** | |
8+
**var_type** | **str** | |
9+
**default** | **str** | | [optional]
10+
11+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
12+
13+

docs/FileDetails.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# FileDetails
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**id** | **int** | ID for this folder | [optional] [readonly]
7+
**meta_data** | **object** | File meta-data | [optional] [readonly]
8+
**created** | **datetime** | Creation time | [optional] [readonly]
9+
**modified** | **datetime** | | [optional] [readonly]
10+
**name** | **str** | File name | [optional] [readonly]
11+
**obj_key** | **str** | S3 key reference | [optional] [readonly]
12+
**size** | **int** | | [optional]
13+
**last_modified** | **datetime** | Last modified time | [optional] [readonly]
14+
**folder** | **int** | Folder name | [optional] [readonly]
15+
16+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
17+
18+

docs/InlineResponse20010.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
66
**count** | **int** | |
77
**next** | **str** | | [optional]
88
**previous** | **str** | | [optional]
9-
**results** | [**list[Team]**](Team.md) | |
9+
**results** | [**list[Project]**](Project.md) | |
1010

1111
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1212

docs/InlineResponse20011.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# InlineResponse20011
2+
3+
## Properties
4+
Name | Type | Description | Notes
5+
------------ | ------------- | ------------- | -------------
6+
**count** | **int** | |
7+
**next** | **str** | | [optional]
8+
**previous** | **str** | | [optional]
9+
**results** | [**list[Team]**](Team.md) | |
10+
11+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
12+
13+

docs/InlineResponse2009.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Name | Type | Description | Notes
66
**count** | **int** | |
77
**next** | **str** | | [optional]
88
**previous** | **str** | | [optional]
9-
**results** | [**list[Project]**](Project.md) | |
9+
**results** | [**list[License]**](License.md) | |
1010

1111
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
1212

0 commit comments

Comments
 (0)