Skip to content
Open
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
1 change: 1 addition & 0 deletions docs/AppComponent.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Name | Type | Description | Notes
**status** | **str** | | [optional]
**status_description** | **str** | | [optional]
**updated_at** | **str** | | [optional]
**var_name** | **str** | | [optional]

## Example

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

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**description** | **str** | | [optional]
**name** | **str** | |

## Example
Expand Down
1 change: 1 addition & 0 deletions docs/ServiceCreateComponentRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**dependencies** | **List[str]** | | [optional]
**name** | **str** | |
**var_name** | **str** | | [optional]

## Example

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

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**description** | **str** | | [optional]
**name** | **str** | | [optional]

## Example
Expand Down
1 change: 1 addition & 0 deletions docs/ServiceUpdateComponentRequest.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**dependencies** | **List[str]** | | [optional]
**name** | **str** | |
**var_name** | **str** | | [optional]

## Example

Expand Down
4 changes: 2 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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Do not edit the class manually.
""" # noqa: E501


__version__ = "0.19.133"
__version__ = "0.19.134"

# import apis into sdk package
from nuon.api.apps_api import AppsApi
Expand Down
2 changes: 1 addition & 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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

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.133
The version of the OpenAPI document: 0.19.134
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.133
The version of the OpenAPI document: 0.19.134
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.133
The version of the OpenAPI document: 0.19.134
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.133
The version of the OpenAPI document: 0.19.134
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.133
The version of the OpenAPI document: 0.19.134
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.133
The version of the OpenAPI document: 0.19.134
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.133
The version of the OpenAPI document: 0.19.134
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.133
The version of the OpenAPI document: 0.19.134
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.133
The version of the OpenAPI document: 0.19.134
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.133/python'
self.user_agent = 'OpenAPI-Generator/0.19.134/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.133
The version of the OpenAPI document: 0.19.134
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.133\n"\
"SDK Package Version: 0.19.133".\
"Version of the API: 0.19.134\n"\
"SDK Package Version: 0.19.134".\
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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

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.133
The version of the OpenAPI document: 0.19.134
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.133
The version of the OpenAPI document: 0.19.134
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.133
The version of the OpenAPI document: 0.19.134
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_status.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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_app_input.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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_app_input_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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_app_runner_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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_app_runner_type.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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_app_sandbox_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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_app_sandbox_config_artifacts.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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_app_secret.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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_aws_account.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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_awsecr_image_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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_azure_account.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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_cloud_platform.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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
8 changes: 5 additions & 3 deletions nuon/models/app_component.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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down Expand Up @@ -44,7 +44,8 @@ class AppComponent(BaseModel):
status: Optional[StrictStr] = None
status_description: Optional[StrictStr] = None
updated_at: Optional[StrictStr] = None
__properties: ClassVar[List[str]] = ["app_id", "config_versions", "created_at", "created_by", "created_by_id", "dependencies", "id", "name", "status", "status_description", "updated_at"]
var_name: Optional[StrictStr] = None
__properties: ClassVar[List[str]] = ["app_id", "config_versions", "created_at", "created_by", "created_by_id", "dependencies", "id", "name", "status", "status_description", "updated_at", "var_name"]

model_config = {
"populate_by_name": True,
Expand Down Expand Up @@ -108,7 +109,8 @@ def from_dict(cls, obj: Dict) -> Self:
"name": obj.get("name"),
"status": obj.get("status"),
"status_description": obj.get("status_description"),
"updated_at": obj.get("updated_at")
"updated_at": obj.get("updated_at"),
"var_name": obj.get("var_name")
})
return _obj

Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_component_build.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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_component_config_connection.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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_component_release.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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
2 changes: 1 addition & 1 deletion nuon/models/app_component_release_step.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.133
The version of the OpenAPI document: 0.19.134
Contact: support@nuon.co
Generated by OpenAPI Generator (https://openapi-generator.tech)

Expand Down
Loading