Class OutboundClusterSummary
Contains details of a Outbound cluster
Inherited Members
Namespace: Oci.OpensearchService.Models
Assembly: OCI.DotNetSDK.Opensearch.dll
Syntax
public class OutboundClusterSummary
Properties
DisplayName
Declaration
[Required(ErrorMessage = "DisplayName is required.")]
[JsonProperty(PropertyName = "displayName")]
public string DisplayName { get; set; }
Property Value
Type | Description |
---|---|
string | Name of the Outbound cluster. Avoid entering confidential information. |
Remarks
Required
IsSkipUnavailable
Declaration
[JsonProperty(PropertyName = "isSkipUnavailable")]
public bool? IsSkipUnavailable { get; set; }
Property Value
Type | Description |
---|---|
bool? | Flag to indicate whether to skip the Outbound cluster during cross cluster search, if it is unavailable |
Mode
Declaration
[JsonProperty(PropertyName = "mode")]
[JsonConverter(typeof(ResponseEnumConverter))]
public CccMode? Mode { get; set; }
Property Value
Type | Description |
---|---|
CccMode? | Mode for the cross cluster connection |
PingSchedule
Declaration
[JsonProperty(PropertyName = "pingSchedule")]
public string PingSchedule { get; set; }
Property Value
Type | Description |
---|---|
string | Sets the time interval between regular application-level ping messages that are sent to try and keep outbound cluster connections alive. If set to -1, application-level ping messages to this outbound cluster are not sent. If unset, application-level ping messages are sent according to the global transport.ping_schedule setting, which defaults to -1 meaning that pings are not sent. |
SeedClusterId
Declaration
[Required(ErrorMessage = "SeedClusterId is required.")]
[JsonProperty(PropertyName = "seedClusterId")]
public string SeedClusterId { get; set; }
Property Value
Type | Description |
---|---|
string | OCID of the Outbound cluster |
Remarks
Required