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 | ||
protected | bool | Indicates whether the function's script and other assets should be protected. | [optional] |
tags | List[TagOrTagReference] | Tags associated with this entity. | [optional] |
from waylay.services.registry.models.kf_serving_manifest import KFServingManifest
# TODO update the JSON string below
json = "{}"
# create an instance of KFServingManifest from a JSON string
kf_serving_manifest_instance = KFServingManifest.from_json(json)
# print the JSON string representation of the object
print KFServingManifest.to_json()
# convert the object into a dict
kf_serving_manifest_dict = kf_serving_manifest_instance.to_dict()
# create an instance of KFServingManifest from a dict
kf_serving_manifest_form_dict = kf_serving_manifest.from_dict(kf_serving_manifest_dict)