Show / Hide Table of Contents

Class OutboundClusterConfig

This configuration is used for passing request details to connect outbound cluster(s) to the inbound cluster (coordinating cluster)

Inheritance
object
OutboundClusterConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.OpensearchService.Models
Assembly: OCI.DotNetSDK.Opensearch.dll
Syntax
public class OutboundClusterConfig

Properties

IsEnabled

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

Flag to indicate whether outbound cluster configuration is enabled

Remarks

Required

OutboundClusters

Declaration
[Required(ErrorMessage = "OutboundClusters is required.")]
[JsonProperty(PropertyName = "outboundClusters")]
public List<OutboundClusterSummary> OutboundClusters { get; set; }
Property Value
Type Description
List<OutboundClusterSummary>

List of outbound clusters to be connected to the inbound cluster

Remarks

Required

In this article
Back to top