Class OutboundClusterConfig
This configuration is used for passing request details to connect outbound cluster(s) to the inbound cluster (coordinating cluster)
Inherited Members
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