mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 18:46:40 -05:00
Support for removing hardcoded deployment options (#8986)
* Support for removing hardcode deployment options * Add missing file * Generalize errors and make name and id required. Sort dropdowns. * Fix test * Capitalize text
This commit is contained in:
@@ -172,6 +172,11 @@ export interface FieldInfo {
|
||||
editable?: boolean; // for editable dropdown
|
||||
}
|
||||
|
||||
export interface AzureAccountFieldInfo extends FieldInfo {
|
||||
subscriptionVariableName?: string;
|
||||
resourceGroupVariableName?: string;
|
||||
}
|
||||
|
||||
export const enum LabelPosition {
|
||||
Top = 'top',
|
||||
Left = 'left'
|
||||
@@ -195,7 +200,8 @@ export enum FieldType {
|
||||
Password = 'password',
|
||||
Options = 'options',
|
||||
ReadonlyText = 'readonly_text',
|
||||
Checkbox = 'checkbox'
|
||||
Checkbox = 'checkbox',
|
||||
AzureAccount = 'azure_account'
|
||||
}
|
||||
|
||||
export interface NotebookInfo {
|
||||
|
||||
Reference in New Issue
Block a user