-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathIBuildImageInAzureContext.ts
More file actions
23 lines (19 loc) · 977 Bytes
/
IBuildImageInAzureContext.ts
File metadata and controls
23 lines (19 loc) · 977 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.md in the project root for license information.
*--------------------------------------------------------------------------------------------*/
import type { Run as AcrRun, ContainerRegistryManagementClient } from '@azure/arm-containerregistry';
import * as vscode from 'vscode';
import { IContainerRegistryImageContext } from '../containerRegistry/IContainerRegistryImageContext';
export interface IBuildImageInAzureContext extends IContainerRegistryImageContext {
rootFolder: vscode.WorkspaceFolder;
dockerfilePath: string;
imageName: string;
os: 'Windows' | 'Linux';
uploadedSourceLocation: string;
tarFilePath: string;
client: ContainerRegistryManagementClient;
resourceGroupName: string;
registryName: string;
run: AcrRun
}