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) · 1 KB

DockerBasicAuth.md

File metadata and controls

29 lines (21 loc) · 1 KB

DockerBasicAuth

Properties

Name Type Description Notes
username str User name for the Docker repository. [optional]
password str Password for the Docker repository. [optional]

Example

from databricks_jobs.models.docker_basic_auth import DockerBasicAuth

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

# convert the object into a dict
docker_basic_auth_dict = docker_basic_auth_instance.to_dict()
# create an instance of DockerBasicAuth from a dict
docker_basic_auth_form_dict = docker_basic_auth.from_dict(docker_basic_auth_dict)

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