add capacityMode (#1826)

* add capacityMode

* add check for capacityMode for serverless
This commit is contained in:
sunghyunkang1111
2024-05-17 12:19:23 -05:00
committed by GitHub
parent ff4bc78d6c
commit 4da3363cf7
3 changed files with 14 additions and 2 deletions

View File

@@ -90,6 +90,11 @@ export class CapabilityNames {
public static readonly EnableServerless: string = "EnableServerless";
}
export enum CapacityMode {
Provisioned = "Provisioned",
Serverless = "Serverless",
}
// flight names returned from the portal are always lowercase
export class Flights {
public static readonly SettingsV2 = "settingsv2";