# Services : GCloud : CLI : Files #### ~/.config/gcloud/ ``` ~/.config/gcloud/ ├── access_tokens.db ├── active_config # auth login ├── application_default_credentials.json # auth application-default login ├── cache │   └── [email protected] │   └── resource.cache ├── config_sentinel ├── configurations │   └── config_default # auth login ├── credentials.db ├── default_configs.db ├── gce ├── legacy_credentials │   └── [email protected] │   ├── adc.json │   └── .boto └── logs ``` #### ~/.config/gcloud/active_config ``` default ``` #### ~/.config/gcloud/application_default_credentials.json ``` { "account": "", "client_id": "764086051850-6qr4p6gpi6hn506pt8ejuq83di341hur.apps.googleusercontent.com", "client_secret": "************************", "quota_project_id": "foo-bar-123456", "refresh_token": "1//****************************************************************************************************", "type": "authorized_user", "universe_domain": "googleapis.com" } ``` #### ~/.config/gcloud/configurations/config_default ``` [core] account = [email protected] project = foo-bar-123456 [run] region = us-central1 [artifacts] [builds] region = us-central1 ``` #### ~/.config/gcloud/[email protected]/.boto ``` [OAuth2] client_id = 99999999999.apps.googleusercontent.com client_secret = AxtsLIjJy2598hD4CTg2ejr2 [Credentials] gs_oauth2_refresh_token = 1//0fUoUcl5Gp60WCgYIARAAGA8SNsF-L9Ir603KWdUFePieE8uEmVtCT0oby0Ncuywj ``` #### ~/.config/gcloud/legacy_credentials/[email protected]/adc.json ``` { "account": "", "client_id": "99999999999.apps.googleusercontent.com", "client_secret": "AxtsLIjJy2598hD4CTg2ejr2", "refresh_token": "1//0fUoUcl5Gp60WCgYIARAAGA8SNsF-L9Ir603KWdUFePieE8uEmVtCT0oby0NcuywjuXWVXOtm6emRlrRZ7V3D_nE6xQbbpPVIva8", "type": "authorized_user", "universe_domain": "googleapis.com" } ```