MCPcopy Create free account
hub / github.com/su-kaka/gcli2api / get_service_usage_api_url

Function get_service_usage_api_url

config.py:429–443  ·  view source on GitHub ↗

Get Google Cloud Service Usage API URL setting. 用于Google Cloud Service Usage API的URL。 Environment variable: SERVICE_USAGE_API_URL Database config key: service_usage_api_url Default: https://serviceusage.googleapis.com

()

Source from the content-addressed store, hash-verified

427
428
429async def get_service_usage_api_url() -> str:
430 """
431 Get Google Cloud Service Usage API URL setting.
432
433 用于Google Cloud Service Usage API的URL。
434
435 Environment variable: SERVICE_USAGE_API_URL
436 Database config key: service_usage_api_url
437 Default: https://serviceusage.googleapis.com
438 """
439 return str(
440 await get_config_value(
441 "service_usage_api_url", "https://serviceusage.googleapis.com", "SERVICE_USAGE_API_URL"
442 )
443 )
444
445
446async def get_antigravity_api_url() -> str:

Callers 1

enable_required_apisFunction · 0.90

Calls 1

get_config_valueFunction · 0.85

Tested by

no test coverage detected