Constants.cs 1.1 KB

12345678910111213141516171819202122232425262728293031323334
  1. namespace BatchWrapper
  2. {
  3. /// <summary>
  4. /// Constants for the batch wrapper.
  5. /// </summary>
  6. public static class Constants
  7. {
  8. /// <summary>
  9. /// Environment variable names present or needed during the batch task execution.
  10. /// </summary>
  11. public static class EnvironmentVariableNames
  12. {
  13. /// <summary>
  14. /// Path to the directory containing the sqlpackage exe.
  15. /// </summary>
  16. internal const string AppPackagePrefix = "AZ_BATCH_APP_PACKAGE";
  17. /// <summary>
  18. /// Path to the working directory assigned to the batch task.
  19. /// </summary>
  20. internal const string TaskWorkingDir = "AZ_BATCH_TASK_WORKING_DIR";
  21. /// <summary>
  22. /// Path to the working directory assigned to the batch task.
  23. /// </summary>
  24. internal const string AzBatchTaskId = "AZ_BATCH_TASK_ID";
  25. /// <summary>
  26. /// Path to the working directory assigned to the batch task.
  27. /// </summary>
  28. internal const string JobContainerUrl = "JOB_CONTAINER_URL";
  29. }
  30. }
  31. }