We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fe0dee4 commit 5e1a30fCopy full SHA for 5e1a30f
tableauserverclient/models/oidc_item.py
@@ -28,6 +28,18 @@ def __init__(self) -> None:
28
self.client_authentication: Optional[str] = None
29
self.voluntary_acr_values: Optional[str] = None
30
31
+ def __str__(self) -> str:
32
+ return (
33
+ f"{self.__class__.__qualname__}(enabled={self.enabled}, "
34
+ f"test_login_url={self.test_login_url}, "
35
+ f"idp_configuration_name={self.idp_configuration_name}, "
36
+ f"idp_configuration_id={self.idp_configuration_id}, "
37
+ f"client_id={self.client_id})"
38
+ )
39
+
40
+ def __repr__(self) -> str:
41
+ return f"<{str(self)}>"
42
43
@classmethod
44
def from_response(cls, raw_xml: bytes, ns) -> "SiteOIDCConfiguration":
45
"""
0 commit comments