Skip to content

Latest commit

 

History

History
36 lines (26 loc) · 1.54 KB

File metadata and controls

36 lines (26 loc) · 1.54 KB

DeploymentAutoArtifactConfig

Properties

Name Type Description Notes
auto bool When true, enables automatic template [optional]
name str [optional]
port object Deployment port [optional]
replicas int Number of replicas [optional]
image str Image name to use in the deployment. Leave it blank to set from the application's Docker file [optional]
resources DeploymentResourcesConf [optional]
volume DeploymentVolumeSpec [optional]

Example

from cloudharness_model.models.deployment_auto_artifact_config import DeploymentAutoArtifactConfig

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

# convert the object into a dict
deployment_auto_artifact_config_dict = deployment_auto_artifact_config_instance.to_dict()
# create an instance of DeploymentAutoArtifactConfig from a dict
deployment_auto_artifact_config_from_dict = DeploymentAutoArtifactConfig.from_dict(deployment_auto_artifact_config_dict)

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