Skip to content

Latest commit

 

History

History
37 lines (28 loc) · 1.54 KB

UndeployArgs.md

File metadata and controls

37 lines (28 loc) · 1.54 KB

UndeployArgs

Input argument to an (openfaas) undeployment job for a function.

Properties

Name Type Description Notes
namespace str The (openfaas) namespace for the target function.
endpoint str The (openfaas) endpoint service name
runtime_name str
runtime_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
revision str The revision hash of the current (draft) function revision
is_native_plug bool If true, the function is not expected to be deployed on openfaas.
delete_entity bool
reset_entity bool

Example

from waylay.services.registry.models.undeploy_args import UndeployArgs

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

# convert the object into a dict
undeploy_args_dict = undeploy_args_instance.to_dict()
# create an instance of UndeployArgs from a dict
undeploy_args_form_dict = undeploy_args.from_dict(undeploy_args_dict)

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