2021-07-17 02:43:45 -07:00
import {
INodeProperties ,
} from 'n8n-workflow' ;
import * as placeholders from './placeholders' ;
2021-12-03 00:44:16 -08:00
export const indexOperations : INodeProperties [ ] = [
2021-07-17 02:43:45 -07:00
{
displayName : 'Operation' ,
name : 'operation' ,
type : 'options' ,
2022-05-20 14:47:24 -07:00
noDataExpression : true ,
2021-07-17 02:43:45 -07:00
displayOptions : {
show : {
resource : [
'index' ,
] ,
} ,
} ,
options : [
{
name : 'Create' ,
value : 'create' ,
2022-07-10 13:50:51 -07:00
action : 'Create an index' ,
2021-07-17 02:43:45 -07:00
} ,
{
name : 'Delete' ,
value : 'delete' ,
2022-07-10 13:50:51 -07:00
action : 'Delete an index' ,
2021-07-17 02:43:45 -07:00
} ,
{
name : 'Get' ,
value : 'get' ,
2022-07-10 13:50:51 -07:00
action : 'Get an index' ,
2021-07-17 02:43:45 -07:00
} ,
{
name : 'Get All' ,
value : 'getAll' ,
2022-07-10 13:50:51 -07:00
action : 'Get all indices' ,
2021-07-17 02:43:45 -07:00
} ,
] ,
default : 'create' ,
} ,
2021-12-03 00:44:16 -08:00
] ;
2021-07-17 02:43:45 -07:00
2021-12-03 00:44:16 -08:00
export const indexFields : INodeProperties [ ] = [
2021-07-17 02:43:45 -07:00
// ----------------------------------------
// index: create
// ----------------------------------------
{
displayName : 'Index ID' ,
name : 'indexId' ,
description : 'ID of the index to create' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'index' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
resource : [
'index' ,
] ,
operation : [
'create' ,
] ,
} ,
} ,
options : [
{
displayName : 'Aliases' ,
name : 'aliases' ,
2021-08-26 10:42:38 -07:00
description : 'Index aliases which include the index, as an <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-aliases.html">alias object</a>' ,
2021-07-17 02:43:45 -07:00
type : 'json' ,
typeOptions : {
alwaysOpenEditWindow : true ,
} ,
default : '' ,
placeholder : placeholders.aliases ,
} ,
{
displayName : 'Include Type Name' ,
name : 'include_type_name' ,
2022-06-20 07:54:01 -07:00
description : 'Whether a mapping type is expected in the body of mappings. Defaults to false.' ,
2021-07-17 02:43:45 -07:00
type : 'boolean' ,
default : false ,
} ,
{
displayName : 'Mappings' ,
name : 'mappings' ,
2021-08-26 10:42:38 -07:00
description : 'Mapping for fields in the index, as <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/mapping.html">mapping object</a>' ,
2021-07-17 02:43:45 -07:00
type : 'json' ,
typeOptions : {
alwaysOpenEditWindow : true ,
} ,
default : '' ,
placeholder : placeholders.mappings ,
} ,
{
displayName : 'Master Timeout' ,
name : 'master_timeout' ,
2021-11-25 09:10:06 -08:00
description : 'Period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error. Defaults to <code>1m</code>. See the <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/common-options.html#time-units">Elasticsearch time units reference</a>' ,
2021-07-17 02:43:45 -07:00
type : 'string' ,
default : '1m' ,
} ,
{
displayName : 'Settings' ,
name : 'settings' ,
2021-08-26 10:42:38 -07:00
description : 'Configuration options for the index, as an <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/index-modules.html#index-modules-settings">index settings object</a>' ,
2021-07-17 02:43:45 -07:00
type : 'json' ,
typeOptions : {
alwaysOpenEditWindow : true ,
} ,
default : '' ,
placeholder : placeholders.indexSettings ,
} ,
{
displayName : 'Timeout' ,
name : 'timeout' ,
2021-11-25 09:10:06 -08:00
description : 'Period to wait for a response. If no response is received before the timeout expires, the request fails and returns an error. Defaults to <code>30s</code>. See the <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/common-options.html#time-units">Elasticsearch time units reference</a>' ,
2021-07-17 02:43:45 -07:00
type : 'string' ,
default : '30s' ,
} ,
{
displayName : 'Wait for Active Shards' ,
name : 'wait_for_active_shards' ,
2021-11-25 09:10:06 -08:00
description : 'The number of shard copies that must be active before proceeding with the operation. Set to <code>all</code> or any positive integer up to the total number of shards in the index. Default: 1, the primary shard' ,
2021-07-17 02:43:45 -07:00
type : 'string' ,
default : '1' ,
} ,
] ,
} ,
// ----------------------------------------
// index: delete
// ----------------------------------------
{
displayName : 'Index ID' ,
name : 'indexId' ,
description : 'ID of the index to delete' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'index' ,
] ,
operation : [
'delete' ,
] ,
} ,
} ,
} ,
// ----------------------------------------
// index: get
// ----------------------------------------
{
displayName : 'Index ID' ,
name : 'indexId' ,
description : 'ID of the index to retrieve' ,
type : 'string' ,
required : true ,
default : '' ,
displayOptions : {
show : {
resource : [
'index' ,
] ,
operation : [
'get' ,
] ,
} ,
} ,
} ,
{
displayName : 'Additional Fields' ,
name : 'additionalFields' ,
type : 'collection' ,
placeholder : 'Add Field' ,
default : { } ,
displayOptions : {
show : {
resource : [
'index' ,
] ,
operation : [
'get' ,
] ,
} ,
} ,
options : [
{
displayName : 'Allow No Indices' ,
name : 'allow_no_indices' ,
2022-06-20 07:54:01 -07:00
// eslint-disable-next-line n8n-nodes-base/node-param-description-boolean-without-whether
2022-04-22 09:29:51 -07:00
description : 'If false, return an error if any of the following targets only missing/closed indices: wildcard expression, index alias, or <code>_all</code> value. Defaults to true.' ,
2021-07-17 02:43:45 -07:00
type : 'boolean' ,
default : true ,
} ,
{
displayName : 'Expand Wildcards' ,
name : 'expand_wildcards' ,
description : 'Type of index that wildcard expressions can match. Defaults to <code>open</code>' ,
type : 'options' ,
options : [
{
name : 'All' ,
value : 'all' ,
} ,
{
name : 'Closed' ,
value : 'closed' ,
} ,
{
name : 'Hidden' ,
value : 'hidden' ,
} ,
{
name : 'None' ,
value : 'none' ,
} ,
{
name : 'Open' ,
value : 'open' ,
} ,
] ,
default : 'all' ,
} ,
{
displayName : 'Flat Settings' ,
name : 'flat_settings' ,
2022-06-20 07:54:01 -07:00
description : 'Whether to return settings in flat format. Defaults to false.' ,
2021-07-17 02:43:45 -07:00
type : 'boolean' ,
default : false ,
} ,
{
displayName : 'Ignore Unavailable' ,
name : 'ignore_unavailable' ,
2022-06-20 07:54:01 -07:00
description : 'Whether to request that target a missing index return an error. Defaults to false.' ,
2021-07-17 02:43:45 -07:00
type : 'boolean' ,
default : false ,
} ,
{
displayName : 'Include Defaults' ,
name : 'include_defaults' ,
2022-06-20 07:54:01 -07:00
description : 'Whether to return all default settings in the response. Defaults to false.' ,
2021-07-17 02:43:45 -07:00
type : 'boolean' ,
default : false ,
} ,
{
displayName : 'Local' ,
name : 'local' ,
2022-06-20 07:54:01 -07:00
description : 'Whether to retrieve information from the local node only. Defaults to false.' ,
2021-07-17 02:43:45 -07:00
type : 'boolean' ,
default : false ,
} ,
{
displayName : 'Master Timeout' ,
name : 'master_timeout' ,
2021-11-25 09:10:06 -08:00
description : 'Period to wait for a connection to the master node. If no response is received before the timeout expires, the request fails and returns an error. Defaults to <code>1m</code>. See the <a href="https://www.elastic.co/guide/en/elasticsearch/reference/current/common-options.html#time-units">Elasticsearch time units reference</a>' ,
2021-07-17 02:43:45 -07:00
type : 'string' ,
default : '1m' ,
} ,
] ,
} ,
// ----------------------------------------
// index: getAll
// ----------------------------------------
{
displayName : 'Return All' ,
name : 'returnAll' ,
type : 'boolean' ,
default : false ,
description : 'Whether to return all results or only up to a given limit' ,
displayOptions : {
show : {
resource : [
'index' ,
] ,
operation : [
'getAll' ,
] ,
} ,
} ,
} ,
{
displayName : 'Limit' ,
name : 'limit' ,
type : 'number' ,
default : 50 ,
2022-05-06 14:01:25 -07:00
description : 'Max number of results to return' ,
2021-07-17 02:43:45 -07:00
typeOptions : {
minValue : 1 ,
} ,
displayOptions : {
show : {
resource : [
'index' ,
] ,
operation : [
'getAll' ,
] ,
returnAll : [
false ,
] ,
} ,
} ,
} ,
2021-12-03 00:44:16 -08:00
] ;