ข้ามไปยังเนื้อหา

Class OpenSearchDependencyDefinition

เนื้อหานี้ยังไม่ได้แปลเป็นภาษาไทย แสดงเป็นภาษาอังกฤษแทน

Namespace: Cephalon.Observability.OpenSearchDependencies.Configuration
Assembly: Cephalon.Observability.OpenSearchDependencies.dll

Describes one OpenSearch dependency that should contribute to runtime health.

public sealed class OpenSearchDependencyDefinition : DependencyDefinitionBase

objectDependencyDefinitionBaseOpenSearchDependencyDefinition

DependencyDefinitionBase.Id, DependencyDefinitionBase.DisplayName, DependencyDefinitionBase.Required, DependencyDefinitionBase.TimeoutSeconds, object.Equals(object?), object.Equals(object?, object?), object.GetHashCode(), object.GetType(), object.ReferenceEquals(object?, object?), object.ToString()

Initializes a new instance of the class.

public OpenSearchDependencyDefinition()

Gets or sets the optional bearer token used for OpenSearch bearer-token authentication.

public string? BearerToken { get; set; }

string?

Gets or sets the absolute OpenSearch base URL or cluster-health endpoint that should be probed.

public string Endpoint { get; set; }

string

Gets or sets the optional index name or comma-delimited index list that should be checked through the cluster-health API.

public string? Index { get; set; }

string?

Gets or sets the optional password used for OpenSearch basic authentication.

public string? Password { get; set; }

string?

Gets or sets the optional user name used for OpenSearch basic authentication.

public string? Username { get; set; }

string?