Class JobRun
The details of a specific job run.
Inherited Members
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class JobRun
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 in which the parent job resides. |
Remarks
Required
Id
Declaration
[Required(ErrorMessage = "Id is required.")]
[JsonProperty(PropertyName = "id")]
public string Id { get; set; }
Property Value
Type | Description |
---|---|
string | The identifier of the job run. |
Remarks
Required
JobId
Declaration
[Required(ErrorMessage = "JobId is required.")]
[JsonProperty(PropertyName = "jobId")]
public string JobId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the parent job. |
Remarks
Required
JobName
Declaration
[Required(ErrorMessage = "JobName is required.")]
[JsonProperty(PropertyName = "jobName")]
public string JobName { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the parent job. |
Remarks
Required
ManagedDatabaseGroupId
Declaration
[JsonProperty(PropertyName = "managedDatabaseGroupId")]
public string ManagedDatabaseGroupId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of the Managed Database Group where the parent job has to be executed. |
ManagedDatabaseId
Declaration
[JsonProperty(PropertyName = "managedDatabaseId")]
public string ManagedDatabaseId { get; set; }
Property Value
Type | Description |
---|---|
string | The OCID of Managed Database where the parent job has to be executed. |
Name
Declaration
[Required(ErrorMessage = "Name is required.")]
[JsonProperty(PropertyName = "name")]
public string Name { get; set; }
Property Value
Type | Description |
---|---|
string | The name of the job run. |
Remarks
Required
RunStatus
Declaration
[Required(ErrorMessage = "RunStatus is required.")]
[JsonProperty(PropertyName = "runStatus")]
[JsonConverter(typeof(ResponseEnumConverter))]
public JobRun.RunStatusEnum? RunStatus { get; set; }
Property Value
Type | Description |
---|---|
JobRun.RunStatusEnum? | The status of the job run. |
Remarks
Required
TimeSubmitted
Declaration
[Required(ErrorMessage = "TimeSubmitted is required.")]
[JsonProperty(PropertyName = "timeSubmitted")]
public DateTime? TimeSubmitted { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | The date and time when the job run was submitted. |
Remarks
Required
TimeUpdated
Declaration
[Required(ErrorMessage = "TimeUpdated is required.")]
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type | Description |
---|---|
DateTime? | The date and time when the job run was last updated. |
Remarks
Required