Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.27 KB

File metadata and controls

31 lines (22 loc) · 1.27 KB

AttachDatabaseCatalogRequest

Request body for POST /databases/{database_id}/catalogs

Properties

Name Type Description Notes
alias str Optional alias under which this catalog is reachable inside the database. When omitted, it is reachable by the connection's name. [optional]
connection_id str

Example

from hotdata.models.attach_database_catalog_request import AttachDatabaseCatalogRequest

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

# convert the object into a dict
attach_database_catalog_request_dict = attach_database_catalog_request_instance.to_dict()
# create an instance of AttachDatabaseCatalogRequest from a dict
attach_database_catalog_request_from_dict = AttachDatabaseCatalogRequest.from_dict(attach_database_catalog_request_dict)

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