Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.76 KB

WebscriptManifest.md

File metadata and controls

36 lines (27 loc) · 1.76 KB

WebscriptManifest

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 FunctionMeta
private bool If <code>true</code> this webscript will require authentication.
allow_hmac bool If <code>true</code> this webscript will support authentication with a <em>HMAC</em> key, available as the <code>secret</code> attribute of the deployed webscript entity.

Example

from waylay.services.registry.models.webscript_manifest import WebscriptManifest

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

# convert the object into a dict
webscript_manifest_dict = webscript_manifest_instance.to_dict()
# create an instance of WebscriptManifest from a dict
webscript_manifest_form_dict = webscript_manifest.from_dict(webscript_manifest_dict)

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