Skip to content

Commit

Permalink
ci: generate from api 0.19.153 (#129)
Browse files Browse the repository at this point in the history
  • Loading branch information
nuonbot authored Jun 4, 2024
1 parent 391e406 commit 25cab80
Show file tree
Hide file tree
Showing 136 changed files with 657 additions and 143 deletions.
6 changes: 6 additions & 0 deletions .openapi-generator/FILES
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ docs/AppAppConfigFmt.md
docs/AppAppConfigStatus.md
docs/AppAppInput.md
docs/AppAppInputConfig.md
docs/AppAppInputGroup.md
docs/AppAppRunnerConfig.md
docs/AppAppRunnerType.md
docs/AppAppSandboxConfig.md
Expand Down Expand Up @@ -66,6 +67,7 @@ docs/ReleasesApi.md
docs/SandboxesApi.md
docs/ServiceAppConfigTemplate.md
docs/ServiceAppConfigTemplateType.md
docs/ServiceAppGroupRequest.md
docs/ServiceAppInputRequest.md
docs/ServiceAwsECRImageConfigRequest.md
docs/ServiceCLIConfig.md
Expand Down Expand Up @@ -135,6 +137,7 @@ nuon/models/app_app_config_fmt.py
nuon/models/app_app_config_status.py
nuon/models/app_app_input.py
nuon/models/app_app_input_config.py
nuon/models/app_app_input_group.py
nuon/models/app_app_runner_config.py
nuon/models/app_app_runner_type.py
nuon/models/app_app_sandbox_config.py
Expand Down Expand Up @@ -189,6 +192,7 @@ nuon/models/metrics_timing.py
nuon/models/planv1_plan.py
nuon/models/service_app_config_template.py
nuon/models/service_app_config_template_type.py
nuon/models/service_app_group_request.py
nuon/models/service_app_input_request.py
nuon/models/service_aws_ecr_image_config_request.py
nuon/models/service_cli_config.py
Expand Down Expand Up @@ -243,4 +247,6 @@ setup.cfg
setup.py
test-requirements.txt
test/__init__.py
test/test_app_app_input_group.py
test/test_service_app_group_request.py
tox.ini
2 changes: 2 additions & 0 deletions docs/AppAppInput.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ Name | Type | Description | Notes
**default** | **str** | | [optional]
**description** | **str** | | [optional]
**display_name** | **str** | | [optional]
**group** | [**AppAppInputGroup**](AppAppInputGroup.md) | | [optional]
**group_id** | **str** | | [optional]
**id** | **str** | | [optional]
**name** | **str** | | [optional]
**org_id** | **str** | | [optional]
Expand Down
3 changes: 2 additions & 1 deletion docs/AppAppInputConfig.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,12 @@
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**app_id** | **str** | | [optional]
**app_inputs** | [**List[AppAppInput]**](AppAppInput.md) | | [optional]
**created_at** | **str** | | [optional]
**created_by** | [**AppUserToken**](AppUserToken.md) | | [optional]
**created_by_id** | **str** | | [optional]
**id** | **str** | | [optional]
**input_groups** | [**List[AppAppInputGroup]**](AppAppInputGroup.md) | | [optional]
**inputs** | [**List[AppAppInput]**](AppAppInput.md) | | [optional]
**install_inputs** | [**List[AppInstallInputs]**](AppInstallInputs.md) | | [optional]
**org_id** | **str** | | [optional]
**updated_at** | **str** | | [optional]
Expand Down
40 changes: 40 additions & 0 deletions docs/AppAppInputGroup.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
# AppAppInputGroup


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**app_input_id** | **str** | | [optional]
**app_inputs** | [**List[AppAppInput]**](AppAppInput.md) | | [optional]
**created_at** | **str** | | [optional]
**created_by** | [**AppUserToken**](AppUserToken.md) | | [optional]
**created_by_id** | **str** | | [optional]
**description** | **str** | | [optional]
**display_name** | **str** | | [optional]
**id** | **str** | | [optional]
**is_default** | **bool** | | [optional]
**name** | **str** | | [optional]
**org_id** | **str** | | [optional]
**updated_at** | **str** | | [optional]

## Example

```python
from nuon.models.app_app_input_group import AppAppInputGroup

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

# convert the object into a dict
app_app_input_group_dict = app_app_input_group_instance.to_dict()
# create an instance of AppAppInputGroup from a dict
app_app_input_group_form_dict = app_app_input_group.from_dict(app_app_input_group_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: 2 additions & 0 deletions docs/AppsApi.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,8 @@ Name | Type | Description | Notes


App input configs allow you to declare the inputs for your application, and do things such as require customer inputs or expose configuration knobs in your application.

### Example

* Api Key Authentication (APIKey):
Expand Down
30 changes: 30 additions & 0 deletions docs/ServiceAppGroupRequest.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
# ServiceAppGroupRequest


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**description** | **str** | |
**display_name** | **str** | |

## Example

```python
from nuon.models.service_app_group_request import ServiceAppGroupRequest

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

# convert the object into a dict
service_app_group_request_dict = service_app_group_request_instance.to_dict()
# create an instance of ServiceAppGroupRequest from a dict
service_app_group_request_form_dict = service_app_group_request.from_dict(service_app_group_request_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)


1 change: 1 addition & 0 deletions docs/ServiceAppInputRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Name | Type | Description | Notes
**default** | **str** | | [optional]
**description** | **str** | |
**display_name** | **str** | |
**group** | **str** | |
**required** | **bool** | | [optional]
**sensitive** | **bool** | | [optional]

Expand Down
1 change: 1 addition & 0 deletions docs/ServiceCreateAppInputConfigRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**groups** | [**Dict[str, ServiceAppGroupRequest]**](ServiceAppGroupRequest.md) | |
**inputs** | [**Dict[str, ServiceAppInputRequest]**](ServiceAppInputRequest.md) | |

## Example
Expand Down
6 changes: 4 additions & 2 deletions nuon/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501


__version__ = "0.19.152"
__version__ = "0.19.153"

# import apis into sdk package
from nuon.api.apps_api import AppsApi
Expand Down Expand Up @@ -48,6 +48,7 @@
from nuon.models.app_app_config_status import AppAppConfigStatus
from nuon.models.app_app_input import AppAppInput
from nuon.models.app_app_input_config import AppAppInputConfig
from nuon.models.app_app_input_group import AppAppInputGroup
from nuon.models.app_app_runner_config import AppAppRunnerConfig
from nuon.models.app_app_runner_type import AppAppRunnerType
from nuon.models.app_app_sandbox_config import AppAppSandboxConfig
Expand Down Expand Up @@ -100,6 +101,7 @@
from nuon.models.planv1_plan import Planv1Plan
from nuon.models.service_app_config_template import ServiceAppConfigTemplate
from nuon.models.service_app_config_template_type import ServiceAppConfigTemplateType
from nuon.models.service_app_group_request import ServiceAppGroupRequest
from nuon.models.service_app_input_request import ServiceAppInputRequest
from nuon.models.service_aws_ecr_image_config_request import ServiceAwsECRImageConfigRequest
from nuon.models.service_cli_config import ServiceCLIConfig
Expand Down
5 changes: 4 additions & 1 deletion nuon/api/apps_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down Expand Up @@ -666,6 +666,7 @@ def create_app_input_config(
) -> AppAppInputConfig:
"""create_app_input_config
App input configs allow you to declare the inputs for your application, and do things such as require customer inputs or expose configuration knobs in your application.
:param app_id: app ID (required)
:type app_id: str
Expand Down Expand Up @@ -741,6 +742,7 @@ def create_app_input_config_with_http_info(
) -> ApiResponse[AppAppInputConfig]:
"""create_app_input_config
App input configs allow you to declare the inputs for your application, and do things such as require customer inputs or expose configuration knobs in your application.
:param app_id: app ID (required)
:type app_id: str
Expand Down Expand Up @@ -816,6 +818,7 @@ def create_app_input_config_without_preload_content(
) -> RESTResponseType:
"""create_app_input_config
App input configs allow you to declare the inputs for your application, and do things such as require customer inputs or expose configuration knobs in your application.
:param app_id: app ID (required)
:type app_id: str
Expand Down
2 changes: 1 addition & 1 deletion nuon/api/components_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion nuon/api/general_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion nuon/api/installers_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion nuon/api/installs_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion nuon/api/orgs_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion nuon/api/releases_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion nuon/api/sandboxes_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion nuon/api/vcs_api.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
4 changes: 2 additions & 2 deletions nuon/api_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down Expand Up @@ -87,7 +87,7 @@ def __init__(
self.default_headers[header_name] = header_value
self.cookie = cookie
# Set default User-Agent.
self.user_agent = 'OpenAPI-Generator/0.19.152/python'
self.user_agent = 'OpenAPI-Generator/0.19.153/python'
self.client_side_validation = configuration.client_side_validation

def __enter__(self):
Expand Down
6 changes: 3 additions & 3 deletions nuon/configuration.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down Expand Up @@ -406,8 +406,8 @@ def to_debug_report(self):
return "Python SDK Debug Report:\n"\
"OS: {env}\n"\
"Python Version: {pyversion}\n"\
"Version of the API: 0.19.152\n"\
"SDK Package Version: 0.19.152".\
"Version of the API: 0.19.153\n"\
"SDK Package Version: 0.19.153".\
format(env=sys.platform, pyversion=sys.version)

def get_host_settings(self):
Expand Down
2 changes: 1 addition & 1 deletion nuon/exceptions.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
4 changes: 3 additions & 1 deletion nuon/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand All @@ -23,6 +23,7 @@
from nuon.models.app_app_config_status import AppAppConfigStatus
from nuon.models.app_app_input import AppAppInput
from nuon.models.app_app_input_config import AppAppInputConfig
from nuon.models.app_app_input_group import AppAppInputGroup
from nuon.models.app_app_runner_config import AppAppRunnerConfig
from nuon.models.app_app_runner_type import AppAppRunnerType
from nuon.models.app_app_sandbox_config import AppAppSandboxConfig
Expand Down Expand Up @@ -75,6 +76,7 @@
from nuon.models.planv1_plan import Planv1Plan
from nuon.models.service_app_config_template import ServiceAppConfigTemplate
from nuon.models.service_app_config_template_type import ServiceAppConfigTemplateType
from nuon.models.service_app_group_request import ServiceAppGroupRequest
from nuon.models.service_app_input_request import ServiceAppInputRequest
from nuon.models.service_aws_ecr_image_config_request import ServiceAwsECRImageConfigRequest
from nuon.models.service_cli_config import ServiceCLIConfig
Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_app_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_app_config_fmt.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
API for managing nuon apps, components, and installs.
The version of the OpenAPI document: 0.19.152
The version of the OpenAPI document: 0.19.153
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)
Expand Down
Loading

0 comments on commit 25cab80

Please # to comment.