You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/generated/types/CreateProjectRequest.ts
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -54,6 +54,12 @@ export type CreateProjectRequest = {
54
54
* @type string | undefined
55
55
*/
56
56
cloud?: CreateProjectRequestCloudEnumKey;
57
+
/**
58
+
* @description Mark this project as running on a self-hosted (BYOC) data plane in the customer\'s own VPC/cluster. Requires the Scale or enterprise plan.\n
59
+
* @default false
60
+
* @type boolean | undefined
61
+
*/
62
+
self_hosted?: boolean;
57
63
/**
58
64
* @description Primary database. Created atomically with the project.
* @description Response returned once when an enrollment is created. The token is shown a single time and cannot be retrieved again; set it as GRPC_AUTH_TOKEN on the self-hosted proxy.\n
Copy file name to clipboardExpand all lines: src/generated/types/Project.ts
+6Lines changed: 6 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -58,6 +58,12 @@ export type Project = {
58
58
* @type string | undefined
59
59
*/
60
60
readonlycloud?: ProjectCloudEnumKey;
61
+
/**
62
+
* @description When true, this project\'s data plane runs in the customer\'s own VPC/cluster (BYOC): the control plane does not provision hosted infra, and a self-hosted proxy dials home over the config/audit gRPC stream. Requires the Scale or enterprise plan.\n
63
+
* @example false
64
+
* @type boolean | undefined
65
+
*/
66
+
readonlyself_hosted?: boolean;
61
67
/**
62
68
* @description Proxy hostname for connecting through PgBeam (e.g., myproject.proxy.pgbeam.app).
0 commit comments