Show / Hide Table of Contents

Class OciOpenSearchIndexConfig

The details of customer managed OCI OpenSearch.

Inheritance
object
IndexConfig
OciOpenSearchIndexConfig
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.GenerativeaiagentService.Models
Assembly: OCI.DotNetSDK.Generativeaiagent.dll
Syntax
public class OciOpenSearchIndexConfig : IndexConfig

Properties

ClusterId

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

The OCID of the OpenSearch Cluster.

Remarks

Required

Indexes

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

Index configuration for open search.

Remarks

Required

SecretDetail

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

Required

In this article
Back to top