GCP - Firestore Enum

Reading time: 3 minutes

tip

AWSハッキングを学び、実践する:HackTricks Training AWS Red Team Expert (ARTE)
GCPハッキングを学び、実践する:HackTricks Training GCP Red Team Expert (GRTE) Azureハッキングを学び、実践する:HackTricks Training Azure Red Team Expert (AzRTE)

HackTricksをサポートする

Cloud Firestore

Cloud Firestoreは、FirebaseとGoogle Cloudによって提供されるスケーラブルで柔軟なデータベースであり、モバイル、ウェブ、サーバー開発のニーズに応えます。その機能はFirebase Realtime Databaseに似ており、リアルタイムリスナーを使用してクライアントアプリケーション間でデータの同期を確保します。Cloud Firestoreの重要な機能は、モバイルおよびウェブプラットフォームでのオフライン操作をサポートしていることであり、高いネットワーク遅延やインターネット接続のない状況でもアプリの応答性を向上させます。さらに、Cloud FunctionsなどのFirebaseおよびGoogle Cloudの他の製品とスムーズに統合されるように設計されています。

bash
gcloud firestore indexes composite list
gcloud firestore indexes composite describe <index>
gcloud firestore indexes fields list
gcloud firestore indexes fields describe <name>
gcloud firestore export gs://my-source-project-export/export-20190113_2109 --collection-ids='cameras','radios'

tip

AWSハッキングを学び、実践する:HackTricks Training AWS Red Team Expert (ARTE)
GCPハッキングを学び、実践する:HackTricks Training GCP Red Team Expert (GRTE) Azureハッキングを学び、実践する:HackTricks Training Azure Red Team Expert (AzRTE)

HackTricksをサポートする