@@ -70,10 +70,10 @@ def create(
7070 extra_body : Body | None = None ,
7171 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
7272 ) -> ManagedAuth :
73- """Creates managed authentication for a profile and domain combination.
73+ """Creates an auth connection for a profile and domain combination.
7474
7575 Returns 409
76- Conflict if managed auth already exists for the given profile and domain.
76+ Conflict if an auth connection already exists for the given profile and domain.
7777
7878 Args:
7979 domain: Domain for authentication
@@ -99,7 +99,7 @@ def create(
9999 - Ping Identity: _.pingone.com, _.pingidentity.com
100100
101101 credential:
102- Reference to credentials for managed auth. Use one of:
102+ Reference to credentials for the auth connection . Use one of:
103103
104104 - { name } for Kernel credentials
105105 - { provider, path } for external provider item
@@ -153,10 +153,10 @@ def retrieve(
153153 extra_body : Body | None = None ,
154154 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
155155 ) -> ManagedAuth :
156- """Retrieve managed auth by its ID.
156+ """Retrieve an auth connection by its ID.
157157
158- Includes current flow state if a login is in
159- progress.
158+ Includes current flow state if a login is
159+ in progress.
160160
161161 Args:
162162 extra_headers: Send extra headers
@@ -192,7 +192,7 @@ def list(
192192 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
193193 ) -> SyncOffsetPagination [ManagedAuth ]:
194194 """
195- List managed auths with optional filters for profile_name and domain.
195+ List auth connections with optional filters for profile_name and domain.
196196
197197 Args:
198198 domain: Filter by domain
@@ -243,11 +243,11 @@ def delete(
243243 extra_body : Body | None = None ,
244244 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
245245 ) -> None :
246- """Deletes managed auth and terminates its workflow.
246+ """Deletes an auth connection and terminates its workflow.
247247
248248 This will:
249249
250- - Delete the managed auth record
250+ - Delete the auth connection record
251251 - Terminate the Temporal workflow
252252 - Cancel any in-progress login flows
253253
@@ -323,10 +323,10 @@ def login(
323323 extra_body : Body | None = None ,
324324 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
325325 ) -> LoginResponse :
326- """Starts a login flow for the managed auth.
326+ """Starts a login flow for the auth connection .
327327
328- Returns immediately with a hosted URL
329- for the user to complete authentication, or triggers automatic re-auth if
328+ Returns immediately with a hosted
329+ URL for the user to complete authentication, or triggers automatic re-auth if
330330 credentials are stored.
331331
332332 Args:
@@ -369,8 +369,8 @@ def submit(
369369 ) -> SubmitFieldsResponse :
370370 """Submits field values for the login form.
371371
372- Poll the managed auth to track progress
373- and get results.
372+ Poll the auth connection to track
373+ progress and get results.
374374
375375 Args:
376376 fields: Map of field name to value
@@ -443,10 +443,10 @@ async def create(
443443 extra_body : Body | None = None ,
444444 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
445445 ) -> ManagedAuth :
446- """Creates managed authentication for a profile and domain combination.
446+ """Creates an auth connection for a profile and domain combination.
447447
448448 Returns 409
449- Conflict if managed auth already exists for the given profile and domain.
449+ Conflict if an auth connection already exists for the given profile and domain.
450450
451451 Args:
452452 domain: Domain for authentication
@@ -472,7 +472,7 @@ async def create(
472472 - Ping Identity: _.pingone.com, _.pingidentity.com
473473
474474 credential:
475- Reference to credentials for managed auth. Use one of:
475+ Reference to credentials for the auth connection . Use one of:
476476
477477 - { name } for Kernel credentials
478478 - { provider, path } for external provider item
@@ -526,10 +526,10 @@ async def retrieve(
526526 extra_body : Body | None = None ,
527527 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
528528 ) -> ManagedAuth :
529- """Retrieve managed auth by its ID.
529+ """Retrieve an auth connection by its ID.
530530
531- Includes current flow state if a login is in
532- progress.
531+ Includes current flow state if a login is
532+ in progress.
533533
534534 Args:
535535 extra_headers: Send extra headers
@@ -565,7 +565,7 @@ def list(
565565 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
566566 ) -> AsyncPaginator [ManagedAuth , AsyncOffsetPagination [ManagedAuth ]]:
567567 """
568- List managed auths with optional filters for profile_name and domain.
568+ List auth connections with optional filters for profile_name and domain.
569569
570570 Args:
571571 domain: Filter by domain
@@ -616,11 +616,11 @@ async def delete(
616616 extra_body : Body | None = None ,
617617 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
618618 ) -> None :
619- """Deletes managed auth and terminates its workflow.
619+ """Deletes an auth connection and terminates its workflow.
620620
621621 This will:
622622
623- - Delete the managed auth record
623+ - Delete the auth connection record
624624 - Terminate the Temporal workflow
625625 - Cancel any in-progress login flows
626626
@@ -696,10 +696,10 @@ async def login(
696696 extra_body : Body | None = None ,
697697 timeout : float | httpx .Timeout | None | NotGiven = not_given ,
698698 ) -> LoginResponse :
699- """Starts a login flow for the managed auth.
699+ """Starts a login flow for the auth connection .
700700
701- Returns immediately with a hosted URL
702- for the user to complete authentication, or triggers automatic re-auth if
701+ Returns immediately with a hosted
702+ URL for the user to complete authentication, or triggers automatic re-auth if
703703 credentials are stored.
704704
705705 Args:
@@ -742,8 +742,8 @@ async def submit(
742742 ) -> SubmitFieldsResponse :
743743 """Submits field values for the login form.
744744
745- Poll the managed auth to track progress
746- and get results.
745+ Poll the auth connection to track
746+ progress and get results.
747747
748748 Args:
749749 fields: Map of field name to value
0 commit comments