File tree 6 files changed +15
-15
lines changed
src/cloudflare/types/zero_trust
6 files changed +15
-15
lines changed Original file line number Diff line number Diff line change @@ -5011,7 +5011,7 @@ from cloudflare.types.zero_trust import (
5011
5011
ExternalEvaluationRule,
5012
5012
GitHubOrganizationRule,
5013
5013
GroupRule,
5014
- GsuiteGroupRule ,
5014
+ GSuiteGroupRule ,
5015
5015
IPListRule,
5016
5016
IPRule,
5017
5017
OktaGroupRule,
Original file line number Diff line number Diff line change 30
30
from .seat_edit_params import SeatEditParams as SeatEditParams
31
31
from .access_rule_param import AccessRuleParam as AccessRuleParam
32
32
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
34
34
from .identity_provider import IdentityProvider as IdentityProvider
35
35
from .scim_config_param import ScimConfigParam as ScimConfigParam
36
36
from .country_rule_param import CountryRuleParam as CountryRuleParam
53
53
from .certificate_rule_param import CertificateRuleParam as CertificateRuleParam
54
54
from .identity_provider_type import IdentityProviderType as IdentityProviderType
55
55
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
57
57
from .external_evaluation_rule import ExternalEvaluationRule as ExternalEvaluationRule
58
58
from .github_organization_rule import GitHubOrganizationRule as GitHubOrganizationRule
59
59
from .service_token_rule_param import ServiceTokenRuleParam as ServiceTokenRuleParam
Original file line number Diff line number Diff line change 14
14
from .saml_group_rule import SAMLGroupRule
15
15
from .azure_group_rule import AzureGroupRule
16
16
from .certificate_rule import CertificateRule
17
- from .gsuite_group_rule import GsuiteGroupRule
17
+ from .gsuite_group_rule import GSuiteGroupRule
18
18
from .service_token_rule import ServiceTokenRule
19
19
from .external_evaluation_rule import ExternalEvaluationRule
20
20
from .github_organization_rule import GitHubOrganizationRule
35
35
GroupRule ,
36
36
AzureGroupRule ,
37
37
GitHubOrganizationRule ,
38
- GsuiteGroupRule ,
38
+ GSuiteGroupRule ,
39
39
OktaGroupRule ,
40
40
SAMLGroupRule ,
41
41
ServiceTokenRule ,
Original file line number Diff line number Diff line change 16
16
from .saml_group_rule_param import SAMLGroupRuleParam
17
17
from .azure_group_rule_param import AzureGroupRuleParam
18
18
from .certificate_rule_param import CertificateRuleParam
19
- from .gsuite_group_rule_param import GsuiteGroupRuleParam
19
+ from .gsuite_group_rule_param import GSuiteGroupRuleParam
20
20
from .service_token_rule_param import ServiceTokenRuleParam
21
21
from .external_evaluation_rule_param import ExternalEvaluationRuleParam
22
22
from .github_organization_rule_param import GitHubOrganizationRuleParam
37
37
GroupRuleParam ,
38
38
AzureGroupRuleParam ,
39
39
GitHubOrganizationRuleParam ,
40
- GsuiteGroupRuleParam ,
40
+ GSuiteGroupRuleParam ,
41
41
OktaGroupRuleParam ,
42
42
SAMLGroupRuleParam ,
43
43
ServiceTokenRuleParam ,
Original file line number Diff line number Diff line change 2
2
3
3
from ..._models import BaseModel
4
4
5
- __all__ = ["GsuiteGroupRule " , "Gsuite " ]
5
+ __all__ = ["GSuiteGroupRule " , "GSuite " ]
6
6
7
7
8
- class Gsuite (BaseModel ):
8
+ class GSuite (BaseModel ):
9
9
connection_id : str
10
10
"""The ID of your Google Workspace identity provider."""
11
11
12
12
email : str
13
13
"""The email of the Google Workspace group."""
14
14
15
15
16
- class GsuiteGroupRule (BaseModel ):
17
- gsuite : Gsuite
16
+ class GSuiteGroupRule (BaseModel ):
17
+ gsuite : GSuite
Original file line number Diff line number Diff line change 4
4
5
5
from typing_extensions import Required , TypedDict
6
6
7
- __all__ = ["GsuiteGroupRuleParam " , "Gsuite " ]
7
+ __all__ = ["GSuiteGroupRuleParam " , "GSuite " ]
8
8
9
9
10
- class Gsuite (TypedDict , total = False ):
10
+ class GSuite (TypedDict , total = False ):
11
11
connection_id : Required [str ]
12
12
"""The ID of your Google Workspace identity provider."""
13
13
14
14
email : Required [str ]
15
15
"""The email of the Google Workspace group."""
16
16
17
17
18
- class GsuiteGroupRuleParam (TypedDict , total = False ):
19
- gsuite : Required [Gsuite ]
18
+ class GSuiteGroupRuleParam (TypedDict , total = False ):
19
+ gsuite : Required [GSuite ]
You can’t perform that action at this time.
0 commit comments