Show / Hide Table of Contents

Class UpdateJobDetails

The details required to update a job.

Inheritance
object
UpdateJobDetails
UpdateSqlJobDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
[JsonConverter(typeof(UpdateJobDetailsModelConverter))]
public class UpdateJobDetails

Properties

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

The description of the job.

ResultLocation

Declaration
[JsonProperty(PropertyName = "resultLocation")]
public JobExecutionResultLocation ResultLocation { get; set; }
Property Value
Type Description
JobExecutionResultLocation

ScheduleDetails

Declaration
[JsonProperty(PropertyName = "scheduleDetails")]
public JobScheduleDetails ScheduleDetails { get; set; }
Property Value
Type Description
JobScheduleDetails

Timeout

Declaration
[JsonProperty(PropertyName = "timeout")]
public string Timeout { get; set; }
Property Value
Type Description
string

The job timeout duration, which is expressed like "1h 10m 15s".

In this article
Back to top