mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
SQL Edge deployment using Azure IoT hub (#11202)
* Azure IoT deployment type * more updates * organize fields * a few more improvements * resolve merge issues * new rg improvement * fix tests * comments 1 * comments 2
This commit is contained in:
@@ -236,6 +236,9 @@ export interface AzureAccountFieldInfo extends AzureLocationsFieldInfo {
|
||||
displaySubscriptionVariableName?: string;
|
||||
subscriptionVariableName?: string;
|
||||
resourceGroupVariableName?: string;
|
||||
allowNewResourceGroup?: boolean;
|
||||
newResourceGroupFlagVariableName?: string;
|
||||
newResourceGroupNameVariableName?: string;
|
||||
}
|
||||
|
||||
export interface AzureLocationsFieldInfo extends FieldInfo {
|
||||
@@ -244,6 +247,15 @@ export interface AzureLocationsFieldInfo extends FieldInfo {
|
||||
locations?: string[]
|
||||
}
|
||||
|
||||
export interface FilePickerFieldInfo extends FieldInfo {
|
||||
filter: FilePickerFilter;
|
||||
}
|
||||
|
||||
export interface FilePickerFilter {
|
||||
displayName: string;
|
||||
fileTypes: string[];
|
||||
}
|
||||
|
||||
export const enum LabelPosition {
|
||||
Top = 'top',
|
||||
Left = 'left'
|
||||
|
||||
Reference in New Issue
Block a user