//============================================================================== // // Copyright (c) Microsoft. All rights reserved. // This code is licensed under the Microsoft Public License. // THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF // ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY // IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR // PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT. // //============================================================================== using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace ModelDUtil { /// /// The various "modes" of the utility console app. The app will run in /// exactly one of these modes each execution. /// public enum Modes { /// /// Used to export a model to a package file. /// CreatePackage, /// /// Used to deploy a clone of a model in a package. /// DeployClone, /// /// Used to deploy a copy of a model in a package, under a new name. /// DeployNew, /// /// Used to update an existing model from a package. /// DeployUpdate, /// /// Used to list all the models in the system. /// ListModels, /// /// Used to list all the versions for a selected model. /// ListVersions, /// /// Used to display the usage instructions. /// Help } }