Show / Hide Table of Contents

Class CreateTaskFromSQLTask

The information about the SQL task.

Inheritance
object
CreateTaskDetails
CreateTaskFromSQLTask
Inherited Members
CreateTaskDetails.Key
CreateTaskDetails.ModelVersion
CreateTaskDetails.ParentRef
CreateTaskDetails.Name
CreateTaskDetails.Description
CreateTaskDetails.ObjectStatus
CreateTaskDetails.Identifier
CreateTaskDetails.InputPorts
CreateTaskDetails.OutputPorts
CreateTaskDetails.Parameters
CreateTaskDetails.OpConfigValues
CreateTaskDetails.ConfigProviderDelegate
CreateTaskDetails.IsConcurrentAllowed
CreateTaskDetails.RegistryMetadata
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 CreateTaskFromSQLTask : CreateTaskDetails

Properties

Operation

Declaration
[JsonProperty(PropertyName = "operation")]
public object Operation { get; set; }
Property Value
Type Description
object

Describes the shape of the execution result

Script

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

SqlScriptType

Declaration
[JsonProperty(PropertyName = "sqlScriptType")]
[JsonConverter(typeof(StringEnumConverter))]
public CreateTaskFromSQLTask.SqlScriptTypeEnum? SqlScriptType { get; set; }
Property Value
Type Description
CreateTaskFromSQLTask.SqlScriptTypeEnum?

Indicates whether the task is invoking a custom SQL script or stored procedure.

In this article
Back to top