Skip to content

Commit

Permalink
feat(api): update via SDK Studio (#238)
Browse files Browse the repository at this point in the history
  • Loading branch information
stainless-app[bot] authored and stainless-bot committed Apr 22, 2024
1 parent a333132 commit b4310a5
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 15 deletions.
2 changes: 1 addition & 1 deletion api.md
Original file line number Diff line number Diff line change
Expand Up @@ -5011,7 +5011,7 @@ from cloudflare.types.zero_trust import (
ExternalEvaluationRule,
GitHubOrganizationRule,
GroupRule,
GsuiteGroupRule,
GSuiteGroupRule,
IPListRule,
IPRule,
OktaGroupRule,
Expand Down
4 changes: 2 additions & 2 deletions src/cloudflare/types/zero_trust/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
from .seat_edit_params import SeatEditParams as SeatEditParams
from .access_rule_param import AccessRuleParam as AccessRuleParam
from .domain_rule_param import DomainRuleParam as DomainRuleParam
from .gsuite_group_rule import GsuiteGroupRule as GsuiteGroupRule
from .gsuite_group_rule import GSuiteGroupRule as GSuiteGroupRule
from .identity_provider import IdentityProvider as IdentityProvider
from .scim_config_param import ScimConfigParam as ScimConfigParam
from .country_rule_param import CountryRuleParam as CountryRuleParam
Expand All @@ -53,7 +53,7 @@
from .certificate_rule_param import CertificateRuleParam as CertificateRuleParam
from .identity_provider_type import IdentityProviderType as IdentityProviderType
from .gateway_create_response import GatewayCreateResponse as GatewayCreateResponse
from .gsuite_group_rule_param import GsuiteGroupRuleParam as GsuiteGroupRuleParam
from .gsuite_group_rule_param import GSuiteGroupRuleParam as GSuiteGroupRuleParam
from .external_evaluation_rule import ExternalEvaluationRule as ExternalEvaluationRule
from .github_organization_rule import GitHubOrganizationRule as GitHubOrganizationRule
from .service_token_rule_param import ServiceTokenRuleParam as ServiceTokenRuleParam
Expand Down
4 changes: 2 additions & 2 deletions src/cloudflare/types/zero_trust/access_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
from .saml_group_rule import SAMLGroupRule
from .azure_group_rule import AzureGroupRule
from .certificate_rule import CertificateRule
from .gsuite_group_rule import GsuiteGroupRule
from .gsuite_group_rule import GSuiteGroupRule
from .service_token_rule import ServiceTokenRule
from .external_evaluation_rule import ExternalEvaluationRule
from .github_organization_rule import GitHubOrganizationRule
Expand All @@ -35,7 +35,7 @@
GroupRule,
AzureGroupRule,
GitHubOrganizationRule,
GsuiteGroupRule,
GSuiteGroupRule,
OktaGroupRule,
SAMLGroupRule,
ServiceTokenRule,
Expand Down
4 changes: 2 additions & 2 deletions src/cloudflare/types/zero_trust/access_rule_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
from .saml_group_rule_param import SAMLGroupRuleParam
from .azure_group_rule_param import AzureGroupRuleParam
from .certificate_rule_param import CertificateRuleParam
from .gsuite_group_rule_param import GsuiteGroupRuleParam
from .gsuite_group_rule_param import GSuiteGroupRuleParam
from .service_token_rule_param import ServiceTokenRuleParam
from .external_evaluation_rule_param import ExternalEvaluationRuleParam
from .github_organization_rule_param import GitHubOrganizationRuleParam
Expand All @@ -37,7 +37,7 @@
GroupRuleParam,
AzureGroupRuleParam,
GitHubOrganizationRuleParam,
GsuiteGroupRuleParam,
GSuiteGroupRuleParam,
OktaGroupRuleParam,
SAMLGroupRuleParam,
ServiceTokenRuleParam,
Expand Down
8 changes: 4 additions & 4 deletions src/cloudflare/types/zero_trust/gsuite_group_rule.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,16 @@

from ..._models import BaseModel

__all__ = ["GsuiteGroupRule", "Gsuite"]
__all__ = ["GSuiteGroupRule", "GSuite"]


class Gsuite(BaseModel):
class GSuite(BaseModel):
connection_id: str
"""The ID of your Google Workspace identity provider."""

email: str
"""The email of the Google Workspace group."""


class GsuiteGroupRule(BaseModel):
gsuite: Gsuite
class GSuiteGroupRule(BaseModel):
gsuite: GSuite
8 changes: 4 additions & 4 deletions src/cloudflare/types/zero_trust/gsuite_group_rule_param.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,16 +4,16 @@

from typing_extensions import Required, TypedDict

__all__ = ["GsuiteGroupRuleParam", "Gsuite"]
__all__ = ["GSuiteGroupRuleParam", "GSuite"]


class Gsuite(TypedDict, total=False):
class GSuite(TypedDict, total=False):
connection_id: Required[str]
"""The ID of your Google Workspace identity provider."""

email: Required[str]
"""The email of the Google Workspace group."""


class GsuiteGroupRuleParam(TypedDict, total=False):
gsuite: Required[Gsuite]
class GSuiteGroupRuleParam(TypedDict, total=False):
gsuite: Required[GSuite]

0 comments on commit b4310a5

Please sign in to comment.