Skip to content

Commit f26e4c3

Browse files
feat(api): update via SDK Studio (#238)
1 parent 68016f0 commit f26e4c3

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5011,7 +5011,7 @@ from cloudflare.types.zero_trust import (
50115011
ExternalEvaluationRule,
50125012
GitHubOrganizationRule,
50135013
GroupRule,
5014-
GsuiteGroupRule,
5014+
GSuiteGroupRule,
50155015
IPListRule,
50165016
IPRule,
50175017
OktaGroupRule,

src/cloudflare/types/zero_trust/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
from .seat_edit_params import SeatEditParams as SeatEditParams
3131
from .access_rule_param import AccessRuleParam as AccessRuleParam
3232
from .domain_rule_param import DomainRuleParam as DomainRuleParam
33-
from .gsuite_group_rule import GsuiteGroupRule as GsuiteGroupRule
33+
from .gsuite_group_rule import GSuiteGroupRule as GSuiteGroupRule
3434
from .identity_provider import IdentityProvider as IdentityProvider
3535
from .scim_config_param import ScimConfigParam as ScimConfigParam
3636
from .country_rule_param import CountryRuleParam as CountryRuleParam
@@ -53,7 +53,7 @@
5353
from .certificate_rule_param import CertificateRuleParam as CertificateRuleParam
5454
from .identity_provider_type import IdentityProviderType as IdentityProviderType
5555
from .gateway_create_response import GatewayCreateResponse as GatewayCreateResponse
56-
from .gsuite_group_rule_param import GsuiteGroupRuleParam as GsuiteGroupRuleParam
56+
from .gsuite_group_rule_param import GSuiteGroupRuleParam as GSuiteGroupRuleParam
5757
from .external_evaluation_rule import ExternalEvaluationRule as ExternalEvaluationRule
5858
from .github_organization_rule import GitHubOrganizationRule as GitHubOrganizationRule
5959
from .service_token_rule_param import ServiceTokenRuleParam as ServiceTokenRuleParam

src/cloudflare/types/zero_trust/access_rule.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from .saml_group_rule import SAMLGroupRule
1515
from .azure_group_rule import AzureGroupRule
1616
from .certificate_rule import CertificateRule
17-
from .gsuite_group_rule import GsuiteGroupRule
17+
from .gsuite_group_rule import GSuiteGroupRule
1818
from .service_token_rule import ServiceTokenRule
1919
from .external_evaluation_rule import ExternalEvaluationRule
2020
from .github_organization_rule import GitHubOrganizationRule
@@ -35,7 +35,7 @@
3535
GroupRule,
3636
AzureGroupRule,
3737
GitHubOrganizationRule,
38-
GsuiteGroupRule,
38+
GSuiteGroupRule,
3939
OktaGroupRule,
4040
SAMLGroupRule,
4141
ServiceTokenRule,

src/cloudflare/types/zero_trust/access_rule_param.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
from .saml_group_rule_param import SAMLGroupRuleParam
1717
from .azure_group_rule_param import AzureGroupRuleParam
1818
from .certificate_rule_param import CertificateRuleParam
19-
from .gsuite_group_rule_param import GsuiteGroupRuleParam
19+
from .gsuite_group_rule_param import GSuiteGroupRuleParam
2020
from .service_token_rule_param import ServiceTokenRuleParam
2121
from .external_evaluation_rule_param import ExternalEvaluationRuleParam
2222
from .github_organization_rule_param import GitHubOrganizationRuleParam
@@ -37,7 +37,7 @@
3737
GroupRuleParam,
3838
AzureGroupRuleParam,
3939
GitHubOrganizationRuleParam,
40-
GsuiteGroupRuleParam,
40+
GSuiteGroupRuleParam,
4141
OktaGroupRuleParam,
4242
SAMLGroupRuleParam,
4343
ServiceTokenRuleParam,

src/cloudflare/types/zero_trust/gsuite_group_rule.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@
22

33
from ..._models import BaseModel
44

5-
__all__ = ["GsuiteGroupRule", "Gsuite"]
5+
__all__ = ["GSuiteGroupRule", "GSuite"]
66

77

8-
class Gsuite(BaseModel):
8+
class GSuite(BaseModel):
99
connection_id: str
1010
"""The ID of your Google Workspace identity provider."""
1111

1212
email: str
1313
"""The email of the Google Workspace group."""
1414

1515

16-
class GsuiteGroupRule(BaseModel):
17-
gsuite: Gsuite
16+
class GSuiteGroupRule(BaseModel):
17+
gsuite: GSuite

src/cloudflare/types/zero_trust/gsuite_group_rule_param.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,16 @@
44

55
from typing_extensions import Required, TypedDict
66

7-
__all__ = ["GsuiteGroupRuleParam", "Gsuite"]
7+
__all__ = ["GSuiteGroupRuleParam", "GSuite"]
88

99

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

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

1717

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

0 commit comments

Comments
 (0)