0.0.31 • Published 5 months ago

@google-cloud-suite/cloud-functions-update-storage-metadata v0.0.31

Weekly downloads
-
License
MIT
Repository
-
Last release
5 months ago

@google-cloud-suite/cloud-functions-update-storage-metadata

Update object metadata with created trigger.

What is this?

  1. Save file.txt.metadata on your bucket
{
  "contentDisposition": "attachment:filename=textfile.txt"
}
  1. When file.txt is created, this function set metadata from file.txt.metadata to file.txt.

How to use?

  1. Prepare your Google Cloud Functions directory.
functions
  |- package.json
  |- index.js
  |- .gcloudignore
 ...
  1. Install
npm install @google-cloud-suite/cloud-functions-update-storage-metadata
  1. Handle stroage trigger

You can use handleStorageObjectCreated(params: InitParams) to initialize trigger. The followings are the property of InitParams:

  • metadataFileSuffix?: string
    • defaults: .metadata

Examples:

  • Using event target bucket for both source and destination.
const updateMetadata = require("@google-cloud-suite/cloud-functions-update-storage-metadata");
exports.updateMetadata = updateMetadata.handleStorageObjectCreated();
  1. Deploy
gcloud functions deploy updateMetadata \
--runtime nodejs10 \
--trigger-resource YOUR_BUCKET \
--trigger-event google.storage.object.finalize \
--project YOUR_PROJECT
0.0.30

7 months ago

0.0.31

5 months ago

0.0.20

1 year ago

0.0.21

1 year ago

0.0.22

1 year ago

0.0.23

1 year ago

0.0.24

1 year ago

0.0.25

1 year ago

0.0.26

1 year ago

0.0.27

1 year ago

0.0.28

1 year ago

0.0.29

1 year ago

0.0.10

2 years ago

0.0.11

2 years ago

0.0.12

2 years ago

0.0.13

2 years ago

0.0.14

2 years ago

0.0.15

2 years ago

0.0.9

2 years ago

0.0.16

2 years ago

0.0.8

2 years ago

0.0.17

2 years ago

0.0.18

2 years ago

0.0.19

2 years ago

0.0.7

2 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago