We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 03cc567 commit 053fe29Copy full SHA for 053fe29
src/dstack/_internal/core/backends/base/offers.py
@@ -23,6 +23,7 @@
23
"oci-spot",
24
"lambda-arm",
25
"gcp-a4",
26
+ "gcp-g4",
27
"gcp-dws-calendar-mode",
28
]
29
src/dstack/_internal/core/backends/gcp/models.py
@@ -92,7 +92,10 @@ class GCPBackendConfig(CoreModel):
92
preview_features: Annotated[
93
Optional[List[Literal["g4"]]],
94
Field(
95
- description=("The list of preview GCP features to enable. Supported values: `g4`"),
+ description=(
96
+ "The list of preview GCP features to enable."
97
+ " There are currently no preview features"
98
+ ),
99
max_items=1,
100
),
101
] = None
0 commit comments