A summary of a selected version for a runtime
Name | Type | Description | Notes |
---|---|---|---|
deprecated | bool | If true, the function uses a deprecated runtime. | |
upgradable | bool | If true, a newer runtime for this function is available using the `rebuild` API. | |
version | str | A semantic version with exactly a `major`, `minor` and `patch` specifier. No `pre-release` or `build` identifiers are allowed. See https://semver.org | |
title | str | ||
description | str | [optional] | |
tags | List[str] | [optional] |
from waylay.services.registry.models.runtime_version_info import RuntimeVersionInfo
# TODO update the JSON string below
json = "{}"
# create an instance of RuntimeVersionInfo from a JSON string
runtime_version_info_instance = RuntimeVersionInfo.from_json(json)
# print the JSON string representation of the object
print RuntimeVersionInfo.to_json()
# convert the object into a dict
runtime_version_info_dict = runtime_version_info_instance.to_dict()
# create an instance of RuntimeVersionInfo from a dict
runtime_version_info_form_dict = runtime_version_info.from_dict(runtime_version_info_dict)