Skip to content

Commit c87ead1

Browse files
authored
Merge pull request #364 from FirebasePrivate/tl-bye
remove mentions of dev partner and replace with github link
2 parents 1fdbe64 + 42111ce commit c87ead1

File tree

16 files changed

+62
-62
lines changed

16 files changed

+62
-62
lines changed

auth-mailchimp-sync/extension.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ description:
2222

2323
license: Apache-2.0
2424
billingRequired: true
25-
sourceUrl: https://accounts.google.com/AccountChooser/signinchooser?service=gerritcodereview&continue=https%3A%2F%2Fdev-partners.googlesource.com%2Flogin%2Fsamples%2Ffirebase%2Fmods%2F%2B%2Fmaster%2Fauth-mailchimp-sync
26-
releaseNotesUrl: https://dev-partners.googlesource.com/samples/firebase/mods/+log
25+
sourceUrl: https://github.com/firebase/extensions/tree/master/auth-mailchimp-sync
26+
releaseNotesUrl: https://github.com/firebase/extensions/commits/master
2727

2828
author:
2929
authorName: Firebase

delete-user-data/extension.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@ description:
2323

2424
license: Apache-2.0
2525
billingRequired: false
26-
sourceUrl: https://accounts.google.com/AccountChooser/signinchooser?service=gerritcodereview&continue=https%3A%2F%2Fdev-partners.googlesource.com%2Flogin%2Fsamples%2Ffirebase%2Fmods%2F%2B%2Fmaster%2Fdelete-user-data
27-
releaseNotesUrl: https://dev-partners.googlesource.com/samples/firebase/mods/+log
26+
sourceUrl: https://github.com/firebase/extensions/tree/master/delete-user-data
27+
releaseNotesUrl: https://github.com/firebase/extensions/commits/master
2828

2929
author:
3030
authorName: Firebase

