-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(api): update via SDK Studio (#262)
- Loading branch information
1 parent
952514e
commit df8af97
Showing
6 changed files
with
43 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from ..._models import BaseModel | ||
|
||
__all__ = ["OktaGroupRule", "Okta"] | ||
|
||
|
||
class Okta(BaseModel): | ||
connection_id: str | ||
"""The ID of your Okta identity provider.""" | ||
|
||
email: str | ||
"""The email of the Okta group.""" | ||
|
||
|
||
class OktaGroupRule(BaseModel): | ||
okta: Okta |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details. | ||
|
||
from __future__ import annotations | ||
|
||
from typing_extensions import Required, TypedDict | ||
|
||
__all__ = ["OktaGroupRuleParam", "Okta"] | ||
|
||
|
||
class Okta(TypedDict, total=False): | ||
connection_id: Required[str] | ||
"""The ID of your Okta identity provider.""" | ||
|
||
email: Required[str] | ||
"""The email of the Okta group.""" | ||
|
||
|
||
class OktaGroupRuleParam(TypedDict, total=False): | ||
okta: Required[Okta] |