Skip to content

Latest commit

 

History

History
30 lines (22 loc) · 903 Bytes

AuthConfig.md

File metadata and controls

30 lines (22 loc) · 903 Bytes

AuthConfig

Properties

Name Type Description Notes
client_id str
audience str
well_known_endpoint str

Example

from compute_api_client.models.auth_config import AuthConfig

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

# convert the object into a dict
auth_config_dict = auth_config_instance.to_dict()
# create an instance of AuthConfig from a dict
auth_config_form_dict = auth_config.from_dict(auth_config_dict)

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