Skip to content

Commit

Permalink
Add doc comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
taeold committed Dec 6, 2023
1 parent 2042e2b commit e194ce8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions src/gcp/frameworks.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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. */
Expand Down

0 comments on commit e194ce8

Please sign in to comment.