Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.31 KB

FunctionDeployOverridesType.md

File metadata and controls

33 lines (24 loc) · 1.31 KB

FunctionDeployOverridesType

Properties

Name Type Description Notes
env_vars Dict[str, str] [optional]
labels Dict[str, str] [optional]
annotations Dict[str, str] [optional]
limits ResourceLimits [optional]
requests ResourceLimits [optional]

Example

from waylay.services.registry.models.function_deploy_overrides_type import FunctionDeployOverridesType

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

# convert the object into a dict
function_deploy_overrides_type_dict = function_deploy_overrides_type_instance.to_dict()
# create an instance of FunctionDeployOverridesType from a dict
function_deploy_overrides_type_form_dict = function_deploy_overrides_type.from_dict(function_deploy_overrides_type_dict)

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