Class PluginSourceDetails
Details about a connector plugin used to fetch data from a source. For configuration instructions, see Creating a Connector.
Inherited Members
Namespace: Oci.SchService.Models
Assembly: OCI.DotNetSDK.Sch.dll
Syntax
public class PluginSourceDetails : SourceDetails
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 |
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, |
Remarks
Required