|
47 | 47 | dns, |
48 | 48 | iam, |
49 | 49 | ips, |
| 50 | + moq, |
50 | 51 | rum, |
51 | 52 | ssl, |
52 | 53 | argo, |
|
163 | 164 | from .resources.dns.dns import DNSResource, AsyncDNSResource |
164 | 165 | from .resources.iam.iam import IAMResource, AsyncIAMResource |
165 | 166 | from .resources.ips.ips import IPsResource, AsyncIPsResource |
| 167 | + from .resources.moq.moq import MoqResource, AsyncMoqResource |
166 | 168 | from .resources.rum.rum import RUMResource, AsyncRUMResource |
167 | 169 | from .resources.ssl.ssl import SSLResource, AsyncSSLResource |
168 | 170 | from .resources.argo.argo import ArgoResource, AsyncArgoResource |
@@ -965,6 +967,12 @@ def calls(self) -> CallsResource: |
965 | 967 |
|
966 | 968 | return CallsResource(self) |
967 | 969 |
|
| 970 | + @cached_property |
| 971 | + def moq(self) -> MoqResource: |
| 972 | + from .resources.moq import MoqResource |
| 973 | + |
| 974 | + return MoqResource(self) |
| 975 | + |
968 | 976 | @cached_property |
969 | 977 | def cloudforce_one(self) -> CloudforceOneResource: |
970 | 978 | from .resources.cloudforce_one import CloudforceOneResource |
@@ -1917,6 +1925,12 @@ def calls(self) -> AsyncCallsResource: |
1917 | 1925 |
|
1918 | 1926 | return AsyncCallsResource(self) |
1919 | 1927 |
|
| 1928 | + @cached_property |
| 1929 | + def moq(self) -> AsyncMoqResource: |
| 1930 | + from .resources.moq import AsyncMoqResource |
| 1931 | + |
| 1932 | + return AsyncMoqResource(self) |
| 1933 | + |
1920 | 1934 | @cached_property |
1921 | 1935 | def cloudforce_one(self) -> AsyncCloudforceOneResource: |
1922 | 1936 | from .resources.cloudforce_one import AsyncCloudforceOneResource |
@@ -2793,6 +2807,12 @@ def calls(self) -> calls.CallsResourceWithRawResponse: |
2793 | 2807 |
|
2794 | 2808 | return CallsResourceWithRawResponse(self._client.calls) |
2795 | 2809 |
|
| 2810 | + @cached_property |
| 2811 | + def moq(self) -> moq.MoqResourceWithRawResponse: |
| 2812 | + from .resources.moq import MoqResourceWithRawResponse |
| 2813 | + |
| 2814 | + return MoqResourceWithRawResponse(self._client.moq) |
| 2815 | + |
2796 | 2816 | @cached_property |
2797 | 2817 | def cloudforce_one(self) -> cloudforce_one.CloudforceOneResourceWithRawResponse: |
2798 | 2818 | from .resources.cloudforce_one import CloudforceOneResourceWithRawResponse |
@@ -3496,6 +3516,12 @@ def calls(self) -> calls.AsyncCallsResourceWithRawResponse: |
3496 | 3516 |
|
3497 | 3517 | return AsyncCallsResourceWithRawResponse(self._client.calls) |
3498 | 3518 |
|
| 3519 | + @cached_property |
| 3520 | + def moq(self) -> moq.AsyncMoqResourceWithRawResponse: |
| 3521 | + from .resources.moq import AsyncMoqResourceWithRawResponse |
| 3522 | + |
| 3523 | + return AsyncMoqResourceWithRawResponse(self._client.moq) |
| 3524 | + |
3499 | 3525 | @cached_property |
3500 | 3526 | def cloudforce_one(self) -> cloudforce_one.AsyncCloudforceOneResourceWithRawResponse: |
3501 | 3527 | from .resources.cloudforce_one import AsyncCloudforceOneResourceWithRawResponse |
@@ -4199,6 +4225,12 @@ def calls(self) -> calls.CallsResourceWithStreamingResponse: |
4199 | 4225 |
|
4200 | 4226 | return CallsResourceWithStreamingResponse(self._client.calls) |
4201 | 4227 |
|
| 4228 | + @cached_property |
| 4229 | + def moq(self) -> moq.MoqResourceWithStreamingResponse: |
| 4230 | + from .resources.moq import MoqResourceWithStreamingResponse |
| 4231 | + |
| 4232 | + return MoqResourceWithStreamingResponse(self._client.moq) |
| 4233 | + |
4202 | 4234 | @cached_property |
4203 | 4235 | def cloudforce_one(self) -> cloudforce_one.CloudforceOneResourceWithStreamingResponse: |
4204 | 4236 | from .resources.cloudforce_one import CloudforceOneResourceWithStreamingResponse |
@@ -4910,6 +4942,12 @@ def calls(self) -> calls.AsyncCallsResourceWithStreamingResponse: |
4910 | 4942 |
|
4911 | 4943 | return AsyncCallsResourceWithStreamingResponse(self._client.calls) |
4912 | 4944 |
|
| 4945 | + @cached_property |
| 4946 | + def moq(self) -> moq.AsyncMoqResourceWithStreamingResponse: |
| 4947 | + from .resources.moq import AsyncMoqResourceWithStreamingResponse |
| 4948 | + |
| 4949 | + return AsyncMoqResourceWithStreamingResponse(self._client.moq) |
| 4950 | + |
4913 | 4951 | @cached_property |
4914 | 4952 | def cloudforce_one(self) -> cloudforce_one.AsyncCloudforceOneResourceWithStreamingResponse: |
4915 | 4953 | from .resources.cloudforce_one import AsyncCloudforceOneResourceWithStreamingResponse |
|
0 commit comments