mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-03-16 03:21:39 -04:00
Machine Learning Services R Packages (#8870)
* R Package management in Machine learning services extension
This commit is contained in:
@@ -0,0 +1,35 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* 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;
|
||||
}
|
||||
Reference in New Issue
Block a user