Skip to content

Latest commit

 

History

History
34 lines (25 loc) · 1.15 KB

File metadata and controls

34 lines (25 loc) · 1.15 KB

PrebuiltImageResponse

Properties

Name Type Description Notes
image_name str
label str
tags List[str]
type DeploymentType
port int
healthcheck str [optional]

Example

from platform_api_python_client.models.prebuilt_image_response import PrebuiltImageResponse

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

# convert the object into a dict
prebuilt_image_response_dict = prebuilt_image_response_instance.to_dict()
# create an instance of PrebuiltImageResponse from a dict
prebuilt_image_response_from_dict = PrebuiltImageResponse.from_dict(prebuilt_image_response_dict)

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