|
72 | 72 | async_to_streamed_response_wrapper,
|
73 | 73 | )
|
74 | 74 | from ...._wrappers import ResultWrapper
|
75 |
| -from .fleet_status import ( |
76 |
| - FleetStatusResource, |
77 |
| - AsyncFleetStatusResource, |
78 |
| - FleetStatusResourceWithRawResponse, |
79 |
| - AsyncFleetStatusResourceWithRawResponse, |
80 |
| - FleetStatusResourceWithStreamingResponse, |
81 |
| - AsyncFleetStatusResourceWithStreamingResponse, |
82 |
| -) |
83 | 75 | from ....pagination import SyncSinglePage, AsyncSinglePage
|
84 | 76 | from .override_codes import (
|
85 | 77 | OverrideCodesResource,
|
@@ -107,10 +99,6 @@ def dex_tests(self) -> DEXTestsResource:
|
107 | 99 | def networks(self) -> NetworksResource:
|
108 | 100 | return NetworksResource(self._client)
|
109 | 101 |
|
110 |
| - @cached_property |
111 |
| - def fleet_status(self) -> FleetStatusResource: |
112 |
| - return FleetStatusResource(self._client) |
113 |
| - |
114 | 102 | @cached_property
|
115 | 103 | def policies(self) -> PoliciesResource:
|
116 | 104 | return PoliciesResource(self._client)
|
@@ -245,10 +233,6 @@ def dex_tests(self) -> AsyncDEXTestsResource:
|
245 | 233 | def networks(self) -> AsyncNetworksResource:
|
246 | 234 | return AsyncNetworksResource(self._client)
|
247 | 235 |
|
248 |
| - @cached_property |
249 |
| - def fleet_status(self) -> AsyncFleetStatusResource: |
250 |
| - return AsyncFleetStatusResource(self._client) |
251 |
| - |
252 | 236 | @cached_property
|
253 | 237 | def policies(self) -> AsyncPoliciesResource:
|
254 | 238 | return AsyncPoliciesResource(self._client)
|
@@ -393,10 +377,6 @@ def dex_tests(self) -> DEXTestsResourceWithRawResponse:
|
393 | 377 | def networks(self) -> NetworksResourceWithRawResponse:
|
394 | 378 | return NetworksResourceWithRawResponse(self._devices.networks)
|
395 | 379 |
|
396 |
| - @cached_property |
397 |
| - def fleet_status(self) -> FleetStatusResourceWithRawResponse: |
398 |
| - return FleetStatusResourceWithRawResponse(self._devices.fleet_status) |
399 |
| - |
400 | 380 | @cached_property
|
401 | 381 | def policies(self) -> PoliciesResourceWithRawResponse:
|
402 | 382 | return PoliciesResourceWithRawResponse(self._devices.policies)
|
@@ -441,10 +421,6 @@ def dex_tests(self) -> AsyncDEXTestsResourceWithRawResponse:
|
441 | 421 | def networks(self) -> AsyncNetworksResourceWithRawResponse:
|
442 | 422 | return AsyncNetworksResourceWithRawResponse(self._devices.networks)
|
443 | 423 |
|
444 |
| - @cached_property |
445 |
| - def fleet_status(self) -> AsyncFleetStatusResourceWithRawResponse: |
446 |
| - return AsyncFleetStatusResourceWithRawResponse(self._devices.fleet_status) |
447 |
| - |
448 | 424 | @cached_property
|
449 | 425 | def policies(self) -> AsyncPoliciesResourceWithRawResponse:
|
450 | 426 | return AsyncPoliciesResourceWithRawResponse(self._devices.policies)
|
@@ -489,10 +465,6 @@ def dex_tests(self) -> DEXTestsResourceWithStreamingResponse:
|
489 | 465 | def networks(self) -> NetworksResourceWithStreamingResponse:
|
490 | 466 | return NetworksResourceWithStreamingResponse(self._devices.networks)
|
491 | 467 |
|
492 |
| - @cached_property |
493 |
| - def fleet_status(self) -> FleetStatusResourceWithStreamingResponse: |
494 |
| - return FleetStatusResourceWithStreamingResponse(self._devices.fleet_status) |
495 |
| - |
496 | 468 | @cached_property
|
497 | 469 | def policies(self) -> PoliciesResourceWithStreamingResponse:
|
498 | 470 | return PoliciesResourceWithStreamingResponse(self._devices.policies)
|
@@ -537,10 +509,6 @@ def dex_tests(self) -> AsyncDEXTestsResourceWithStreamingResponse:
|
537 | 509 | def networks(self) -> AsyncNetworksResourceWithStreamingResponse:
|
538 | 510 | return AsyncNetworksResourceWithStreamingResponse(self._devices.networks)
|
539 | 511 |
|
540 |
| - @cached_property |
541 |
| - def fleet_status(self) -> AsyncFleetStatusResourceWithStreamingResponse: |
542 |
| - return AsyncFleetStatusResourceWithStreamingResponse(self._devices.fleet_status) |
543 |
| - |
544 | 512 | @cached_property
|
545 | 513 | def policies(self) -> AsyncPoliciesResourceWithStreamingResponse:
|
546 | 514 | return AsyncPoliciesResourceWithStreamingResponse(self._devices.policies)
|
|
0 commit comments