Metadata-Version: 2.4
Name: monday_code
Version: 2.1.0
Summary: mcode-sdk-api
Home-page: 
Author: Monday.Com
Author-email: OpenAPI Generator Community <team@openapitools.org>
License: MIT
Project-URL: Repository, https://github.com/GIT_USER_ID/GIT_REPO_ID
Keywords: OpenAPI,OpenAPI-Generator,mcode-sdk-api
Requires-Python: >=3.9
Description-Content-Type: text/markdown
Requires-Dist: python-dateutil>=2.8.2
Requires-Dist: aiohttp>=3.8.4
Requires-Dist: aiohttp-retry>=2.8.3
Requires-Dist: pydantic>=2
Requires-Dist: typing-extensions>=4.7.1
Dynamic: author

# monday-code

## Installation & Usage
```sh
pip install monday-code
```

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python

import monday_code
from monday_code.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to http://localhost:59999
# See configuration.py for a list of all supported configuration parameters.
configuration = monday_code.Configuration(
    host = "http://localhost:59999"
)



# Enter a context with an instance of the API client
async with monday_code.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = monday_code.EnvironmentVariablesApi(api_client)
    name = 'name_example' # str | 

    try:
        api_response = await api_instance.get_environment_variable(name)
        print("The response of EnvironmentVariablesApi->get_environment_variable:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling EnvironmentVariablesApi->get_environment_variable: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *http://localhost:59999*

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} | 
*SecretsApi* | [**get_secret_keys**](docs/SecretsApi.md#get_secret_keys) | **GET** /secrets | 
*SecureStorageApi* | [**delete_secure_storage**](docs/SecureStorageApi.md#delete_secure_storage) | **DELETE** /secure-storage/{key} | 
*SecureStorageApi* | [**get_secure_storage**](docs/SecureStorageApi.md#get_secure_storage) | **GET** /secure-storage/{key} | 
*SecureStorageApi* | [**put_secure_storage**](docs/SecureStorageApi.md#put_secure_storage) | **PUT** /secure-storage/{key} | 
*StorageApi* | [**delete_by_key_from_storage**](docs/StorageApi.md#delete_by_key_from_storage) | **DELETE** /storage/{key} | 
*StorageApi* | [**get_by_key_from_storage**](docs/StorageApi.md#get_by_key_from_storage) | **GET** /storage/{key} | 
*StorageApi* | [**increment_counter**](docs/StorageApi.md#increment_counter) | **PUT** /storage/counter/increment | 
*StorageApi* | [**search_record**](docs/StorageApi.md#search_record) | **GET** /storage/search/{term} | 
*StorageApi* | [**upsert_by_key_from_storage**](docs/StorageApi.md#upsert_by_key_from_storage) | **PUT** /storage/{key} | 


## 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)
