Skip to content

Commit 33b07ae

Browse files
Merge pull request #1 from nsat/v1dev
API version 1.5
2 parents d99bff3 + a03f79a commit 33b07ae

Some content is hidden

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

52 files changed

+564
-53
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# oort-sdk-client
22
Client interface to the OORT agent.
33

4-
- API version: 1.3
4+
- API version: 1.5
55
- Package version: 1.0.0
66
For more information, please visit [https://developers.spire.com/oort-docs/index.html](https://developers.spire.com/oort-docs/index.html)
77

@@ -91,6 +91,7 @@ Class | Method | HTTP request | Description
9191
- [AdcsTarget](docs/AdcsTarget.md)
9292
- [AdcsXyzFloatT](docs/AdcsXyzFloatT.md)
9393
- [AvailableFilesResponse](docs/AvailableFilesResponse.md)
94+
- [DeliveryHints](docs/DeliveryHints.md)
9495
- [ErrorResponse](docs/ErrorResponse.md)
9596
- [FileInfo](docs/FileInfo.md)
9697
- [RetrieveFileRequest](docs/RetrieveFileRequest.md)

docs/DeliveryHints.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# DeliveryHints
2+
3+
Delivery hints used to inform the reveiver about the expected destination of the file
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**dest_path** | **str** | Path of the file on the destination filesystem |
8+
**mode** | **str** | File mode in octal form. For example: \"760\" means that the user can read+write+execute, the group can read+write, and others have no access |
9+
10+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
11+
12+

docs/FileInfo.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ Name | Type | Description | Notes
1111
**created** | **int** | |
1212
**crc32** | **str** | |
1313
**extra** | **dict(str, str)** | | [optional]
14+
**delivery_hints** | [**DeliveryHints**](DeliveryHints.md) | | [optional]
1415

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

docs/SendOptions.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
77
**ttl_params** | [**TTLParams**](TTLParams.md) | | [optional]
88
**reliable** | **bool** | whether to send an item reliably, i.e., with retries | [optional] [default to True]
9+
**tags** | **dict(str, str)** | a structure for optional file tags | [optional]
10+
**delivery_hints** | [**DeliveryHints**](DeliveryHints.md) | | [optional]
911

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

docs/Tags.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
# Tags
2+
3+
a structure for optional file tags
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**token** | **str** | the ground-side reference id associated with the files being sent | [optional] [default to 'null']
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+

oort_sdk_client/__init__.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
88
Client interface to the OORT agent. # noqa: E501
99
10-
The version of the OpenAPI document: 1.3
10+
The version of the OpenAPI document: 1.5
1111
Generated by: https://openapi-generator.tech
1212
"""
1313

@@ -37,6 +37,7 @@
3737
from oort_sdk_client.models.adcs_target import AdcsTarget
3838
from oort_sdk_client.models.adcs_xyz_float_t import AdcsXyzFloatT
3939
from oort_sdk_client.models.available_files_response import AvailableFilesResponse
40+
from oort_sdk_client.models.delivery_hints import DeliveryHints
4041
from oort_sdk_client.models.error_response import ErrorResponse
4142
from oort_sdk_client.models.file_info import FileInfo
4243
from oort_sdk_client.models.retrieve_file_request import RetrieveFileRequest

oort_sdk_client/api/sdk_api.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Client interface to the OORT agent. # noqa: E501
77
8-
The version of the OpenAPI document: 1.3
8+
The version of the OpenAPI document: 1.5
99
Generated by: https://openapi-generator.tech
1010
"""
1111

oort_sdk_client/api_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
55
Client interface to the OORT agent. # noqa: E501
66
7-
The version of the OpenAPI document: 1.3
7+
The version of the OpenAPI document: 1.5
88
Generated by: https://openapi-generator.tech
99
"""
1010

oort_sdk_client/configuration.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Client interface to the OORT agent. # noqa: E501
77
8-
The version of the OpenAPI document: 1.3
8+
The version of the OpenAPI document: 1.5
99
Generated by: https://openapi-generator.tech
1010
"""
1111

@@ -328,7 +328,7 @@ def to_debug_report(self):
328328
return "Python SDK Debug Report:\n"\
329329
"OS: {env}\n"\
330330
"Python Version: {pyversion}\n"\
331-
"Version of the API: 1.3\n"\
331+
"Version of the API: 1.5\n"\
332332
"SDK Package Version: 1.0.0".\
333333
format(env=sys.platform, pyversion=sys.version)
334334

oort_sdk_client/exceptions.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Client interface to the OORT agent. # noqa: E501
77
8-
The version of the OpenAPI document: 1.3
8+
The version of the OpenAPI document: 1.5
99
Generated by: https://openapi-generator.tech
1010
"""
1111

0 commit comments

Comments
 (0)