//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
using Microsoft.SqlTools.Hosting.Protocol.Contracts;
namespace Microsoft.SqlTools.ServiceLayer.DacFx.Contracts
{
///
/// Parameters for a DacFx generate deploy plan request.
///
public class GenerateDeployPlanParams : DacFxParams
{
}
///
/// Defines the DacFx generate deploy plan request type
///
class GenerateDeployPlanRequest
{
public static readonly RequestType Type =
RequestType.Create("dacfx/generateDeployPlan");
}
///
/// Parameters returned from a generate deploy script request.
///
public class GenerateDeployPlanRequestResult : DacFxResult
{
///
/// An xml string that details the alerts and the operations for deploying the specified dacpac to the database
///
public string Report { get; set; }
}
}