feat(Google Cloud Realtime Database Node): Make it possible to select region (#3096)

* upstream merge

* 🔨 fixed bug, replaced icon with svg, added ability to get whole db object

* 🔨 optimization

* 🔨 option for region in credentials

* 🐛 Fix region default

*  Remove dot

Co-authored-by: ricardo <ricardoespinoza105@gmail.com>
Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
Michael Kret
2022-04-14 10:19:45 +03:00
committed by GitHub
parent 3e5d981f3f
commit 176538e5f2
5 changed files with 101 additions and 11 deletions

View File

@@ -23,5 +23,25 @@ export class GoogleFirebaseRealtimeDatabaseOAuth2Api implements ICredentialType
type: 'hidden',
default: scopes.join(' '),
},
{
displayName: 'Region',
name: 'region',
type: 'options',
default: 'firebaseio.com',
options: [
{
name: 'us-central1',
value: 'firebaseio.com',
},
{
name: 'europe-west1',
value: 'europe-west1.firebasedatabase.app',
},
{
name: 'asia-southeast1',
value: 'asia-southeast1.firebasedatabase.app',
},
],
},
];
}