Skip to content

Latest commit

 

History

History
35 lines (26 loc) · 1.47 KB

RuntimeVersionInfo.md

File metadata and controls

35 lines (26 loc) · 1.47 KB

RuntimeVersionInfo

A summary of a selected version for a runtime

Properties

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]

Example

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)

[Back to Model list] [Back to API list] [Back to README]