Skip to content

Commit 992e3d6

Browse files
stainless-app[bot]stainless-bot
authored andcommitted
feat(api): update via SDK Studio (#863)
1 parent 8c548f7 commit 992e3d6

17 files changed

+1171
-1171
lines changed

api.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5266,7 +5266,7 @@ from cloudflare.types.zero_trust import (
52665266
GenericOAuthConfig,
52675267
IdentityProvider,
52685268
IdentityProviderType,
5269-
ScimConfig,
5269+
SCIMConfig,
52705270
IdentityProviderListResponse,
52715271
IdentityProviderDeleteResponse,
52725272
)

src/cloudflare/resources/zero_trust/access/applications/applications.py

+36-36
Large diffs are not rendered by default.

src/cloudflare/resources/zero_trust/identity_providers.py

+61-61
Large diffs are not rendered by default.

src/cloudflare/types/zero_trust/__init__.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
from .access_rule import AccessRule as AccessRule
1313
from .domain_rule import DomainRule as DomainRule
1414
from .percentiles import Percentiles as Percentiles
15-
from .scim_config import ScimConfig as ScimConfig
15+
from .scim_config import SCIMConfig as SCIMConfig
1616
from .country_rule import CountryRule as CountryRule
1717
from .ip_list_rule import IPListRule as IPListRule
1818
from .login_design import LoginDesign as LoginDesign
@@ -32,7 +32,7 @@
3232
from .domain_rule_param import DomainRuleParam as DomainRuleParam
3333
from .gsuite_group_rule import GSuiteGroupRule as GSuiteGroupRule
3434
from .identity_provider import IdentityProvider as IdentityProvider
35-
from .scim_config_param import ScimConfigParam as ScimConfigParam
35+
from .scim_config_param import SCIMConfigParam as SCIMConfigParam
3636
from .country_rule_param import CountryRuleParam as CountryRuleParam
3737
from .ip_list_rule_param import IPListRuleParam as IPListRuleParam
3838
from .login_design_param import LoginDesignParam as LoginDesignParam

src/cloudflare/types/zero_trust/access/application_create_params.py

+168-168
Large diffs are not rendered by default.

src/cloudflare/types/zero_trust/access/application_create_response.py

+168-168
Large diffs are not rendered by default.

src/cloudflare/types/zero_trust/access/application_get_response.py

+168-168
Large diffs are not rendered by default.

src/cloudflare/types/zero_trust/access/application_list_response.py

+168-168
Large diffs are not rendered by default.

src/cloudflare/types/zero_trust/access/application_update_params.py

+168-168
Large diffs are not rendered by default.

src/cloudflare/types/zero_trust/access/application_update_response.py

+168-168
Large diffs are not rendered by default.

src/cloudflare/types/zero_trust/azure_ad.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
from typing_extensions import Literal
55

66
from ..._models import BaseModel
7-
from .scim_config import ScimConfig
7+
from .scim_config import SCIMConfig
88
from .identity_provider_type import IdentityProviderType
99

1010
__all__ = ["AzureAD", "Config"]
@@ -67,7 +67,7 @@ class AzureAD(BaseModel):
6767
id: Optional[str] = None
6868
"""UUID"""
6969

70-
scim_config: Optional[ScimConfig] = None
70+
scim_config: Optional[SCIMConfig] = None
7171
"""
7272
The configuration settings for enabling a System for Cross-Domain Identity
7373
Management (SCIM) with the identity provider.

src/cloudflare/types/zero_trust/identity_provider.py

+14-14
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
from .azure_ad import AzureAD
66
from ..._models import BaseModel
7-
from .scim_config import ScimConfig
7+
from .scim_config import SCIMConfig
88
from .generic_oauth_config import GenericOAuthConfig
99
from .identity_provider_type import IdentityProviderType
1010

@@ -76,7 +76,7 @@ class AccessCentrify(BaseModel):
7676
id: Optional[str] = None
7777
"""UUID"""
7878

79-
scim_config: Optional[ScimConfig] = None
79+
scim_config: Optional[SCIMConfig] = None
8080
"""
8181
The configuration settings for enabling a System for Cross-Domain Identity
8282
Management (SCIM) with the identity provider.
@@ -104,7 +104,7 @@ class AccessFacebook(BaseModel):
104104
id: Optional[str] = None
105105
"""UUID"""
106106

107-
scim_config: Optional[ScimConfig] = None
107+
scim_config: Optional[SCIMConfig] = None
108108
"""
109109
The configuration settings for enabling a System for Cross-Domain Identity
110110
Management (SCIM) with the identity provider.
@@ -132,7 +132,7 @@ class AccessGitHub(BaseModel):
132132
id: Optional[str] = None
133133
"""UUID"""
134134

135-
scim_config: Optional[ScimConfig] = None
135+
scim_config: Optional[SCIMConfig] = None
136136
"""
137137
The configuration settings for enabling a System for Cross-Domain Identity
138138
Management (SCIM) with the identity provider.
@@ -174,7 +174,7 @@ class AccessGoogle(BaseModel):
174174
id: Optional[str] = None
175175
"""UUID"""
176176

177-
scim_config: Optional[ScimConfig] = None
177+
scim_config: Optional[SCIMConfig] = None
178178
"""
179179
The configuration settings for enabling a System for Cross-Domain Identity
180180
Management (SCIM) with the identity provider.
@@ -219,7 +219,7 @@ class AccessGoogleApps(BaseModel):
219219
id: Optional[str] = None
220220
"""UUID"""
221221

222-
scim_config: Optional[ScimConfig] = None
222+
scim_config: Optional[SCIMConfig] = None
223223
"""
224224
The configuration settings for enabling a System for Cross-Domain Identity
225225
Management (SCIM) with the identity provider.
@@ -247,7 +247,7 @@ class AccessLinkedin(BaseModel):
247247
id: Optional[str] = None
248248
"""UUID"""
249249

250-
scim_config: Optional[ScimConfig] = None
250+
scim_config: Optional[SCIMConfig] = None
251251
"""
252252
The configuration settings for enabling a System for Cross-Domain Identity
253253
Management (SCIM) with the identity provider.
@@ -301,7 +301,7 @@ class AccessOIDC(BaseModel):
301301
id: Optional[str] = None
302302
"""UUID"""
303303

304-
scim_config: Optional[ScimConfig] = None
304+
scim_config: Optional[SCIMConfig] = None
305305
"""
306306
The configuration settings for enabling a System for Cross-Domain Identity
307307
Management (SCIM) with the identity provider.
@@ -349,7 +349,7 @@ class AccessOkta(BaseModel):
349349
id: Optional[str] = None
350350
"""UUID"""
351351

352-
scim_config: Optional[ScimConfig] = None
352+
scim_config: Optional[SCIMConfig] = None
353353
"""
354354
The configuration settings for enabling a System for Cross-Domain Identity
355355
Management (SCIM) with the identity provider.
@@ -394,7 +394,7 @@ class AccessOnelogin(BaseModel):
394394
id: Optional[str] = None
395395
"""UUID"""
396396

397-
scim_config: Optional[ScimConfig] = None
397+
scim_config: Optional[SCIMConfig] = None
398398
"""
399399
The configuration settings for enabling a System for Cross-Domain Identity
400400
Management (SCIM) with the identity provider.
@@ -439,7 +439,7 @@ class AccessPingone(BaseModel):
439439
id: Optional[str] = None
440440
"""UUID"""
441441

442-
scim_config: Optional[ScimConfig] = None
442+
scim_config: Optional[SCIMConfig] = None
443443
"""
444444
The configuration settings for enabling a System for Cross-Domain Identity
445445
Management (SCIM) with the identity provider.
@@ -507,7 +507,7 @@ class AccessSAML(BaseModel):
507507
id: Optional[str] = None
508508
"""UUID"""
509509

510-
scim_config: Optional[ScimConfig] = None
510+
scim_config: Optional[SCIMConfig] = None
511511
"""
512512
The configuration settings for enabling a System for Cross-Domain Identity
513513
Management (SCIM) with the identity provider.
@@ -535,7 +535,7 @@ class AccessYandex(BaseModel):
535535
id: Optional[str] = None
536536
"""UUID"""
537537

538-
scim_config: Optional[ScimConfig] = None
538+
scim_config: Optional[SCIMConfig] = None
539539
"""
540540
The configuration settings for enabling a System for Cross-Domain Identity
541541
Management (SCIM) with the identity provider.
@@ -563,7 +563,7 @@ class AccessOnetimepin(BaseModel):
563563
id: Optional[str] = None
564564
"""UUID"""
565565

566-
scim_config: Optional[ScimConfig] = None
566+
scim_config: Optional[SCIMConfig] = None
567567
"""
568568
The configuration settings for enabling a System for Cross-Domain Identity
569569
Management (SCIM) with the identity provider.

src/cloudflare/types/zero_trust/identity_provider_create_params.py

+15-15
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from typing import List, Union, Iterable
66
from typing_extensions import Literal, Required, TypedDict
77

8-
from .scim_config_param import ScimConfigParam
8+
from .scim_config_param import SCIMConfigParam
99
from .identity_provider_type import IdentityProviderType
1010
from .generic_oauth_config_param import GenericOAuthConfigParam
1111

@@ -62,7 +62,7 @@ class AzureAD(TypedDict, total=False):
6262
zone_id: str
6363
"""The Zone ID to use for this endpoint. Mutually exclusive with the Account ID."""
6464

65-
scim_config: ScimConfigParam
65+
scim_config: SCIMConfigParam
6666
"""
6767
The configuration settings for enabling a System for Cross-Domain Identity
6868
Management (SCIM) with the identity provider.
@@ -129,7 +129,7 @@ class AccessCentrify(TypedDict, total=False):
129129
zone_id: str
130130
"""The Zone ID to use for this endpoint. Mutually exclusive with the Account ID."""
131131

132-
scim_config: ScimConfigParam
132+
scim_config: SCIMConfigParam
133133
"""
134134
The configuration settings for enabling a System for Cross-Domain Identity
135135
Management (SCIM) with the identity provider.
@@ -180,7 +180,7 @@ class AccessFacebook(TypedDict, total=False):
180180
zone_id: str
181181
"""The Zone ID to use for this endpoint. Mutually exclusive with the Account ID."""
182182

183-
scim_config: ScimConfigParam
183+
scim_config: SCIMConfigParam
184184
"""
185185
The configuration settings for enabling a System for Cross-Domain Identity
186186
Management (SCIM) with the identity provider.
@@ -211,7 +211,7 @@ class AccessGitHub(TypedDict, total=False):
211211
zone_id: str
212212
"""The Zone ID to use for this endpoint. Mutually exclusive with the Account ID."""
213213

214-
scim_config: ScimConfigParam
214+
scim_config: SCIMConfigParam
215215
"""
216216
The configuration settings for enabling a System for Cross-Domain Identity
217217
Management (SCIM) with the identity provider.
@@ -242,7 +242,7 @@ class AccessGoogle(TypedDict, total=False):
242242
zone_id: str
243243
"""The Zone ID to use for this endpoint. Mutually exclusive with the Account ID."""
244244

245-
scim_config: ScimConfigParam
245+
scim_config: SCIMConfigParam
246246
"""
247247
The configuration settings for enabling a System for Cross-Domain Identity
248248
Management (SCIM) with the identity provider.
@@ -287,7 +287,7 @@ class AccessGoogleApps(TypedDict, total=False):
287287
zone_id: str
288288
"""The Zone ID to use for this endpoint. Mutually exclusive with the Account ID."""
289289

290-
scim_config: ScimConfigParam
290+
scim_config: SCIMConfigParam
291291
"""
292292
The configuration settings for enabling a System for Cross-Domain Identity
293293
Management (SCIM) with the identity provider.
@@ -335,7 +335,7 @@ class AccessLinkedin(TypedDict, total=False):
335335
zone_id: str
336336
"""The Zone ID to use for this endpoint. Mutually exclusive with the Account ID."""
337337

338-
scim_config: ScimConfigParam
338+
scim_config: SCIMConfigParam
339339
"""
340340
The configuration settings for enabling a System for Cross-Domain Identity
341341
Management (SCIM) with the identity provider.
@@ -366,7 +366,7 @@ class AccessOIDC(TypedDict, total=False):
366366
zone_id: str
367367
"""The Zone ID to use for this endpoint. Mutually exclusive with the Account ID."""
368368

369-
scim_config: ScimConfigParam
369+
scim_config: SCIMConfigParam
370370
"""
371371
The configuration settings for enabling a System for Cross-Domain Identity
372372
Management (SCIM) with the identity provider.
@@ -423,7 +423,7 @@ class AccessOkta(TypedDict, total=False):
423423
zone_id: str
424424
"""The Zone ID to use for this endpoint. Mutually exclusive with the Account ID."""
425425

426-
scim_config: ScimConfigParam
426+
scim_config: SCIMConfigParam
427427
"""
428428
The configuration settings for enabling a System for Cross-Domain Identity
429429
Management (SCIM) with the identity provider.
@@ -474,7 +474,7 @@ class AccessOnelogin(TypedDict, total=False):
474474
zone_id: str
475475
"""The Zone ID to use for this endpoint. Mutually exclusive with the Account ID."""
476476

477-
scim_config: ScimConfigParam
477+
scim_config: SCIMConfigParam
478478
"""
479479
The configuration settings for enabling a System for Cross-Domain Identity
480480
Management (SCIM) with the identity provider.
@@ -522,7 +522,7 @@ class AccessPingone(TypedDict, total=False):
522522
zone_id: str
523523
"""The Zone ID to use for this endpoint. Mutually exclusive with the Account ID."""
524524

525-
scim_config: ScimConfigParam
525+
scim_config: SCIMConfigParam
526526
"""
527527
The configuration settings for enabling a System for Cross-Domain Identity
528528
Management (SCIM) with the identity provider.
@@ -570,7 +570,7 @@ class AccessSAML(TypedDict, total=False):
570570
zone_id: str
571571
"""The Zone ID to use for this endpoint. Mutually exclusive with the Account ID."""
572572

573-
scim_config: ScimConfigParam
573+
scim_config: SCIMConfigParam
574574
"""
575575
The configuration settings for enabling a System for Cross-Domain Identity
576576
Management (SCIM) with the identity provider.
@@ -641,7 +641,7 @@ class AccessYandex(TypedDict, total=False):
641641
zone_id: str
642642
"""The Zone ID to use for this endpoint. Mutually exclusive with the Account ID."""
643643

644-
scim_config: ScimConfigParam
644+
scim_config: SCIMConfigParam
645645
"""
646646
The configuration settings for enabling a System for Cross-Domain Identity
647647
Management (SCIM) with the identity provider.
@@ -672,7 +672,7 @@ class AccessOnetimepin(TypedDict, total=False):
672672
zone_id: str
673673
"""The Zone ID to use for this endpoint. Mutually exclusive with the Account ID."""
674674

675-
scim_config: ScimConfigParam
675+
scim_config: SCIMConfigParam
676676
"""
677677
The configuration settings for enabling a System for Cross-Domain Identity
678678
Management (SCIM) with the identity provider.

0 commit comments

Comments
 (0)