csharp/Microsoft.Azure.Databricks.Client/Models/RunType.cs (8 lines of code) (raw):
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
namespace Microsoft.Azure.Databricks.Client.Models;
/// <summary>
/// The type of the run.
/// </summary>
public enum RunType
{
/// <summary>
/// Normal job run. A run created with Run now.
/// </summary>
JOB_RUN,
/// <summary>
/// Workflow run. A run created with dbutils.notebook.run.
/// </summary>
WORKFLOW_RUN,
/// <summary>
/// Submit run. A run created with Run now.
/// </summary>
SUBMIT_RUN
}