From e194ce832c556ebbcb76e0569b0cd39d7cc72426 Mon Sep 17 00:00:00 2001 From: Daniel Young Lee Date: Thu, 7 Dec 2023 05:09:56 +0900 Subject: [PATCH] Add doc comment. --- src/gcp/frameworks.ts | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/gcp/frameworks.ts b/src/gcp/frameworks.ts index 089479bf3d9..0904f44bce1 100644 --- a/src/gcp/frameworks.ts +++ b/src/gcp/frameworks.ts @@ -19,6 +19,12 @@ interface Codebase { rootDirectory: string; } +/** + * Specifies how Backend's data is replicated and served. + * GLOBAL_ACCESS: Stores and serves content from multiple points-of-presence (POP) + * REGIONAL_STRICT: Restricts data and serving infrastructure in Backend's region + * + */ export type ServingLocality = "GLOBAL_ACCESS" | "REGIONAL_STRICT"; /** A Backend, the primary resource of Frameworks. */