Skip to content

TableauAuthnV1RegisterIdentityPoolRequest

Properties

Name Type Description Notes
name str Required. Identity pool name. Must be unique. This name is visible on the Tableau Server landing page when users sign in. [optional]
identity_store_instance int Required. ID of the identity store instance to configure with this identity pool. [optional]
auth_type_instance int Required. ID of the authentication instance to configure with this identity pool. [optional]
is_enabled bool Identity pool is enabled by default. [optional]
description str Identity pool description displayed to users when they sign in. [optional]

Example

from openapi_client.models.tableau_authn_v1_register_identity_pool_request import TableauAuthnV1RegisterIdentityPoolRequest

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

# convert the object into a dict
tableau_authn_v1_register_identity_pool_request_dict = tableau_authn_v1_register_identity_pool_request_instance.to_dict()
# create an instance of TableauAuthnV1RegisterIdentityPoolRequest from a dict
tableau_authn_v1_register_identity_pool_request_from_dict = TableauAuthnV1RegisterIdentityPoolRequest.from_dict(tableau_authn_v1_register_identity_pool_request_dict)
[Back to Model list] [Back to API list] [Back to README]