From 0df7686f24a08455067302f2825cebcbea186dbf Mon Sep 17 00:00:00 2001 From: Daniel Young Lee Date: Mon, 22 May 2023 09:59:15 -0700 Subject: [PATCH 1/3] Update supported region for 2nd Gen functions. --- src/v2/options.ts | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/src/v2/options.ts b/src/v2/options.ts index 2e8d78d0a..5726fdd1b 100644 --- a/src/v2/options.ts +++ b/src/v2/options.ts @@ -45,13 +45,31 @@ export { RESET_VALUE } from "../common/options"; * List of all regions supported by Cloud Functions v2 */ export type SupportedRegion = + | "asia-east1" | "asia-northeast1" + | "asia-northeast2" | "europe-north1" | "europe-west1" | "europe-west4" | "us-central1" | "us-east1" - | "us-west1"; + | "us-east4" + | "us-west1" + | "asia-east2" + | "asia-northeast3" + | "asia-southeast1" + | "asia-southeast2" + | "asia-south1" + | "australia-southeast1" + | "europe-central2" + | "europe-west2" + | "europe-west3" + | "europe-west6" + | "northamerica-northeast1" + | "southamerica-east1" + | "us-west2" + | "us-west3" + | "us-west4"; /** * List of available memory options supported by Cloud Functions. From 7b451e9cbf208bae40967937d37209b3bee206a9 Mon Sep 17 00:00:00 2001 From: Daniel Young Lee Date: Mon, 22 May 2023 10:03:36 -0700 Subject: [PATCH 2/3] Update changelog. --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index e69de29bb..212a321f9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -0,0 +1 @@ +- Update list of supported regions for 2nd Gen Functions. (#1402) \ No newline at end of file From 703cd900b5dfa31c3c953f05e77bbb76fab6bf1b Mon Sep 17 00:00:00 2001 From: Daniel Young Lee Date: Mon, 22 May 2023 10:05:59 -0700 Subject: [PATCH 3/3] Make linter happy. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 212a321f9..0733803be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1 +1 @@ -- Update list of supported regions for 2nd Gen Functions. (#1402) \ No newline at end of file +- Update list of supported regions for 2nd Gen Functions. (#1402)