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. |
|
name |
str |
|
|
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 |
|
from waylay.services.registry.models.runtime_attributes import RuntimeAttributes
# TODO update the JSON string below
json = "{}"
# create an instance of RuntimeAttributes from a JSON string
runtime_attributes_instance = RuntimeAttributes.from_json(json)
# print the JSON string representation of the object
print RuntimeAttributes.to_json()
# convert the object into a dict
runtime_attributes_dict = runtime_attributes_instance.to_dict()
# create an instance of RuntimeAttributes from a dict
runtime_attributes_form_dict = runtime_attributes.from_dict(runtime_attributes_dict)
[Back to Model list] [Back to API list] [Back to README]