Class CreateJobRunDetails
Parameters needed to create a new job run.
Inheritance
CreateJobRunDetails
Assembly: OCI.DotNetSDK.Datascience.dll
Syntax
public class CreateJobRunDetails
Properties
CompartmentId
Declaration
[Required(ErrorMessage = "CompartmentId is required.")]
[JsonProperty(PropertyName = "compartmentId")]
public string CompartmentId { get; set; }
Property Value
Type |
Description |
string |
The OCID of the compartment where you want to create the job run.
|
Declaration
[JsonProperty(PropertyName = "definedTags")]
public Dictionary<string, Dictionary<string, object>> DefinedTags { get; set; }
Property Value
DisplayName
Declaration
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type |
Description |
string |
A user-friendly display name for the resource.
|
Declaration
[JsonProperty(PropertyName = "freeformTags")]
public Dictionary<string, string> FreeformTags { get; set; }
Property Value
Type |
Description |
Dictionary<string, string> |
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. See Resource Tags.
Example: {"Department": "Finance"}
|
JobConfigurationOverrideDetails
Declaration
[JsonProperty(PropertyName = "jobConfigurationOverrideDetails")]
public JobConfigurationDetails JobConfigurationOverrideDetails { get; set; }
Property Value
JobEnvironmentConfigurationOverrideDetails
Declaration
[JsonProperty(PropertyName = "jobEnvironmentConfigurationOverrideDetails")]
public JobEnvironmentConfigurationDetails JobEnvironmentConfigurationOverrideDetails { get; set; }
Property Value
JobId
Declaration
[Required(ErrorMessage = "JobId is required.")]
[JsonProperty(PropertyName = "jobId")]
public string JobId { get; set; }
Property Value
Type |
Description |
string |
The OCID of the job to create a run for.
|
JobInfrastructureConfigurationOverrideDetails
Declaration
[JsonProperty(PropertyName = "jobInfrastructureConfigurationOverrideDetails")]
public JobInfrastructureConfigurationDetails JobInfrastructureConfigurationOverrideDetails { get; set; }
Property Value
JobLogConfigurationOverrideDetails
Declaration
[JsonProperty(PropertyName = "jobLogConfigurationOverrideDetails")]
public JobLogConfigurationDetails JobLogConfigurationOverrideDetails { get; set; }
Property Value
JobNodeConfigurationOverrideDetails
Declaration
[JsonProperty(PropertyName = "jobNodeConfigurationOverrideDetails")]
public JobNodeConfigurationDetails JobNodeConfigurationOverrideDetails { get; set; }
Property Value
ProjectId
Declaration
[Required(ErrorMessage = "ProjectId is required.")]
[JsonProperty(PropertyName = "projectId")]
public string ProjectId { get; set; }
Property Value
Type |
Description |
string |
The OCID of the project to associate the job run with.
|