Skip to content
This repository has been archived by the owner on Jun 13, 2023. It is now read-only.

Latest commit

 

History

History
29 lines (21 loc) · 950 Bytes

DockerImage.md

File metadata and controls

29 lines (21 loc) · 950 Bytes

DockerImage

Properties

Name Type Description Notes
url str URL for the Docker image. [optional]
basic_auth DockerBasicAuth [optional]

Example

from databricks_jobs.models.docker_image import DockerImage

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

# convert the object into a dict
docker_image_dict = docker_image_instance.to_dict()
# create an instance of DockerImage from a dict
docker_image_form_dict = docker_image.from_dict(docker_image_dict)

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