We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2042e2b commit e194ce8Copy full SHA for e194ce8
src/gcp/frameworks.ts
@@ -19,6 +19,12 @@ interface Codebase {
19
rootDirectory: string;
20
}
21
22
+/**
23
+ * Specifies how Backend's data is replicated and served.
24
+ * GLOBAL_ACCESS: Stores and serves content from multiple points-of-presence (POP)
25
+ * REGIONAL_STRICT: Restricts data and serving infrastructure in Backend's region
26
+ *
27
+ */
28
export type ServingLocality = "GLOBAL_ACCESS" | "REGIONAL_STRICT";
29
30
/** A Backend, the primary resource of Frameworks. */
0 commit comments