You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
:ivar client: The HTTP client used for making API requests
41
+
:vartype client: SeamHttpClient
42
+
:ivar workspaces: Proxy to access workspace-related operations
43
+
:vartype workspaces: WorkspacesProxy
30
44
"""
31
45
32
46
lts_version: str=LTS_VERSION
@@ -40,16 +54,25 @@ def __init__(
40
54
retries: Optional[Retry] =None,
41
55
):
42
56
"""
43
-
Parameters
44
-
----------
45
-
personal_access_token : str, optional
46
-
Personal access token.
47
-
endpoint : str, optional
48
-
The API endpoint to which the request should be sent.
49
-
wait_for_action_attempt : bool or dict, optional
50
-
Controls whether to wait for an action attempt to complete, either as a boolean or as a dictionary specifying `timeout` and `poll_interval`. Defaults to `False`.
51
-
retries : urllib3.util.Retry, optional
52
-
Configuration for retry behavior on failed requests.
57
+
Initialize a SeamMultiWorkspace client instance.
58
+
59
+
This method sets up the SeamMultiWorkspace client with the provided personal access token
60
+
and configuration options.
61
+
62
+
:param personal_access_token: A personal access token for
63
+
authenticating with Seam
64
+
:type personal_access_token: str
65
+
:param endpoint: The custom API endpoint URL. If not provided,
66
+
the default Seam API endpoint will be used
67
+
:type endpoint: Optional[str]
68
+
:param wait_for_action_attempt: Controls whether to wait for an
69
+
action attempt to complete. Can be a boolean or a dictionary with
0 commit comments