/** * 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 ElasticSearchRuleActionDto */ export interface ElasticSearchRuleActionDto extends RuleActionDto { /** * The url to the instance or cluster. * @type {string} * @memberof ElasticSearchRuleActionDto */ host: string; /** * The name of the index. * @type {string} * @memberof ElasticSearchRuleActionDto */ indexName: string; /** * The optional username. * @type {string} * @memberof ElasticSearchRuleActionDto */ username?: string | null; /** * The optional password. * @type {string} * @memberof ElasticSearchRuleActionDto */ password?: string | null; /** * The optional custom document. * @type {string} * @memberof ElasticSearchRuleActionDto */ document?: string | null; /** * The condition when to delete the document. * @type {string} * @memberof ElasticSearchRuleActionDto */ _delete?: string | null; } /** * Check if a given object implements the ElasticSearchRuleActionDto interface. */ export declare function instanceOfElasticSearchRuleActionDto(value: any): value is ElasticSearchRuleActionDto; export declare function ElasticSearchRuleActionDtoFromJSON(json: any): ElasticSearchRuleActionDto; export declare function ElasticSearchRuleActionDtoFromJSONTyped(json: any, _ignoreDiscriminator: boolean): ElasticSearchRuleActionDto; export declare function ElasticSearchRuleActionDtoToJSON(value?: ElasticSearchRuleActionDto | null, _ignoreDiscriminator?: boolean): any;