Show / Hide Table of Contents

Class ConnectorPlugin

A service source or service target used to create a connector. Example connector plugins include the Queue source and the Notifications target. For more information about flows defined by connectors, see Overview of Connector Hub. For configuration instructions, see Creating a Connector.

Inheritance
object
ConnectorPlugin
SourceConnectorPlugin
TargetConnectorPlugin
Inherited Members
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
[JsonConverter(typeof(ConnectorPluginModelConverter))]
public class ConnectorPlugin

Properties

DisplayName

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

A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information.

Remarks

Required

EstimatedThroughput

Declaration
[JsonProperty(PropertyName = "estimatedThroughput")]
[JsonConverter(typeof(ResponseEnumConverter))]
public EstimatedThroughput? EstimatedThroughput { get; set; }
Property Value
Type Description
EstimatedThroughput?

The estimated throughput range (LOW, MEDIUM, HIGH).

LifecycleState

Declaration
[Required(ErrorMessage = "LifecycleState is required.")]
[JsonProperty(PropertyName = "lifecycleState")]
[JsonConverter(typeof(ResponseEnumConverter))]
public ConnectorPluginLifecycleState? LifecycleState { get; set; }
Property Value
Type Description
ConnectorPluginLifecycleState?

The current state of the service connector.

Remarks

Required

Name

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

The service to be called by the connector plugin. Example: QueueSource

Remarks

Required

Schema

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

Gets the specified connector plugin configuration information in OpenAPI specification format.

TimeCreated

Declaration
[Required(ErrorMessage = "TimeCreated is required.")]
[JsonProperty(PropertyName = "timeCreated")]
public DateTime? TimeCreated { get; set; }
Property Value
Type Description
DateTime?

The date and time when this plugin became available. Format is defined by RFC3339. Example: 2023-09-09T21:10:29.600Z

Remarks

Required

In this article
Back to top