Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.28 KB

File metadata and controls

31 lines (22 loc) · 1.28 KB

ResourceRemoteInfoClickhouseTable

Remote info for ClickHouse table.

Properties

Name Type Description Notes
database_name str The name of the ClickHouse database containing the table.
table_name str The name of the ClickHouse table.

Example

from opal_security.models.resource_remote_info_clickhouse_table import ResourceRemoteInfoClickhouseTable

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

# convert the object into a dict
resource_remote_info_clickhouse_table_dict = resource_remote_info_clickhouse_table_instance.to_dict()
# create an instance of ResourceRemoteInfoClickhouseTable from a dict
resource_remote_info_clickhouse_table_from_dict = ResourceRemoteInfoClickhouseTable.from_dict(resource_remote_info_clickhouse_table_dict)

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