Skip to content

Commit dde5b30

Browse files
authored
Regenerate READMEs (#116)
1 parent ea9592a commit dde5b30

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

firestore-bigquery-export/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ Learn more about using this script to [backfill your existing collection](https:
3232

3333
This extension uses other Firebase or Google Cloud Platform services which may have associated charges:
3434

35+
+ BigQuery (this extension writes to BigQuery with [streaming inserts](https://cloud.google.com/bigquery/pricing#streaming_pricing))
3536
+ Cloud Firestore
36-
+ BigQuery
3737
+ Cloud Functions
3838

3939
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)

storage-resize-images/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,12 @@
99
When you upload an image file to your specified Cloud Storage bucket, this extension:
1010

1111
- Creates a resized image with your specified dimensions.
12-
- Stores the resized image in the same Storage bucket as the original uploaded image.
1312
- Names the resized image using the same name as the original uploaded image, but suffixed with your specified width and height.
13+
- Stores the resized image in the same Storage bucket as the original uploaded image.
1414

1515
You can even configure the extension to create resized images of different dimensions for each original image upload. For example, you might want images that are 200x200, 400x400, and 680x680 - this extension can create these three resized images then store them in your bucket.
1616

17-
Another optional feature of this extension is to specify a [`Cache-Control` header](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control) for your resized image files.
17+
The extension automatically copies the following metadata, if present, from the original image to the resized image(s): `Cache-Control`, `Content-Disposition`, `Content-Encoding`, `Content-Language`, `Content-Type`, and user-provided metadata (except Firebase storage download tokens). Note that you can optionally configure the extension to overwrite the [`Cache-Control`](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control) value for the resized image(s).
1818

1919
#### Detailed configuration information
2020

@@ -53,7 +53,7 @@ When you use Firebase Extensions, you're only charged for the underlying resourc
5353
* Cloud Storage path for resized images: A relative path in which to store resized images. For example, if you specify a path here of `thumbs` and you upload an image to `/images/original.jpg`, then the resized image is stored at `/images/thumbs/original_200x200.jpg`. If you prefer to store resized images at the root of your bucket, leave this field empty.
5454

5555

56-
* Cache-Control header for resized images: Do you want to specify a `Cache-Control` header for the resized image files? Learn more about [`Cache-Control` headers](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cache-Control). If you prefer not to use a `Cache-Control` header, leave this field empty.
56+
* Cache-Control header for resized images: This extension automatically copies any `Cache-Control` metadata from the original image to the resized images. For the resized images, do you want to overwrite this copied `Cache-Control` metadata or add `Cache-Control` metadata? Learn more about [`Cache-Control` headers](https://developer.mozilla.org/docs/Web/HTTP/Headers/Cache-Control). If you prefer not to overwrite or add `Cache-Control` metadata, leave this field empty.
5757

5858

5959

0 commit comments

Comments
 (0)