Show / Hide Table of Contents

Class UpdateTaskRunDetails

Properties used in task run update operations.

Inheritance
object
UpdateTaskRunDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DataintegrationService.Models
Assembly: OCI.DotNetSDK.Dataintegration.dll
Syntax
public class UpdateTaskRunDetails

Properties

Description

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

Detailed description for the object.

Key

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

The key of the object.

ModelType

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

The type of the object.

ModelVersion

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

The model version of an object.

Name

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

Free form text without any restriction on permitted characters. Name can have letters, numbers, and special characters. The value is editable and is restricted to 1000 characters.

ObjectVersion

Declaration
[JsonProperty(PropertyName = "objectVersion")]
public int? ObjectVersion { get; set; }
Property Value
Type Description
int?

The version of the object that is used to track changes in the object instance.

RegistryMetadata

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

Status

Declaration
[JsonProperty(PropertyName = "status")]
[JsonConverter(typeof(StringEnumConverter))]
public UpdateTaskRunDetails.StatusEnum? Status { get; set; }
Property Value
Type Description
UpdateTaskRunDetails.StatusEnum?

The status of the object.

TaskScheduleKey

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

Optional task schedule key reference.

In this article
Back to top