firestore-bigquery-export/POSTINSTALL.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ You can test out this extension right away:
2222
SELECT * FROM `${param:PROJECT_ID}.${param:DATASET_ID}.${param:TABLE_ID}_raw_latest`
2323
```
2424
25-
1. Delete the `bigquery-mirror-test` document from [Cloud Firestore](https://console.firebase.google.com/project/${param:PROJECT_ID}/database/firestore/data).
25+
1. Delete the `bigquery-mirror-test` document from [Cloud Firestore](https://console.firebase.google.com/project/${param:PROJECT_ID}/database/firestore/data).
2626
The `bigquery-mirror-test` document will disappear from the **latest view** and a `DELETE` event will be added to the **raw changelog table**.
2727
2828
1. You can check the changelogs of a single document with this query:
@@ -54,7 +54,7 @@ The import script can read all existing documents in a Cloud Firestore collectio
5454
5555
You may pause and resume the script from the last batch at any point.
5656
57-
Learn more about using this script to [backfill your existing collection](https://dev-partners.googlesource.com/samples/firebase/mods/+/master/firestore-bigquery-export/guides/IMPORT_EXISTING_DOCUMENTS.md).
57+
Learn more about using this script to [backfill your existing collection](https://github.com/firebase/extensions/blob/master/firestore-bigquery-export/guides/IMPORT_EXISTING_DOCUMENTS.md).
5858
5959
### Monitoring
6060

firestore-bigquery-export/PREINSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ This extension only sends the content of documents that have been changed -- it
1818

1919
**Important:** Run the script over the entire collection _after_ installing this extension, otherwise all writes to your database during the import might be lost.
2020

21-
Learn more about using this script to [backfill your existing collection](https://dev-partners.googlesource.com/samples/firebase/mods/+/master/firestore-bigquery-export/guides/IMPORT_EXISTING_DOCUMENTS.md).
21+
Learn more about using this script to [backfill your existing collection](https://github.com/FirebasePrivate/extensions/blob/master/firestore-bigquery-export/guides/IMPORT_EXISTING_DOCUMENTS.md).
2222

2323
#### Billing
2424

firestore-bigquery-export/README.md

Lines changed: 34 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -22,40 +22,40 @@
2222

2323

2424

25-
**DETAILS**: Use this extension to export the documents in a Cloud Firestore collection to BigQuery. Exports are realtime and incremental, so the data in BigQuery is a mirror of your content in Firestore.
26-
27-
The extension creates and updates a [dataset](https://cloud.google.com/bigquery/docs/datasets-intro) containing the following two BigQuery resources:
28-
29-
+ A [table](https://cloud.google.com/bigquery/docs/tables-intro) of raw data that stores a full change history of the documents within your collection. This table includes a number of metadata fields so that BigQuery can display the current state of your data. The principle metadata fields are `timestamp`, `document_name`, and the `operation` for the document change.
30-
+ A [view](https://cloud.google.com/bigquery/docs/views-intro) which represents the current state of the data within your collection. It also shows a log of the latest `operation` for each document (`CREATE`, `UPDATE`, or `IMPORT`).
31-
32-
Whenever a document is created, updated, deleted, or imported in the specified collection, this extension sends that update to BigQuery. You can then run queries on this mirrored dataset.
33-
34-
Note that this extension only listens for _document_ changes in the collection, but not changes in any _subcollection_. You can, though, install additional instances of this extension to specifically listen to a subcollection or other collections in your database.
35-
36-
### Additional setup
37-
38-
Before installing this extension, you'll need to:
39-
40-
+ [Set up Cloud Firestore in your Firebase project.](https://firebase.google.com/docs/firestore/quickstart)
41-
+ [Link your Firebase project to BigQuery.](https://support.google.com/firebase/answer/6318765)
42-
43-
#### Import existing documents
44-
45-
This extension only sends the content of documents that have been changed -- it does not export your full dataset of existing documents into BigQuery. So, to backfill your BigQuery dataset with all the documents in your collection, you can run the import script provided by this extension.
46-
47-
**Important:** Run the script over the entire collection _after_ installing this extension, otherwise all writes to your database during the import might be lost.
48-
49-
Learn more about using this script to [backfill your existing collection](https://dev-partners.googlesource.com/samples/firebase/mods/+/master/firestore-bigquery-export/guides/IMPORT_EXISTING_DOCUMENTS.md).
50-
51-
### Billing
52-
53-
This extension uses other Firebase or Google Cloud Platform services which may have associated charges:
54-
55-
+ Cloud Firestore
56-
+ BigQuery
57-
+ Cloud Functions
58-
25+
**DETAILS**: Use this extension to export the documents in a Cloud Firestore collection to BigQuery. Exports are realtime and incremental, so the data in BigQuery is a mirror of your content in Firestore.
26+
27+
The extension creates and updates a [dataset](https://cloud.google.com/bigquery/docs/datasets-intro) containing the following two BigQuery resources:
28+
29+
+ A [table](https://cloud.google.com/bigquery/docs/tables-intro) of raw data that stores a full change history of the documents within your collection. This table includes a number of metadata fields so that BigQuery can display the current state of your data. The principle metadata fields are `timestamp`, `document_name`, and the `operation` for the document change.
30+
+ A [view](https://cloud.google.com/bigquery/docs/views-intro) which represents the current state of the data within your collection. It also shows a log of the latest `operation` for each document (`CREATE`, `UPDATE`, or `IMPORT`).
31+
32+
Whenever a document is created, updated, deleted, or imported in the specified collection, this extension sends that update to BigQuery. You can then run queries on this mirrored dataset.
33+
34+
Note that this extension only listens for _document_ changes in the collection, but not changes in any _subcollection_. You can, though, install additional instances of this extension to specifically listen to a subcollection or other collections in your database.
35+
36+
### Additional setup
37+
38+
Before installing this extension, you'll need to:
39+
40+
+ [Set up Cloud Firestore in your Firebase project.](https://firebase.google.com/docs/firestore/quickstart)
41+
+ [Link your Firebase project to BigQuery.](https://support.google.com/firebase/answer/6318765)
42+
43+
#### Import existing documents
44+
45+
This extension only sends the content of documents that have been changed -- it does not export your full dataset of existing documents into BigQuery. So, to backfill your BigQuery dataset with all the documents in your collection, you can run the import script provided by this extension.
46+
47+
**Important:** Run the script over the entire collection _after_ installing this extension, otherwise all writes to your database during the import might be lost.
48+
49+
Learn more about using this script to [backfill your existing collection](https://github.com/firebase/extensions/blob/master/firestore-bigquery-export/guides/IMPORT_EXISTING_DOCUMENTS.md).
50+
51+
### Billing
52+
53+
This extension uses other Firebase or Google Cloud Platform services which may have associated charges:
54+
55+
+ Cloud Firestore
56+
+ BigQuery
57+
+ Cloud Functions
58+
5959
When you use Firebase Extensions, you're only charged for the underlying resources that you use. A paid-tier billing plan is only required if the extension uses a service that requires a paid-tier plan, for example calling to a Google Cloud Platform API or making outbound network requests to non-Google services. All Firebase services offer a free tier of usage. [Learn more about Firebase billing.](https://firebase.google.com/pricing)
6060

6161

firestore-bigquery-export/extension.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ description:
2222

2323
license: Apache-2.0
2424
billingRequired: true
25-
sourceUrl: https://accounts.google.com/AccountChooser/signinchooser?service=gerritcodereview&continue=https%3A%2F%2Fdev-partners.googlesource.com%2Flogin%2Fsamples%2Ffirebase%2Fmods%2F%2B%2Fmaster%2Ffirestore-bigquery-export
26-
releaseNotesUrl: https://dev-partners.googlesource.com/samples/firebase/mods/+log
25+
sourceUrl: https://github.com/firebase/extensions/tree/master/firestore-bigquery-export
26+
releaseNotesUrl: https://github.com/firebase/extensions/commits/master
2727

2828
author:
2929
authorName: Firebase

firestore-counter/POSTINSTALL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ gcloud scheduler jobs create http firestore-sharded-counter-controller --schedul
3131

3232
#### Specify a document path and increment value in your app
3333

34-
1. Download and copy the [Counter SDK](https://dev-partners.googlesource.com/samples/firebase/mods/+/master/firestore-counter/clients/web/dist/sharded-counter.js) into your application project.
34+
1. Download and copy the [Counter SDK](https://github.com/firebase/extensions/blob/master/firestore-counter/clients/web/dist/sharded-counter.js) into your application project.
3535

3636
Note: You might get a "Permission denied" error for the source repository. If you do, locate the **Sign in** button on the error page, then sign in to access to the repo.
3737

firestore-counter/extension.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ description:
2222

2323
license: Apache-2.0
2424
billingRequired: false
25-
sourceUrl: https://accounts.google.com/AccountChooser/signinchooser?service=gerritcodereview&continue=https%3A%2F%2Fdev-partners.googlesource.com%2Flogin%2Fsamples%2Ffirebase%2Fmods%2F%2B%2Fmaster%2Ffirestore-counter
26-
releaseNotesUrl: https://dev-partners.googlesource.com/samples/firebase/mods/+log
25+
sourceUrl: https://github.com/firebase/extensions/tree/master/firestore-counter
26+
releaseNotesUrl: https://github.com/firebase/extensions/commits/master
2727

2828
author:
2929
authorName: Firebase

firestore-send-email/extension.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ description:
2222

2323
license: Apache-2.0
2424
billingRequired: true
25-
sourceUrl: https://accounts.google.com/AccountChooser/signinchooser?service=gerritcodereview&continue=https%3A%2F%2Fdev-partners.googlesource.com%2Flogin%2Fsamples%2Ffirebase%2Fmods%2F%2B%2Fmaster%2Ffirestore-send-email
26-
releaseNotesUrl: https://dev-partners.googlesource.com/samples/firebase/mods/+log
25+
sourceUrl: https://github.com/firebase/extensions/tree/master/firestore-send-email
26+
releaseNotesUrl: https://github.com/firebase/extensions/commits/master
2727

2828
author:
2929
authorName: Firebase

firestore-shorten-urls/extension.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ description:
2222

2323
license: Apache-2.0
2424
billingRequired: true
25-
sourceUrl: https://accounts.google.com/AccountChooser/signinchooser?service=gerritcodereview&continue=https%3A%2F%2Fdev-partners.googlesource.com%2Flogin%2Fsamples%2Ffirebase%2Fmods%2F%2B%2Fmaster%2Ffirestore-shorten-urls
26-
releaseNotesUrl: https://dev-partners.googlesource.com/samples/firebase/mods/+log
25+
sourceUrl: https://github.com/firebase/extensions/tree/master/firestore-shorten-urls
26+
releaseNotesUrl: https://github.com/firebase/extensions/commits/master
2727

2828
author:
2929
authorName: Firebase

0 commit comments

Comments
 (0)