()
| 294 | |
| 295 | |
| 296 | def _get_cloud_projects_raw() -> Any: |
| 297 | state = _get_state() |
| 298 | if state.cloud_api_resource_raw is None: |
| 299 | raise ee_exception.EEException(_NOT_INITIALIZED_MESSAGE) |
| 300 | return state.cloud_api_resource_raw.projects() |
| 301 | |
| 302 | |
| 303 | def _make_request_headers() -> dict[str, Any] | None: |
no test coverage detected