Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 1.14 KB

File metadata and controls

32 lines (22 loc) · 1.14 KB

ServiceAutoArtifactConfig

Properties

Name Type Description Notes
auto bool When true, enables automatic template [optional]
name str [optional]
port int Service port [optional]

Example

from cloudharness_model.models.service_auto_artifact_config import ServiceAutoArtifactConfig

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

# convert the object into a dict
service_auto_artifact_config_dict = service_auto_artifact_config_instance.to_dict()
# create an instance of ServiceAutoArtifactConfig from a dict
service_auto_artifact_config_from_dict = ServiceAutoArtifactConfig.from_dict(service_auto_artifact_config_dict)

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