Get Google APIs proxy URL setting. 用于Google APIs调用的代理URL。 Environment variable: GOOGLEAPIS_PROXY_URL Database config key: googleapis_proxy_url Default: https://www.googleapis.com
()
| 391 | |
| 392 | |
| 393 | async def get_googleapis_proxy_url() -> str: |
| 394 | """ |
| 395 | Get Google APIs proxy URL setting. |
| 396 | |
| 397 | 用于Google APIs调用的代理URL。 |
| 398 | |
| 399 | Environment variable: GOOGLEAPIS_PROXY_URL |
| 400 | Database config key: googleapis_proxy_url |
| 401 | Default: https://www.googleapis.com |
| 402 | """ |
| 403 | return str( |
| 404 | await get_config_value( |
| 405 | "googleapis_proxy_url", "https://www.googleapis.com", "GOOGLEAPIS_PROXY_URL" |
| 406 | ) |
| 407 | ) |
| 408 | |
| 409 | |
| 410 | async def get_resource_manager_api_url() -> str: |
no test coverage detected