/* SPDX-License-Identifier: Apache-2.0
*
* The OpenSearch Contributors require contributions made to
* this file be licensed under the Apache-2.0 license or a
* compatible open source license.
*/
/*
* Modifications Copyright OpenSearch Contributors. See
* GitHub history for details.
*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
using System;
using System.Collections.Generic;
using System.Reflection;
using OpenSearch.Net;
namespace OpenSearch.Client
{
///
/// Provides the connection settings for
///
public interface IConnectionSettingsValues : IConnectionConfigurationValues
{
///
/// Specifies how field names are inferred from CLR property names.
///
/// By default, OpenSearch.Client camel cases property names.
///
///
/// CLR property EmailAddress will be inferred as "emailAddress" OpenSearch document field name
///
Func DefaultFieldNameInferrer { get; }
///
/// The default index to use for a request when no index has been explicitly specified
/// and no default indices are specified for the given CLR type specified for the request.
///
string DefaultIndex { get; }
///
/// The default index/indices to use for a request for a given CLR type specified in the request.
///
FluentDictionary DefaultIndices { get; }
///
/// The default relation name to use for a request for a given CLR type specified in the request.
///
FluentDictionary DefaultRelationNames { get; }
///
/// Specify a property for a CLR type to use to infer the _id of the document when indexed in OpenSearch.
///
FluentDictionary IdProperties { get; }
///
/// Infers index, type, id, relation, routing and field names
///
Inferrer Inferrer { get; }
///
/// Provides mappings for CLR types
///
IPropertyMappingProvider PropertyMappingProvider { get; }
///
/// Provides mappings for CLR type members
///
FluentDictionary PropertyMappings { get; }
///
/// Specify a property for a CLR type to use to infer the routing for of a document when indexed in OpenSearch.
///
FluentDictionary RouteProperties { get; }
///
/// Disables automatic Id inference for given CLR types.
///
/// OpenSearch.Client by default will use the value of a property named Id on a CLR type as the _id to send to OpenSearch. Adding a type
/// will disable this behaviour for that CLR type. If Id inference should be disabled for all CLR types, use
///
///
HashSet DisableIdInference { get; }
///
/// Disables automatic Id inference for all CLR types.
///
/// OpenSearch.Client by default will use the value of a property named Id on a CLR type as the _id to send to OpenSearch. Setting this to true
/// will disable this behaviour for all CLR types and cannot be overridden. If Id inference should be disabled only for specific types, use
///
///
bool DefaultDisableIdInference { get; }
///
/// The serializer use to serialize CLR types representing documents and other types related to documents.
///
IOpenSearchSerializer SourceSerializer { get; }
}
}