Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 1.73 KB

DeployArgsDeploySpecOverrides.md

File metadata and controls

42 lines (33 loc) · 1.73 KB

DeployArgsDeploySpecOverrides

Overrides on the deployment specification.

Properties

Name Type Description Notes
service str [optional]
image str [optional]
namespace str [optional]
network str [optional]
env_vars Dict[str, str] [optional]
constraints List[str] [optional]
labels Dict[str, str] [optional]
annotations Dict[str, str] [optional]
secrets List[str] [optional]
registry_auth str [optional]
limits ResourceLimits [optional]
requests ResourceLimits [optional]
read_only_root_filesystem bool [optional]

Example

from waylay.services.registry.models.deploy_args_deploy_spec_overrides import DeployArgsDeploySpecOverrides

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

# convert the object into a dict
deploy_args_deploy_spec_overrides_dict = deploy_args_deploy_spec_overrides_instance.to_dict()
# create an instance of DeployArgsDeploySpecOverrides from a dict
deploy_args_deploy_spec_overrides_form_dict = deploy_args_deploy_spec_overrides.from_dict(deploy_args_deploy_spec_overrides_dict)

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