Skip to content

Commit 70877c8

Browse files
committed
Run Prettier formatting
1 parent 28b24ab commit 70877c8

File tree

1 file changed

+15
-15
lines changed

1 file changed

+15
-15
lines changed

specification/cat/aliases/CatAliasesRequest.ts

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
* under the License.
1818
*/
1919

20-
import { ExpandWildcards, Names } from "@_types/common";
21-
import { Duration } from "@_types/Time";
22-
import { CatAliasesColumns, CatRequestBase } from "@cat/_types/CatBase";
20+
import { ExpandWildcards, Names } from '@_types/common'
21+
import { Duration } from '@_types/Time'
22+
import { CatAliasesColumns, CatRequestBase } from '@cat/_types/CatBase'
2323

2424
/**
2525
* Get aliases.
@@ -37,42 +37,42 @@ import { CatAliasesColumns, CatRequestBase } from "@cat/_types/CatBase";
3737
export interface Request extends CatRequestBase {
3838
urls: [
3939
{
40-
path: "/_cat/aliases";
41-
methods: ["GET"];
40+
path: '/_cat/aliases'
41+
methods: ['GET']
4242
},
4343
{
44-
path: "/_cat/aliases/{name}";
45-
methods: ["GET"];
44+
path: '/_cat/aliases/{name}'
45+
methods: ['GET']
4646
}
47-
];
47+
]
4848
path_parts: {
4949
/** A comma-separated list of aliases to retrieve. Supports wildcards (`*`). To retrieve all aliases, omit this parameter or use `*` or `_all`. */
50-
name?: Names;
51-
};
50+
name?: Names
51+
}
5252
query_parameters: {
5353
/**
5454
* A comma-separated list of columns names to display. It supports simple wildcards.
5555
*/
56-
h?: CatAliasesColumns;
56+
h?: CatAliasesColumns
5757
/**
5858
* List of columns that determine how the table should be sorted.
5959
* Sorting defaults to ascending and can be changed by setting `:asc`
6060
* or `:desc` as a suffix to the column name.
6161
*/
62-
s?: Names;
62+
s?: Names
6363
/**
6464
* The type of index that wildcard patterns can match.
6565
* If the request can target data streams, this argument determines whether wildcard expressions match hidden data streams.
6666
* It supports comma-separated values, such as `open,hidden`.
6767
*/
68-
expand_wildcards?: ExpandWildcards;
68+
expand_wildcards?: ExpandWildcards
6969
/**
7070
* If `true`, the request computes the list of selected nodes from the
7171
* local cluster state. If `false` the list of selected nodes are computed
7272
* from the cluster state of the master node. In both cases the coordinating
7373
* node will send requests for further information to each selected node.
7474
* @server_default false
7575
*/
76-
local?: boolean;
77-
};
76+
local?: boolean
77+
}
7878
}

0 commit comments

Comments
 (0)