1
0

Payload.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. namespace BatchWrapper
  2. {
  3. /// <summary>
  4. /// The top-level object stored in the key vault for an import/export operation.
  5. /// </summary>
  6. public sealed class Payload
  7. {
  8. /// <summary>
  9. /// The Name of sqlpackage to use for performing the import/export operation.
  10. /// </summary>
  11. public string ApplicatonPackageName{ get; set; }
  12. /// <summary>
  13. /// The Version of sqlpackage to use for performing the import/export operation.
  14. /// </summary>
  15. public string ApplicatonPackageVersion { get; set; }
  16. /// <summary>
  17. /// The type of sqlpackage action to perform.
  18. /// </summary>
  19. public ActionType Action { get; set; }
  20. /// <summary>
  21. /// The logical server name to export from or import to.
  22. /// </summary>
  23. public string LogicalServerName { get; set; }
  24. /// <summary>
  25. /// The database name to export from or import to.
  26. /// </summary>
  27. public string DatabaseName { get; set; }
  28. /// <summary>
  29. /// The server admin username.
  30. /// </summary>
  31. public string AccessToken { get; set; }
  32. }
  33. }