/** * Squidex API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { RuleActionDto } from './RuleActionDto'; /** * * @export * @interface OpenSearchRuleActionDto */ export interface OpenSearchRuleActionDto extends RuleActionDto { /** * The url to the instance or cluster. * @type {string} * @memberof OpenSearchRuleActionDto */ host: string; /** * The name of the index. * @type {string} * @memberof OpenSearchRuleActionDto */ indexName: string; /** * The optional username. * @type {string} * @memberof OpenSearchRuleActionDto */ username?: string | null; /** * The optional password. * @type {string} * @memberof OpenSearchRuleActionDto */ password?: string | null; /** * The optional custom document. * @type {string} * @memberof OpenSearchRuleActionDto */ document?: string | null; /** * The condition when to delete the document. * @type {string} * @memberof OpenSearchRuleActionDto */ _delete?: string | null; } /** * Check if a given object implements the OpenSearchRuleActionDto interface. */ export declare function instanceOfOpenSearchRuleActionDto(value: any): value is OpenSearchRuleActionDto; export declare function OpenSearchRuleActionDtoFromJSON(json: any): OpenSearchRuleActionDto; export declare function OpenSearchRuleActionDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): OpenSearchRuleActionDto; export declare function OpenSearchRuleActionDtoToJSON(value?: OpenSearchRuleActionDto | null, _ignoreDiscriminator?: boolean): any;