Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 1.66 KB

RunContainer.md

File metadata and controls

40 lines (31 loc) · 1.66 KB

RunContainer

a Run container description

Properties

Name Type Description Notes
id str the container Id [optional] [readonly]
name str the container name
labels Dict[str, str] the metadata labels [optional]
env_vars Dict[str, str] environment variable map [optional]
image str the container image URI
entrypoint str the container entry point [optional]
run_args List[str] the list of run arguments for the container [optional]
dependencies List[str] the list of dependencies container name to run this container [optional]
solution_container bool whether or not this container is a Cosmo Tech solution container [optional] [readonly]
node_label str the node label request [optional]
run_sizing ContainerResourceSizing [optional]

Example

from cosmotech_api.models.run_container import RunContainer

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

# convert the object into a dict
run_container_dict = run_container_instance.to_dict()
# create an instance of RunContainer from a dict
run_container_from_dict = RunContainer.from_dict(run_container_dict)

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