Files
azuredatastudio/extensions/machine-learning/src/configurations/packageConfigModel.ts
Leila Lali af36d79c53 MLS - Setting the right url to install sqlmlutils from for MAC and Linux (#9962)
* Setting the right url to install sqlmlutils from for MAC and Linux
2020-04-30 12:09:05 -07:00

41 lines
802 B
TypeScript

/*---------------------------------------------------------------------------------------------
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the Source EULA. See License.txt in the project root for license information.
*--------------------------------------------------------------------------------------------*/
/**
* The model for package config value
*/
export interface PackageConfigModel {
/**
* Package name
*/
name: string;
/**
* Package version
*/
version?: string;
/**
* Package repository
*/
repository?: string;
/**
* Package download url
*/
downloadUrl?: string;
/**
* Package file name if package has download url
*/
fileName?: string;
/**
* Package platform (Windows, Mac, Linux)
*/
platform?: string;
}