Show / Hide Table of Contents

Class CreateTaskRunDetails

The properties used in task run create operations.

Inheritance
object
CreateTaskRunDetails
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 CreateTaskRunDetails

Properties

ConfigProvider

Declaration
[JsonProperty(PropertyName = "configProvider")]
public CreateConfigProvider ConfigProvider { get; set; }
Property Value
Type Description
CreateConfigProvider

Description

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

Detailed description for the object.

Identifier

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

Value can only contain upper case letters, underscore, and numbers. It should begin with upper case letter or underscore. The value can be modified.

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.

ReRunType

Declaration
[JsonProperty(PropertyName = "reRunType")]
[JsonConverter(typeof(StringEnumConverter))]
public CreateTaskRunDetails.ReRunTypeEnum? ReRunType { get; set; }
Property Value
Type Description
CreateTaskRunDetails.ReRunTypeEnum?

Supported re-run types

RefTaskRunId

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

Reference Task Run Id to be used for re-run

RegistryMetadata

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

StepId

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

Step Id for running from a certain step.

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