-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathICreateContainerAppContext.ts
More file actions
18 lines (15 loc) · 1.08 KB
/
ICreateContainerAppContext.ts
File metadata and controls
18 lines (15 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import type { ManagedEnvironment } from '@azure/arm-appcontainers';
import type { IResourceGroupWizardContext } from '@microsoft/vscode-azext-azureutils';
import type { ExecuteActivityContext } from '@microsoft/vscode-azext-utils';
import type { IContainerAppContext } from '../IContainerAppContext';
import type { ImageSourceBaseContext } from '../deployImage/imageSource/ImageSourceBaseContext';
import type { IngressContext } from '../ingress/IngressContext';
export interface ICreateContainerAppContext extends IResourceGroupWizardContext, ImageSourceBaseContext, IngressContext, IContainerAppContext, ExecuteActivityContext {
newContainerAppName?: string;
managedEnvironmentId?: string;
managedEnvironment?: ManagedEnvironment;
}