-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathIManagedEnvironmentContext.ts
More file actions
20 lines (16 loc) · 1.06 KB
/
IManagedEnvironmentContext.ts
File metadata and controls
20 lines (16 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import { ManagedEnvironment } from "@azure/arm-appcontainers";
import { Workspace } from '@azure/arm-operationalinsights';
import { IResourceGroupWizardContext } from '@microsoft/vscode-azext-azureutils';
import { ExecuteActivityContext, ISubscriptionActionContext } from '@microsoft/vscode-azext-utils';
import { AzureSubscription } from "@microsoft/vscode-azureresources-api";
export interface IManagedEnvironmentContext extends ISubscriptionActionContext, IResourceGroupWizardContext, ExecuteActivityContext {
subscription: AzureSubscription;
newManagedEnvironmentName?: string;
logAnalyticsWorkspace?: Workspace;
// created when the wizard is done executing
managedEnvironment?: ManagedEnvironment;
}