Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 1.69 KB

PlugManifest.md

File metadata and controls

38 lines (29 loc) · 1.69 KB

PlugManifest

Properties

Name Type Description Notes
deploy FunctionDeployOverridesType [optional]
name str The logical name for the function.
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
runtime str
runtime_version SemanticVersionRange [optional]
metadata PlugMeta
protected bool Indicates whether the function's script and other assets should be protected. [optional]
tags List[TagOrTagReference] Tags associated with this entity. [optional]
type PlugType
interface PlugInterface

Example

from waylay.services.registry.models.plug_manifest import PlugManifest

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

# convert the object into a dict
plug_manifest_dict = plug_manifest_instance.to_dict()
# create an instance of PlugManifest from a dict
plug_manifest_form_dict = plug_manifest.from_dict(plug_manifest_dict)

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