Show / Hide Table of Contents

Class PublishedObjectFromIntegrationTask

The integration task published object.

Inheritance
object
PublishedObject
PublishedObjectFromIntegrationTask
Inherited Members
PublishedObject.Key
PublishedObject.ModelVersion
PublishedObject.ParentRef
PublishedObject.Name
PublishedObject.Description
PublishedObject.ObjectVersion
PublishedObject.ObjectStatus
PublishedObject.Identifier
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 PublishedObjectFromIntegrationTask : PublishedObject

Properties

ConfigProviderDelegate

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

DataFlow

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

InputPorts

Declaration
[JsonProperty(PropertyName = "inputPorts")]
public List<InputPort> InputPorts { get; set; }
Property Value
Type Description
List<InputPort>

An array of input ports.

OpConfigValues

Declaration
[JsonProperty(PropertyName = "opConfigValues")]
public ConfigValues OpConfigValues { get; set; }
Property Value
Type Description
ConfigValues

OutputPorts

Declaration
[JsonProperty(PropertyName = "outputPorts")]
public List<OutputPort> OutputPorts { get; set; }
Property Value
Type Description
List<OutputPort>

An array of output ports.

Parameters

Declaration
[JsonProperty(PropertyName = "parameters")]
public List<Parameter> Parameters { get; set; }
Property Value
Type Description
List<Parameter>

An array of parameters.

In this article
Back to top