|
60 | 60 | SSOConfigurationsResourceWithStreamingResponse, |
61 | 61 | AsyncSSOConfigurationsResourceWithStreamingResponse, |
62 | 62 | ) |
| 63 | +from .scim_configurations import ( |
| 64 | + ScimConfigurationsResource, |
| 65 | + AsyncScimConfigurationsResource, |
| 66 | + ScimConfigurationsResourceWithRawResponse, |
| 67 | + AsyncScimConfigurationsResourceWithRawResponse, |
| 68 | + ScimConfigurationsResourceWithStreamingResponse, |
| 69 | + AsyncScimConfigurationsResourceWithStreamingResponse, |
| 70 | +) |
63 | 71 | from .domain_verifications import ( |
64 | 72 | DomainVerificationsResource, |
65 | 73 | AsyncDomainVerificationsResource, |
@@ -96,6 +104,10 @@ def invites(self) -> InvitesResource: |
96 | 104 | def policies(self) -> PoliciesResource: |
97 | 105 | return PoliciesResource(self._client) |
98 | 106 |
|
| 107 | + @cached_property |
| 108 | + def scim_configurations(self) -> ScimConfigurationsResource: |
| 109 | + return ScimConfigurationsResource(self._client) |
| 110 | + |
99 | 111 | @cached_property |
100 | 112 | def sso_configurations(self) -> SSOConfigurationsResource: |
101 | 113 | return SSOConfigurationsResource(self._client) |
@@ -682,6 +694,10 @@ def invites(self) -> AsyncInvitesResource: |
682 | 694 | def policies(self) -> AsyncPoliciesResource: |
683 | 695 | return AsyncPoliciesResource(self._client) |
684 | 696 |
|
| 697 | + @cached_property |
| 698 | + def scim_configurations(self) -> AsyncScimConfigurationsResource: |
| 699 | + return AsyncScimConfigurationsResource(self._client) |
| 700 | + |
685 | 701 | @cached_property |
686 | 702 | def sso_configurations(self) -> AsyncSSOConfigurationsResource: |
687 | 703 | return AsyncSSOConfigurationsResource(self._client) |
@@ -1296,6 +1312,10 @@ def invites(self) -> InvitesResourceWithRawResponse: |
1296 | 1312 | def policies(self) -> PoliciesResourceWithRawResponse: |
1297 | 1313 | return PoliciesResourceWithRawResponse(self._organizations.policies) |
1298 | 1314 |
|
| 1315 | + @cached_property |
| 1316 | + def scim_configurations(self) -> ScimConfigurationsResourceWithRawResponse: |
| 1317 | + return ScimConfigurationsResourceWithRawResponse(self._organizations.scim_configurations) |
| 1318 | + |
1299 | 1319 | @cached_property |
1300 | 1320 | def sso_configurations(self) -> SSOConfigurationsResourceWithRawResponse: |
1301 | 1321 | return SSOConfigurationsResourceWithRawResponse(self._organizations.sso_configurations) |
@@ -1346,6 +1366,10 @@ def invites(self) -> AsyncInvitesResourceWithRawResponse: |
1346 | 1366 | def policies(self) -> AsyncPoliciesResourceWithRawResponse: |
1347 | 1367 | return AsyncPoliciesResourceWithRawResponse(self._organizations.policies) |
1348 | 1368 |
|
| 1369 | + @cached_property |
| 1370 | + def scim_configurations(self) -> AsyncScimConfigurationsResourceWithRawResponse: |
| 1371 | + return AsyncScimConfigurationsResourceWithRawResponse(self._organizations.scim_configurations) |
| 1372 | + |
1349 | 1373 | @cached_property |
1350 | 1374 | def sso_configurations(self) -> AsyncSSOConfigurationsResourceWithRawResponse: |
1351 | 1375 | return AsyncSSOConfigurationsResourceWithRawResponse(self._organizations.sso_configurations) |
@@ -1396,6 +1420,10 @@ def invites(self) -> InvitesResourceWithStreamingResponse: |
1396 | 1420 | def policies(self) -> PoliciesResourceWithStreamingResponse: |
1397 | 1421 | return PoliciesResourceWithStreamingResponse(self._organizations.policies) |
1398 | 1422 |
|
| 1423 | + @cached_property |
| 1424 | + def scim_configurations(self) -> ScimConfigurationsResourceWithStreamingResponse: |
| 1425 | + return ScimConfigurationsResourceWithStreamingResponse(self._organizations.scim_configurations) |
| 1426 | + |
1399 | 1427 | @cached_property |
1400 | 1428 | def sso_configurations(self) -> SSOConfigurationsResourceWithStreamingResponse: |
1401 | 1429 | return SSOConfigurationsResourceWithStreamingResponse(self._organizations.sso_configurations) |
@@ -1446,6 +1474,10 @@ def invites(self) -> AsyncInvitesResourceWithStreamingResponse: |
1446 | 1474 | def policies(self) -> AsyncPoliciesResourceWithStreamingResponse: |
1447 | 1475 | return AsyncPoliciesResourceWithStreamingResponse(self._organizations.policies) |
1448 | 1476 |
|
| 1477 | + @cached_property |
| 1478 | + def scim_configurations(self) -> AsyncScimConfigurationsResourceWithStreamingResponse: |
| 1479 | + return AsyncScimConfigurationsResourceWithStreamingResponse(self._organizations.scim_configurations) |
| 1480 | + |
1449 | 1481 | @cached_property |
1450 | 1482 | def sso_configurations(self) -> AsyncSSOConfigurationsResourceWithStreamingResponse: |
1451 | 1483 | return AsyncSSOConfigurationsResourceWithStreamingResponse(self._organizations.sso_configurations) |
0 commit comments