Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,11 @@ Class | Method | HTTP request | Description
*EnvironmentVariablesApi* | [**get_environment_variable**](docs/EnvironmentVariablesApi.md#get_environment_variable) | **GET** /environment-variables/{name} |
*EnvironmentVariablesApi* | [**get_environment_variable_keys**](docs/EnvironmentVariablesApi.md#get_environment_variable_keys) | **GET** /environment-variables |
*LogsApi* | [**write_log**](docs/LogsApi.md#write_log) | **POST** /logs |
*ObjectStorageApi* | [**delete_file**](docs/ObjectStorageApi.md#delete_file) | **DELETE** /object-storage/files/{filename} |
*ObjectStorageApi* | [**download_file**](docs/ObjectStorageApi.md#download_file) | **GET** /object-storage/files/{filename} |
*ObjectStorageApi* | [**get_file_info**](docs/ObjectStorageApi.md#get_file_info) | **GET** /object-storage/files/{filename}/info |
*ObjectStorageApi* | [**list_files**](docs/ObjectStorageApi.md#list_files) | **GET** /object-storage/files |
*ObjectStorageApi* | [**upload_file**](docs/ObjectStorageApi.md#upload_file) | **POST** /object-storage/files |
*QueueApi* | [**publish_message**](docs/QueueApi.md#publish_message) | **POST** /queue |
*QueueApi* | [**validate_secret**](docs/QueueApi.md#validate_secret) | **POST** /queue/validate-secret |
*SecretsApi* | [**get_secret**](docs/SecretsApi.md#get_secret) | **GET** /secrets/{name} |
Expand All @@ -63,23 +68,28 @@ Class | Method | HTTP request | Description

## Documentation For Models

- [DeleteFileResponse](docs/DeleteFileResponse.md)
- [DownloadFileResponse](docs/DownloadFileResponse.md)
- [FileInfo](docs/FileInfo.md)
- [GetByKeyFromStorage404Response](docs/GetByKeyFromStorage404Response.md)
- [GetByKeyFromStorage500Response](docs/GetByKeyFromStorage500Response.md)
- [GetFileInfoResponse](docs/GetFileInfoResponse.md)
- [IncrementCounter200Response](docs/IncrementCounter200Response.md)
- [IncrementCounter200ResponseAnyOf](docs/IncrementCounter200ResponseAnyOf.md)
- [IncrementCounter200ResponseAnyOf1](docs/IncrementCounter200ResponseAnyOf1.md)
- [IncrementCounterParams](docs/IncrementCounterParams.md)
- [JsonDataContract](docs/JsonDataContract.md)
- [ListFilesResponse](docs/ListFilesResponse.md)
- [LogMethods](docs/LogMethods.md)
- [Period](docs/Period.md)
- [PublishMessageParams](docs/PublishMessageParams.md)
- [PublishMessageResponse](docs/PublishMessageResponse.md)
- [StorageDataContract](docs/StorageDataContract.md)
- [UploadFileResponse](docs/UploadFileResponse.md)
- [UpsertByKeyFromStorage200Response](docs/UpsertByKeyFromStorage200Response.md)
- [UpsertByKeyFromStorage200ResponseAnyOf](docs/UpsertByKeyFromStorage200ResponseAnyOf.md)
- [UpsertByKeyFromStorage200ResponseAnyOf1](docs/UpsertByKeyFromStorage200ResponseAnyOf1.md)
- [ValidateSecretParams](docs/ValidateSecretParams.md)
- [ValidateSecretResponse](docs/ValidateSecretResponse.md)
- [WriteLogRequestBody](docs/WriteLogRequestBody.md)
- [WriteLogRequestBodyError](docs/WriteLogRequestBodyError.md)

30 changes: 30 additions & 0 deletions docs/DeleteFileResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# DeleteFileResponse


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **bool** | |
**error** | **str** | | [optional]

## Example

```python
from monday_code.models.delete_file_response import DeleteFileResponse

# TODO update the JSON string below
json = "{}"
# create an instance of DeleteFileResponse from a JSON string
delete_file_response_instance = DeleteFileResponse.from_json(json)
# print the JSON string representation of the object
print(DeleteFileResponse.to_json())

# convert the object into a dict
delete_file_response_dict = delete_file_response_instance.to_dict()
# create an instance of DeleteFileResponse from a dict
delete_file_response_from_dict = DeleteFileResponse.from_dict(delete_file_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


32 changes: 32 additions & 0 deletions docs/DownloadFileResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# DownloadFileResponse


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **bool** | |
**error** | **str** | | [optional]
**content** | **bytearray** | | [optional]
**content_type** | **str** | | [optional]

## Example

```python
from monday_code.models.download_file_response import DownloadFileResponse

# TODO update the JSON string below
json = "{}"
# create an instance of DownloadFileResponse from a JSON string
download_file_response_instance = DownloadFileResponse.from_json(json)
# print the JSON string representation of the object
print(DownloadFileResponse.to_json())

# convert the object into a dict
download_file_response_dict = download_file_response_instance.to_dict()
# create an instance of DownloadFileResponse from a dict
download_file_response_from_dict = DownloadFileResponse.from_dict(download_file_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


4 changes: 0 additions & 4 deletions docs/EnvironmentVariablesApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,6 @@ Method | HTTP request | Description
# **get_environment_variable**
> object get_environment_variable(name)



### Example


Expand Down Expand Up @@ -76,8 +74,6 @@ No authorization required
# **get_environment_variable_keys**
> List[str] get_environment_variable_keys()



### Example


Expand Down
34 changes: 34 additions & 0 deletions docs/FileInfo.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
# FileInfo


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**metadata** | **Dict[str, str]** | Construct a type with a set of properties K of type T |
**etag** | **str** | |
**last_modified** | **datetime** | |
**content_type** | **str** | |
**size** | **float** | |
**name** | **str** | |

## Example

```python
from monday_code.models.file_info import FileInfo

# TODO update the JSON string below
json = "{}"
# create an instance of FileInfo from a JSON string
file_info_instance = FileInfo.from_json(json)
# print the JSON string representation of the object
print(FileInfo.to_json())

# convert the object into a dict
file_info_dict = file_info_instance.to_dict()
# create an instance of FileInfo from a dict
file_info_from_dict = FileInfo.from_dict(file_info_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


31 changes: 31 additions & 0 deletions docs/GetFileInfoResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# GetFileInfoResponse


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **bool** | |
**error** | **str** | | [optional]
**file_info** | [**FileInfo**](FileInfo.md) | | [optional]

## Example

```python
from monday_code.models.get_file_info_response import GetFileInfoResponse

# TODO update the JSON string below
json = "{}"
# create an instance of GetFileInfoResponse from a JSON string
get_file_info_response_instance = GetFileInfoResponse.from_json(json)
# print the JSON string representation of the object
print(GetFileInfoResponse.to_json())

# convert the object into a dict
get_file_info_response_dict = get_file_info_response_instance.to_dict()
# create an instance of GetFileInfoResponse from a dict
get_file_info_response_from_dict = GetFileInfoResponse.from_dict(get_file_info_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


32 changes: 32 additions & 0 deletions docs/ListFilesResponse.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# ListFilesResponse


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**success** | **bool** | |
**error** | **str** | | [optional]
**files** | [**List[FileInfo]**](FileInfo.md) | | [optional]
**next_page_token** | **str** | | [optional]

## Example

```python
from monday_code.models.list_files_response import ListFilesResponse

# TODO update the JSON string below
json = "{}"
# create an instance of ListFilesResponse from a JSON string
list_files_response_instance = ListFilesResponse.from_json(json)
# print the JSON string representation of the object
print(ListFilesResponse.to_json())

# convert the object into a dict
list_files_response_dict = list_files_response_instance.to_dict()
# create an instance of ListFilesResponse from a dict
list_files_response_from_dict = ListFilesResponse.from_dict(list_files_response_dict)
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)


2 changes: 0 additions & 2 deletions docs/LogsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,6 @@ Method | HTTP request | Description
# **write_log**
> write_log(write_log_request_body)



### Example


Expand Down
Loading