Show / Hide Table of Contents

Class PluginSourceDetailsResponse

Details about a connector plugin used to fetch data from a source. For configuration instructions, see Creating a Connector.

Inheritance
object
SourceDetailsResponse
PluginSourceDetailsResponse
Inherited Members
SourceDetailsResponse.PrivateEndpointMetadata
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.SchService.Models
Assembly: OCI.DotNetSDK.Sch.dll
Syntax
public class PluginSourceDetailsResponse : SourceDetailsResponse

Properties

ConfigMap

Declaration
[Required(ErrorMessage = "ConfigMap is required.")]
[JsonProperty(PropertyName = "configMap")]
public object ConfigMap { get; set; }
Property Value
Type Description
object

The configuration map for the connector plugin. This map includes parameters specific to the connector plugin type. For example, for QueueSource, the map lists the OCID of the selected queue. To find the parameters for a connector plugin, get the plugin using {@link #getConnectorPlugin(GetConnectorPluginRequest) getConnectorPlugin} and review its schema value.

Remarks

Required

PluginName

Declaration
[Required(ErrorMessage = "PluginName is required.")]
[JsonProperty(PropertyName = "pluginName")]
public string PluginName { get; set; }
Property Value
Type Description
string

The name of the connector plugin. This name indicates the service to be called by the connector plugin. For example, QueueSource indicates the Queue service. To find names of connector plugins, list the plugin using {@link #listConnectorPlugins(ListConnectorPluginsRequest) listConnectorPlugins}.

Remarks

Required

In this article
Back to top