Skip to content

Latest commit

 

History

History
36 lines (27 loc) · 1.67 KB

KFServingManifest.md

File metadata and controls

36 lines (27 loc) · 1.67 KB

KFServingManifest

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
protected bool Indicates whether the function's script and other assets should be protected. [optional]
tags List[TagOrTagReference] Tags associated with this entity. [optional]

Example

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)

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