Skip to content

TableauAnalyticsextensionsV1ConnectionBrief

Properties

Name Type Description Notes
connection_name str Required. The title of the connection. [optional]
connection_type str Required. The kind of service responding to analytics extension requests. The value can be: TABPY, for a Tableau TabPy server; GENERIC_API for your custom service that complies with the Analytics Extensions API spec; or RSERVE, for an Rserve service; or EINSTEIN_DISCOVERY for your instance of Einstein Discovery. [optional]

Example

from openapi_client.models.tableau_analyticsextensions_v1_connection_brief import TableauAnalyticsextensionsV1ConnectionBrief

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

# convert the object into a dict
tableau_analyticsextensions_v1_connection_brief_dict = tableau_analyticsextensions_v1_connection_brief_instance.to_dict()
# create an instance of TableauAnalyticsextensionsV1ConnectionBrief from a dict
tableau_analyticsextensions_v1_connection_brief_from_dict = TableauAnalyticsextensionsV1ConnectionBrief.from_dict(tableau_analyticsextensions_v1_connection_brief_dict)
[Back to Model list] [Back to API list] [Back to README]