Add Connection String Execute Step for SQL Bindings (#19293)

* add execute step

* nit comment

* edit param docs

* address comments

* ensure the user has the installs the latest version
This commit is contained in:
Vasu Bhog
2022-05-09 16:06:02 -07:00
committed by GitHub
parent e80b8f92f2
commit 51e5890c83
6 changed files with 243 additions and 21 deletions

View File

@@ -2,6 +2,7 @@
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { AzureWizardExecuteStep, IActionContext } from "@microsoft/vscode-azext-utils";
export interface AzureFunctionsExtensionApi {
apiVersion: string;
@@ -83,4 +84,10 @@ export interface ICreateFunctionOptions {
* If set, it will automatically select the worker runtime for .NET with the matching targetFramework
*/
targetFramework?: string | string[];
/**
* If set, it will include a step that will be executed prior to OpenFolderStep
*/
executeStep?: AzureWizardExecuteStep<IActionContext>;
}