namespace BatchWrapper { /// /// The top-level object stored in the key vault for an import/export operation. /// public sealed class Payload { /// /// The Name of sqlpackage to use for performing the import/export operation. /// public string ApplicatonPackageName{ get; set; } /// /// The Version of sqlpackage to use for performing the import/export operation. /// public string ApplicatonPackageVersion { get; set; } /// /// The type of sqlpackage action to perform. /// public ActionType Action { get; set; } /// /// The logical server name to export from or import to. /// public string LogicalServerName { get; set; } /// /// The database name to export from or import to. /// public string DatabaseName { get; set; } /// /// The server admin username. /// public string AccessToken { get; set; } } }