diff --git a/api/requestParams.d.ts b/api/RequestTypes.d.ts similarity index 57% rename from api/requestParams.d.ts rename to api/RequestTypes.d.ts index faee308e9..bf52b65f2 100644 --- a/api/requestParams.d.ts +++ b/api/RequestTypes.d.ts @@ -4,7 +4,7 @@ import { RequestBody, RequestNDBody } from '../lib/Transport' -export interface Generic { +interface GenericRequest { method?: string; filter_path?: string | string[]; pretty?: boolean; @@ -13,7 +13,7 @@ export interface Generic { source?: string; } -export interface Bulk extends Generic { +interface BulkRequest extends GenericRequest { index?: string; type?: string; _source_exclude?: string | string[]; @@ -30,7 +30,7 @@ export interface Bulk extends Generic { body: T; } -export interface CatAliases extends Generic { +interface CatAliasesRequest extends GenericRequest { name?: string | string[]; format?: string; local?: boolean; @@ -41,7 +41,7 @@ export interface CatAliases extends Generic { expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all'; } -export interface CatAllocation extends Generic { +interface CatAllocationRequest extends GenericRequest { node_id?: string | string[]; format?: string; bytes?: 'b' | 'k' | 'kb' | 'm' | 'mb' | 'g' | 'gb' | 't' | 'tb' | 'p' | 'pb'; @@ -53,7 +53,7 @@ export interface CatAllocation extends Generic { v?: boolean; } -export interface CatCount extends Generic { +interface CatCountRequest extends GenericRequest { index?: string | string[]; format?: string; h?: string | string[]; @@ -62,7 +62,7 @@ export interface CatCount extends Generic { v?: boolean; } -export interface CatFielddata extends Generic { +interface CatFielddataRequest extends GenericRequest { fields?: string | string[]; format?: string; bytes?: 'b' | 'k' | 'kb' | 'm' | 'mb' | 'g' | 'gb' | 't' | 'tb' | 'p' | 'pb'; @@ -72,7 +72,7 @@ export interface CatFielddata extends Generic { v?: boolean; } -export interface CatHealth extends Generic { +interface CatHealthRequest extends GenericRequest { format?: string; h?: string | string[]; help?: boolean; @@ -82,12 +82,12 @@ export interface CatHealth extends Generic { v?: boolean; } -export interface CatHelp extends Generic { +interface CatHelpRequest extends GenericRequest { help?: boolean; s?: string | string[]; } -export interface CatIndices extends Generic { +interface CatIndicesRequest extends GenericRequest { index?: string | string[]; format?: string; bytes?: 'b' | 'k' | 'kb' | 'm' | 'mb' | 'g' | 'gb' | 't' | 'tb' | 'p' | 'pb'; @@ -104,7 +104,7 @@ export interface CatIndices extends Generic { expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all'; } -export interface CatMaster extends Generic { +interface CatMasterRequest extends GenericRequest { format?: string; local?: boolean; master_timeout?: string; @@ -114,7 +114,7 @@ export interface CatMaster extends Generic { v?: boolean; } -export interface CatNodeattrs extends Generic { +interface CatNodeattrsRequest extends GenericRequest { format?: string; local?: boolean; master_timeout?: string; @@ -124,7 +124,7 @@ export interface CatNodeattrs extends Generic { v?: boolean; } -export interface CatNodes extends Generic { +interface CatNodesRequest extends GenericRequest { bytes?: 'b' | 'k' | 'kb' | 'm' | 'mb' | 'g' | 'gb' | 't' | 'tb' | 'p' | 'pb'; format?: string; full_id?: boolean; @@ -136,7 +136,7 @@ export interface CatNodes extends Generic { v?: boolean; } -export interface CatPendingTasks extends Generic { +interface CatPendingTasksRequest extends GenericRequest { format?: string; local?: boolean; master_timeout?: string; @@ -147,7 +147,7 @@ export interface CatPendingTasks extends Generic { v?: boolean; } -export interface CatPlugins extends Generic { +interface CatPluginsRequest extends GenericRequest { format?: string; local?: boolean; master_timeout?: string; @@ -157,7 +157,7 @@ export interface CatPlugins extends Generic { v?: boolean; } -export interface CatRecovery extends Generic { +interface CatRecoveryRequest extends GenericRequest { index?: string | string[]; format?: string; active_only?: boolean; @@ -170,7 +170,7 @@ export interface CatRecovery extends Generic { v?: boolean; } -export interface CatRepositories extends Generic { +interface CatRepositoriesRequest extends GenericRequest { format?: string; local?: boolean; master_timeout?: string; @@ -180,7 +180,7 @@ export interface CatRepositories extends Generic { v?: boolean; } -export interface CatSegments extends Generic { +interface CatSegmentsRequest extends GenericRequest { index?: string | string[]; format?: string; bytes?: 'b' | 'k' | 'kb' | 'm' | 'mb' | 'g' | 'gb' | 't' | 'tb' | 'p' | 'pb'; @@ -190,7 +190,7 @@ export interface CatSegments extends Generic { v?: boolean; } -export interface CatShards extends Generic { +interface CatShardsRequest extends GenericRequest { index?: string | string[]; format?: string; bytes?: 'b' | 'k' | 'kb' | 'm' | 'mb' | 'g' | 'gb' | 't' | 'tb' | 'p' | 'pb'; @@ -203,7 +203,7 @@ export interface CatShards extends Generic { v?: boolean; } -export interface CatSnapshots extends Generic { +interface CatSnapshotsRequest extends GenericRequest { repository?: string | string[]; format?: string; ignore_unavailable?: boolean; @@ -215,7 +215,7 @@ export interface CatSnapshots extends Generic { v?: boolean; } -export interface CatTasks extends Generic { +interface CatTasksRequest extends GenericRequest { format?: string; node_id?: string | string[]; actions?: string | string[]; @@ -228,7 +228,7 @@ export interface CatTasks extends Generic { v?: boolean; } -export interface CatTemplates extends Generic { +interface CatTemplatesRequest extends GenericRequest { name?: string; format?: string; local?: boolean; @@ -239,7 +239,7 @@ export interface CatTemplates extends Generic { v?: boolean; } -export interface CatThreadPool extends Generic { +interface CatThreadPoolRequest extends GenericRequest { thread_pool_patterns?: string | string[]; format?: string; time?: 'd' | 'h' | 'm' | 's' | 'ms' | 'micros' | 'nanos'; @@ -251,47 +251,47 @@ export interface CatThreadPool extends Generic { v?: boolean; } -export interface ClearScroll extends Generic { +interface ClearScrollRequest extends GenericRequest { scroll_id?: string | string[]; body?: T; } -export interface ClusterAllocationExplain extends Generic { +interface ClusterAllocationExplainRequest extends GenericRequest { include_yes_decisions?: boolean; include_disk_info?: boolean; body?: T; } -export interface ClusterDeleteComponentTemplate extends Generic { +interface ClusterDeleteComponentTemplateRequest extends GenericRequest { name: string; timeout?: string; master_timeout?: string; } -export interface ClusterDeleteVotingConfigExclusions extends Generic { +interface ClusterDeleteVotingConfigExclusionsRequest extends GenericRequest { wait_for_removal?: boolean; } -export interface ClusterExistsComponentTemplate extends Generic { +interface ClusterExistsComponentTemplateRequest extends GenericRequest { name: string; master_timeout?: string; local?: boolean; } -export interface ClusterGetComponentTemplate extends Generic { +interface ClusterGetComponentTemplateRequest extends GenericRequest { name?: string | string[]; master_timeout?: string; local?: boolean; } -export interface ClusterGetSettings extends Generic { +interface ClusterGetSettingsRequest extends GenericRequest { flat_settings?: boolean; master_timeout?: string; timeout?: string; include_defaults?: boolean; } -export interface ClusterHealth extends Generic { +interface ClusterHealthRequest extends GenericRequest { index?: string | string[]; expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all'; level?: 'cluster' | 'indices' | 'shards'; @@ -306,18 +306,18 @@ export interface ClusterHealth extends Generic { wait_for_status?: 'green' | 'yellow' | 'red'; } -export interface ClusterPendingTasks extends Generic { +interface ClusterPendingTasksRequest extends GenericRequest { local?: boolean; master_timeout?: string; } -export interface ClusterPostVotingConfigExclusions extends Generic { +interface ClusterPostVotingConfigExclusionsRequest extends GenericRequest { node_ids?: string; node_names?: string; timeout?: string; } -export interface ClusterPutComponentTemplate extends Generic { +interface ClusterPutComponentTemplateRequest extends GenericRequest { name: string; create?: boolean; timeout?: string; @@ -325,17 +325,17 @@ export interface ClusterPutComponentTemplate extends Generic { body: T; } -export interface ClusterPutSettings extends Generic { +interface ClusterPutSettingsRequest extends GenericRequest { flat_settings?: boolean; master_timeout?: string; timeout?: string; body: T; } -export interface ClusterRemoteInfo extends Generic { +interface ClusterRemoteInfoRequest extends GenericRequest { } -export interface ClusterReroute extends Generic { +interface ClusterRerouteRequest extends GenericRequest { dry_run?: boolean; explain?: boolean; retry_failed?: boolean; @@ -345,7 +345,7 @@ export interface ClusterReroute extends Generic { body?: T; } -export interface ClusterState extends Generic { +interface ClusterStateRequest extends GenericRequest { index?: string | string[]; metric?: string | string[]; local?: boolean; @@ -358,13 +358,13 @@ export interface ClusterState extends Generic { expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all'; } -export interface ClusterStats extends Generic { +interface ClusterStatsRequest extends GenericRequest { node_id?: string | string[]; flat_settings?: boolean; timeout?: string; } -export interface Count extends Generic { +interface CountRequest extends GenericRequest { index?: string | string[]; ignore_unavailable?: boolean; ignore_throttled?: boolean; @@ -383,7 +383,7 @@ export interface Count extends Generic { body?: T; } -export interface Create extends Generic { +interface CreateRequest extends GenericRequest { id: string; index: string; type?: string; @@ -397,24 +397,24 @@ export interface Create extends Generic { body: T; } -export interface DanglingIndicesDeleteDanglingIndex extends Generic { +interface DanglingIndicesDeleteDanglingIndexRequest extends GenericRequest { index_uuid: string; accept_data_loss?: boolean; timeout?: string; master_timeout?: string; } -export interface DanglingIndicesImportDanglingIndex extends Generic { +interface DanglingIndicesImportDanglingIndexRequest extends GenericRequest { index_uuid: string; accept_data_loss?: boolean; timeout?: string; master_timeout?: string; } -export interface DanglingIndicesListDanglingIndices extends Generic { +interface DanglingIndicesListDanglingIndicesRequest extends GenericRequest { } -export interface Delete extends Generic { +interface DeleteRequest extends GenericRequest { id: string; index: string; type?: string; @@ -428,7 +428,7 @@ export interface Delete extends Generic { version_type?: 'internal' | 'external' | 'external_gte'; } -export interface DeleteByQuery extends Generic { +interface DeleteByQueryRequest extends GenericRequest { index: string | string[]; _source_exclude?: string | string[]; _source_include?: string | string[]; @@ -467,18 +467,18 @@ export interface DeleteByQuery extends Generic { body: T; } -export interface DeleteByQueryRethrottle extends Generic { +interface DeleteByQueryRethrottleRequest extends GenericRequest { task_id: string; requests_per_second: number; } -export interface DeleteScript extends Generic { +interface DeleteScriptRequest extends GenericRequest { id: string; timeout?: string; master_timeout?: string; } -export interface Exists extends Generic { +interface ExistsRequest extends GenericRequest { id: string; index: string; _source_exclude?: string | string[]; @@ -495,7 +495,7 @@ export interface Exists extends Generic { version_type?: 'internal' | 'external' | 'external_gte'; } -export interface ExistsSource extends Generic { +interface ExistsSourceRequest extends GenericRequest { id: string; index: string; type?: string; @@ -512,7 +512,7 @@ export interface ExistsSource extends Generic { version_type?: 'internal' | 'external' | 'external_gte'; } -export interface Explain extends Generic { +interface ExplainRequest extends GenericRequest { id: string; index: string; _source_exclude?: string | string[]; @@ -532,7 +532,7 @@ export interface Explain extends Generic { body?: T; } -export interface FieldCaps extends Generic { +interface FieldCapsRequest extends GenericRequest { index?: string | string[]; fields?: string | string[]; ignore_unavailable?: boolean; @@ -542,7 +542,7 @@ export interface FieldCaps extends Generic { body?: T; } -export interface Get extends Generic { +interface GetRequest extends GenericRequest { id: string; index: string; _source_exclude?: string | string[]; @@ -559,18 +559,18 @@ export interface Get extends Generic { version_type?: 'internal' | 'external' | 'external_gte'; } -export interface GetScript extends Generic { +interface GetScriptRequest extends GenericRequest { id: string; master_timeout?: string; } -export interface GetScriptContext extends Generic { +interface GetScriptContextRequest extends GenericRequest { } -export interface GetScriptLanguages extends Generic { +interface GetScriptLanguagesRequest extends GenericRequest { } -export interface GetSource extends Generic { +interface GetSourceRequest extends GenericRequest { id: string; index: string; _source_exclude?: string | string[]; @@ -586,7 +586,7 @@ export interface GetSource extends Generic { version_type?: 'internal' | 'external' | 'external_gte'; } -export interface Index extends Generic { +interface IndexRequest extends GenericRequest { id?: string; index: string; wait_for_active_shards?: string; @@ -603,7 +603,7 @@ export interface Index extends Generic { body: T; } -export interface IndicesAddBlock extends Generic { +interface IndicesAddBlockRequest extends GenericRequest { index: string | string[]; block: string; timeout?: string; @@ -613,12 +613,12 @@ export interface IndicesAddBlock extends Generic { expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all'; } -export interface IndicesAnalyze extends Generic { +interface IndicesAnalyzeRequest extends GenericRequest { index?: string; body?: T; } -export interface IndicesClearCache extends Generic { +interface IndicesClearCacheRequest extends GenericRequest { index?: string | string[]; fielddata?: boolean; fields?: string | string[]; @@ -629,7 +629,7 @@ export interface IndicesClearCache extends Generic { request?: boolean; } -export interface IndicesClone extends Generic { +interface IndicesCloneRequest extends GenericRequest { index: string; target: string; timeout?: string; @@ -638,7 +638,7 @@ export interface IndicesClone extends Generic { body?: T; } -export interface IndicesClose extends Generic { +interface IndicesCloseRequest extends GenericRequest { index: string | string[]; timeout?: string; master_timeout?: string; @@ -648,7 +648,7 @@ export interface IndicesClose extends Generic { wait_for_active_shards?: string; } -export interface IndicesCreate extends Generic { +interface IndicesCreateRequest extends GenericRequest { index: string; wait_for_active_shards?: string; timeout?: string; @@ -656,7 +656,7 @@ export interface IndicesCreate extends Generic { body?: T; } -export interface IndicesDelete extends Generic { +interface IndicesDeleteRequest extends GenericRequest { index: string | string[]; timeout?: string; master_timeout?: string; @@ -665,26 +665,26 @@ export interface IndicesDelete extends Generic { expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all'; } -export interface IndicesDeleteAlias extends Generic { +interface IndicesDeleteAliasRequest extends GenericRequest { index: string | string[]; name: string | string[]; timeout?: string; master_timeout?: string; } -export interface IndicesDeleteIndexTemplate extends Generic { +interface IndicesDeleteIndexTemplateRequest extends GenericRequest { name: string; timeout?: string; master_timeout?: string; } -export interface IndicesDeleteTemplate extends Generic { +interface IndicesDeleteTemplateRequest extends GenericRequest { name: string; timeout?: string; master_timeout?: string; } -export interface IndicesExists extends Generic { +interface IndicesExistsRequest extends GenericRequest { index: string | string[]; local?: boolean; ignore_unavailable?: boolean; @@ -694,7 +694,7 @@ export interface IndicesExists extends Generic { include_defaults?: boolean; } -export interface IndicesExistsAlias extends Generic { +interface IndicesExistsAliasRequest extends GenericRequest { name: string | string[]; index?: string | string[]; ignore_unavailable?: boolean; @@ -703,21 +703,21 @@ export interface IndicesExistsAlias extends Generic { local?: boolean; } -export interface IndicesExistsIndexTemplate extends Generic { +interface IndicesExistsIndexTemplateRequest extends GenericRequest { name: string; flat_settings?: boolean; master_timeout?: string; local?: boolean; } -export interface IndicesExistsTemplate extends Generic { +interface IndicesExistsTemplateRequest extends GenericRequest { name: string | string[]; flat_settings?: boolean; master_timeout?: string; local?: boolean; } -export interface IndicesExistsType extends Generic { +interface IndicesExistsTypeRequest extends GenericRequest { index: string | string[]; type: string | string[]; ignore_unavailable?: boolean; @@ -726,7 +726,7 @@ export interface IndicesExistsType extends Generic { local?: boolean; } -export interface IndicesFlush extends Generic { +interface IndicesFlushRequest extends GenericRequest { index?: string | string[]; force?: boolean; wait_if_ongoing?: boolean; @@ -735,7 +735,7 @@ export interface IndicesFlush extends Generic { expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all'; } -export interface IndicesForcemerge extends Generic { +interface IndicesForcemergeRequest extends GenericRequest { index?: string | string[]; flush?: boolean; ignore_unavailable?: boolean; @@ -745,7 +745,7 @@ export interface IndicesForcemerge extends Generic { only_expunge_deletes?: boolean; } -export interface IndicesGet extends Generic { +interface IndicesGetRequest extends GenericRequest { index: string | string[]; local?: boolean; ignore_unavailable?: boolean; @@ -756,7 +756,7 @@ export interface IndicesGet extends Generic { master_timeout?: string; } -export interface IndicesGetAlias extends Generic { +interface IndicesGetAliasRequest extends GenericRequest { name?: string | string[]; index?: string | string[]; ignore_unavailable?: boolean; @@ -765,7 +765,7 @@ export interface IndicesGetAlias extends Generic { local?: boolean; } -export interface IndicesGetFieldMapping extends Generic { +interface IndicesGetFieldMappingRequest extends GenericRequest { fields: string | string[]; index?: string | string[]; include_defaults?: boolean; @@ -775,14 +775,14 @@ export interface IndicesGetFieldMapping extends Generic { local?: boolean; } -export interface IndicesGetIndexTemplate extends Generic { +interface IndicesGetIndexTemplateRequest extends GenericRequest { name?: string | string[]; flat_settings?: boolean; master_timeout?: string; local?: boolean; } -export interface IndicesGetMapping extends Generic { +interface IndicesGetMappingRequest extends GenericRequest { index?: string | string[]; ignore_unavailable?: boolean; allow_no_indices?: boolean; @@ -791,7 +791,7 @@ export interface IndicesGetMapping extends Generic { local?: boolean; } -export interface IndicesGetSettings extends Generic { +interface IndicesGetSettingsRequest extends GenericRequest { index?: string | string[]; name?: string | string[]; master_timeout?: string; @@ -803,21 +803,21 @@ export interface IndicesGetSettings extends Generic { include_defaults?: boolean; } -export interface IndicesGetTemplate extends Generic { +interface IndicesGetTemplateRequest extends GenericRequest { name?: string | string[]; flat_settings?: boolean; master_timeout?: string; local?: boolean; } -export interface IndicesGetUpgrade extends Generic { +interface IndicesGetUpgradeRequest extends GenericRequest { index?: string | string[]; ignore_unavailable?: boolean; allow_no_indices?: boolean; expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all'; } -export interface IndicesOpen extends Generic { +interface IndicesOpenRequest extends GenericRequest { index: string | string[]; timeout?: string; master_timeout?: string; @@ -827,7 +827,7 @@ export interface IndicesOpen extends Generic { wait_for_active_shards?: string; } -export interface IndicesPutAlias extends Generic { +interface IndicesPutAliasRequest extends GenericRequest { index: string | string[]; name: string; timeout?: string; @@ -835,7 +835,7 @@ export interface IndicesPutAlias extends Generic { body?: T; } -export interface IndicesPutIndexTemplate extends Generic { +interface IndicesPutIndexTemplateRequest extends GenericRequest { name: string; create?: boolean; cause?: string; @@ -843,7 +843,7 @@ export interface IndicesPutIndexTemplate extends Generic { body: T; } -export interface IndicesPutMapping extends Generic { +interface IndicesPutMappingRequest extends GenericRequest { index: string | string[]; timeout?: string; master_timeout?: string; @@ -854,7 +854,7 @@ export interface IndicesPutMapping extends Generic { body: T; } -export interface IndicesPutSettings extends Generic { +interface IndicesPutSettingsRequest extends GenericRequest { index?: string | string[]; master_timeout?: string; timeout?: string; @@ -866,7 +866,7 @@ export interface IndicesPutSettings extends Generic { body: T; } -export interface IndicesPutTemplate extends Generic { +interface IndicesPutTemplateRequest extends GenericRequest { name: string; order?: number; create?: boolean; @@ -874,25 +874,25 @@ export interface IndicesPutTemplate extends Generic { body: T; } -export interface IndicesRecovery extends Generic { +interface IndicesRecoveryRequest extends GenericRequest { index?: string | string[]; detailed?: boolean; active_only?: boolean; } -export interface IndicesRefresh extends Generic { +interface IndicesRefreshRequest extends GenericRequest { index?: string | string[]; ignore_unavailable?: boolean; allow_no_indices?: boolean; expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all'; } -export interface IndicesResolveIndex extends Generic { +interface IndicesResolveIndexRequest extends GenericRequest { name: string | string[]; expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all'; } -export interface IndicesRollover extends Generic { +interface IndicesRolloverRequest extends GenericRequest { alias: string; new_index?: string; timeout?: string; @@ -902,7 +902,7 @@ export interface IndicesRollover extends Generic { body?: T; } -export interface IndicesSegments extends Generic { +interface IndicesSegmentsRequest extends GenericRequest { index?: string | string[]; ignore_unavailable?: boolean; allow_no_indices?: boolean; @@ -910,7 +910,7 @@ export interface IndicesSegments extends Generic { verbose?: boolean; } -export interface IndicesShardStores extends Generic { +interface IndicesShardStoresRequest extends GenericRequest { index?: string | string[]; status?: string | string[]; ignore_unavailable?: boolean; @@ -918,7 +918,7 @@ export interface IndicesShardStores extends Generic { expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all'; } -export interface IndicesShrink extends Generic { +interface IndicesShrinkRequest extends GenericRequest { index: string; target: string; timeout?: string; @@ -927,7 +927,7 @@ export interface IndicesShrink extends Generic { body?: T; } -export interface IndicesSimulateIndexTemplate extends Generic { +interface IndicesSimulateIndexTemplateRequest extends GenericRequest { name: string; create?: boolean; cause?: string; @@ -935,7 +935,7 @@ export interface IndicesSimulateIndexTemplate extends Generic { body?: T; } -export interface IndicesSimulateTemplate extends Generic { +interface IndicesSimulateTemplateRequest extends GenericRequest { name?: string; create?: boolean; cause?: string; @@ -943,7 +943,7 @@ export interface IndicesSimulateTemplate extends Generic { body?: T; } -export interface IndicesSplit extends Generic { +interface IndicesSplitRequest extends GenericRequest { index: string; target: string; timeout?: string; @@ -952,7 +952,7 @@ export interface IndicesSplit extends Generic { body?: T; } -export interface IndicesStats extends Generic { +interface IndicesStatsRequest extends GenericRequest { metric?: string | string[]; index?: string | string[]; completion_fields?: string | string[]; @@ -967,13 +967,13 @@ export interface IndicesStats extends Generic { forbid_closed_indices?: boolean; } -export interface IndicesUpdateAliases extends Generic { +interface IndicesUpdateAliasesRequest extends GenericRequest { timeout?: string; master_timeout?: string; body: T; } -export interface IndicesUpgrade extends Generic { +interface IndicesUpgradeRequest extends GenericRequest { index?: string | string[]; allow_no_indices?: boolean; expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all'; @@ -982,7 +982,7 @@ export interface IndicesUpgrade extends Generic { only_ancient_segments?: boolean; } -export interface IndicesValidateQuery extends Generic { +interface IndicesValidateQueryRequest extends GenericRequest { index?: string | string[]; type?: string | string[]; explain?: boolean; @@ -1000,37 +1000,37 @@ export interface IndicesValidateQuery extends Generic { body?: T; } -export interface Info extends Generic { +interface InfoRequest extends GenericRequest { } -export interface IngestDeletePipeline extends Generic { +interface IngestDeletePipelineRequest extends GenericRequest { id: string; master_timeout?: string; timeout?: string; } -export interface IngestGetPipeline extends Generic { +interface IngestGetPipelineRequest extends GenericRequest { id?: string; master_timeout?: string; } -export interface IngestProcessorGrok extends Generic { +interface IngestProcessorGrokRequest extends GenericRequest { } -export interface IngestPutPipeline extends Generic { +interface IngestPutPipelineRequest extends GenericRequest { id: string; master_timeout?: string; timeout?: string; body: T; } -export interface IngestSimulate extends Generic { +interface IngestSimulateRequest extends GenericRequest { id?: string; verbose?: boolean; body: T; } -export interface Mget extends Generic { +interface MgetRequest extends GenericRequest { index?: string; _source_exclude?: string | string[]; _source_include?: string | string[]; @@ -1045,7 +1045,7 @@ export interface Mget extends Generic { body: T; } -export interface Msearch extends Generic { +interface MsearchRequest extends GenericRequest { index?: string | string[]; search_type?: 'query_then_fetch' | 'query_and_fetch' | 'dfs_query_then_fetch' | 'dfs_query_and_fetch'; max_concurrent_searches?: number; @@ -1057,7 +1057,7 @@ export interface Msearch extends Generic { body: T; } -export interface MsearchTemplate extends Generic { +interface MsearchTemplateRequest extends GenericRequest { index?: string | string[]; search_type?: 'query_then_fetch' | 'query_and_fetch' | 'dfs_query_then_fetch' | 'dfs_query_and_fetch'; typed_keys?: boolean; @@ -1067,7 +1067,7 @@ export interface MsearchTemplate extends Generic { body: T; } -export interface Mtermvectors extends Generic { +interface MtermvectorsRequest extends GenericRequest { index?: string; ids?: string | string[]; term_statistics?: boolean; @@ -1084,7 +1084,7 @@ export interface Mtermvectors extends Generic { body?: T; } -export interface NodesHotThreads extends Generic { +interface NodesHotThreadsRequest extends GenericRequest { node_id?: string | string[]; interval?: string; snapshots?: number; @@ -1094,20 +1094,20 @@ export interface NodesHotThreads extends Generic { timeout?: string; } -export interface NodesInfo extends Generic { +interface NodesInfoRequest extends GenericRequest { node_id?: string | string[]; metric?: string | string[]; flat_settings?: boolean; timeout?: string; } -export interface NodesReloadSecureSettings extends Generic { +interface NodesReloadSecureSettingsRequest extends GenericRequest { node_id?: string | string[]; timeout?: string; body?: T; } -export interface NodesStats extends Generic { +interface NodesStatsRequest extends GenericRequest { node_id?: string | string[]; metric?: string | string[]; index_metric?: string | string[]; @@ -1121,16 +1121,16 @@ export interface NodesStats extends Generic { include_segment_file_sizes?: boolean; } -export interface NodesUsage extends Generic { +interface NodesUsageRequest extends GenericRequest { node_id?: string | string[]; metric?: string | string[]; timeout?: string; } -export interface Ping extends Generic { +interface PingRequest extends GenericRequest { } -export interface PutScript extends Generic { +interface PutScriptRequest extends GenericRequest { id: string; context?: string; timeout?: string; @@ -1138,7 +1138,7 @@ export interface PutScript extends Generic { body: T; } -export interface RankEval extends Generic { +interface RankEvalRequest extends GenericRequest { index?: string | string[]; ignore_unavailable?: boolean; allow_no_indices?: boolean; @@ -1147,7 +1147,7 @@ export interface RankEval extends Generic { body: T; } -export interface Reindex extends Generic { +interface ReindexRequest extends GenericRequest { refresh?: boolean; timeout?: string; wait_for_active_shards?: string; @@ -1159,28 +1159,28 @@ export interface Reindex extends Generic { body: T; } -export interface ReindexRethrottle extends Generic { +interface ReindexRethrottleRequest extends GenericRequest { task_id: string; requests_per_second: number; } -export interface RenderSearchTemplate extends Generic { +interface RenderSearchTemplateRequest extends GenericRequest { id?: string; body?: T; } -export interface ScriptsPainlessExecute extends Generic { +interface ScriptsPainlessExecuteRequest extends GenericRequest { body?: T; } -export interface Scroll extends Generic { +interface ScrollRequest extends GenericRequest { scroll_id?: string; scroll?: string; rest_total_hits_as_int?: boolean; body?: T; } -export interface Search extends Generic { +interface SearchRequest extends GenericRequest { index?: string | string[]; _source_exclude?: string | string[]; _source_include?: string | string[]; @@ -1229,7 +1229,7 @@ export interface Search extends Generic { body?: T; } -export interface SearchShards extends Generic { +interface SearchShardsRequest extends GenericRequest { index?: string | string[]; preference?: string; routing?: string; @@ -1239,7 +1239,7 @@ export interface SearchShards extends Generic { expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all'; } -export interface SearchTemplate extends Generic { +interface SearchTemplateRequest extends GenericRequest { index?: string | string[]; ignore_unavailable?: boolean; ignore_throttled?: boolean; @@ -1257,13 +1257,13 @@ export interface SearchTemplate extends Generic { body: T; } -export interface SnapshotCleanupRepository extends Generic { +interface SnapshotCleanupRepositoryRequest extends GenericRequest { repository: string; master_timeout?: string; timeout?: string; } -export interface SnapshotCreate extends Generic { +interface SnapshotCreateRequest extends GenericRequest { repository: string; snapshot: string; master_timeout?: string; @@ -1271,7 +1271,7 @@ export interface SnapshotCreate extends Generic { body?: T; } -export interface SnapshotCreateRepository extends Generic { +interface SnapshotCreateRepositoryRequest extends GenericRequest { repository: string; master_timeout?: string; timeout?: string; @@ -1279,19 +1279,19 @@ export interface SnapshotCreateRepository extends Generic { body: T; } -export interface SnapshotDelete extends Generic { +interface SnapshotDeleteRequest extends GenericRequest { repository: string; snapshot: string | string[]; master_timeout?: string; } -export interface SnapshotDeleteRepository extends Generic { +interface SnapshotDeleteRepositoryRequest extends GenericRequest { repository: string | string[]; master_timeout?: string; timeout?: string; } -export interface SnapshotGet extends Generic { +interface SnapshotGetRequest extends GenericRequest { repository: string; snapshot: string | string[]; master_timeout?: string; @@ -1299,13 +1299,13 @@ export interface SnapshotGet extends Generic { verbose?: boolean; } -export interface SnapshotGetRepository extends Generic { +interface SnapshotGetRepositoryRequest extends GenericRequest { repository?: string | string[]; master_timeout?: string; local?: boolean; } -export interface SnapshotRestore extends Generic { +interface SnapshotRestoreRequest extends GenericRequest { repository: string; snapshot: string; master_timeout?: string; @@ -1313,20 +1313,20 @@ export interface SnapshotRestore extends Generic { body?: T; } -export interface SnapshotStatus extends Generic { +interface SnapshotStatusRequest extends GenericRequest { repository?: string; snapshot?: string | string[]; master_timeout?: string; ignore_unavailable?: boolean; } -export interface SnapshotVerifyRepository extends Generic { +interface SnapshotVerifyRepositoryRequest extends GenericRequest { repository: string; master_timeout?: string; timeout?: string; } -export interface TasksCancel extends Generic { +interface TasksCancelRequest extends GenericRequest { task_id?: string; nodes?: string | string[]; actions?: string | string[]; @@ -1334,13 +1334,13 @@ export interface TasksCancel extends Generic { wait_for_completion?: boolean; } -export interface TasksGet extends Generic { +interface TasksGetRequest extends GenericRequest { task_id: string; wait_for_completion?: boolean; timeout?: string; } -export interface TasksList extends Generic { +interface TasksListRequest extends GenericRequest { nodes?: string | string[]; actions?: string | string[]; detailed?: boolean; @@ -1350,7 +1350,7 @@ export interface TasksList extends Generic { timeout?: string; } -export interface Termvectors extends Generic { +interface TermvectorsRequest extends GenericRequest { index: string; id?: string; term_statistics?: boolean; @@ -1367,7 +1367,7 @@ export interface Termvectors extends Generic { body?: T; } -export interface Update extends Generic { +interface UpdateRequest extends GenericRequest { id: string; index: string; type?: string; @@ -1388,7 +1388,7 @@ export interface Update extends Generic { body: T; } -export interface UpdateByQuery extends Generic { +interface UpdateByQueryRequest extends GenericRequest { index: string | string[]; _source_exclude?: string | string[]; _source_include?: string | string[]; @@ -1429,23 +1429,23 @@ export interface UpdateByQuery extends Generic { body?: T; } -export interface UpdateByQueryRethrottle extends Generic { +interface UpdateByQueryRethrottleRequest extends GenericRequest { task_id: string; requests_per_second: number; } -export interface AsyncSearchDelete extends Generic { +interface AsyncSearchDeleteRequest extends GenericRequest { id: string; } -export interface AsyncSearchGet extends Generic { +interface AsyncSearchGetRequest extends GenericRequest { id: string; wait_for_completion_timeout?: string; keep_alive?: string; typed_keys?: boolean; } -export interface AsyncSearchSubmit extends Generic { +interface AsyncSearchSubmitRequest extends GenericRequest { index?: string | string[]; _source_exclude?: string | string[]; _source_include?: string | string[]; @@ -1493,23 +1493,23 @@ export interface AsyncSearchSubmit extends Generic { body?: T; } -export interface AutoscalingDeleteAutoscalingPolicy extends Generic { +interface AutoscalingDeleteAutoscalingPolicyRequest extends GenericRequest { name: string; } -export interface AutoscalingGetAutoscalingDecision extends Generic { +interface AutoscalingGetAutoscalingDecisionRequest extends GenericRequest { } -export interface AutoscalingGetAutoscalingPolicy extends Generic { +interface AutoscalingGetAutoscalingPolicyRequest extends GenericRequest { name: string; } -export interface AutoscalingPutAutoscalingPolicy extends Generic { +interface AutoscalingPutAutoscalingPolicyRequest extends GenericRequest { name: string; body: T; } -export interface CatMlDataFrameAnalytics extends Generic { +interface CatMlDataFrameAnalyticsRequest extends GenericRequest { id?: string; allow_no_match?: boolean; bytes?: 'b' | 'k' | 'kb' | 'm' | 'mb' | 'g' | 'gb' | 't' | 'tb' | 'p' | 'pb'; @@ -1521,7 +1521,7 @@ export interface CatMlDataFrameAnalytics extends Generic { v?: boolean; } -export interface CatMlDatafeeds extends Generic { +interface CatMlDatafeedsRequest extends GenericRequest { datafeed_id?: string; allow_no_datafeeds?: boolean; format?: string; @@ -1532,7 +1532,7 @@ export interface CatMlDatafeeds extends Generic { v?: boolean; } -export interface CatMlJobs extends Generic { +interface CatMlJobsRequest extends GenericRequest { job_id?: string; allow_no_jobs?: boolean; bytes?: 'b' | 'k' | 'kb' | 'm' | 'mb' | 'g' | 'gb' | 't' | 'tb' | 'p' | 'pb'; @@ -1544,7 +1544,7 @@ export interface CatMlJobs extends Generic { v?: boolean; } -export interface CatMlTrainedModels extends Generic { +interface CatMlTrainedModelsRequest extends GenericRequest { model_id?: string; allow_no_match?: boolean; from?: number; @@ -1558,7 +1558,7 @@ export interface CatMlTrainedModels extends Generic { v?: boolean; } -export interface CatTransforms extends Generic { +interface CatTransformsRequest extends GenericRequest { transform_id?: string; from?: number; size?: number; @@ -1571,141 +1571,141 @@ export interface CatTransforms extends Generic { v?: boolean; } -export interface CcrDeleteAutoFollowPattern extends Generic { +interface CcrDeleteAutoFollowPatternRequest extends GenericRequest { name: string; } -export interface CcrFollow extends Generic { +interface CcrFollowRequest extends GenericRequest { index: string; wait_for_active_shards?: string; body: T; } -export interface CcrFollowInfo extends Generic { +interface CcrFollowInfoRequest extends GenericRequest { index: string | string[]; } -export interface CcrFollowStats extends Generic { +interface CcrFollowStatsRequest extends GenericRequest { index: string | string[]; } -export interface CcrForgetFollower extends Generic { +interface CcrForgetFollowerRequest extends GenericRequest { index: string; body: T; } -export interface CcrGetAutoFollowPattern extends Generic { +interface CcrGetAutoFollowPatternRequest extends GenericRequest { name?: string; } -export interface CcrPauseAutoFollowPattern extends Generic { +interface CcrPauseAutoFollowPatternRequest extends GenericRequest { name: string; } -export interface CcrPauseFollow extends Generic { +interface CcrPauseFollowRequest extends GenericRequest { index: string; } -export interface CcrPutAutoFollowPattern extends Generic { +interface CcrPutAutoFollowPatternRequest extends GenericRequest { name: string; body: T; } -export interface CcrResumeAutoFollowPattern extends Generic { +interface CcrResumeAutoFollowPatternRequest extends GenericRequest { name: string; } -export interface CcrResumeFollow extends Generic { +interface CcrResumeFollowRequest extends GenericRequest { index: string; body?: T; } -export interface CcrStats extends Generic { +interface CcrStatsRequest extends GenericRequest { } -export interface CcrUnfollow extends Generic { +interface CcrUnfollowRequest extends GenericRequest { index: string; } -export interface DataFrameTransformDeprecatedDeleteTransform extends Generic { +interface DataFrameTransformDeprecatedDeleteTransformRequest extends GenericRequest { transform_id: string; force?: boolean; } -export interface DataFrameTransformDeprecatedGetTransform extends Generic { +interface DataFrameTransformDeprecatedGetTransformRequest extends GenericRequest { transform_id?: string; from?: number; size?: number; allow_no_match?: boolean; } -export interface DataFrameTransformDeprecatedGetTransformStats extends Generic { +interface DataFrameTransformDeprecatedGetTransformStatsRequest extends GenericRequest { transform_id: string; from?: number; size?: number; allow_no_match?: boolean; } -export interface DataFrameTransformDeprecatedPreviewTransform extends Generic { +interface DataFrameTransformDeprecatedPreviewTransformRequest extends GenericRequest { body: T; } -export interface DataFrameTransformDeprecatedPutTransform extends Generic { +interface DataFrameTransformDeprecatedPutTransformRequest extends GenericRequest { transform_id: string; defer_validation?: boolean; body: T; } -export interface DataFrameTransformDeprecatedStartTransform extends Generic { +interface DataFrameTransformDeprecatedStartTransformRequest extends GenericRequest { transform_id: string; timeout?: string; } -export interface DataFrameTransformDeprecatedStopTransform extends Generic { +interface DataFrameTransformDeprecatedStopTransformRequest extends GenericRequest { transform_id: string; wait_for_completion?: boolean; timeout?: string; allow_no_match?: boolean; } -export interface DataFrameTransformDeprecatedUpdateTransform extends Generic { +interface DataFrameTransformDeprecatedUpdateTransformRequest extends GenericRequest { transform_id: string; defer_validation?: boolean; body: T; } -export interface EnrichDeletePolicy extends Generic { +interface EnrichDeletePolicyRequest extends GenericRequest { name: string; } -export interface EnrichExecutePolicy extends Generic { +interface EnrichExecutePolicyRequest extends GenericRequest { name: string; wait_for_completion?: boolean; } -export interface EnrichGetPolicy extends Generic { +interface EnrichGetPolicyRequest extends GenericRequest { name?: string | string[]; } -export interface EnrichPutPolicy extends Generic { +interface EnrichPutPolicyRequest extends GenericRequest { name: string; body: T; } -export interface EnrichStats extends Generic { +interface EnrichStatsRequest extends GenericRequest { } -export interface EqlDelete extends Generic { +interface EqlDeleteRequest extends GenericRequest { id: string; } -export interface EqlGet extends Generic { +interface EqlGetRequest extends GenericRequest { id: string; wait_for_completion_timeout?: string; keep_alive?: string; } -export interface EqlSearch extends Generic { +interface EqlSearchRequest extends GenericRequest { index: string; wait_for_completion_timeout?: string; keep_on_completion?: boolean; @@ -1713,68 +1713,68 @@ export interface EqlSearch extends Generic { body: T; } -export interface GraphExplore extends Generic { +interface GraphExploreRequest extends GenericRequest { index: string | string[]; routing?: string; timeout?: string; body?: T; } -export interface IlmDeleteLifecycle extends Generic { +interface IlmDeleteLifecycleRequest extends GenericRequest { policy: string; } -export interface IlmExplainLifecycle extends Generic { +interface IlmExplainLifecycleRequest extends GenericRequest { index: string; only_managed?: boolean; only_errors?: boolean; } -export interface IlmGetLifecycle extends Generic { +interface IlmGetLifecycleRequest extends GenericRequest { policy?: string; } -export interface IlmGetStatus extends Generic { +interface IlmGetStatusRequest extends GenericRequest { } -export interface IlmMoveToStep extends Generic { +interface IlmMoveToStepRequest extends GenericRequest { index: string; body?: T; } -export interface IlmPutLifecycle extends Generic { +interface IlmPutLifecycleRequest extends GenericRequest { policy: string; body?: T; } -export interface IlmRemovePolicy extends Generic { +interface IlmRemovePolicyRequest extends GenericRequest { index: string; } -export interface IlmRetry extends Generic { +interface IlmRetryRequest extends GenericRequest { index: string; } -export interface IlmStart extends Generic { +interface IlmStartRequest extends GenericRequest { } -export interface IlmStop extends Generic { +interface IlmStopRequest extends GenericRequest { } -export interface IndicesCreateDataStream extends Generic { +interface IndicesCreateDataStreamRequest extends GenericRequest { name: string; body?: T; } -export interface IndicesDataStreamsStats extends Generic { +interface IndicesDataStreamsStatsRequest extends GenericRequest { name?: string | string[]; } -export interface IndicesDeleteDataStream extends Generic { +interface IndicesDeleteDataStreamRequest extends GenericRequest { name: string | string[]; } -export interface IndicesFreeze extends Generic { +interface IndicesFreezeRequest extends GenericRequest { index: string; timeout?: string; master_timeout?: string; @@ -1784,18 +1784,18 @@ export interface IndicesFreeze extends Generic { wait_for_active_shards?: string; } -export interface IndicesGetDataStream extends Generic { +interface IndicesGetDataStreamRequest extends GenericRequest { name?: string | string[]; } -export interface IndicesReloadSearchAnalyzers extends Generic { +interface IndicesReloadSearchAnalyzersRequest extends GenericRequest { index: string | string[]; ignore_unavailable?: boolean; allow_no_indices?: boolean; expand_wildcards?: 'open' | 'closed' | 'hidden' | 'none' | 'all'; } -export interface IndicesUnfreeze extends Generic { +interface IndicesUnfreezeRequest extends GenericRequest { index: string; timeout?: string; master_timeout?: string; @@ -1805,39 +1805,39 @@ export interface IndicesUnfreeze extends Generic { wait_for_active_shards?: string; } -export interface LicenseDelete extends Generic { +interface LicenseDeleteRequest extends GenericRequest { } -export interface LicenseGet extends Generic { +interface LicenseGetRequest extends GenericRequest { local?: boolean; accept_enterprise?: boolean; } -export interface LicenseGetBasicStatus extends Generic { +interface LicenseGetBasicStatusRequest extends GenericRequest { } -export interface LicenseGetTrialStatus extends Generic { +interface LicenseGetTrialStatusRequest extends GenericRequest { } -export interface LicensePost extends Generic { +interface LicensePostRequest extends GenericRequest { acknowledge?: boolean; body?: T; } -export interface LicensePostStartBasic extends Generic { +interface LicensePostStartBasicRequest extends GenericRequest { acknowledge?: boolean; } -export interface LicensePostStartTrial extends Generic { +interface LicensePostStartTrialRequest extends GenericRequest { type?: string; acknowledge?: boolean; } -export interface MigrationDeprecations extends Generic { +interface MigrationDeprecationsRequest extends GenericRequest { index?: string; } -export interface MlCloseJob extends Generic { +interface MlCloseJobRequest extends GenericRequest { job_id: string; allow_no_jobs?: boolean; force?: boolean; @@ -1845,78 +1845,78 @@ export interface MlCloseJob extends Generic { body?: T; } -export interface MlDeleteCalendar extends Generic { +interface MlDeleteCalendarRequest extends GenericRequest { calendar_id: string; } -export interface MlDeleteCalendarEvent extends Generic { +interface MlDeleteCalendarEventRequest extends GenericRequest { calendar_id: string; event_id: string; } -export interface MlDeleteCalendarJob extends Generic { +interface MlDeleteCalendarJobRequest extends GenericRequest { calendar_id: string; job_id: string; } -export interface MlDeleteDataFrameAnalytics extends Generic { +interface MlDeleteDataFrameAnalyticsRequest extends GenericRequest { id: string; force?: boolean; timeout?: string; } -export interface MlDeleteDatafeed extends Generic { +interface MlDeleteDatafeedRequest extends GenericRequest { datafeed_id: string; force?: boolean; } -export interface MlDeleteExpiredData extends Generic { +interface MlDeleteExpiredDataRequest extends GenericRequest { job_id?: string; requests_per_second?: number; timeout?: string; body?: T; } -export interface MlDeleteFilter extends Generic { +interface MlDeleteFilterRequest extends GenericRequest { filter_id: string; } -export interface MlDeleteForecast extends Generic { +interface MlDeleteForecastRequest extends GenericRequest { job_id: string; forecast_id?: string; allow_no_forecasts?: boolean; timeout?: string; } -export interface MlDeleteJob extends Generic { +interface MlDeleteJobRequest extends GenericRequest { job_id: string; force?: boolean; wait_for_completion?: boolean; } -export interface MlDeleteModelSnapshot extends Generic { +interface MlDeleteModelSnapshotRequest extends GenericRequest { job_id: string; snapshot_id: string; } -export interface MlDeleteTrainedModel extends Generic { +interface MlDeleteTrainedModelRequest extends GenericRequest { model_id: string; } -export interface MlEstimateModelMemory extends Generic { +interface MlEstimateModelMemoryRequest extends GenericRequest { body: T; } -export interface MlEvaluateDataFrame extends Generic { +interface MlEvaluateDataFrameRequest extends GenericRequest { body: T; } -export interface MlExplainDataFrameAnalytics extends Generic { +interface MlExplainDataFrameAnalyticsRequest extends GenericRequest { id?: string; body?: T; } -export interface MlFindFileStructure extends Generic { +interface MlFindFileStructureRequest extends GenericRequest { lines_to_sample?: number; line_merge_size_limit?: number; timeout?: string; @@ -1934,7 +1934,7 @@ export interface MlFindFileStructure extends Generic { body: T; } -export interface MlFlushJob extends Generic { +interface MlFlushJobRequest extends GenericRequest { job_id: string; calc_interim?: boolean; start?: string; @@ -1944,14 +1944,14 @@ export interface MlFlushJob extends Generic { body?: T; } -export interface MlForecast extends Generic { +interface MlForecastRequest extends GenericRequest { job_id: string; duration?: string; expires_in?: string; max_model_memory?: string; } -export interface MlGetBuckets extends Generic { +interface MlGetBucketsRequest extends GenericRequest { job_id: string; timestamp?: string; expand?: boolean; @@ -1966,7 +1966,7 @@ export interface MlGetBuckets extends Generic { body?: T; } -export interface MlGetCalendarEvents extends Generic { +interface MlGetCalendarEventsRequest extends GenericRequest { calendar_id: string; job_id?: string; start?: string; @@ -1975,14 +1975,14 @@ export interface MlGetCalendarEvents extends Generic { size?: number; } -export interface MlGetCalendars extends Generic { +interface MlGetCalendarsRequest extends GenericRequest { calendar_id?: string; from?: number; size?: number; body?: T; } -export interface MlGetCategories extends Generic { +interface MlGetCategoriesRequest extends GenericRequest { job_id: string; category_id?: number; from?: number; @@ -1991,14 +1991,14 @@ export interface MlGetCategories extends Generic { body?: T; } -export interface MlGetDataFrameAnalytics extends Generic { +interface MlGetDataFrameAnalyticsRequest extends GenericRequest { id?: string; allow_no_match?: boolean; from?: number; size?: number; } -export interface MlGetDataFrameAnalyticsStats extends Generic { +interface MlGetDataFrameAnalyticsStatsRequest extends GenericRequest { id?: string; allow_no_match?: boolean; from?: number; @@ -2006,23 +2006,23 @@ export interface MlGetDataFrameAnalyticsStats extends Generic { verbose?: boolean; } -export interface MlGetDatafeedStats extends Generic { +interface MlGetDatafeedStatsRequest extends GenericRequest { datafeed_id?: string; allow_no_datafeeds?: boolean; } -export interface MlGetDatafeeds extends Generic { +interface MlGetDatafeedsRequest extends GenericRequest { datafeed_id?: string; allow_no_datafeeds?: boolean; } -export interface MlGetFilters extends Generic { +interface MlGetFiltersRequest extends GenericRequest { filter_id?: string; from?: number; size?: number; } -export interface MlGetInfluencers extends Generic { +interface MlGetInfluencersRequest extends GenericRequest { job_id: string; exclude_interim?: boolean; from?: number; @@ -2035,17 +2035,17 @@ export interface MlGetInfluencers extends Generic { body?: T; } -export interface MlGetJobStats extends Generic { +interface MlGetJobStatsRequest extends GenericRequest { job_id?: string; allow_no_jobs?: boolean; } -export interface MlGetJobs extends Generic { +interface MlGetJobsRequest extends GenericRequest { job_id?: string; allow_no_jobs?: boolean; } -export interface MlGetModelSnapshots extends Generic { +interface MlGetModelSnapshotsRequest extends GenericRequest { job_id: string; snapshot_id?: string; from?: number; @@ -2057,7 +2057,7 @@ export interface MlGetModelSnapshots extends Generic { body?: T; } -export interface MlGetOverallBuckets extends Generic { +interface MlGetOverallBucketsRequest extends GenericRequest { job_id: string; top_n?: number; bucket_span?: string; @@ -2069,7 +2069,7 @@ export interface MlGetOverallBuckets extends Generic { body?: T; } -export interface MlGetRecords extends Generic { +interface MlGetRecordsRequest extends GenericRequest { job_id: string; exclude_interim?: boolean; from?: number; @@ -2082,7 +2082,7 @@ export interface MlGetRecords extends Generic { body?: T; } -export interface MlGetTrainedModels extends Generic { +interface MlGetTrainedModelsRequest extends GenericRequest { model_id?: string; allow_no_match?: boolean; include_model_definition?: boolean; @@ -2093,52 +2093,52 @@ export interface MlGetTrainedModels extends Generic { for_export?: boolean; } -export interface MlGetTrainedModelsStats extends Generic { +interface MlGetTrainedModelsStatsRequest extends GenericRequest { model_id?: string; allow_no_match?: boolean; from?: number; size?: number; } -export interface MlInfo extends Generic { +interface MlInfoRequest extends GenericRequest { } -export interface MlOpenJob extends Generic { +interface MlOpenJobRequest extends GenericRequest { job_id: string; } -export interface MlPostCalendarEvents extends Generic { +interface MlPostCalendarEventsRequest extends GenericRequest { calendar_id: string; body: T; } -export interface MlPostData extends Generic { +interface MlPostDataRequest extends GenericRequest { job_id: string; reset_start?: string; reset_end?: string; body: T; } -export interface MlPreviewDatafeed extends Generic { +interface MlPreviewDatafeedRequest extends GenericRequest { datafeed_id: string; } -export interface MlPutCalendar extends Generic { +interface MlPutCalendarRequest extends GenericRequest { calendar_id: string; body?: T; } -export interface MlPutCalendarJob extends Generic { +interface MlPutCalendarJobRequest extends GenericRequest { calendar_id: string; job_id: string; } -export interface MlPutDataFrameAnalytics extends Generic { +interface MlPutDataFrameAnalyticsRequest extends GenericRequest { id: string; body: T; } -export interface MlPutDatafeed extends Generic { +interface MlPutDatafeedRequest extends GenericRequest { datafeed_id: string; ignore_unavailable?: boolean; allow_no_indices?: boolean; @@ -2147,40 +2147,40 @@ export interface MlPutDatafeed extends Generic { body: T; } -export interface MlPutFilter extends Generic { +interface MlPutFilterRequest extends GenericRequest { filter_id: string; body: T; } -export interface MlPutJob extends Generic { +interface MlPutJobRequest extends GenericRequest { job_id: string; body: T; } -export interface MlPutTrainedModel extends Generic { +interface MlPutTrainedModelRequest extends GenericRequest { model_id: string; body: T; } -export interface MlRevertModelSnapshot extends Generic { +interface MlRevertModelSnapshotRequest extends GenericRequest { job_id: string; snapshot_id: string; delete_intervening_results?: boolean; body?: T; } -export interface MlSetUpgradeMode extends Generic { +interface MlSetUpgradeModeRequest extends GenericRequest { enabled?: boolean; timeout?: string; } -export interface MlStartDataFrameAnalytics extends Generic { +interface MlStartDataFrameAnalyticsRequest extends GenericRequest { id: string; timeout?: string; body?: T; } -export interface MlStartDatafeed extends Generic { +interface MlStartDatafeedRequest extends GenericRequest { datafeed_id: string; start?: string; end?: string; @@ -2188,7 +2188,7 @@ export interface MlStartDatafeed extends Generic { body?: T; } -export interface MlStopDataFrameAnalytics extends Generic { +interface MlStopDataFrameAnalyticsRequest extends GenericRequest { id: string; allow_no_match?: boolean; force?: boolean; @@ -2196,19 +2196,19 @@ export interface MlStopDataFrameAnalytics extends Generic { body?: T; } -export interface MlStopDatafeed extends Generic { +interface MlStopDatafeedRequest extends GenericRequest { datafeed_id: string; allow_no_datafeeds?: boolean; force?: boolean; timeout?: string; } -export interface MlUpdateDataFrameAnalytics extends Generic { +interface MlUpdateDataFrameAnalyticsRequest extends GenericRequest { id: string; body: T; } -export interface MlUpdateDatafeed extends Generic { +interface MlUpdateDatafeedRequest extends GenericRequest { datafeed_id: string; ignore_unavailable?: boolean; allow_no_indices?: boolean; @@ -2217,31 +2217,31 @@ export interface MlUpdateDatafeed extends Generic { body: T; } -export interface MlUpdateFilter extends Generic { +interface MlUpdateFilterRequest extends GenericRequest { filter_id: string; body: T; } -export interface MlUpdateJob extends Generic { +interface MlUpdateJobRequest extends GenericRequest { job_id: string; body: T; } -export interface MlUpdateModelSnapshot extends Generic { +interface MlUpdateModelSnapshotRequest extends GenericRequest { job_id: string; snapshot_id: string; body: T; } -export interface MlValidate extends Generic { +interface MlValidateRequest extends GenericRequest { body: T; } -export interface MlValidateDetector extends Generic { +interface MlValidateDetectorRequest extends GenericRequest { body: T; } -export interface MonitoringBulk extends Generic { +interface MonitoringBulkRequest extends GenericRequest { type?: string; system_id?: string; system_api_version?: string; @@ -2249,28 +2249,28 @@ export interface MonitoringBulk extends Generic { body: T; } -export interface RollupDeleteJob extends Generic { +interface RollupDeleteJobRequest extends GenericRequest { id: string; } -export interface RollupGetJobs extends Generic { +interface RollupGetJobsRequest extends GenericRequest { id?: string; } -export interface RollupGetRollupCaps extends Generic { +interface RollupGetRollupCapsRequest extends GenericRequest { id?: string; } -export interface RollupGetRollupIndexCaps extends Generic { +interface RollupGetRollupIndexCapsRequest extends GenericRequest { index: string; } -export interface RollupPutJob extends Generic { +interface RollupPutJobRequest extends GenericRequest { id: string; body: T; } -export interface RollupRollupSearch extends Generic { +interface RollupRollupSearchRequest extends GenericRequest { index: string | string[]; type?: string; typed_keys?: boolean; @@ -2278,24 +2278,24 @@ export interface RollupRollupSearch extends Generic { body: T; } -export interface RollupStartJob extends Generic { +interface RollupStartJobRequest extends GenericRequest { id: string; } -export interface RollupStopJob extends Generic { +interface RollupStopJobRequest extends GenericRequest { id: string; wait_for_completion?: boolean; timeout?: string; } -export interface SearchableSnapshotsClearCache extends Generic { +interface SearchableSnapshotsClearCacheRequest extends GenericRequest { index?: string | string[]; ignore_unavailable?: boolean; allow_no_indices?: boolean; expand_wildcards?: 'open' | 'closed' | 'none' | 'all'; } -export interface SearchableSnapshotsMount extends Generic { +interface SearchableSnapshotsMountRequest extends GenericRequest { repository: string; snapshot: string; master_timeout?: string; @@ -2303,73 +2303,73 @@ export interface SearchableSnapshotsMount extends Generic { body: T; } -export interface SearchableSnapshotsRepositoryStats extends Generic { +interface SearchableSnapshotsRepositoryStatsRequest extends GenericRequest { repository: string; } -export interface SearchableSnapshotsStats extends Generic { +interface SearchableSnapshotsStatsRequest extends GenericRequest { index?: string | string[]; } -export interface SecurityAuthenticate extends Generic { +interface SecurityAuthenticateRequest extends GenericRequest { } -export interface SecurityChangePassword extends Generic { +interface SecurityChangePasswordRequest extends GenericRequest { username?: string; refresh?: 'wait_for' | boolean; body: T; } -export interface SecurityClearCachedPrivileges extends Generic { +interface SecurityClearCachedPrivilegesRequest extends GenericRequest { application: string | string[]; } -export interface SecurityClearCachedRealms extends Generic { +interface SecurityClearCachedRealmsRequest extends GenericRequest { realms: string | string[]; usernames?: string | string[]; } -export interface SecurityClearCachedRoles extends Generic { +interface SecurityClearCachedRolesRequest extends GenericRequest { name: string | string[]; } -export interface SecurityCreateApiKey extends Generic { +interface SecurityCreateApiKeyRequest extends GenericRequest { refresh?: 'wait_for' | boolean; body: T; } -export interface SecurityDeletePrivileges extends Generic { +interface SecurityDeletePrivilegesRequest extends GenericRequest { application: string; name: string; refresh?: 'wait_for' | boolean; } -export interface SecurityDeleteRole extends Generic { +interface SecurityDeleteRoleRequest extends GenericRequest { name: string; refresh?: 'wait_for' | boolean; } -export interface SecurityDeleteRoleMapping extends Generic { +interface SecurityDeleteRoleMappingRequest extends GenericRequest { name: string; refresh?: 'wait_for' | boolean; } -export interface SecurityDeleteUser extends Generic { +interface SecurityDeleteUserRequest extends GenericRequest { username: string; refresh?: 'wait_for' | boolean; } -export interface SecurityDisableUser extends Generic { +interface SecurityDisableUserRequest extends GenericRequest { username: string; refresh?: 'wait_for' | boolean; } -export interface SecurityEnableUser extends Generic { +interface SecurityEnableUserRequest extends GenericRequest { username: string; refresh?: 'wait_for' | boolean; } -export interface SecurityGetApiKey extends Generic { +interface SecurityGetApiKeyRequest extends GenericRequest { id?: string; name?: string; username?: string; @@ -2377,152 +2377,152 @@ export interface SecurityGetApiKey extends Generic { owner?: boolean; } -export interface SecurityGetBuiltinPrivileges extends Generic { +interface SecurityGetBuiltinPrivilegesRequest extends GenericRequest { } -export interface SecurityGetPrivileges extends Generic { +interface SecurityGetPrivilegesRequest extends GenericRequest { application?: string; name?: string; } -export interface SecurityGetRole extends Generic { +interface SecurityGetRoleRequest extends GenericRequest { name?: string | string[]; } -export interface SecurityGetRoleMapping extends Generic { +interface SecurityGetRoleMappingRequest extends GenericRequest { name?: string | string[]; } -export interface SecurityGetToken extends Generic { +interface SecurityGetTokenRequest extends GenericRequest { body: T; } -export interface SecurityGetUser extends Generic { +interface SecurityGetUserRequest extends GenericRequest { username?: string | string[]; } -export interface SecurityGetUserPrivileges extends Generic { +interface SecurityGetUserPrivilegesRequest extends GenericRequest { } -export interface SecurityHasPrivileges extends Generic { +interface SecurityHasPrivilegesRequest extends GenericRequest { user?: string; body: T; } -export interface SecurityInvalidateApiKey extends Generic { +interface SecurityInvalidateApiKeyRequest extends GenericRequest { body: T; } -export interface SecurityInvalidateToken extends Generic { +interface SecurityInvalidateTokenRequest extends GenericRequest { body: T; } -export interface SecurityPutPrivileges extends Generic { +interface SecurityPutPrivilegesRequest extends GenericRequest { refresh?: 'wait_for' | boolean; body: T; } -export interface SecurityPutRole extends Generic { +interface SecurityPutRoleRequest extends GenericRequest { name: string; refresh?: 'wait_for' | boolean; body: T; } -export interface SecurityPutRoleMapping extends Generic { +interface SecurityPutRoleMappingRequest extends GenericRequest { name: string; refresh?: 'wait_for' | boolean; body: T; } -export interface SecurityPutUser extends Generic { +interface SecurityPutUserRequest extends GenericRequest { username: string; refresh?: 'wait_for' | boolean; body: T; } -export interface SlmDeleteLifecycle extends Generic { +interface SlmDeleteLifecycleRequest extends GenericRequest { policy_id: string; } -export interface SlmExecuteLifecycle extends Generic { +interface SlmExecuteLifecycleRequest extends GenericRequest { policy_id: string; } -export interface SlmExecuteRetention extends Generic { +interface SlmExecuteRetentionRequest extends GenericRequest { } -export interface SlmGetLifecycle extends Generic { +interface SlmGetLifecycleRequest extends GenericRequest { policy_id?: string | string[]; } -export interface SlmGetStats extends Generic { +interface SlmGetStatsRequest extends GenericRequest { } -export interface SlmGetStatus extends Generic { +interface SlmGetStatusRequest extends GenericRequest { } -export interface SlmPutLifecycle extends Generic { +interface SlmPutLifecycleRequest extends GenericRequest { policy_id: string; body?: T; } -export interface SlmStart extends Generic { +interface SlmStartRequest extends GenericRequest { } -export interface SlmStop extends Generic { +interface SlmStopRequest extends GenericRequest { } -export interface SqlClearCursor extends Generic { +interface SqlClearCursorRequest extends GenericRequest { body: T; } -export interface SqlQuery extends Generic { +interface SqlQueryRequest extends GenericRequest { format?: string; body: T; } -export interface SqlTranslate extends Generic { +interface SqlTranslateRequest extends GenericRequest { body: T; } -export interface SslCertificates extends Generic { +interface SslCertificatesRequest extends GenericRequest { } -export interface TransformDeleteTransform extends Generic { +interface TransformDeleteTransformRequest extends GenericRequest { transform_id: string; force?: boolean; } -export interface TransformGetTransform extends Generic { +interface TransformGetTransformRequest extends GenericRequest { transform_id?: string; from?: number; size?: number; allow_no_match?: boolean; } -export interface TransformGetTransformStats extends Generic { +interface TransformGetTransformStatsRequest extends GenericRequest { transform_id: string; from?: number; size?: number; allow_no_match?: boolean; } -export interface TransformPreviewTransform extends Generic { +interface TransformPreviewTransformRequest extends GenericRequest { body: T; } -export interface TransformPutTransform extends Generic { +interface TransformPutTransformRequest extends GenericRequest { transform_id: string; defer_validation?: boolean; body: T; } -export interface TransformStartTransform extends Generic { +interface TransformStartTransformRequest extends GenericRequest { transform_id: string; timeout?: string; } -export interface TransformStopTransform extends Generic { +interface TransformStopTransformRequest extends GenericRequest { transform_id: string; force?: boolean; wait_for_completion?: boolean; @@ -2531,40 +2531,40 @@ export interface TransformStopTransform extends Generic { wait_for_checkpoint?: boolean; } -export interface TransformUpdateTransform extends Generic { +interface TransformUpdateTransformRequest extends GenericRequest { transform_id: string; defer_validation?: boolean; body: T; } -export interface WatcherAckWatch extends Generic { +interface WatcherAckWatchRequest extends GenericRequest { watch_id: string; action_id?: string | string[]; } -export interface WatcherActivateWatch extends Generic { +interface WatcherActivateWatchRequest extends GenericRequest { watch_id: string; } -export interface WatcherDeactivateWatch extends Generic { +interface WatcherDeactivateWatchRequest extends GenericRequest { watch_id: string; } -export interface WatcherDeleteWatch extends Generic { +interface WatcherDeleteWatchRequest extends GenericRequest { id: string; } -export interface WatcherExecuteWatch extends Generic { +interface WatcherExecuteWatchRequest extends GenericRequest { id?: string; debug?: boolean; body?: T; } -export interface WatcherGetWatch extends Generic { +interface WatcherGetWatchRequest extends GenericRequest { id: string; } -export interface WatcherPutWatch extends Generic { +interface WatcherPutWatchRequest extends GenericRequest { id: string; active?: boolean; version?: number; @@ -2573,22 +2573,111 @@ export interface WatcherPutWatch extends Generic { body?: T; } -export interface WatcherStart extends Generic { +interface WatcherStartRequest extends GenericRequest { } -export interface WatcherStats extends Generic { +interface WatcherStatsRequest extends GenericRequest { metric?: string | string[]; emit_stacktraces?: boolean; } -export interface WatcherStop extends Generic { +interface WatcherStopRequest extends GenericRequest { } -export interface XpackInfo extends Generic { +interface XpackInfoRequest extends GenericRequest { categories?: string | string[]; accept_enterprise?: boolean; } -export interface XpackUsage extends Generic { - master_timeout?: string; -} +interface XpackUsageRequest extends GenericRequest { + master_timeout?: string; +} + +export { + BulkRequest, CatAliasesRequest, CatAllocationRequest, CatCountRequest, + CatFielddataRequest, CatHealthRequest, CatHelpRequest, CatIndicesRequest, + CatMasterRequest, CatNodeattrsRequest, CatNodesRequest, CatPendingTasksRequest, + CatPluginsRequest, CatRecoveryRequest, CatRepositoriesRequest, CatSegmentsRequest, + CatShardsRequest, CatSnapshotsRequest, CatTasksRequest, CatTemplatesRequest, + CatThreadPoolRequest, ClearScrollRequest, ClusterAllocationExplainRequest, ClusterDeleteComponentTemplateRequest, + ClusterDeleteVotingConfigExclusionsRequest, ClusterExistsComponentTemplateRequest, ClusterGetComponentTemplateRequest, ClusterGetSettingsRequest, + ClusterHealthRequest, ClusterPendingTasksRequest, ClusterPostVotingConfigExclusionsRequest, ClusterPutComponentTemplateRequest, + ClusterPutSettingsRequest, ClusterRemoteInfoRequest, ClusterRerouteRequest, ClusterStateRequest, + ClusterStatsRequest, CountRequest, CreateRequest, DanglingIndicesDeleteDanglingIndexRequest, + DanglingIndicesImportDanglingIndexRequest, DanglingIndicesListDanglingIndicesRequest, DeleteRequest, DeleteByQueryRequest, + DeleteByQueryRethrottleRequest, DeleteScriptRequest, ExistsRequest, ExistsSourceRequest, + ExplainRequest, FieldCapsRequest, GetRequest, GetScriptRequest, + GetScriptContextRequest, GetScriptLanguagesRequest, GetSourceRequest, IndexRequest, + IndicesAddBlockRequest, IndicesAnalyzeRequest, IndicesClearCacheRequest, IndicesCloneRequest, + IndicesCloseRequest, IndicesCreateRequest, IndicesDeleteRequest, IndicesDeleteAliasRequest, + IndicesDeleteIndexTemplateRequest, IndicesDeleteTemplateRequest, IndicesExistsRequest, IndicesExistsAliasRequest, + IndicesExistsIndexTemplateRequest, IndicesExistsTemplateRequest, IndicesExistsTypeRequest, IndicesFlushRequest, + IndicesForcemergeRequest, IndicesGetRequest, IndicesGetAliasRequest, IndicesGetFieldMappingRequest, + IndicesGetIndexTemplateRequest, IndicesGetMappingRequest, IndicesGetSettingsRequest, IndicesGetTemplateRequest, + IndicesGetUpgradeRequest, IndicesOpenRequest, IndicesPutAliasRequest, IndicesPutIndexTemplateRequest, + IndicesPutMappingRequest, IndicesPutSettingsRequest, IndicesPutTemplateRequest, IndicesRecoveryRequest, + IndicesRefreshRequest, IndicesResolveIndexRequest, IndicesRolloverRequest, IndicesSegmentsRequest, + IndicesShardStoresRequest, IndicesShrinkRequest, IndicesSimulateIndexTemplateRequest, IndicesSimulateTemplateRequest, + IndicesSplitRequest, IndicesStatsRequest, IndicesUpdateAliasesRequest, IndicesUpgradeRequest, + IndicesValidateQueryRequest, InfoRequest, IngestDeletePipelineRequest, IngestGetPipelineRequest, + IngestProcessorGrokRequest, IngestPutPipelineRequest, IngestSimulateRequest, MgetRequest, + MsearchRequest, MsearchTemplateRequest, MtermvectorsRequest, NodesHotThreadsRequest, + NodesInfoRequest, NodesReloadSecureSettingsRequest, NodesStatsRequest, NodesUsageRequest, + PingRequest, PutScriptRequest, RankEvalRequest, ReindexRequest, + ReindexRethrottleRequest, RenderSearchTemplateRequest, ScriptsPainlessExecuteRequest, ScrollRequest, + SearchRequest, SearchShardsRequest, SearchTemplateRequest, SnapshotCleanupRepositoryRequest, + SnapshotCreateRequest, SnapshotCreateRepositoryRequest, SnapshotDeleteRequest, SnapshotDeleteRepositoryRequest, + SnapshotGetRequest, SnapshotGetRepositoryRequest, SnapshotRestoreRequest, SnapshotStatusRequest, + SnapshotVerifyRepositoryRequest, TasksCancelRequest, TasksGetRequest, TasksListRequest, + TermvectorsRequest, UpdateRequest, UpdateByQueryRequest, UpdateByQueryRethrottleRequest, + AsyncSearchDeleteRequest, AsyncSearchGetRequest, AsyncSearchSubmitRequest, AutoscalingDeleteAutoscalingPolicyRequest, + AutoscalingGetAutoscalingDecisionRequest, AutoscalingGetAutoscalingPolicyRequest, AutoscalingPutAutoscalingPolicyRequest, CatMlDataFrameAnalyticsRequest, + CatMlDatafeedsRequest, CatMlJobsRequest, CatMlTrainedModelsRequest, CatTransformsRequest, + CcrDeleteAutoFollowPatternRequest, CcrFollowRequest, CcrFollowInfoRequest, CcrFollowStatsRequest, + CcrForgetFollowerRequest, CcrGetAutoFollowPatternRequest, CcrPauseAutoFollowPatternRequest, CcrPauseFollowRequest, + CcrPutAutoFollowPatternRequest, CcrResumeAutoFollowPatternRequest, CcrResumeFollowRequest, CcrStatsRequest, + CcrUnfollowRequest, DataFrameTransformDeprecatedDeleteTransformRequest, DataFrameTransformDeprecatedGetTransformRequest, DataFrameTransformDeprecatedGetTransformStatsRequest, + DataFrameTransformDeprecatedPreviewTransformRequest, DataFrameTransformDeprecatedPutTransformRequest, DataFrameTransformDeprecatedStartTransformRequest, DataFrameTransformDeprecatedStopTransformRequest, + DataFrameTransformDeprecatedUpdateTransformRequest, EnrichDeletePolicyRequest, EnrichExecutePolicyRequest, EnrichGetPolicyRequest, + EnrichPutPolicyRequest, EnrichStatsRequest, EqlDeleteRequest, EqlGetRequest, + EqlSearchRequest, GraphExploreRequest, IlmDeleteLifecycleRequest, IlmExplainLifecycleRequest, + IlmGetLifecycleRequest, IlmGetStatusRequest, IlmMoveToStepRequest, IlmPutLifecycleRequest, + IlmRemovePolicyRequest, IlmRetryRequest, IlmStartRequest, IlmStopRequest, + IndicesCreateDataStreamRequest, IndicesDataStreamsStatsRequest, IndicesDeleteDataStreamRequest, IndicesFreezeRequest, + IndicesGetDataStreamRequest, IndicesReloadSearchAnalyzersRequest, IndicesUnfreezeRequest, LicenseDeleteRequest, + LicenseGetRequest, LicenseGetBasicStatusRequest, LicenseGetTrialStatusRequest, LicensePostRequest, + LicensePostStartBasicRequest, LicensePostStartTrialRequest, MigrationDeprecationsRequest, MlCloseJobRequest, + MlDeleteCalendarRequest, MlDeleteCalendarEventRequest, MlDeleteCalendarJobRequest, MlDeleteDataFrameAnalyticsRequest, + MlDeleteDatafeedRequest, MlDeleteExpiredDataRequest, MlDeleteFilterRequest, MlDeleteForecastRequest, + MlDeleteJobRequest, MlDeleteModelSnapshotRequest, MlDeleteTrainedModelRequest, MlEstimateModelMemoryRequest, + MlEvaluateDataFrameRequest, MlExplainDataFrameAnalyticsRequest, MlFindFileStructureRequest, MlFlushJobRequest, + MlForecastRequest, MlGetBucketsRequest, MlGetCalendarEventsRequest, MlGetCalendarsRequest, + MlGetCategoriesRequest, MlGetDataFrameAnalyticsRequest, MlGetDataFrameAnalyticsStatsRequest, MlGetDatafeedStatsRequest, + MlGetDatafeedsRequest, MlGetFiltersRequest, MlGetInfluencersRequest, MlGetJobStatsRequest, + MlGetJobsRequest, MlGetModelSnapshotsRequest, MlGetOverallBucketsRequest, MlGetRecordsRequest, + MlGetTrainedModelsRequest, MlGetTrainedModelsStatsRequest, MlInfoRequest, MlOpenJobRequest, + MlPostCalendarEventsRequest, MlPostDataRequest, MlPreviewDatafeedRequest, MlPutCalendarRequest, + MlPutCalendarJobRequest, MlPutDataFrameAnalyticsRequest, MlPutDatafeedRequest, MlPutFilterRequest, + MlPutJobRequest, MlPutTrainedModelRequest, MlRevertModelSnapshotRequest, MlSetUpgradeModeRequest, + MlStartDataFrameAnalyticsRequest, MlStartDatafeedRequest, MlStopDataFrameAnalyticsRequest, MlStopDatafeedRequest, + MlUpdateDataFrameAnalyticsRequest, MlUpdateDatafeedRequest, MlUpdateFilterRequest, MlUpdateJobRequest, + MlUpdateModelSnapshotRequest, MlValidateRequest, MlValidateDetectorRequest, MonitoringBulkRequest, + RollupDeleteJobRequest, RollupGetJobsRequest, RollupGetRollupCapsRequest, RollupGetRollupIndexCapsRequest, + RollupPutJobRequest, RollupRollupSearchRequest, RollupStartJobRequest, RollupStopJobRequest, + SearchableSnapshotsClearCacheRequest, SearchableSnapshotsMountRequest, SearchableSnapshotsRepositoryStatsRequest, SearchableSnapshotsStatsRequest, + SecurityAuthenticateRequest, SecurityChangePasswordRequest, SecurityClearCachedPrivilegesRequest, SecurityClearCachedRealmsRequest, + SecurityClearCachedRolesRequest, SecurityCreateApiKeyRequest, SecurityDeletePrivilegesRequest, SecurityDeleteRoleRequest, + SecurityDeleteRoleMappingRequest, SecurityDeleteUserRequest, SecurityDisableUserRequest, SecurityEnableUserRequest, + SecurityGetApiKeyRequest, SecurityGetBuiltinPrivilegesRequest, SecurityGetPrivilegesRequest, SecurityGetRoleRequest, + SecurityGetRoleMappingRequest, SecurityGetTokenRequest, SecurityGetUserRequest, SecurityGetUserPrivilegesRequest, + SecurityHasPrivilegesRequest, SecurityInvalidateApiKeyRequest, SecurityInvalidateTokenRequest, SecurityPutPrivilegesRequest, + SecurityPutRoleRequest, SecurityPutRoleMappingRequest, SecurityPutUserRequest, SlmDeleteLifecycleRequest, + SlmExecuteLifecycleRequest, SlmExecuteRetentionRequest, SlmGetLifecycleRequest, SlmGetStatsRequest, + SlmGetStatusRequest, SlmPutLifecycleRequest, SlmStartRequest, SlmStopRequest, + SqlClearCursorRequest, SqlQueryRequest, SqlTranslateRequest, SslCertificatesRequest, + TransformDeleteTransformRequest, TransformGetTransformRequest, TransformGetTransformStatsRequest, TransformPreviewTransformRequest, + TransformPutTransformRequest, TransformStartTransformRequest, TransformStopTransformRequest, TransformUpdateTransformRequest, + WatcherAckWatchRequest, WatcherActivateWatchRequest, WatcherDeactivateWatchRequest, WatcherDeleteWatchRequest, + WatcherExecuteWatchRequest, WatcherGetWatchRequest, WatcherPutWatchRequest, WatcherStartRequest, + WatcherStatsRequest, WatcherStopRequest, XpackInfoRequest, XpackUsageRequest +} \ No newline at end of file diff --git a/api/ResponseTypes.d.ts b/api/ResponseTypes.d.ts new file mode 100644 index 000000000..d9fa0614e --- /dev/null +++ b/api/ResponseTypes.d.ts @@ -0,0 +1,132 @@ +// Licensed to Elasticsearch B.V under one or more agreements. +// Elasticsearch B.V licenses this file to you under the Apache 2.0 License. +// See the LICENSE file in the project root for more information + +interface SearchResponse { + took: number + timed_out: boolean + _scroll_id?: string + _shards: Shards + hits: { + total: { + value: number + relation: string + } + max_score: number + hits: Array<{ + _index: string + _type: string + _id: string + _score: number + _source: TSource + _version?: number + _explanation?: Explanation + fields?: Record + highlight?: Record + inner_hits?: Record + matched_queries?: string[] + sort?: any[] + }> + } + aggregations?: TAggregations +} + +interface Shards { + total: number + successful: number + failed: number + skipped: number +} + +interface Explanation { + value: number + description: string + details: Explanation[] +} + +interface MSearchResponse { + responses: Array> +} + +interface CreateResponse { + _shards: Shards + _index: string + _type: string + _id: string + _version: number + _seq_no: number + _primary_term: number + result: string +} + +interface IndexResponse extends CreateResponse {} + +interface DeleteResponse { + _shards: Shards + _index: string + _type: string + _id: string + _version: number + _seq_no: number + _primary_term: number + result: string +} + +interface UpdateResponse { + _shards: Shards + _index: string + _type: string + _id: string + _version: number + result: string +} + +interface GetResponse { + _index: string + _type: string + _id: string + _version: number + _seq_no: number + _primary_term: number + found: boolean + _source: TSource +} + +interface BulkResponse { + took: number + errors: boolean + items: BulkItem[] +} + +type BulkItem = + | { index: BulkIndex } + | { create: BulkCreate } + | { update: BulkUpdate } + | { delete: BulkDelete } + +interface BulkIndex extends IndexResponse { + status: number +} + +interface BulkCreate extends CreateResponse { + status: number +} + +interface BulkUpdate extends UpdateResponse { + status: number +} + +interface BulkDelete extends DeleteResponse { + status: number +} + +export { + SearchResponse, + MSearchResponse, + CreateResponse, + IndexResponse, + DeleteResponse, + UpdateResponse, + GetResponse, + BulkResponse +} \ No newline at end of file diff --git a/api/kibana.d.ts b/api/kibana.d.ts index 5125e70aa..1f2c3fad4 100644 --- a/api/kibana.d.ts +++ b/api/kibana.d.ts @@ -24,7 +24,8 @@ import { TransportRequestPromise, Context } from '../lib/Transport' -import * as RequestParams from './requestParams' +import * as Req from './RequestTypes'; +import * as Res from './ResponseTypes'; // Extend API interface ClientExtendsCallbackOptions { @@ -61,406 +62,406 @@ interface KibanaClient { off(event: string | symbol, listener: (...args: any[]) => void): this; /* GENERATED */ asyncSearch: { - delete, TContext = Context>(params?: RequestParams.AsyncSearchDelete, options?: TransportRequestOptions): TransportRequestPromise> - get, TContext = Context>(params?: RequestParams.AsyncSearchGet, options?: TransportRequestOptions): TransportRequestPromise> - submit, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.AsyncSearchSubmit, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params?: Req.AsyncSearchDeleteRequest, options?: TransportRequestOptions): TransportRequestPromise> + get, TContext = Context>(params?: Req.AsyncSearchGetRequest, options?: TransportRequestOptions): TransportRequestPromise> + submit, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.AsyncSearchSubmitRequest, options?: TransportRequestOptions): TransportRequestPromise> } autoscaling: { - deleteAutoscalingPolicy, TContext = Context>(params?: RequestParams.AutoscalingDeleteAutoscalingPolicy, options?: TransportRequestOptions): TransportRequestPromise> - getAutoscalingDecision, TContext = Context>(params?: RequestParams.AutoscalingGetAutoscalingDecision, options?: TransportRequestOptions): TransportRequestPromise> - getAutoscalingPolicy, TContext = Context>(params?: RequestParams.AutoscalingGetAutoscalingPolicy, options?: TransportRequestOptions): TransportRequestPromise> - putAutoscalingPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.AutoscalingPutAutoscalingPolicy, options?: TransportRequestOptions): TransportRequestPromise> + deleteAutoscalingPolicy, TContext = Context>(params?: Req.AutoscalingDeleteAutoscalingPolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> + getAutoscalingDecision, TContext = Context>(params?: Req.AutoscalingGetAutoscalingDecisionRequest, options?: TransportRequestOptions): TransportRequestPromise> + getAutoscalingPolicy, TContext = Context>(params?: Req.AutoscalingGetAutoscalingPolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> + putAutoscalingPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.AutoscalingPutAutoscalingPolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> } - bulk, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: RequestParams.Bulk, options?: TransportRequestOptions): TransportRequestPromise> + bulk, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: Req.BulkRequest, options?: TransportRequestOptions): TransportRequestPromise> cat: { - aliases, TContext = Context>(params?: RequestParams.CatAliases, options?: TransportRequestOptions): TransportRequestPromise> - allocation, TContext = Context>(params?: RequestParams.CatAllocation, options?: TransportRequestOptions): TransportRequestPromise> - count, TContext = Context>(params?: RequestParams.CatCount, options?: TransportRequestOptions): TransportRequestPromise> - fielddata, TContext = Context>(params?: RequestParams.CatFielddata, options?: TransportRequestOptions): TransportRequestPromise> - health, TContext = Context>(params?: RequestParams.CatHealth, options?: TransportRequestOptions): TransportRequestPromise> - help, TContext = Context>(params?: RequestParams.CatHelp, options?: TransportRequestOptions): TransportRequestPromise> - indices, TContext = Context>(params?: RequestParams.CatIndices, options?: TransportRequestOptions): TransportRequestPromise> - master, TContext = Context>(params?: RequestParams.CatMaster, options?: TransportRequestOptions): TransportRequestPromise> - mlDataFrameAnalytics, TContext = Context>(params?: RequestParams.CatMlDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> - mlDatafeeds, TContext = Context>(params?: RequestParams.CatMlDatafeeds, options?: TransportRequestOptions): TransportRequestPromise> - mlJobs, TContext = Context>(params?: RequestParams.CatMlJobs, options?: TransportRequestOptions): TransportRequestPromise> - mlTrainedModels, TContext = Context>(params?: RequestParams.CatMlTrainedModels, options?: TransportRequestOptions): TransportRequestPromise> - nodeattrs, TContext = Context>(params?: RequestParams.CatNodeattrs, options?: TransportRequestOptions): TransportRequestPromise> - nodes, TContext = Context>(params?: RequestParams.CatNodes, options?: TransportRequestOptions): TransportRequestPromise> - pendingTasks, TContext = Context>(params?: RequestParams.CatPendingTasks, options?: TransportRequestOptions): TransportRequestPromise> - plugins, TContext = Context>(params?: RequestParams.CatPlugins, options?: TransportRequestOptions): TransportRequestPromise> - recovery, TContext = Context>(params?: RequestParams.CatRecovery, options?: TransportRequestOptions): TransportRequestPromise> - repositories, TContext = Context>(params?: RequestParams.CatRepositories, options?: TransportRequestOptions): TransportRequestPromise> - segments, TContext = Context>(params?: RequestParams.CatSegments, options?: TransportRequestOptions): TransportRequestPromise> - shards, TContext = Context>(params?: RequestParams.CatShards, options?: TransportRequestOptions): TransportRequestPromise> - snapshots, TContext = Context>(params?: RequestParams.CatSnapshots, options?: TransportRequestOptions): TransportRequestPromise> - tasks, TContext = Context>(params?: RequestParams.CatTasks, options?: TransportRequestOptions): TransportRequestPromise> - templates, TContext = Context>(params?: RequestParams.CatTemplates, options?: TransportRequestOptions): TransportRequestPromise> - threadPool, TContext = Context>(params?: RequestParams.CatThreadPool, options?: TransportRequestOptions): TransportRequestPromise> - transforms, TContext = Context>(params?: RequestParams.CatTransforms, options?: TransportRequestOptions): TransportRequestPromise> + aliases, TContext = Context>(params?: Req.CatAliasesRequest, options?: TransportRequestOptions): TransportRequestPromise> + allocation, TContext = Context>(params?: Req.CatAllocationRequest, options?: TransportRequestOptions): TransportRequestPromise> + count, TContext = Context>(params?: Req.CatCountRequest, options?: TransportRequestOptions): TransportRequestPromise> + fielddata, TContext = Context>(params?: Req.CatFielddataRequest, options?: TransportRequestOptions): TransportRequestPromise> + health, TContext = Context>(params?: Req.CatHealthRequest, options?: TransportRequestOptions): TransportRequestPromise> + help, TContext = Context>(params?: Req.CatHelpRequest, options?: TransportRequestOptions): TransportRequestPromise> + indices, TContext = Context>(params?: Req.CatIndicesRequest, options?: TransportRequestOptions): TransportRequestPromise> + master, TContext = Context>(params?: Req.CatMasterRequest, options?: TransportRequestOptions): TransportRequestPromise> + mlDataFrameAnalytics, TContext = Context>(params?: Req.CatMlDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> + mlDatafeeds, TContext = Context>(params?: Req.CatMlDatafeedsRequest, options?: TransportRequestOptions): TransportRequestPromise> + mlJobs, TContext = Context>(params?: Req.CatMlJobsRequest, options?: TransportRequestOptions): TransportRequestPromise> + mlTrainedModels, TContext = Context>(params?: Req.CatMlTrainedModelsRequest, options?: TransportRequestOptions): TransportRequestPromise> + nodeattrs, TContext = Context>(params?: Req.CatNodeattrsRequest, options?: TransportRequestOptions): TransportRequestPromise> + nodes, TContext = Context>(params?: Req.CatNodesRequest, options?: TransportRequestOptions): TransportRequestPromise> + pendingTasks, TContext = Context>(params?: Req.CatPendingTasksRequest, options?: TransportRequestOptions): TransportRequestPromise> + plugins, TContext = Context>(params?: Req.CatPluginsRequest, options?: TransportRequestOptions): TransportRequestPromise> + recovery, TContext = Context>(params?: Req.CatRecoveryRequest, options?: TransportRequestOptions): TransportRequestPromise> + repositories, TContext = Context>(params?: Req.CatRepositoriesRequest, options?: TransportRequestOptions): TransportRequestPromise> + segments, TContext = Context>(params?: Req.CatSegmentsRequest, options?: TransportRequestOptions): TransportRequestPromise> + shards, TContext = Context>(params?: Req.CatShardsRequest, options?: TransportRequestOptions): TransportRequestPromise> + snapshots, TContext = Context>(params?: Req.CatSnapshotsRequest, options?: TransportRequestOptions): TransportRequestPromise> + tasks, TContext = Context>(params?: Req.CatTasksRequest, options?: TransportRequestOptions): TransportRequestPromise> + templates, TContext = Context>(params?: Req.CatTemplatesRequest, options?: TransportRequestOptions): TransportRequestPromise> + threadPool, TContext = Context>(params?: Req.CatThreadPoolRequest, options?: TransportRequestOptions): TransportRequestPromise> + transforms, TContext = Context>(params?: Req.CatTransformsRequest, options?: TransportRequestOptions): TransportRequestPromise> } ccr: { - deleteAutoFollowPattern, TContext = Context>(params?: RequestParams.CcrDeleteAutoFollowPattern, options?: TransportRequestOptions): TransportRequestPromise> - follow, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.CcrFollow, options?: TransportRequestOptions): TransportRequestPromise> - followInfo, TContext = Context>(params?: RequestParams.CcrFollowInfo, options?: TransportRequestOptions): TransportRequestPromise> - followStats, TContext = Context>(params?: RequestParams.CcrFollowStats, options?: TransportRequestOptions): TransportRequestPromise> - forgetFollower, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.CcrForgetFollower, options?: TransportRequestOptions): TransportRequestPromise> - getAutoFollowPattern, TContext = Context>(params?: RequestParams.CcrGetAutoFollowPattern, options?: TransportRequestOptions): TransportRequestPromise> - pauseAutoFollowPattern, TContext = Context>(params?: RequestParams.CcrPauseAutoFollowPattern, options?: TransportRequestOptions): TransportRequestPromise> - pauseFollow, TContext = Context>(params?: RequestParams.CcrPauseFollow, options?: TransportRequestOptions): TransportRequestPromise> - putAutoFollowPattern, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.CcrPutAutoFollowPattern, options?: TransportRequestOptions): TransportRequestPromise> - resumeAutoFollowPattern, TContext = Context>(params?: RequestParams.CcrResumeAutoFollowPattern, options?: TransportRequestOptions): TransportRequestPromise> - resumeFollow, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.CcrResumeFollow, options?: TransportRequestOptions): TransportRequestPromise> - stats, TContext = Context>(params?: RequestParams.CcrStats, options?: TransportRequestOptions): TransportRequestPromise> - unfollow, TContext = Context>(params?: RequestParams.CcrUnfollow, options?: TransportRequestOptions): TransportRequestPromise> + deleteAutoFollowPattern, TContext = Context>(params?: Req.CcrDeleteAutoFollowPatternRequest, options?: TransportRequestOptions): TransportRequestPromise> + follow, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.CcrFollowRequest, options?: TransportRequestOptions): TransportRequestPromise> + followInfo, TContext = Context>(params?: Req.CcrFollowInfoRequest, options?: TransportRequestOptions): TransportRequestPromise> + followStats, TContext = Context>(params?: Req.CcrFollowStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> + forgetFollower, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.CcrForgetFollowerRequest, options?: TransportRequestOptions): TransportRequestPromise> + getAutoFollowPattern, TContext = Context>(params?: Req.CcrGetAutoFollowPatternRequest, options?: TransportRequestOptions): TransportRequestPromise> + pauseAutoFollowPattern, TContext = Context>(params?: Req.CcrPauseAutoFollowPatternRequest, options?: TransportRequestOptions): TransportRequestPromise> + pauseFollow, TContext = Context>(params?: Req.CcrPauseFollowRequest, options?: TransportRequestOptions): TransportRequestPromise> + putAutoFollowPattern, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.CcrPutAutoFollowPatternRequest, options?: TransportRequestOptions): TransportRequestPromise> + resumeAutoFollowPattern, TContext = Context>(params?: Req.CcrResumeAutoFollowPatternRequest, options?: TransportRequestOptions): TransportRequestPromise> + resumeFollow, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.CcrResumeFollowRequest, options?: TransportRequestOptions): TransportRequestPromise> + stats, TContext = Context>(params?: Req.CcrStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> + unfollow, TContext = Context>(params?: Req.CcrUnfollowRequest, options?: TransportRequestOptions): TransportRequestPromise> } - clearScroll, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ClearScroll, options?: TransportRequestOptions): TransportRequestPromise> + clearScroll, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ClearScrollRequest, options?: TransportRequestOptions): TransportRequestPromise> cluster: { - allocationExplain, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ClusterAllocationExplain, options?: TransportRequestOptions): TransportRequestPromise> - deleteComponentTemplate, TContext = Context>(params?: RequestParams.ClusterDeleteComponentTemplate, options?: TransportRequestOptions): TransportRequestPromise> - deleteVotingConfigExclusions, TContext = Context>(params?: RequestParams.ClusterDeleteVotingConfigExclusions, options?: TransportRequestOptions): TransportRequestPromise> - existsComponentTemplate, TContext = Context>(params?: RequestParams.ClusterExistsComponentTemplate, options?: TransportRequestOptions): TransportRequestPromise> - getComponentTemplate, TContext = Context>(params?: RequestParams.ClusterGetComponentTemplate, options?: TransportRequestOptions): TransportRequestPromise> - getSettings, TContext = Context>(params?: RequestParams.ClusterGetSettings, options?: TransportRequestOptions): TransportRequestPromise> - health, TContext = Context>(params?: RequestParams.ClusterHealth, options?: TransportRequestOptions): TransportRequestPromise> - pendingTasks, TContext = Context>(params?: RequestParams.ClusterPendingTasks, options?: TransportRequestOptions): TransportRequestPromise> - postVotingConfigExclusions, TContext = Context>(params?: RequestParams.ClusterPostVotingConfigExclusions, options?: TransportRequestOptions): TransportRequestPromise> - putComponentTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ClusterPutComponentTemplate, options?: TransportRequestOptions): TransportRequestPromise> - putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ClusterPutSettings, options?: TransportRequestOptions): TransportRequestPromise> - remoteInfo, TContext = Context>(params?: RequestParams.ClusterRemoteInfo, options?: TransportRequestOptions): TransportRequestPromise> - reroute, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ClusterReroute, options?: TransportRequestOptions): TransportRequestPromise> - state, TContext = Context>(params?: RequestParams.ClusterState, options?: TransportRequestOptions): TransportRequestPromise> - stats, TContext = Context>(params?: RequestParams.ClusterStats, options?: TransportRequestOptions): TransportRequestPromise> + allocationExplain, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ClusterAllocationExplainRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteComponentTemplate, TContext = Context>(params?: Req.ClusterDeleteComponentTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteVotingConfigExclusions, TContext = Context>(params?: Req.ClusterDeleteVotingConfigExclusionsRequest, options?: TransportRequestOptions): TransportRequestPromise> + existsComponentTemplate, TContext = Context>(params?: Req.ClusterExistsComponentTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> + getComponentTemplate, TContext = Context>(params?: Req.ClusterGetComponentTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> + getSettings, TContext = Context>(params?: Req.ClusterGetSettingsRequest, options?: TransportRequestOptions): TransportRequestPromise> + health, TContext = Context>(params?: Req.ClusterHealthRequest, options?: TransportRequestOptions): TransportRequestPromise> + pendingTasks, TContext = Context>(params?: Req.ClusterPendingTasksRequest, options?: TransportRequestOptions): TransportRequestPromise> + postVotingConfigExclusions, TContext = Context>(params?: Req.ClusterPostVotingConfigExclusionsRequest, options?: TransportRequestOptions): TransportRequestPromise> + putComponentTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ClusterPutComponentTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> + putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ClusterPutSettingsRequest, options?: TransportRequestOptions): TransportRequestPromise> + remoteInfo, TContext = Context>(params?: Req.ClusterRemoteInfoRequest, options?: TransportRequestOptions): TransportRequestPromise> + reroute, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ClusterRerouteRequest, options?: TransportRequestOptions): TransportRequestPromise> + state, TContext = Context>(params?: Req.ClusterStateRequest, options?: TransportRequestOptions): TransportRequestPromise> + stats, TContext = Context>(params?: Req.ClusterStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> } - count, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Count, options?: TransportRequestOptions): TransportRequestPromise> - create, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Create, options?: TransportRequestOptions): TransportRequestPromise> + count, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.CountRequest, options?: TransportRequestOptions): TransportRequestPromise> + create, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.CreateRequest, options?: TransportRequestOptions): TransportRequestPromise> danglingIndices: { - deleteDanglingIndex, TContext = Context>(params?: RequestParams.DanglingIndicesDeleteDanglingIndex, options?: TransportRequestOptions): TransportRequestPromise> - importDanglingIndex, TContext = Context>(params?: RequestParams.DanglingIndicesImportDanglingIndex, options?: TransportRequestOptions): TransportRequestPromise> - listDanglingIndices, TContext = Context>(params?: RequestParams.DanglingIndicesListDanglingIndices, options?: TransportRequestOptions): TransportRequestPromise> + deleteDanglingIndex, TContext = Context>(params?: Req.DanglingIndicesDeleteDanglingIndexRequest, options?: TransportRequestOptions): TransportRequestPromise> + importDanglingIndex, TContext = Context>(params?: Req.DanglingIndicesImportDanglingIndexRequest, options?: TransportRequestOptions): TransportRequestPromise> + listDanglingIndices, TContext = Context>(params?: Req.DanglingIndicesListDanglingIndicesRequest, options?: TransportRequestOptions): TransportRequestPromise> } dataFrameTransformDeprecated: { - deleteTransform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedDeleteTransform, options?: TransportRequestOptions): TransportRequestPromise> - getTransform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedGetTransform, options?: TransportRequestOptions): TransportRequestPromise> - getTransformStats, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedGetTransformStats, options?: TransportRequestOptions): TransportRequestPromise> - previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedPreviewTransform, options?: TransportRequestOptions): TransportRequestPromise> - putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedPutTransform, options?: TransportRequestOptions): TransportRequestPromise> - startTransform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedStartTransform, options?: TransportRequestOptions): TransportRequestPromise> - stopTransform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedStopTransform, options?: TransportRequestOptions): TransportRequestPromise> - updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedUpdateTransform, options?: TransportRequestOptions): TransportRequestPromise> + deleteTransform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedDeleteTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> + getTransform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedGetTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> + getTransformStats, TContext = Context>(params?: Req.DataFrameTransformDeprecatedGetTransformStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> + previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DataFrameTransformDeprecatedPreviewTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> + putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DataFrameTransformDeprecatedPutTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> + startTransform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedStartTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> + stopTransform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedStopTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> + updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DataFrameTransformDeprecatedUpdateTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> } - delete, TContext = Context>(params?: RequestParams.Delete, options?: TransportRequestOptions): TransportRequestPromise> - deleteByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DeleteByQuery, options?: TransportRequestOptions): TransportRequestPromise> - deleteByQueryRethrottle, TContext = Context>(params?: RequestParams.DeleteByQueryRethrottle, options?: TransportRequestOptions): TransportRequestPromise> - deleteScript, TContext = Context>(params?: RequestParams.DeleteScript, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params?: Req.DeleteRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DeleteByQueryRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteByQueryRethrottle, TContext = Context>(params?: Req.DeleteByQueryRethrottleRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteScript, TContext = Context>(params?: Req.DeleteScriptRequest, options?: TransportRequestOptions): TransportRequestPromise> enrich: { - deletePolicy, TContext = Context>(params?: RequestParams.EnrichDeletePolicy, options?: TransportRequestOptions): TransportRequestPromise> - executePolicy, TContext = Context>(params?: RequestParams.EnrichExecutePolicy, options?: TransportRequestOptions): TransportRequestPromise> - getPolicy, TContext = Context>(params?: RequestParams.EnrichGetPolicy, options?: TransportRequestOptions): TransportRequestPromise> - putPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.EnrichPutPolicy, options?: TransportRequestOptions): TransportRequestPromise> - stats, TContext = Context>(params?: RequestParams.EnrichStats, options?: TransportRequestOptions): TransportRequestPromise> + deletePolicy, TContext = Context>(params?: Req.EnrichDeletePolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> + executePolicy, TContext = Context>(params?: Req.EnrichExecutePolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> + getPolicy, TContext = Context>(params?: Req.EnrichGetPolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> + putPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.EnrichPutPolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> + stats, TContext = Context>(params?: Req.EnrichStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> } eql: { - delete, TContext = Context>(params?: RequestParams.EqlDelete, options?: TransportRequestOptions): TransportRequestPromise> - get, TContext = Context>(params?: RequestParams.EqlGet, options?: TransportRequestOptions): TransportRequestPromise> - search, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.EqlSearch, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params?: Req.EqlDeleteRequest, options?: TransportRequestOptions): TransportRequestPromise> + get, TContext = Context>(params?: Req.EqlGetRequest, options?: TransportRequestOptions): TransportRequestPromise> + search, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.EqlSearchRequest, options?: TransportRequestOptions): TransportRequestPromise> } - exists, TContext = Context>(params?: RequestParams.Exists, options?: TransportRequestOptions): TransportRequestPromise> - existsSource, TContext = Context>(params?: RequestParams.ExistsSource, options?: TransportRequestOptions): TransportRequestPromise> - explain, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Explain, options?: TransportRequestOptions): TransportRequestPromise> - fieldCaps, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.FieldCaps, options?: TransportRequestOptions): TransportRequestPromise> - get, TContext = Context>(params?: RequestParams.Get, options?: TransportRequestOptions): TransportRequestPromise> - getScript, TContext = Context>(params?: RequestParams.GetScript, options?: TransportRequestOptions): TransportRequestPromise> - getScriptContext, TContext = Context>(params?: RequestParams.GetScriptContext, options?: TransportRequestOptions): TransportRequestPromise> - getScriptLanguages, TContext = Context>(params?: RequestParams.GetScriptLanguages, options?: TransportRequestOptions): TransportRequestPromise> - getSource, TContext = Context>(params?: RequestParams.GetSource, options?: TransportRequestOptions): TransportRequestPromise> + exists, TContext = Context>(params?: Req.ExistsRequest, options?: TransportRequestOptions): TransportRequestPromise> + existsSource, TContext = Context>(params?: Req.ExistsSourceRequest, options?: TransportRequestOptions): TransportRequestPromise> + explain, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ExplainRequest, options?: TransportRequestOptions): TransportRequestPromise> + fieldCaps, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.FieldCapsRequest, options?: TransportRequestOptions): TransportRequestPromise> + get, TContext = Context>(params?: Req.GetRequest, options?: TransportRequestOptions): TransportRequestPromise> + getScript, TContext = Context>(params?: Req.GetScriptRequest, options?: TransportRequestOptions): TransportRequestPromise> + getScriptContext, TContext = Context>(params?: Req.GetScriptContextRequest, options?: TransportRequestOptions): TransportRequestPromise> + getScriptLanguages, TContext = Context>(params?: Req.GetScriptLanguagesRequest, options?: TransportRequestOptions): TransportRequestPromise> + getSource, TContext = Context>(params?: Req.GetSourceRequest, options?: TransportRequestOptions): TransportRequestPromise> graph: { - explore, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.GraphExplore, options?: TransportRequestOptions): TransportRequestPromise> + explore, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.GraphExploreRequest, options?: TransportRequestOptions): TransportRequestPromise> } ilm: { - deleteLifecycle, TContext = Context>(params?: RequestParams.IlmDeleteLifecycle, options?: TransportRequestOptions): TransportRequestPromise> - explainLifecycle, TContext = Context>(params?: RequestParams.IlmExplainLifecycle, options?: TransportRequestOptions): TransportRequestPromise> - getLifecycle, TContext = Context>(params?: RequestParams.IlmGetLifecycle, options?: TransportRequestOptions): TransportRequestPromise> - getStatus, TContext = Context>(params?: RequestParams.IlmGetStatus, options?: TransportRequestOptions): TransportRequestPromise> - moveToStep, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IlmMoveToStep, options?: TransportRequestOptions): TransportRequestPromise> - putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IlmPutLifecycle, options?: TransportRequestOptions): TransportRequestPromise> - removePolicy, TContext = Context>(params?: RequestParams.IlmRemovePolicy, options?: TransportRequestOptions): TransportRequestPromise> - retry, TContext = Context>(params?: RequestParams.IlmRetry, options?: TransportRequestOptions): TransportRequestPromise> - start, TContext = Context>(params?: RequestParams.IlmStart, options?: TransportRequestOptions): TransportRequestPromise> - stop, TContext = Context>(params?: RequestParams.IlmStop, options?: TransportRequestOptions): TransportRequestPromise> + deleteLifecycle, TContext = Context>(params?: Req.IlmDeleteLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> + explainLifecycle, TContext = Context>(params?: Req.IlmExplainLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> + getLifecycle, TContext = Context>(params?: Req.IlmGetLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> + getStatus, TContext = Context>(params?: Req.IlmGetStatusRequest, options?: TransportRequestOptions): TransportRequestPromise> + moveToStep, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IlmMoveToStepRequest, options?: TransportRequestOptions): TransportRequestPromise> + putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IlmPutLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> + removePolicy, TContext = Context>(params?: Req.IlmRemovePolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> + retry, TContext = Context>(params?: Req.IlmRetryRequest, options?: TransportRequestOptions): TransportRequestPromise> + start, TContext = Context>(params?: Req.IlmStartRequest, options?: TransportRequestOptions): TransportRequestPromise> + stop, TContext = Context>(params?: Req.IlmStopRequest, options?: TransportRequestOptions): TransportRequestPromise> } - index, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Index, options?: TransportRequestOptions): TransportRequestPromise> + index, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndexRequest, options?: TransportRequestOptions): TransportRequestPromise> indices: { - addBlock, TContext = Context>(params?: RequestParams.IndicesAddBlock, options?: TransportRequestOptions): TransportRequestPromise> - analyze, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesAnalyze, options?: TransportRequestOptions): TransportRequestPromise> - clearCache, TContext = Context>(params?: RequestParams.IndicesClearCache, options?: TransportRequestOptions): TransportRequestPromise> - clone, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesClone, options?: TransportRequestOptions): TransportRequestPromise> - close, TContext = Context>(params?: RequestParams.IndicesClose, options?: TransportRequestOptions): TransportRequestPromise> - create, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesCreate, options?: TransportRequestOptions): TransportRequestPromise> - createDataStream, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesCreateDataStream, options?: TransportRequestOptions): TransportRequestPromise> - dataStreamsStats, TContext = Context>(params?: RequestParams.IndicesDataStreamsStats, options?: TransportRequestOptions): TransportRequestPromise> - delete, TContext = Context>(params?: RequestParams.IndicesDelete, options?: TransportRequestOptions): TransportRequestPromise> - deleteAlias, TContext = Context>(params?: RequestParams.IndicesDeleteAlias, options?: TransportRequestOptions): TransportRequestPromise> - deleteDataStream, TContext = Context>(params?: RequestParams.IndicesDeleteDataStream, options?: TransportRequestOptions): TransportRequestPromise> - deleteIndexTemplate, TContext = Context>(params?: RequestParams.IndicesDeleteIndexTemplate, options?: TransportRequestOptions): TransportRequestPromise> - deleteTemplate, TContext = Context>(params?: RequestParams.IndicesDeleteTemplate, options?: TransportRequestOptions): TransportRequestPromise> - exists, TContext = Context>(params?: RequestParams.IndicesExists, options?: TransportRequestOptions): TransportRequestPromise> - existsAlias, TContext = Context>(params?: RequestParams.IndicesExistsAlias, options?: TransportRequestOptions): TransportRequestPromise> - existsIndexTemplate, TContext = Context>(params?: RequestParams.IndicesExistsIndexTemplate, options?: TransportRequestOptions): TransportRequestPromise> - existsTemplate, TContext = Context>(params?: RequestParams.IndicesExistsTemplate, options?: TransportRequestOptions): TransportRequestPromise> - existsType, TContext = Context>(params?: RequestParams.IndicesExistsType, options?: TransportRequestOptions): TransportRequestPromise> - flush, TContext = Context>(params?: RequestParams.IndicesFlush, options?: TransportRequestOptions): TransportRequestPromise> - forcemerge, TContext = Context>(params?: RequestParams.IndicesForcemerge, options?: TransportRequestOptions): TransportRequestPromise> - freeze, TContext = Context>(params?: RequestParams.IndicesFreeze, options?: TransportRequestOptions): TransportRequestPromise> - get, TContext = Context>(params?: RequestParams.IndicesGet, options?: TransportRequestOptions): TransportRequestPromise> - getAlias, TContext = Context>(params?: RequestParams.IndicesGetAlias, options?: TransportRequestOptions): TransportRequestPromise> - getDataStream, TContext = Context>(params?: RequestParams.IndicesGetDataStream, options?: TransportRequestOptions): TransportRequestPromise> - getFieldMapping, TContext = Context>(params?: RequestParams.IndicesGetFieldMapping, options?: TransportRequestOptions): TransportRequestPromise> - getIndexTemplate, TContext = Context>(params?: RequestParams.IndicesGetIndexTemplate, options?: TransportRequestOptions): TransportRequestPromise> - getMapping, TContext = Context>(params?: RequestParams.IndicesGetMapping, options?: TransportRequestOptions): TransportRequestPromise> - getSettings, TContext = Context>(params?: RequestParams.IndicesGetSettings, options?: TransportRequestOptions): TransportRequestPromise> - getTemplate, TContext = Context>(params?: RequestParams.IndicesGetTemplate, options?: TransportRequestOptions): TransportRequestPromise> - getUpgrade, TContext = Context>(params?: RequestParams.IndicesGetUpgrade, options?: TransportRequestOptions): TransportRequestPromise> - open, TContext = Context>(params?: RequestParams.IndicesOpen, options?: TransportRequestOptions): TransportRequestPromise> - putAlias, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesPutAlias, options?: TransportRequestOptions): TransportRequestPromise> - putIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesPutIndexTemplate, options?: TransportRequestOptions): TransportRequestPromise> - putMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesPutMapping, options?: TransportRequestOptions): TransportRequestPromise> - putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesPutSettings, options?: TransportRequestOptions): TransportRequestPromise> - putTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesPutTemplate, options?: TransportRequestOptions): TransportRequestPromise> - recovery, TContext = Context>(params?: RequestParams.IndicesRecovery, options?: TransportRequestOptions): TransportRequestPromise> - refresh, TContext = Context>(params?: RequestParams.IndicesRefresh, options?: TransportRequestOptions): TransportRequestPromise> - reloadSearchAnalyzers, TContext = Context>(params?: RequestParams.IndicesReloadSearchAnalyzers, options?: TransportRequestOptions): TransportRequestPromise> - resolveIndex, TContext = Context>(params?: RequestParams.IndicesResolveIndex, options?: TransportRequestOptions): TransportRequestPromise> - rollover, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesRollover, options?: TransportRequestOptions): TransportRequestPromise> - segments, TContext = Context>(params?: RequestParams.IndicesSegments, options?: TransportRequestOptions): TransportRequestPromise> - shardStores, TContext = Context>(params?: RequestParams.IndicesShardStores, options?: TransportRequestOptions): TransportRequestPromise> - shrink, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesShrink, options?: TransportRequestOptions): TransportRequestPromise> - simulateIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesSimulateIndexTemplate, options?: TransportRequestOptions): TransportRequestPromise> - simulateTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesSimulateTemplate, options?: TransportRequestOptions): TransportRequestPromise> - split, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesSplit, options?: TransportRequestOptions): TransportRequestPromise> - stats, TContext = Context>(params?: RequestParams.IndicesStats, options?: TransportRequestOptions): TransportRequestPromise> - unfreeze, TContext = Context>(params?: RequestParams.IndicesUnfreeze, options?: TransportRequestOptions): TransportRequestPromise> - updateAliases, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesUpdateAliases, options?: TransportRequestOptions): TransportRequestPromise> - upgrade, TContext = Context>(params?: RequestParams.IndicesUpgrade, options?: TransportRequestOptions): TransportRequestPromise> - validateQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesValidateQuery, options?: TransportRequestOptions): TransportRequestPromise> + addBlock, TContext = Context>(params?: Req.IndicesAddBlockRequest, options?: TransportRequestOptions): TransportRequestPromise> + analyze, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesAnalyzeRequest, options?: TransportRequestOptions): TransportRequestPromise> + clearCache, TContext = Context>(params?: Req.IndicesClearCacheRequest, options?: TransportRequestOptions): TransportRequestPromise> + clone, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesCloneRequest, options?: TransportRequestOptions): TransportRequestPromise> + close, TContext = Context>(params?: Req.IndicesCloseRequest, options?: TransportRequestOptions): TransportRequestPromise> + create, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesCreateRequest, options?: TransportRequestOptions): TransportRequestPromise> + createDataStream, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesCreateDataStreamRequest, options?: TransportRequestOptions): TransportRequestPromise> + dataStreamsStats, TContext = Context>(params?: Req.IndicesDataStreamsStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params?: Req.IndicesDeleteRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteAlias, TContext = Context>(params?: Req.IndicesDeleteAliasRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteDataStream, TContext = Context>(params?: Req.IndicesDeleteDataStreamRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteIndexTemplate, TContext = Context>(params?: Req.IndicesDeleteIndexTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteTemplate, TContext = Context>(params?: Req.IndicesDeleteTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> + exists, TContext = Context>(params?: Req.IndicesExistsRequest, options?: TransportRequestOptions): TransportRequestPromise> + existsAlias, TContext = Context>(params?: Req.IndicesExistsAliasRequest, options?: TransportRequestOptions): TransportRequestPromise> + existsIndexTemplate, TContext = Context>(params?: Req.IndicesExistsIndexTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> + existsTemplate, TContext = Context>(params?: Req.IndicesExistsTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> + existsType, TContext = Context>(params?: Req.IndicesExistsTypeRequest, options?: TransportRequestOptions): TransportRequestPromise> + flush, TContext = Context>(params?: Req.IndicesFlushRequest, options?: TransportRequestOptions): TransportRequestPromise> + forcemerge, TContext = Context>(params?: Req.IndicesForcemergeRequest, options?: TransportRequestOptions): TransportRequestPromise> + freeze, TContext = Context>(params?: Req.IndicesFreezeRequest, options?: TransportRequestOptions): TransportRequestPromise> + get, TContext = Context>(params?: Req.IndicesGetRequest, options?: TransportRequestOptions): TransportRequestPromise> + getAlias, TContext = Context>(params?: Req.IndicesGetAliasRequest, options?: TransportRequestOptions): TransportRequestPromise> + getDataStream, TContext = Context>(params?: Req.IndicesGetDataStreamRequest, options?: TransportRequestOptions): TransportRequestPromise> + getFieldMapping, TContext = Context>(params?: Req.IndicesGetFieldMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> + getIndexTemplate, TContext = Context>(params?: Req.IndicesGetIndexTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> + getMapping, TContext = Context>(params?: Req.IndicesGetMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> + getSettings, TContext = Context>(params?: Req.IndicesGetSettingsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getTemplate, TContext = Context>(params?: Req.IndicesGetTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> + getUpgrade, TContext = Context>(params?: Req.IndicesGetUpgradeRequest, options?: TransportRequestOptions): TransportRequestPromise> + open, TContext = Context>(params?: Req.IndicesOpenRequest, options?: TransportRequestOptions): TransportRequestPromise> + putAlias, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesPutAliasRequest, options?: TransportRequestOptions): TransportRequestPromise> + putIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesPutIndexTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> + putMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesPutMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> + putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesPutSettingsRequest, options?: TransportRequestOptions): TransportRequestPromise> + putTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesPutTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> + recovery, TContext = Context>(params?: Req.IndicesRecoveryRequest, options?: TransportRequestOptions): TransportRequestPromise> + refresh, TContext = Context>(params?: Req.IndicesRefreshRequest, options?: TransportRequestOptions): TransportRequestPromise> + reloadSearchAnalyzers, TContext = Context>(params?: Req.IndicesReloadSearchAnalyzersRequest, options?: TransportRequestOptions): TransportRequestPromise> + resolveIndex, TContext = Context>(params?: Req.IndicesResolveIndexRequest, options?: TransportRequestOptions): TransportRequestPromise> + rollover, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesRolloverRequest, options?: TransportRequestOptions): TransportRequestPromise> + segments, TContext = Context>(params?: Req.IndicesSegmentsRequest, options?: TransportRequestOptions): TransportRequestPromise> + shardStores, TContext = Context>(params?: Req.IndicesShardStoresRequest, options?: TransportRequestOptions): TransportRequestPromise> + shrink, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesShrinkRequest, options?: TransportRequestOptions): TransportRequestPromise> + simulateIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesSimulateIndexTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> + simulateTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesSimulateTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> + split, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesSplitRequest, options?: TransportRequestOptions): TransportRequestPromise> + stats, TContext = Context>(params?: Req.IndicesStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> + unfreeze, TContext = Context>(params?: Req.IndicesUnfreezeRequest, options?: TransportRequestOptions): TransportRequestPromise> + updateAliases, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesUpdateAliasesRequest, options?: TransportRequestOptions): TransportRequestPromise> + upgrade, TContext = Context>(params?: Req.IndicesUpgradeRequest, options?: TransportRequestOptions): TransportRequestPromise> + validateQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesValidateQueryRequest, options?: TransportRequestOptions): TransportRequestPromise> } - info, TContext = Context>(params?: RequestParams.Info, options?: TransportRequestOptions): TransportRequestPromise> + info, TContext = Context>(params?: Req.InfoRequest, options?: TransportRequestOptions): TransportRequestPromise> ingest: { - deletePipeline, TContext = Context>(params?: RequestParams.IngestDeletePipeline, options?: TransportRequestOptions): TransportRequestPromise> - getPipeline, TContext = Context>(params?: RequestParams.IngestGetPipeline, options?: TransportRequestOptions): TransportRequestPromise> - processorGrok, TContext = Context>(params?: RequestParams.IngestProcessorGrok, options?: TransportRequestOptions): TransportRequestPromise> - putPipeline, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IngestPutPipeline, options?: TransportRequestOptions): TransportRequestPromise> - simulate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IngestSimulate, options?: TransportRequestOptions): TransportRequestPromise> + deletePipeline, TContext = Context>(params?: Req.IngestDeletePipelineRequest, options?: TransportRequestOptions): TransportRequestPromise> + getPipeline, TContext = Context>(params?: Req.IngestGetPipelineRequest, options?: TransportRequestOptions): TransportRequestPromise> + processorGrok, TContext = Context>(params?: Req.IngestProcessorGrokRequest, options?: TransportRequestOptions): TransportRequestPromise> + putPipeline, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IngestPutPipelineRequest, options?: TransportRequestOptions): TransportRequestPromise> + simulate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IngestSimulateRequest, options?: TransportRequestOptions): TransportRequestPromise> } license: { - delete, TContext = Context>(params?: RequestParams.LicenseDelete, options?: TransportRequestOptions): TransportRequestPromise> - get, TContext = Context>(params?: RequestParams.LicenseGet, options?: TransportRequestOptions): TransportRequestPromise> - getBasicStatus, TContext = Context>(params?: RequestParams.LicenseGetBasicStatus, options?: TransportRequestOptions): TransportRequestPromise> - getTrialStatus, TContext = Context>(params?: RequestParams.LicenseGetTrialStatus, options?: TransportRequestOptions): TransportRequestPromise> - post, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.LicensePost, options?: TransportRequestOptions): TransportRequestPromise> - postStartBasic, TContext = Context>(params?: RequestParams.LicensePostStartBasic, options?: TransportRequestOptions): TransportRequestPromise> - postStartTrial, TContext = Context>(params?: RequestParams.LicensePostStartTrial, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params?: Req.LicenseDeleteRequest, options?: TransportRequestOptions): TransportRequestPromise> + get, TContext = Context>(params?: Req.LicenseGetRequest, options?: TransportRequestOptions): TransportRequestPromise> + getBasicStatus, TContext = Context>(params?: Req.LicenseGetBasicStatusRequest, options?: TransportRequestOptions): TransportRequestPromise> + getTrialStatus, TContext = Context>(params?: Req.LicenseGetTrialStatusRequest, options?: TransportRequestOptions): TransportRequestPromise> + post, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.LicensePostRequest, options?: TransportRequestOptions): TransportRequestPromise> + postStartBasic, TContext = Context>(params?: Req.LicensePostStartBasicRequest, options?: TransportRequestOptions): TransportRequestPromise> + postStartTrial, TContext = Context>(params?: Req.LicensePostStartTrialRequest, options?: TransportRequestOptions): TransportRequestPromise> } - mget, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Mget, options?: TransportRequestOptions): TransportRequestPromise> + mget, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MgetRequest, options?: TransportRequestOptions): TransportRequestPromise> migration: { - deprecations, TContext = Context>(params?: RequestParams.MigrationDeprecations, options?: TransportRequestOptions): TransportRequestPromise> + deprecations, TContext = Context>(params?: Req.MigrationDeprecationsRequest, options?: TransportRequestOptions): TransportRequestPromise> } ml: { - closeJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlCloseJob, options?: TransportRequestOptions): TransportRequestPromise> - deleteCalendar, TContext = Context>(params?: RequestParams.MlDeleteCalendar, options?: TransportRequestOptions): TransportRequestPromise> - deleteCalendarEvent, TContext = Context>(params?: RequestParams.MlDeleteCalendarEvent, options?: TransportRequestOptions): TransportRequestPromise> - deleteCalendarJob, TContext = Context>(params?: RequestParams.MlDeleteCalendarJob, options?: TransportRequestOptions): TransportRequestPromise> - deleteDataFrameAnalytics, TContext = Context>(params?: RequestParams.MlDeleteDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> - deleteDatafeed, TContext = Context>(params?: RequestParams.MlDeleteDatafeed, options?: TransportRequestOptions): TransportRequestPromise> - deleteExpiredData, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlDeleteExpiredData, options?: TransportRequestOptions): TransportRequestPromise> - deleteFilter, TContext = Context>(params?: RequestParams.MlDeleteFilter, options?: TransportRequestOptions): TransportRequestPromise> - deleteForecast, TContext = Context>(params?: RequestParams.MlDeleteForecast, options?: TransportRequestOptions): TransportRequestPromise> - deleteJob, TContext = Context>(params?: RequestParams.MlDeleteJob, options?: TransportRequestOptions): TransportRequestPromise> - deleteModelSnapshot, TContext = Context>(params?: RequestParams.MlDeleteModelSnapshot, options?: TransportRequestOptions): TransportRequestPromise> - deleteTrainedModel, TContext = Context>(params?: RequestParams.MlDeleteTrainedModel, options?: TransportRequestOptions): TransportRequestPromise> - estimateModelMemory, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlEstimateModelMemory, options?: TransportRequestOptions): TransportRequestPromise> - evaluateDataFrame, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlEvaluateDataFrame, options?: TransportRequestOptions): TransportRequestPromise> - explainDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlExplainDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> - findFileStructure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: RequestParams.MlFindFileStructure, options?: TransportRequestOptions): TransportRequestPromise> - flushJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlFlushJob, options?: TransportRequestOptions): TransportRequestPromise> - forecast, TContext = Context>(params?: RequestParams.MlForecast, options?: TransportRequestOptions): TransportRequestPromise> - getBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetBuckets, options?: TransportRequestOptions): TransportRequestPromise> - getCalendarEvents, TContext = Context>(params?: RequestParams.MlGetCalendarEvents, options?: TransportRequestOptions): TransportRequestPromise> - getCalendars, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetCalendars, options?: TransportRequestOptions): TransportRequestPromise> - getCategories, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetCategories, options?: TransportRequestOptions): TransportRequestPromise> - getDataFrameAnalytics, TContext = Context>(params?: RequestParams.MlGetDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> - getDataFrameAnalyticsStats, TContext = Context>(params?: RequestParams.MlGetDataFrameAnalyticsStats, options?: TransportRequestOptions): TransportRequestPromise> - getDatafeedStats, TContext = Context>(params?: RequestParams.MlGetDatafeedStats, options?: TransportRequestOptions): TransportRequestPromise> - getDatafeeds, TContext = Context>(params?: RequestParams.MlGetDatafeeds, options?: TransportRequestOptions): TransportRequestPromise> - getFilters, TContext = Context>(params?: RequestParams.MlGetFilters, options?: TransportRequestOptions): TransportRequestPromise> - getInfluencers, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetInfluencers, options?: TransportRequestOptions): TransportRequestPromise> - getJobStats, TContext = Context>(params?: RequestParams.MlGetJobStats, options?: TransportRequestOptions): TransportRequestPromise> - getJobs, TContext = Context>(params?: RequestParams.MlGetJobs, options?: TransportRequestOptions): TransportRequestPromise> - getModelSnapshots, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetModelSnapshots, options?: TransportRequestOptions): TransportRequestPromise> - getOverallBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetOverallBuckets, options?: TransportRequestOptions): TransportRequestPromise> - getRecords, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetRecords, options?: TransportRequestOptions): TransportRequestPromise> - getTrainedModels, TContext = Context>(params?: RequestParams.MlGetTrainedModels, options?: TransportRequestOptions): TransportRequestPromise> - getTrainedModelsStats, TContext = Context>(params?: RequestParams.MlGetTrainedModelsStats, options?: TransportRequestOptions): TransportRequestPromise> - info, TContext = Context>(params?: RequestParams.MlInfo, options?: TransportRequestOptions): TransportRequestPromise> - openJob, TContext = Context>(params?: RequestParams.MlOpenJob, options?: TransportRequestOptions): TransportRequestPromise> - postCalendarEvents, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPostCalendarEvents, options?: TransportRequestOptions): TransportRequestPromise> - postData, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPostData, options?: TransportRequestOptions): TransportRequestPromise> - previewDatafeed, TContext = Context>(params?: RequestParams.MlPreviewDatafeed, options?: TransportRequestOptions): TransportRequestPromise> - putCalendar, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutCalendar, options?: TransportRequestOptions): TransportRequestPromise> - putCalendarJob, TContext = Context>(params?: RequestParams.MlPutCalendarJob, options?: TransportRequestOptions): TransportRequestPromise> - putDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> - putDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutDatafeed, options?: TransportRequestOptions): TransportRequestPromise> - putFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutFilter, options?: TransportRequestOptions): TransportRequestPromise> - putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutJob, options?: TransportRequestOptions): TransportRequestPromise> - putTrainedModel, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutTrainedModel, options?: TransportRequestOptions): TransportRequestPromise> - revertModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlRevertModelSnapshot, options?: TransportRequestOptions): TransportRequestPromise> - setUpgradeMode, TContext = Context>(params?: RequestParams.MlSetUpgradeMode, options?: TransportRequestOptions): TransportRequestPromise> - startDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlStartDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> - startDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlStartDatafeed, options?: TransportRequestOptions): TransportRequestPromise> - stopDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlStopDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> - stopDatafeed, TContext = Context>(params?: RequestParams.MlStopDatafeed, options?: TransportRequestOptions): TransportRequestPromise> - updateDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlUpdateDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> - updateDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlUpdateDatafeed, options?: TransportRequestOptions): TransportRequestPromise> - updateFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlUpdateFilter, options?: TransportRequestOptions): TransportRequestPromise> - updateJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlUpdateJob, options?: TransportRequestOptions): TransportRequestPromise> - updateModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlUpdateModelSnapshot, options?: TransportRequestOptions): TransportRequestPromise> - validate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlValidate, options?: TransportRequestOptions): TransportRequestPromise> - validateDetector, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlValidateDetector, options?: TransportRequestOptions): TransportRequestPromise> + closeJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlCloseJobRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteCalendar, TContext = Context>(params?: Req.MlDeleteCalendarRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteCalendarEvent, TContext = Context>(params?: Req.MlDeleteCalendarEventRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteCalendarJob, TContext = Context>(params?: Req.MlDeleteCalendarJobRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteDataFrameAnalytics, TContext = Context>(params?: Req.MlDeleteDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteDatafeed, TContext = Context>(params?: Req.MlDeleteDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteExpiredData, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlDeleteExpiredDataRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteFilter, TContext = Context>(params?: Req.MlDeleteFilterRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteForecast, TContext = Context>(params?: Req.MlDeleteForecastRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteJob, TContext = Context>(params?: Req.MlDeleteJobRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteModelSnapshot, TContext = Context>(params?: Req.MlDeleteModelSnapshotRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteTrainedModel, TContext = Context>(params?: Req.MlDeleteTrainedModelRequest, options?: TransportRequestOptions): TransportRequestPromise> + estimateModelMemory, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlEstimateModelMemoryRequest, options?: TransportRequestOptions): TransportRequestPromise> + evaluateDataFrame, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlEvaluateDataFrameRequest, options?: TransportRequestOptions): TransportRequestPromise> + explainDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlExplainDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> + findFileStructure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: Req.MlFindFileStructureRequest, options?: TransportRequestOptions): TransportRequestPromise> + flushJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlFlushJobRequest, options?: TransportRequestOptions): TransportRequestPromise> + forecast, TContext = Context>(params?: Req.MlForecastRequest, options?: TransportRequestOptions): TransportRequestPromise> + getBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetBucketsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getCalendarEvents, TContext = Context>(params?: Req.MlGetCalendarEventsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getCalendars, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetCalendarsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getCategories, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetCategoriesRequest, options?: TransportRequestOptions): TransportRequestPromise> + getDataFrameAnalytics, TContext = Context>(params?: Req.MlGetDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getDataFrameAnalyticsStats, TContext = Context>(params?: Req.MlGetDataFrameAnalyticsStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getDatafeedStats, TContext = Context>(params?: Req.MlGetDatafeedStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getDatafeeds, TContext = Context>(params?: Req.MlGetDatafeedsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getFilters, TContext = Context>(params?: Req.MlGetFiltersRequest, options?: TransportRequestOptions): TransportRequestPromise> + getInfluencers, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetInfluencersRequest, options?: TransportRequestOptions): TransportRequestPromise> + getJobStats, TContext = Context>(params?: Req.MlGetJobStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getJobs, TContext = Context>(params?: Req.MlGetJobsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getModelSnapshots, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetModelSnapshotsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getOverallBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetOverallBucketsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getRecords, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetRecordsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getTrainedModels, TContext = Context>(params?: Req.MlGetTrainedModelsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getTrainedModelsStats, TContext = Context>(params?: Req.MlGetTrainedModelsStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> + info, TContext = Context>(params?: Req.MlInfoRequest, options?: TransportRequestOptions): TransportRequestPromise> + openJob, TContext = Context>(params?: Req.MlOpenJobRequest, options?: TransportRequestOptions): TransportRequestPromise> + postCalendarEvents, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPostCalendarEventsRequest, options?: TransportRequestOptions): TransportRequestPromise> + postData, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPostDataRequest, options?: TransportRequestOptions): TransportRequestPromise> + previewDatafeed, TContext = Context>(params?: Req.MlPreviewDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> + putCalendar, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutCalendarRequest, options?: TransportRequestOptions): TransportRequestPromise> + putCalendarJob, TContext = Context>(params?: Req.MlPutCalendarJobRequest, options?: TransportRequestOptions): TransportRequestPromise> + putDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> + putDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> + putFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutFilterRequest, options?: TransportRequestOptions): TransportRequestPromise> + putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutJobRequest, options?: TransportRequestOptions): TransportRequestPromise> + putTrainedModel, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutTrainedModelRequest, options?: TransportRequestOptions): TransportRequestPromise> + revertModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlRevertModelSnapshotRequest, options?: TransportRequestOptions): TransportRequestPromise> + setUpgradeMode, TContext = Context>(params?: Req.MlSetUpgradeModeRequest, options?: TransportRequestOptions): TransportRequestPromise> + startDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlStartDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> + startDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlStartDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> + stopDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlStopDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> + stopDatafeed, TContext = Context>(params?: Req.MlStopDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> + updateDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlUpdateDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> + updateDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlUpdateDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> + updateFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlUpdateFilterRequest, options?: TransportRequestOptions): TransportRequestPromise> + updateJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlUpdateJobRequest, options?: TransportRequestOptions): TransportRequestPromise> + updateModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlUpdateModelSnapshotRequest, options?: TransportRequestOptions): TransportRequestPromise> + validate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlValidateRequest, options?: TransportRequestOptions): TransportRequestPromise> + validateDetector, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlValidateDetectorRequest, options?: TransportRequestOptions): TransportRequestPromise> } monitoring: { - bulk, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: RequestParams.MonitoringBulk, options?: TransportRequestOptions): TransportRequestPromise> + bulk, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: Req.MonitoringBulkRequest, options?: TransportRequestOptions): TransportRequestPromise> } - msearch, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: RequestParams.Msearch, options?: TransportRequestOptions): TransportRequestPromise> - msearchTemplate, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: RequestParams.MsearchTemplate, options?: TransportRequestOptions): TransportRequestPromise> - mtermvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Mtermvectors, options?: TransportRequestOptions): TransportRequestPromise> + msearch, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: Req.MsearchRequest, options?: TransportRequestOptions): TransportRequestPromise> + msearchTemplate, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: Req.MsearchTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> + mtermvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MtermvectorsRequest, options?: TransportRequestOptions): TransportRequestPromise> nodes: { - hotThreads, TContext = Context>(params?: RequestParams.NodesHotThreads, options?: TransportRequestOptions): TransportRequestPromise> - info, TContext = Context>(params?: RequestParams.NodesInfo, options?: TransportRequestOptions): TransportRequestPromise> - reloadSecureSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.NodesReloadSecureSettings, options?: TransportRequestOptions): TransportRequestPromise> - stats, TContext = Context>(params?: RequestParams.NodesStats, options?: TransportRequestOptions): TransportRequestPromise> - usage, TContext = Context>(params?: RequestParams.NodesUsage, options?: TransportRequestOptions): TransportRequestPromise> + hotThreads, TContext = Context>(params?: Req.NodesHotThreadsRequest, options?: TransportRequestOptions): TransportRequestPromise> + info, TContext = Context>(params?: Req.NodesInfoRequest, options?: TransportRequestOptions): TransportRequestPromise> + reloadSecureSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.NodesReloadSecureSettingsRequest, options?: TransportRequestOptions): TransportRequestPromise> + stats, TContext = Context>(params?: Req.NodesStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> + usage, TContext = Context>(params?: Req.NodesUsageRequest, options?: TransportRequestOptions): TransportRequestPromise> } - ping, TContext = Context>(params?: RequestParams.Ping, options?: TransportRequestOptions): TransportRequestPromise> - putScript, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.PutScript, options?: TransportRequestOptions): TransportRequestPromise> - rankEval, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.RankEval, options?: TransportRequestOptions): TransportRequestPromise> - reindex, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Reindex, options?: TransportRequestOptions): TransportRequestPromise> - reindexRethrottle, TContext = Context>(params?: RequestParams.ReindexRethrottle, options?: TransportRequestOptions): TransportRequestPromise> - renderSearchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.RenderSearchTemplate, options?: TransportRequestOptions): TransportRequestPromise> + ping, TContext = Context>(params?: Req.PingRequest, options?: TransportRequestOptions): TransportRequestPromise> + putScript, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.PutScriptRequest, options?: TransportRequestOptions): TransportRequestPromise> + rankEval, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.RankEvalRequest, options?: TransportRequestOptions): TransportRequestPromise> + reindex, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ReindexRequest, options?: TransportRequestOptions): TransportRequestPromise> + reindexRethrottle, TContext = Context>(params?: Req.ReindexRethrottleRequest, options?: TransportRequestOptions): TransportRequestPromise> + renderSearchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.RenderSearchTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> rollup: { - deleteJob, TContext = Context>(params?: RequestParams.RollupDeleteJob, options?: TransportRequestOptions): TransportRequestPromise> - getJobs, TContext = Context>(params?: RequestParams.RollupGetJobs, options?: TransportRequestOptions): TransportRequestPromise> - getRollupCaps, TContext = Context>(params?: RequestParams.RollupGetRollupCaps, options?: TransportRequestOptions): TransportRequestPromise> - getRollupIndexCaps, TContext = Context>(params?: RequestParams.RollupGetRollupIndexCaps, options?: TransportRequestOptions): TransportRequestPromise> - putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.RollupPutJob, options?: TransportRequestOptions): TransportRequestPromise> - rollupSearch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.RollupRollupSearch, options?: TransportRequestOptions): TransportRequestPromise> - startJob, TContext = Context>(params?: RequestParams.RollupStartJob, options?: TransportRequestOptions): TransportRequestPromise> - stopJob, TContext = Context>(params?: RequestParams.RollupStopJob, options?: TransportRequestOptions): TransportRequestPromise> + deleteJob, TContext = Context>(params?: Req.RollupDeleteJobRequest, options?: TransportRequestOptions): TransportRequestPromise> + getJobs, TContext = Context>(params?: Req.RollupGetJobsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getRollupCaps, TContext = Context>(params?: Req.RollupGetRollupCapsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getRollupIndexCaps, TContext = Context>(params?: Req.RollupGetRollupIndexCapsRequest, options?: TransportRequestOptions): TransportRequestPromise> + putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.RollupPutJobRequest, options?: TransportRequestOptions): TransportRequestPromise> + rollupSearch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.RollupRollupSearchRequest, options?: TransportRequestOptions): TransportRequestPromise> + startJob, TContext = Context>(params?: Req.RollupStartJobRequest, options?: TransportRequestOptions): TransportRequestPromise> + stopJob, TContext = Context>(params?: Req.RollupStopJobRequest, options?: TransportRequestOptions): TransportRequestPromise> } - scriptsPainlessExecute, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ScriptsPainlessExecute, options?: TransportRequestOptions): TransportRequestPromise> - scroll, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Scroll, options?: TransportRequestOptions): TransportRequestPromise> - search, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Search, options?: TransportRequestOptions): TransportRequestPromise> - searchShards, TContext = Context>(params?: RequestParams.SearchShards, options?: TransportRequestOptions): TransportRequestPromise> - searchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SearchTemplate, options?: TransportRequestOptions): TransportRequestPromise> + scriptsPainlessExecute, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ScriptsPainlessExecuteRequest, options?: TransportRequestOptions): TransportRequestPromise> + scroll, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ScrollRequest, options?: TransportRequestOptions): TransportRequestPromise> + search, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SearchRequest, options?: TransportRequestOptions): TransportRequestPromise> + searchShards, TContext = Context>(params?: Req.SearchShardsRequest, options?: TransportRequestOptions): TransportRequestPromise> + searchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SearchTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> searchableSnapshots: { - clearCache, TContext = Context>(params?: RequestParams.SearchableSnapshotsClearCache, options?: TransportRequestOptions): TransportRequestPromise> - mount, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SearchableSnapshotsMount, options?: TransportRequestOptions): TransportRequestPromise> - repositoryStats, TContext = Context>(params?: RequestParams.SearchableSnapshotsRepositoryStats, options?: TransportRequestOptions): TransportRequestPromise> - stats, TContext = Context>(params?: RequestParams.SearchableSnapshotsStats, options?: TransportRequestOptions): TransportRequestPromise> + clearCache, TContext = Context>(params?: Req.SearchableSnapshotsClearCacheRequest, options?: TransportRequestOptions): TransportRequestPromise> + mount, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SearchableSnapshotsMountRequest, options?: TransportRequestOptions): TransportRequestPromise> + repositoryStats, TContext = Context>(params?: Req.SearchableSnapshotsRepositoryStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> + stats, TContext = Context>(params?: Req.SearchableSnapshotsStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> } security: { - authenticate, TContext = Context>(params?: RequestParams.SecurityAuthenticate, options?: TransportRequestOptions): TransportRequestPromise> - changePassword, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityChangePassword, options?: TransportRequestOptions): TransportRequestPromise> - clearCachedPrivileges, TContext = Context>(params?: RequestParams.SecurityClearCachedPrivileges, options?: TransportRequestOptions): TransportRequestPromise> - clearCachedRealms, TContext = Context>(params?: RequestParams.SecurityClearCachedRealms, options?: TransportRequestOptions): TransportRequestPromise> - clearCachedRoles, TContext = Context>(params?: RequestParams.SecurityClearCachedRoles, options?: TransportRequestOptions): TransportRequestPromise> - createApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityCreateApiKey, options?: TransportRequestOptions): TransportRequestPromise> - deletePrivileges, TContext = Context>(params?: RequestParams.SecurityDeletePrivileges, options?: TransportRequestOptions): TransportRequestPromise> - deleteRole, TContext = Context>(params?: RequestParams.SecurityDeleteRole, options?: TransportRequestOptions): TransportRequestPromise> - deleteRoleMapping, TContext = Context>(params?: RequestParams.SecurityDeleteRoleMapping, options?: TransportRequestOptions): TransportRequestPromise> - deleteUser, TContext = Context>(params?: RequestParams.SecurityDeleteUser, options?: TransportRequestOptions): TransportRequestPromise> - disableUser, TContext = Context>(params?: RequestParams.SecurityDisableUser, options?: TransportRequestOptions): TransportRequestPromise> - enableUser, TContext = Context>(params?: RequestParams.SecurityEnableUser, options?: TransportRequestOptions): TransportRequestPromise> - getApiKey, TContext = Context>(params?: RequestParams.SecurityGetApiKey, options?: TransportRequestOptions): TransportRequestPromise> - getBuiltinPrivileges, TContext = Context>(params?: RequestParams.SecurityGetBuiltinPrivileges, options?: TransportRequestOptions): TransportRequestPromise> - getPrivileges, TContext = Context>(params?: RequestParams.SecurityGetPrivileges, options?: TransportRequestOptions): TransportRequestPromise> - getRole, TContext = Context>(params?: RequestParams.SecurityGetRole, options?: TransportRequestOptions): TransportRequestPromise> - getRoleMapping, TContext = Context>(params?: RequestParams.SecurityGetRoleMapping, options?: TransportRequestOptions): TransportRequestPromise> - getToken, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityGetToken, options?: TransportRequestOptions): TransportRequestPromise> - getUser, TContext = Context>(params?: RequestParams.SecurityGetUser, options?: TransportRequestOptions): TransportRequestPromise> - getUserPrivileges, TContext = Context>(params?: RequestParams.SecurityGetUserPrivileges, options?: TransportRequestOptions): TransportRequestPromise> - hasPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityHasPrivileges, options?: TransportRequestOptions): TransportRequestPromise> - invalidateApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityInvalidateApiKey, options?: TransportRequestOptions): TransportRequestPromise> - invalidateToken, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityInvalidateToken, options?: TransportRequestOptions): TransportRequestPromise> - putPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityPutPrivileges, options?: TransportRequestOptions): TransportRequestPromise> - putRole, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityPutRole, options?: TransportRequestOptions): TransportRequestPromise> - putRoleMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityPutRoleMapping, options?: TransportRequestOptions): TransportRequestPromise> - putUser, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityPutUser, options?: TransportRequestOptions): TransportRequestPromise> + authenticate, TContext = Context>(params?: Req.SecurityAuthenticateRequest, options?: TransportRequestOptions): TransportRequestPromise> + changePassword, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityChangePasswordRequest, options?: TransportRequestOptions): TransportRequestPromise> + clearCachedPrivileges, TContext = Context>(params?: Req.SecurityClearCachedPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> + clearCachedRealms, TContext = Context>(params?: Req.SecurityClearCachedRealmsRequest, options?: TransportRequestOptions): TransportRequestPromise> + clearCachedRoles, TContext = Context>(params?: Req.SecurityClearCachedRolesRequest, options?: TransportRequestOptions): TransportRequestPromise> + createApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityCreateApiKeyRequest, options?: TransportRequestOptions): TransportRequestPromise> + deletePrivileges, TContext = Context>(params?: Req.SecurityDeletePrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteRole, TContext = Context>(params?: Req.SecurityDeleteRoleRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteRoleMapping, TContext = Context>(params?: Req.SecurityDeleteRoleMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteUser, TContext = Context>(params?: Req.SecurityDeleteUserRequest, options?: TransportRequestOptions): TransportRequestPromise> + disableUser, TContext = Context>(params?: Req.SecurityDisableUserRequest, options?: TransportRequestOptions): TransportRequestPromise> + enableUser, TContext = Context>(params?: Req.SecurityEnableUserRequest, options?: TransportRequestOptions): TransportRequestPromise> + getApiKey, TContext = Context>(params?: Req.SecurityGetApiKeyRequest, options?: TransportRequestOptions): TransportRequestPromise> + getBuiltinPrivileges, TContext = Context>(params?: Req.SecurityGetBuiltinPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> + getPrivileges, TContext = Context>(params?: Req.SecurityGetPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> + getRole, TContext = Context>(params?: Req.SecurityGetRoleRequest, options?: TransportRequestOptions): TransportRequestPromise> + getRoleMapping, TContext = Context>(params?: Req.SecurityGetRoleMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> + getToken, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityGetTokenRequest, options?: TransportRequestOptions): TransportRequestPromise> + getUser, TContext = Context>(params?: Req.SecurityGetUserRequest, options?: TransportRequestOptions): TransportRequestPromise> + getUserPrivileges, TContext = Context>(params?: Req.SecurityGetUserPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> + hasPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityHasPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> + invalidateApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityInvalidateApiKeyRequest, options?: TransportRequestOptions): TransportRequestPromise> + invalidateToken, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityInvalidateTokenRequest, options?: TransportRequestOptions): TransportRequestPromise> + putPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityPutPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> + putRole, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityPutRoleRequest, options?: TransportRequestOptions): TransportRequestPromise> + putRoleMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityPutRoleMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> + putUser, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityPutUserRequest, options?: TransportRequestOptions): TransportRequestPromise> } slm: { - deleteLifecycle, TContext = Context>(params?: RequestParams.SlmDeleteLifecycle, options?: TransportRequestOptions): TransportRequestPromise> - executeLifecycle, TContext = Context>(params?: RequestParams.SlmExecuteLifecycle, options?: TransportRequestOptions): TransportRequestPromise> - executeRetention, TContext = Context>(params?: RequestParams.SlmExecuteRetention, options?: TransportRequestOptions): TransportRequestPromise> - getLifecycle, TContext = Context>(params?: RequestParams.SlmGetLifecycle, options?: TransportRequestOptions): TransportRequestPromise> - getStats, TContext = Context>(params?: RequestParams.SlmGetStats, options?: TransportRequestOptions): TransportRequestPromise> - getStatus, TContext = Context>(params?: RequestParams.SlmGetStatus, options?: TransportRequestOptions): TransportRequestPromise> - putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SlmPutLifecycle, options?: TransportRequestOptions): TransportRequestPromise> - start, TContext = Context>(params?: RequestParams.SlmStart, options?: TransportRequestOptions): TransportRequestPromise> - stop, TContext = Context>(params?: RequestParams.SlmStop, options?: TransportRequestOptions): TransportRequestPromise> + deleteLifecycle, TContext = Context>(params?: Req.SlmDeleteLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> + executeLifecycle, TContext = Context>(params?: Req.SlmExecuteLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> + executeRetention, TContext = Context>(params?: Req.SlmExecuteRetentionRequest, options?: TransportRequestOptions): TransportRequestPromise> + getLifecycle, TContext = Context>(params?: Req.SlmGetLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> + getStats, TContext = Context>(params?: Req.SlmGetStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> + getStatus, TContext = Context>(params?: Req.SlmGetStatusRequest, options?: TransportRequestOptions): TransportRequestPromise> + putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SlmPutLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> + start, TContext = Context>(params?: Req.SlmStartRequest, options?: TransportRequestOptions): TransportRequestPromise> + stop, TContext = Context>(params?: Req.SlmStopRequest, options?: TransportRequestOptions): TransportRequestPromise> } snapshot: { - cleanupRepository, TContext = Context>(params?: RequestParams.SnapshotCleanupRepository, options?: TransportRequestOptions): TransportRequestPromise> - create, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SnapshotCreate, options?: TransportRequestOptions): TransportRequestPromise> - createRepository, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SnapshotCreateRepository, options?: TransportRequestOptions): TransportRequestPromise> - delete, TContext = Context>(params?: RequestParams.SnapshotDelete, options?: TransportRequestOptions): TransportRequestPromise> - deleteRepository, TContext = Context>(params?: RequestParams.SnapshotDeleteRepository, options?: TransportRequestOptions): TransportRequestPromise> - get, TContext = Context>(params?: RequestParams.SnapshotGet, options?: TransportRequestOptions): TransportRequestPromise> - getRepository, TContext = Context>(params?: RequestParams.SnapshotGetRepository, options?: TransportRequestOptions): TransportRequestPromise> - restore, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SnapshotRestore, options?: TransportRequestOptions): TransportRequestPromise> - status, TContext = Context>(params?: RequestParams.SnapshotStatus, options?: TransportRequestOptions): TransportRequestPromise> - verifyRepository, TContext = Context>(params?: RequestParams.SnapshotVerifyRepository, options?: TransportRequestOptions): TransportRequestPromise> + cleanupRepository, TContext = Context>(params?: Req.SnapshotCleanupRepositoryRequest, options?: TransportRequestOptions): TransportRequestPromise> + create, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SnapshotCreateRequest, options?: TransportRequestOptions): TransportRequestPromise> + createRepository, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SnapshotCreateRepositoryRequest, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params?: Req.SnapshotDeleteRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteRepository, TContext = Context>(params?: Req.SnapshotDeleteRepositoryRequest, options?: TransportRequestOptions): TransportRequestPromise> + get, TContext = Context>(params?: Req.SnapshotGetRequest, options?: TransportRequestOptions): TransportRequestPromise> + getRepository, TContext = Context>(params?: Req.SnapshotGetRepositoryRequest, options?: TransportRequestOptions): TransportRequestPromise> + restore, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SnapshotRestoreRequest, options?: TransportRequestOptions): TransportRequestPromise> + status, TContext = Context>(params?: Req.SnapshotStatusRequest, options?: TransportRequestOptions): TransportRequestPromise> + verifyRepository, TContext = Context>(params?: Req.SnapshotVerifyRepositoryRequest, options?: TransportRequestOptions): TransportRequestPromise> } sql: { - clearCursor, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SqlClearCursor, options?: TransportRequestOptions): TransportRequestPromise> - query, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SqlQuery, options?: TransportRequestOptions): TransportRequestPromise> - translate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SqlTranslate, options?: TransportRequestOptions): TransportRequestPromise> + clearCursor, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SqlClearCursorRequest, options?: TransportRequestOptions): TransportRequestPromise> + query, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SqlQueryRequest, options?: TransportRequestOptions): TransportRequestPromise> + translate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SqlTranslateRequest, options?: TransportRequestOptions): TransportRequestPromise> } ssl: { - certificates, TContext = Context>(params?: RequestParams.SslCertificates, options?: TransportRequestOptions): TransportRequestPromise> + certificates, TContext = Context>(params?: Req.SslCertificatesRequest, options?: TransportRequestOptions): TransportRequestPromise> } tasks: { - cancel, TContext = Context>(params?: RequestParams.TasksCancel, options?: TransportRequestOptions): TransportRequestPromise> - get, TContext = Context>(params?: RequestParams.TasksGet, options?: TransportRequestOptions): TransportRequestPromise> - list, TContext = Context>(params?: RequestParams.TasksList, options?: TransportRequestOptions): TransportRequestPromise> + cancel, TContext = Context>(params?: Req.TasksCancelRequest, options?: TransportRequestOptions): TransportRequestPromise> + get, TContext = Context>(params?: Req.TasksGetRequest, options?: TransportRequestOptions): TransportRequestPromise> + list, TContext = Context>(params?: Req.TasksListRequest, options?: TransportRequestOptions): TransportRequestPromise> } - termvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Termvectors, options?: TransportRequestOptions): TransportRequestPromise> + termvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.TermvectorsRequest, options?: TransportRequestOptions): TransportRequestPromise> transform: { - deleteTransform, TContext = Context>(params?: RequestParams.TransformDeleteTransform, options?: TransportRequestOptions): TransportRequestPromise> - getTransform, TContext = Context>(params?: RequestParams.TransformGetTransform, options?: TransportRequestOptions): TransportRequestPromise> - getTransformStats, TContext = Context>(params?: RequestParams.TransformGetTransformStats, options?: TransportRequestOptions): TransportRequestPromise> - previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.TransformPreviewTransform, options?: TransportRequestOptions): TransportRequestPromise> - putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.TransformPutTransform, options?: TransportRequestOptions): TransportRequestPromise> - startTransform, TContext = Context>(params?: RequestParams.TransformStartTransform, options?: TransportRequestOptions): TransportRequestPromise> - stopTransform, TContext = Context>(params?: RequestParams.TransformStopTransform, options?: TransportRequestOptions): TransportRequestPromise> - updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.TransformUpdateTransform, options?: TransportRequestOptions): TransportRequestPromise> + deleteTransform, TContext = Context>(params?: Req.TransformDeleteTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> + getTransform, TContext = Context>(params?: Req.TransformGetTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> + getTransformStats, TContext = Context>(params?: Req.TransformGetTransformStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> + previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.TransformPreviewTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> + putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.TransformPutTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> + startTransform, TContext = Context>(params?: Req.TransformStartTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> + stopTransform, TContext = Context>(params?: Req.TransformStopTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> + updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.TransformUpdateTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> } - update, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Update, options?: TransportRequestOptions): TransportRequestPromise> - updateByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.UpdateByQuery, options?: TransportRequestOptions): TransportRequestPromise> - updateByQueryRethrottle, TContext = Context>(params?: RequestParams.UpdateByQueryRethrottle, options?: TransportRequestOptions): TransportRequestPromise> + update, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.UpdateRequest, options?: TransportRequestOptions): TransportRequestPromise> + updateByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.UpdateByQueryRequest, options?: TransportRequestOptions): TransportRequestPromise> + updateByQueryRethrottle, TContext = Context>(params?: Req.UpdateByQueryRethrottleRequest, options?: TransportRequestOptions): TransportRequestPromise> watcher: { - ackWatch, TContext = Context>(params?: RequestParams.WatcherAckWatch, options?: TransportRequestOptions): TransportRequestPromise> - activateWatch, TContext = Context>(params?: RequestParams.WatcherActivateWatch, options?: TransportRequestOptions): TransportRequestPromise> - deactivateWatch, TContext = Context>(params?: RequestParams.WatcherDeactivateWatch, options?: TransportRequestOptions): TransportRequestPromise> - deleteWatch, TContext = Context>(params?: RequestParams.WatcherDeleteWatch, options?: TransportRequestOptions): TransportRequestPromise> - executeWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.WatcherExecuteWatch, options?: TransportRequestOptions): TransportRequestPromise> - getWatch, TContext = Context>(params?: RequestParams.WatcherGetWatch, options?: TransportRequestOptions): TransportRequestPromise> - putWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.WatcherPutWatch, options?: TransportRequestOptions): TransportRequestPromise> - start, TContext = Context>(params?: RequestParams.WatcherStart, options?: TransportRequestOptions): TransportRequestPromise> - stats, TContext = Context>(params?: RequestParams.WatcherStats, options?: TransportRequestOptions): TransportRequestPromise> - stop, TContext = Context>(params?: RequestParams.WatcherStop, options?: TransportRequestOptions): TransportRequestPromise> + ackWatch, TContext = Context>(params?: Req.WatcherAckWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> + activateWatch, TContext = Context>(params?: Req.WatcherActivateWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> + deactivateWatch, TContext = Context>(params?: Req.WatcherDeactivateWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> + deleteWatch, TContext = Context>(params?: Req.WatcherDeleteWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> + executeWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.WatcherExecuteWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> + getWatch, TContext = Context>(params?: Req.WatcherGetWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> + putWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.WatcherPutWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> + start, TContext = Context>(params?: Req.WatcherStartRequest, options?: TransportRequestOptions): TransportRequestPromise> + stats, TContext = Context>(params?: Req.WatcherStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> + stop, TContext = Context>(params?: Req.WatcherStopRequest, options?: TransportRequestOptions): TransportRequestPromise> } xpack: { - info, TContext = Context>(params?: RequestParams.XpackInfo, options?: TransportRequestOptions): TransportRequestPromise> - usage, TContext = Context>(params?: RequestParams.XpackUsage, options?: TransportRequestOptions): TransportRequestPromise> + info, TContext = Context>(params?: Req.XpackInfoRequest, options?: TransportRequestOptions): TransportRequestPromise> + usage, TContext = Context>(params?: Req.XpackUsageRequest, options?: TransportRequestOptions): TransportRequestPromise> } /* /GENERATED */ } diff --git a/docs/typescript.asciidoc b/docs/typescript.asciidoc index 2400b684e..775a0c31d 100644 --- a/docs/typescript.asciidoc +++ b/docs/typescript.asciidoc @@ -147,3 +147,63 @@ async function run () { run().catch(console.log) ---- + +=== Response body definitions + +Currently, there is no support for all the response definitions, the client offers only a small subset to help the users with the most commonly used APIs. + +* `Index` +* `Create` +* `Update` +* `Delete` +* `Search` +* `MSearch` +* `Bulk` + +_At the moment, we are not planning on expanding more the types offered out of the box since we are studying a more structured approach that will allow us to generate all the response type definitions automatically._ + +You can access the response type definitions via the `ResponseParams`. +Every API that contains a `_source` object accepts a https://www.typescriptlang.org/docs/handbook/generics.html[generics] which represents the type of the `_source` object, if you don't configure anything, it will default to `any`. + +The example you saw above can now be rewritten as follows: +[source,ts] +---- +import { + Client, + RequestParams, + ResponseParams, + ApiResponse, +} from '@elastic/elasticsearch' + +const client = new Client({ node: 'http://localhost:9200' }) + +// Define the type of the body for the Search request +interface SearchBody { + query: { + match: { foo: string } + } +} + +// Define the interface of the source object +interface Source { + foo: string +} + +async function run (): Promise { + // Define the search parameters + const searchParams: RequestParams.Search = { + index: 'test', + body: { + query: { + match: { foo: 'bar' } + } + } + } + + // Craft the final type definition + const response: ApiResponse> = await client.search(searchParams) + console.log(response.body) +} + +run().catch(console.log) +---- diff --git a/index.d.ts b/index.d.ts index 14161b26c..e0af0615d 100644 --- a/index.d.ts +++ b/index.d.ts @@ -32,7 +32,8 @@ import { } from './lib/pool'; import Serializer from './lib/Serializer'; import Helpers from './lib/Helpers'; -import * as RequestParams from './api/requestParams'; +import * as Req from './api/RequestTypes'; +import * as Res from './api/ResponseTypes'; import * as errors from './lib/errors'; declare type callbackFn = (err: ApiError, result: ApiResponse) => void; @@ -124,2514 +125,2514 @@ declare class Client { off(event: string | symbol, listener: (...args: any[]) => void): this; /* GENERATED */ async_search: { - delete, TContext = Context>(params?: RequestParams.AsyncSearchDelete, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params?: Req.AsyncSearchDeleteRequest, options?: TransportRequestOptions): TransportRequestPromise> delete, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params: RequestParams.AsyncSearchDelete, callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params: RequestParams.AsyncSearchDelete, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params?: RequestParams.AsyncSearchGet, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params: Req.AsyncSearchDeleteRequest, callback: callbackFn): TransportRequestCallback + delete, TContext = Context>(params: Req.AsyncSearchDeleteRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get, TContext = Context>(params?: Req.AsyncSearchGetRequest, options?: TransportRequestOptions): TransportRequestPromise> get, TContext = Context>(callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.AsyncSearchGet, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.AsyncSearchGet, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - submit, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.AsyncSearchSubmit, options?: TransportRequestOptions): TransportRequestPromise> + get, TContext = Context>(params: Req.AsyncSearchGetRequest, callback: callbackFn): TransportRequestCallback + get, TContext = Context>(params: Req.AsyncSearchGetRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + submit, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.AsyncSearchSubmitRequest, options?: TransportRequestOptions): TransportRequestPromise> submit, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - submit, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.AsyncSearchSubmit, callback: callbackFn): TransportRequestCallback - submit, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.AsyncSearchSubmit, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + submit, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.AsyncSearchSubmitRequest, callback: callbackFn): TransportRequestCallback + submit, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.AsyncSearchSubmitRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } asyncSearch: { - delete, TContext = Context>(params?: RequestParams.AsyncSearchDelete, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params?: Req.AsyncSearchDeleteRequest, options?: TransportRequestOptions): TransportRequestPromise> delete, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params: RequestParams.AsyncSearchDelete, callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params: RequestParams.AsyncSearchDelete, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params?: RequestParams.AsyncSearchGet, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params: Req.AsyncSearchDeleteRequest, callback: callbackFn): TransportRequestCallback + delete, TContext = Context>(params: Req.AsyncSearchDeleteRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get, TContext = Context>(params?: Req.AsyncSearchGetRequest, options?: TransportRequestOptions): TransportRequestPromise> get, TContext = Context>(callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.AsyncSearchGet, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.AsyncSearchGet, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - submit, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.AsyncSearchSubmit, options?: TransportRequestOptions): TransportRequestPromise> + get, TContext = Context>(params: Req.AsyncSearchGetRequest, callback: callbackFn): TransportRequestCallback + get, TContext = Context>(params: Req.AsyncSearchGetRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + submit, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.AsyncSearchSubmitRequest, options?: TransportRequestOptions): TransportRequestPromise> submit, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - submit, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.AsyncSearchSubmit, callback: callbackFn): TransportRequestCallback - submit, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.AsyncSearchSubmit, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + submit, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.AsyncSearchSubmitRequest, callback: callbackFn): TransportRequestCallback + submit, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.AsyncSearchSubmitRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } autoscaling: { - delete_autoscaling_policy, TContext = Context>(params?: RequestParams.AutoscalingDeleteAutoscalingPolicy, options?: TransportRequestOptions): TransportRequestPromise> + delete_autoscaling_policy, TContext = Context>(params?: Req.AutoscalingDeleteAutoscalingPolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_autoscaling_policy, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_autoscaling_policy, TContext = Context>(params: RequestParams.AutoscalingDeleteAutoscalingPolicy, callback: callbackFn): TransportRequestCallback - delete_autoscaling_policy, TContext = Context>(params: RequestParams.AutoscalingDeleteAutoscalingPolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteAutoscalingPolicy, TContext = Context>(params?: RequestParams.AutoscalingDeleteAutoscalingPolicy, options?: TransportRequestOptions): TransportRequestPromise> + delete_autoscaling_policy, TContext = Context>(params: Req.AutoscalingDeleteAutoscalingPolicyRequest, callback: callbackFn): TransportRequestCallback + delete_autoscaling_policy, TContext = Context>(params: Req.AutoscalingDeleteAutoscalingPolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteAutoscalingPolicy, TContext = Context>(params?: Req.AutoscalingDeleteAutoscalingPolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteAutoscalingPolicy, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteAutoscalingPolicy, TContext = Context>(params: RequestParams.AutoscalingDeleteAutoscalingPolicy, callback: callbackFn): TransportRequestCallback - deleteAutoscalingPolicy, TContext = Context>(params: RequestParams.AutoscalingDeleteAutoscalingPolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_autoscaling_decision, TContext = Context>(params?: RequestParams.AutoscalingGetAutoscalingDecision, options?: TransportRequestOptions): TransportRequestPromise> + deleteAutoscalingPolicy, TContext = Context>(params: Req.AutoscalingDeleteAutoscalingPolicyRequest, callback: callbackFn): TransportRequestCallback + deleteAutoscalingPolicy, TContext = Context>(params: Req.AutoscalingDeleteAutoscalingPolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_autoscaling_decision, TContext = Context>(params?: Req.AutoscalingGetAutoscalingDecisionRequest, options?: TransportRequestOptions): TransportRequestPromise> get_autoscaling_decision, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_autoscaling_decision, TContext = Context>(params: RequestParams.AutoscalingGetAutoscalingDecision, callback: callbackFn): TransportRequestCallback - get_autoscaling_decision, TContext = Context>(params: RequestParams.AutoscalingGetAutoscalingDecision, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getAutoscalingDecision, TContext = Context>(params?: RequestParams.AutoscalingGetAutoscalingDecision, options?: TransportRequestOptions): TransportRequestPromise> + get_autoscaling_decision, TContext = Context>(params: Req.AutoscalingGetAutoscalingDecisionRequest, callback: callbackFn): TransportRequestCallback + get_autoscaling_decision, TContext = Context>(params: Req.AutoscalingGetAutoscalingDecisionRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getAutoscalingDecision, TContext = Context>(params?: Req.AutoscalingGetAutoscalingDecisionRequest, options?: TransportRequestOptions): TransportRequestPromise> getAutoscalingDecision, TContext = Context>(callback: callbackFn): TransportRequestCallback - getAutoscalingDecision, TContext = Context>(params: RequestParams.AutoscalingGetAutoscalingDecision, callback: callbackFn): TransportRequestCallback - getAutoscalingDecision, TContext = Context>(params: RequestParams.AutoscalingGetAutoscalingDecision, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_autoscaling_policy, TContext = Context>(params?: RequestParams.AutoscalingGetAutoscalingPolicy, options?: TransportRequestOptions): TransportRequestPromise> + getAutoscalingDecision, TContext = Context>(params: Req.AutoscalingGetAutoscalingDecisionRequest, callback: callbackFn): TransportRequestCallback + getAutoscalingDecision, TContext = Context>(params: Req.AutoscalingGetAutoscalingDecisionRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_autoscaling_policy, TContext = Context>(params?: Req.AutoscalingGetAutoscalingPolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> get_autoscaling_policy, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_autoscaling_policy, TContext = Context>(params: RequestParams.AutoscalingGetAutoscalingPolicy, callback: callbackFn): TransportRequestCallback - get_autoscaling_policy, TContext = Context>(params: RequestParams.AutoscalingGetAutoscalingPolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getAutoscalingPolicy, TContext = Context>(params?: RequestParams.AutoscalingGetAutoscalingPolicy, options?: TransportRequestOptions): TransportRequestPromise> + get_autoscaling_policy, TContext = Context>(params: Req.AutoscalingGetAutoscalingPolicyRequest, callback: callbackFn): TransportRequestCallback + get_autoscaling_policy, TContext = Context>(params: Req.AutoscalingGetAutoscalingPolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getAutoscalingPolicy, TContext = Context>(params?: Req.AutoscalingGetAutoscalingPolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> getAutoscalingPolicy, TContext = Context>(callback: callbackFn): TransportRequestCallback - getAutoscalingPolicy, TContext = Context>(params: RequestParams.AutoscalingGetAutoscalingPolicy, callback: callbackFn): TransportRequestCallback - getAutoscalingPolicy, TContext = Context>(params: RequestParams.AutoscalingGetAutoscalingPolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_autoscaling_policy, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.AutoscalingPutAutoscalingPolicy, options?: TransportRequestOptions): TransportRequestPromise> + getAutoscalingPolicy, TContext = Context>(params: Req.AutoscalingGetAutoscalingPolicyRequest, callback: callbackFn): TransportRequestCallback + getAutoscalingPolicy, TContext = Context>(params: Req.AutoscalingGetAutoscalingPolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_autoscaling_policy, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.AutoscalingPutAutoscalingPolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> put_autoscaling_policy, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_autoscaling_policy, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.AutoscalingPutAutoscalingPolicy, callback: callbackFn): TransportRequestCallback - put_autoscaling_policy, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.AutoscalingPutAutoscalingPolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putAutoscalingPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.AutoscalingPutAutoscalingPolicy, options?: TransportRequestOptions): TransportRequestPromise> + put_autoscaling_policy, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.AutoscalingPutAutoscalingPolicyRequest, callback: callbackFn): TransportRequestCallback + put_autoscaling_policy, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.AutoscalingPutAutoscalingPolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putAutoscalingPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.AutoscalingPutAutoscalingPolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> putAutoscalingPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putAutoscalingPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.AutoscalingPutAutoscalingPolicy, callback: callbackFn): TransportRequestCallback - putAutoscalingPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.AutoscalingPutAutoscalingPolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putAutoscalingPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.AutoscalingPutAutoscalingPolicyRequest, callback: callbackFn): TransportRequestCallback + putAutoscalingPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.AutoscalingPutAutoscalingPolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } - bulk, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: RequestParams.Bulk, options?: TransportRequestOptions): TransportRequestPromise> - bulk, TRequestBody extends RequestNDBody = Record[], TContext = Context>(callback: callbackFn): TransportRequestCallback - bulk, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: RequestParams.Bulk, callback: callbackFn): TransportRequestCallback - bulk, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: RequestParams.Bulk, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + bulk[], TContext = Context>(params?: Req.BulkRequest, options?: TransportRequestOptions): TransportRequestPromise> + bulk[], TContext = Context>(callback: callbackFn): TransportRequestCallback + bulk[], TContext = Context>(params: Req.BulkRequest, callback: callbackFn): TransportRequestCallback + bulk[], TContext = Context>(params: Req.BulkRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback cat: { - aliases, TContext = Context>(params?: RequestParams.CatAliases, options?: TransportRequestOptions): TransportRequestPromise> + aliases, TContext = Context>(params?: Req.CatAliasesRequest, options?: TransportRequestOptions): TransportRequestPromise> aliases, TContext = Context>(callback: callbackFn): TransportRequestCallback - aliases, TContext = Context>(params: RequestParams.CatAliases, callback: callbackFn): TransportRequestCallback - aliases, TContext = Context>(params: RequestParams.CatAliases, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - allocation, TContext = Context>(params?: RequestParams.CatAllocation, options?: TransportRequestOptions): TransportRequestPromise> + aliases, TContext = Context>(params: Req.CatAliasesRequest, callback: callbackFn): TransportRequestCallback + aliases, TContext = Context>(params: Req.CatAliasesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + allocation, TContext = Context>(params?: Req.CatAllocationRequest, options?: TransportRequestOptions): TransportRequestPromise> allocation, TContext = Context>(callback: callbackFn): TransportRequestCallback - allocation, TContext = Context>(params: RequestParams.CatAllocation, callback: callbackFn): TransportRequestCallback - allocation, TContext = Context>(params: RequestParams.CatAllocation, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - count, TContext = Context>(params?: RequestParams.CatCount, options?: TransportRequestOptions): TransportRequestPromise> + allocation, TContext = Context>(params: Req.CatAllocationRequest, callback: callbackFn): TransportRequestCallback + allocation, TContext = Context>(params: Req.CatAllocationRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + count, TContext = Context>(params?: Req.CatCountRequest, options?: TransportRequestOptions): TransportRequestPromise> count, TContext = Context>(callback: callbackFn): TransportRequestCallback - count, TContext = Context>(params: RequestParams.CatCount, callback: callbackFn): TransportRequestCallback - count, TContext = Context>(params: RequestParams.CatCount, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - fielddata, TContext = Context>(params?: RequestParams.CatFielddata, options?: TransportRequestOptions): TransportRequestPromise> + count, TContext = Context>(params: Req.CatCountRequest, callback: callbackFn): TransportRequestCallback + count, TContext = Context>(params: Req.CatCountRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + fielddata, TContext = Context>(params?: Req.CatFielddataRequest, options?: TransportRequestOptions): TransportRequestPromise> fielddata, TContext = Context>(callback: callbackFn): TransportRequestCallback - fielddata, TContext = Context>(params: RequestParams.CatFielddata, callback: callbackFn): TransportRequestCallback - fielddata, TContext = Context>(params: RequestParams.CatFielddata, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - health, TContext = Context>(params?: RequestParams.CatHealth, options?: TransportRequestOptions): TransportRequestPromise> + fielddata, TContext = Context>(params: Req.CatFielddataRequest, callback: callbackFn): TransportRequestCallback + fielddata, TContext = Context>(params: Req.CatFielddataRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + health, TContext = Context>(params?: Req.CatHealthRequest, options?: TransportRequestOptions): TransportRequestPromise> health, TContext = Context>(callback: callbackFn): TransportRequestCallback - health, TContext = Context>(params: RequestParams.CatHealth, callback: callbackFn): TransportRequestCallback - health, TContext = Context>(params: RequestParams.CatHealth, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - help, TContext = Context>(params?: RequestParams.CatHelp, options?: TransportRequestOptions): TransportRequestPromise> + health, TContext = Context>(params: Req.CatHealthRequest, callback: callbackFn): TransportRequestCallback + health, TContext = Context>(params: Req.CatHealthRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + help, TContext = Context>(params?: Req.CatHelpRequest, options?: TransportRequestOptions): TransportRequestPromise> help, TContext = Context>(callback: callbackFn): TransportRequestCallback - help, TContext = Context>(params: RequestParams.CatHelp, callback: callbackFn): TransportRequestCallback - help, TContext = Context>(params: RequestParams.CatHelp, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - indices, TContext = Context>(params?: RequestParams.CatIndices, options?: TransportRequestOptions): TransportRequestPromise> + help, TContext = Context>(params: Req.CatHelpRequest, callback: callbackFn): TransportRequestCallback + help, TContext = Context>(params: Req.CatHelpRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + indices, TContext = Context>(params?: Req.CatIndicesRequest, options?: TransportRequestOptions): TransportRequestPromise> indices, TContext = Context>(callback: callbackFn): TransportRequestCallback - indices, TContext = Context>(params: RequestParams.CatIndices, callback: callbackFn): TransportRequestCallback - indices, TContext = Context>(params: RequestParams.CatIndices, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - master, TContext = Context>(params?: RequestParams.CatMaster, options?: TransportRequestOptions): TransportRequestPromise> + indices, TContext = Context>(params: Req.CatIndicesRequest, callback: callbackFn): TransportRequestCallback + indices, TContext = Context>(params: Req.CatIndicesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + master, TContext = Context>(params?: Req.CatMasterRequest, options?: TransportRequestOptions): TransportRequestPromise> master, TContext = Context>(callback: callbackFn): TransportRequestCallback - master, TContext = Context>(params: RequestParams.CatMaster, callback: callbackFn): TransportRequestCallback - master, TContext = Context>(params: RequestParams.CatMaster, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - ml_data_frame_analytics, TContext = Context>(params?: RequestParams.CatMlDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + master, TContext = Context>(params: Req.CatMasterRequest, callback: callbackFn): TransportRequestCallback + master, TContext = Context>(params: Req.CatMasterRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + ml_data_frame_analytics, TContext = Context>(params?: Req.CatMlDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> ml_data_frame_analytics, TContext = Context>(callback: callbackFn): TransportRequestCallback - ml_data_frame_analytics, TContext = Context>(params: RequestParams.CatMlDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - ml_data_frame_analytics, TContext = Context>(params: RequestParams.CatMlDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - mlDataFrameAnalytics, TContext = Context>(params?: RequestParams.CatMlDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + ml_data_frame_analytics, TContext = Context>(params: Req.CatMlDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + ml_data_frame_analytics, TContext = Context>(params: Req.CatMlDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + mlDataFrameAnalytics, TContext = Context>(params?: Req.CatMlDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> mlDataFrameAnalytics, TContext = Context>(callback: callbackFn): TransportRequestCallback - mlDataFrameAnalytics, TContext = Context>(params: RequestParams.CatMlDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - mlDataFrameAnalytics, TContext = Context>(params: RequestParams.CatMlDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - ml_datafeeds, TContext = Context>(params?: RequestParams.CatMlDatafeeds, options?: TransportRequestOptions): TransportRequestPromise> + mlDataFrameAnalytics, TContext = Context>(params: Req.CatMlDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + mlDataFrameAnalytics, TContext = Context>(params: Req.CatMlDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + ml_datafeeds, TContext = Context>(params?: Req.CatMlDatafeedsRequest, options?: TransportRequestOptions): TransportRequestPromise> ml_datafeeds, TContext = Context>(callback: callbackFn): TransportRequestCallback - ml_datafeeds, TContext = Context>(params: RequestParams.CatMlDatafeeds, callback: callbackFn): TransportRequestCallback - ml_datafeeds, TContext = Context>(params: RequestParams.CatMlDatafeeds, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - mlDatafeeds, TContext = Context>(params?: RequestParams.CatMlDatafeeds, options?: TransportRequestOptions): TransportRequestPromise> + ml_datafeeds, TContext = Context>(params: Req.CatMlDatafeedsRequest, callback: callbackFn): TransportRequestCallback + ml_datafeeds, TContext = Context>(params: Req.CatMlDatafeedsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + mlDatafeeds, TContext = Context>(params?: Req.CatMlDatafeedsRequest, options?: TransportRequestOptions): TransportRequestPromise> mlDatafeeds, TContext = Context>(callback: callbackFn): TransportRequestCallback - mlDatafeeds, TContext = Context>(params: RequestParams.CatMlDatafeeds, callback: callbackFn): TransportRequestCallback - mlDatafeeds, TContext = Context>(params: RequestParams.CatMlDatafeeds, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - ml_jobs, TContext = Context>(params?: RequestParams.CatMlJobs, options?: TransportRequestOptions): TransportRequestPromise> + mlDatafeeds, TContext = Context>(params: Req.CatMlDatafeedsRequest, callback: callbackFn): TransportRequestCallback + mlDatafeeds, TContext = Context>(params: Req.CatMlDatafeedsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + ml_jobs, TContext = Context>(params?: Req.CatMlJobsRequest, options?: TransportRequestOptions): TransportRequestPromise> ml_jobs, TContext = Context>(callback: callbackFn): TransportRequestCallback - ml_jobs, TContext = Context>(params: RequestParams.CatMlJobs, callback: callbackFn): TransportRequestCallback - ml_jobs, TContext = Context>(params: RequestParams.CatMlJobs, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - mlJobs, TContext = Context>(params?: RequestParams.CatMlJobs, options?: TransportRequestOptions): TransportRequestPromise> + ml_jobs, TContext = Context>(params: Req.CatMlJobsRequest, callback: callbackFn): TransportRequestCallback + ml_jobs, TContext = Context>(params: Req.CatMlJobsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + mlJobs, TContext = Context>(params?: Req.CatMlJobsRequest, options?: TransportRequestOptions): TransportRequestPromise> mlJobs, TContext = Context>(callback: callbackFn): TransportRequestCallback - mlJobs, TContext = Context>(params: RequestParams.CatMlJobs, callback: callbackFn): TransportRequestCallback - mlJobs, TContext = Context>(params: RequestParams.CatMlJobs, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - ml_trained_models, TContext = Context>(params?: RequestParams.CatMlTrainedModels, options?: TransportRequestOptions): TransportRequestPromise> + mlJobs, TContext = Context>(params: Req.CatMlJobsRequest, callback: callbackFn): TransportRequestCallback + mlJobs, TContext = Context>(params: Req.CatMlJobsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + ml_trained_models, TContext = Context>(params?: Req.CatMlTrainedModelsRequest, options?: TransportRequestOptions): TransportRequestPromise> ml_trained_models, TContext = Context>(callback: callbackFn): TransportRequestCallback - ml_trained_models, TContext = Context>(params: RequestParams.CatMlTrainedModels, callback: callbackFn): TransportRequestCallback - ml_trained_models, TContext = Context>(params: RequestParams.CatMlTrainedModels, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - mlTrainedModels, TContext = Context>(params?: RequestParams.CatMlTrainedModels, options?: TransportRequestOptions): TransportRequestPromise> + ml_trained_models, TContext = Context>(params: Req.CatMlTrainedModelsRequest, callback: callbackFn): TransportRequestCallback + ml_trained_models, TContext = Context>(params: Req.CatMlTrainedModelsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + mlTrainedModels, TContext = Context>(params?: Req.CatMlTrainedModelsRequest, options?: TransportRequestOptions): TransportRequestPromise> mlTrainedModels, TContext = Context>(callback: callbackFn): TransportRequestCallback - mlTrainedModels, TContext = Context>(params: RequestParams.CatMlTrainedModels, callback: callbackFn): TransportRequestCallback - mlTrainedModels, TContext = Context>(params: RequestParams.CatMlTrainedModels, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - nodeattrs, TContext = Context>(params?: RequestParams.CatNodeattrs, options?: TransportRequestOptions): TransportRequestPromise> + mlTrainedModels, TContext = Context>(params: Req.CatMlTrainedModelsRequest, callback: callbackFn): TransportRequestCallback + mlTrainedModels, TContext = Context>(params: Req.CatMlTrainedModelsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + nodeattrs, TContext = Context>(params?: Req.CatNodeattrsRequest, options?: TransportRequestOptions): TransportRequestPromise> nodeattrs, TContext = Context>(callback: callbackFn): TransportRequestCallback - nodeattrs, TContext = Context>(params: RequestParams.CatNodeattrs, callback: callbackFn): TransportRequestCallback - nodeattrs, TContext = Context>(params: RequestParams.CatNodeattrs, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - nodes, TContext = Context>(params?: RequestParams.CatNodes, options?: TransportRequestOptions): TransportRequestPromise> + nodeattrs, TContext = Context>(params: Req.CatNodeattrsRequest, callback: callbackFn): TransportRequestCallback + nodeattrs, TContext = Context>(params: Req.CatNodeattrsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + nodes, TContext = Context>(params?: Req.CatNodesRequest, options?: TransportRequestOptions): TransportRequestPromise> nodes, TContext = Context>(callback: callbackFn): TransportRequestCallback - nodes, TContext = Context>(params: RequestParams.CatNodes, callback: callbackFn): TransportRequestCallback - nodes, TContext = Context>(params: RequestParams.CatNodes, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - pending_tasks, TContext = Context>(params?: RequestParams.CatPendingTasks, options?: TransportRequestOptions): TransportRequestPromise> + nodes, TContext = Context>(params: Req.CatNodesRequest, callback: callbackFn): TransportRequestCallback + nodes, TContext = Context>(params: Req.CatNodesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + pending_tasks, TContext = Context>(params?: Req.CatPendingTasksRequest, options?: TransportRequestOptions): TransportRequestPromise> pending_tasks, TContext = Context>(callback: callbackFn): TransportRequestCallback - pending_tasks, TContext = Context>(params: RequestParams.CatPendingTasks, callback: callbackFn): TransportRequestCallback - pending_tasks, TContext = Context>(params: RequestParams.CatPendingTasks, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - pendingTasks, TContext = Context>(params?: RequestParams.CatPendingTasks, options?: TransportRequestOptions): TransportRequestPromise> + pending_tasks, TContext = Context>(params: Req.CatPendingTasksRequest, callback: callbackFn): TransportRequestCallback + pending_tasks, TContext = Context>(params: Req.CatPendingTasksRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + pendingTasks, TContext = Context>(params?: Req.CatPendingTasksRequest, options?: TransportRequestOptions): TransportRequestPromise> pendingTasks, TContext = Context>(callback: callbackFn): TransportRequestCallback - pendingTasks, TContext = Context>(params: RequestParams.CatPendingTasks, callback: callbackFn): TransportRequestCallback - pendingTasks, TContext = Context>(params: RequestParams.CatPendingTasks, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - plugins, TContext = Context>(params?: RequestParams.CatPlugins, options?: TransportRequestOptions): TransportRequestPromise> + pendingTasks, TContext = Context>(params: Req.CatPendingTasksRequest, callback: callbackFn): TransportRequestCallback + pendingTasks, TContext = Context>(params: Req.CatPendingTasksRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + plugins, TContext = Context>(params?: Req.CatPluginsRequest, options?: TransportRequestOptions): TransportRequestPromise> plugins, TContext = Context>(callback: callbackFn): TransportRequestCallback - plugins, TContext = Context>(params: RequestParams.CatPlugins, callback: callbackFn): TransportRequestCallback - plugins, TContext = Context>(params: RequestParams.CatPlugins, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - recovery, TContext = Context>(params?: RequestParams.CatRecovery, options?: TransportRequestOptions): TransportRequestPromise> + plugins, TContext = Context>(params: Req.CatPluginsRequest, callback: callbackFn): TransportRequestCallback + plugins, TContext = Context>(params: Req.CatPluginsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + recovery, TContext = Context>(params?: Req.CatRecoveryRequest, options?: TransportRequestOptions): TransportRequestPromise> recovery, TContext = Context>(callback: callbackFn): TransportRequestCallback - recovery, TContext = Context>(params: RequestParams.CatRecovery, callback: callbackFn): TransportRequestCallback - recovery, TContext = Context>(params: RequestParams.CatRecovery, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - repositories, TContext = Context>(params?: RequestParams.CatRepositories, options?: TransportRequestOptions): TransportRequestPromise> + recovery, TContext = Context>(params: Req.CatRecoveryRequest, callback: callbackFn): TransportRequestCallback + recovery, TContext = Context>(params: Req.CatRecoveryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + repositories, TContext = Context>(params?: Req.CatRepositoriesRequest, options?: TransportRequestOptions): TransportRequestPromise> repositories, TContext = Context>(callback: callbackFn): TransportRequestCallback - repositories, TContext = Context>(params: RequestParams.CatRepositories, callback: callbackFn): TransportRequestCallback - repositories, TContext = Context>(params: RequestParams.CatRepositories, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - segments, TContext = Context>(params?: RequestParams.CatSegments, options?: TransportRequestOptions): TransportRequestPromise> + repositories, TContext = Context>(params: Req.CatRepositoriesRequest, callback: callbackFn): TransportRequestCallback + repositories, TContext = Context>(params: Req.CatRepositoriesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + segments, TContext = Context>(params?: Req.CatSegmentsRequest, options?: TransportRequestOptions): TransportRequestPromise> segments, TContext = Context>(callback: callbackFn): TransportRequestCallback - segments, TContext = Context>(params: RequestParams.CatSegments, callback: callbackFn): TransportRequestCallback - segments, TContext = Context>(params: RequestParams.CatSegments, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - shards, TContext = Context>(params?: RequestParams.CatShards, options?: TransportRequestOptions): TransportRequestPromise> + segments, TContext = Context>(params: Req.CatSegmentsRequest, callback: callbackFn): TransportRequestCallback + segments, TContext = Context>(params: Req.CatSegmentsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + shards, TContext = Context>(params?: Req.CatShardsRequest, options?: TransportRequestOptions): TransportRequestPromise> shards, TContext = Context>(callback: callbackFn): TransportRequestCallback - shards, TContext = Context>(params: RequestParams.CatShards, callback: callbackFn): TransportRequestCallback - shards, TContext = Context>(params: RequestParams.CatShards, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - snapshots, TContext = Context>(params?: RequestParams.CatSnapshots, options?: TransportRequestOptions): TransportRequestPromise> + shards, TContext = Context>(params: Req.CatShardsRequest, callback: callbackFn): TransportRequestCallback + shards, TContext = Context>(params: Req.CatShardsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + snapshots, TContext = Context>(params?: Req.CatSnapshotsRequest, options?: TransportRequestOptions): TransportRequestPromise> snapshots, TContext = Context>(callback: callbackFn): TransportRequestCallback - snapshots, TContext = Context>(params: RequestParams.CatSnapshots, callback: callbackFn): TransportRequestCallback - snapshots, TContext = Context>(params: RequestParams.CatSnapshots, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - tasks, TContext = Context>(params?: RequestParams.CatTasks, options?: TransportRequestOptions): TransportRequestPromise> + snapshots, TContext = Context>(params: Req.CatSnapshotsRequest, callback: callbackFn): TransportRequestCallback + snapshots, TContext = Context>(params: Req.CatSnapshotsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + tasks, TContext = Context>(params?: Req.CatTasksRequest, options?: TransportRequestOptions): TransportRequestPromise> tasks, TContext = Context>(callback: callbackFn): TransportRequestCallback - tasks, TContext = Context>(params: RequestParams.CatTasks, callback: callbackFn): TransportRequestCallback - tasks, TContext = Context>(params: RequestParams.CatTasks, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - templates, TContext = Context>(params?: RequestParams.CatTemplates, options?: TransportRequestOptions): TransportRequestPromise> + tasks, TContext = Context>(params: Req.CatTasksRequest, callback: callbackFn): TransportRequestCallback + tasks, TContext = Context>(params: Req.CatTasksRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + templates, TContext = Context>(params?: Req.CatTemplatesRequest, options?: TransportRequestOptions): TransportRequestPromise> templates, TContext = Context>(callback: callbackFn): TransportRequestCallback - templates, TContext = Context>(params: RequestParams.CatTemplates, callback: callbackFn): TransportRequestCallback - templates, TContext = Context>(params: RequestParams.CatTemplates, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - thread_pool, TContext = Context>(params?: RequestParams.CatThreadPool, options?: TransportRequestOptions): TransportRequestPromise> + templates, TContext = Context>(params: Req.CatTemplatesRequest, callback: callbackFn): TransportRequestCallback + templates, TContext = Context>(params: Req.CatTemplatesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + thread_pool, TContext = Context>(params?: Req.CatThreadPoolRequest, options?: TransportRequestOptions): TransportRequestPromise> thread_pool, TContext = Context>(callback: callbackFn): TransportRequestCallback - thread_pool, TContext = Context>(params: RequestParams.CatThreadPool, callback: callbackFn): TransportRequestCallback - thread_pool, TContext = Context>(params: RequestParams.CatThreadPool, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - threadPool, TContext = Context>(params?: RequestParams.CatThreadPool, options?: TransportRequestOptions): TransportRequestPromise> + thread_pool, TContext = Context>(params: Req.CatThreadPoolRequest, callback: callbackFn): TransportRequestCallback + thread_pool, TContext = Context>(params: Req.CatThreadPoolRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + threadPool, TContext = Context>(params?: Req.CatThreadPoolRequest, options?: TransportRequestOptions): TransportRequestPromise> threadPool, TContext = Context>(callback: callbackFn): TransportRequestCallback - threadPool, TContext = Context>(params: RequestParams.CatThreadPool, callback: callbackFn): TransportRequestCallback - threadPool, TContext = Context>(params: RequestParams.CatThreadPool, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - transforms, TContext = Context>(params?: RequestParams.CatTransforms, options?: TransportRequestOptions): TransportRequestPromise> + threadPool, TContext = Context>(params: Req.CatThreadPoolRequest, callback: callbackFn): TransportRequestCallback + threadPool, TContext = Context>(params: Req.CatThreadPoolRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + transforms, TContext = Context>(params?: Req.CatTransformsRequest, options?: TransportRequestOptions): TransportRequestPromise> transforms, TContext = Context>(callback: callbackFn): TransportRequestCallback - transforms, TContext = Context>(params: RequestParams.CatTransforms, callback: callbackFn): TransportRequestCallback - transforms, TContext = Context>(params: RequestParams.CatTransforms, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + transforms, TContext = Context>(params: Req.CatTransformsRequest, callback: callbackFn): TransportRequestCallback + transforms, TContext = Context>(params: Req.CatTransformsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } ccr: { - delete_auto_follow_pattern, TContext = Context>(params?: RequestParams.CcrDeleteAutoFollowPattern, options?: TransportRequestOptions): TransportRequestPromise> + delete_auto_follow_pattern, TContext = Context>(params?: Req.CcrDeleteAutoFollowPatternRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_auto_follow_pattern, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_auto_follow_pattern, TContext = Context>(params: RequestParams.CcrDeleteAutoFollowPattern, callback: callbackFn): TransportRequestCallback - delete_auto_follow_pattern, TContext = Context>(params: RequestParams.CcrDeleteAutoFollowPattern, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteAutoFollowPattern, TContext = Context>(params?: RequestParams.CcrDeleteAutoFollowPattern, options?: TransportRequestOptions): TransportRequestPromise> + delete_auto_follow_pattern, TContext = Context>(params: Req.CcrDeleteAutoFollowPatternRequest, callback: callbackFn): TransportRequestCallback + delete_auto_follow_pattern, TContext = Context>(params: Req.CcrDeleteAutoFollowPatternRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteAutoFollowPattern, TContext = Context>(params?: Req.CcrDeleteAutoFollowPatternRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteAutoFollowPattern, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteAutoFollowPattern, TContext = Context>(params: RequestParams.CcrDeleteAutoFollowPattern, callback: callbackFn): TransportRequestCallback - deleteAutoFollowPattern, TContext = Context>(params: RequestParams.CcrDeleteAutoFollowPattern, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - follow, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.CcrFollow, options?: TransportRequestOptions): TransportRequestPromise> + deleteAutoFollowPattern, TContext = Context>(params: Req.CcrDeleteAutoFollowPatternRequest, callback: callbackFn): TransportRequestCallback + deleteAutoFollowPattern, TContext = Context>(params: Req.CcrDeleteAutoFollowPatternRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + follow, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.CcrFollowRequest, options?: TransportRequestOptions): TransportRequestPromise> follow, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - follow, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.CcrFollow, callback: callbackFn): TransportRequestCallback - follow, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.CcrFollow, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - follow_info, TContext = Context>(params?: RequestParams.CcrFollowInfo, options?: TransportRequestOptions): TransportRequestPromise> + follow, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CcrFollowRequest, callback: callbackFn): TransportRequestCallback + follow, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CcrFollowRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + follow_info, TContext = Context>(params?: Req.CcrFollowInfoRequest, options?: TransportRequestOptions): TransportRequestPromise> follow_info, TContext = Context>(callback: callbackFn): TransportRequestCallback - follow_info, TContext = Context>(params: RequestParams.CcrFollowInfo, callback: callbackFn): TransportRequestCallback - follow_info, TContext = Context>(params: RequestParams.CcrFollowInfo, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - followInfo, TContext = Context>(params?: RequestParams.CcrFollowInfo, options?: TransportRequestOptions): TransportRequestPromise> + follow_info, TContext = Context>(params: Req.CcrFollowInfoRequest, callback: callbackFn): TransportRequestCallback + follow_info, TContext = Context>(params: Req.CcrFollowInfoRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + followInfo, TContext = Context>(params?: Req.CcrFollowInfoRequest, options?: TransportRequestOptions): TransportRequestPromise> followInfo, TContext = Context>(callback: callbackFn): TransportRequestCallback - followInfo, TContext = Context>(params: RequestParams.CcrFollowInfo, callback: callbackFn): TransportRequestCallback - followInfo, TContext = Context>(params: RequestParams.CcrFollowInfo, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - follow_stats, TContext = Context>(params?: RequestParams.CcrFollowStats, options?: TransportRequestOptions): TransportRequestPromise> + followInfo, TContext = Context>(params: Req.CcrFollowInfoRequest, callback: callbackFn): TransportRequestCallback + followInfo, TContext = Context>(params: Req.CcrFollowInfoRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + follow_stats, TContext = Context>(params?: Req.CcrFollowStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> follow_stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - follow_stats, TContext = Context>(params: RequestParams.CcrFollowStats, callback: callbackFn): TransportRequestCallback - follow_stats, TContext = Context>(params: RequestParams.CcrFollowStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - followStats, TContext = Context>(params?: RequestParams.CcrFollowStats, options?: TransportRequestOptions): TransportRequestPromise> + follow_stats, TContext = Context>(params: Req.CcrFollowStatsRequest, callback: callbackFn): TransportRequestCallback + follow_stats, TContext = Context>(params: Req.CcrFollowStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + followStats, TContext = Context>(params?: Req.CcrFollowStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> followStats, TContext = Context>(callback: callbackFn): TransportRequestCallback - followStats, TContext = Context>(params: RequestParams.CcrFollowStats, callback: callbackFn): TransportRequestCallback - followStats, TContext = Context>(params: RequestParams.CcrFollowStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - forget_follower, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.CcrForgetFollower, options?: TransportRequestOptions): TransportRequestPromise> + followStats, TContext = Context>(params: Req.CcrFollowStatsRequest, callback: callbackFn): TransportRequestCallback + followStats, TContext = Context>(params: Req.CcrFollowStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + forget_follower, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.CcrForgetFollowerRequest, options?: TransportRequestOptions): TransportRequestPromise> forget_follower, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - forget_follower, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.CcrForgetFollower, callback: callbackFn): TransportRequestCallback - forget_follower, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.CcrForgetFollower, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - forgetFollower, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.CcrForgetFollower, options?: TransportRequestOptions): TransportRequestPromise> + forget_follower, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CcrForgetFollowerRequest, callback: callbackFn): TransportRequestCallback + forget_follower, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CcrForgetFollowerRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + forgetFollower, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.CcrForgetFollowerRequest, options?: TransportRequestOptions): TransportRequestPromise> forgetFollower, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - forgetFollower, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.CcrForgetFollower, callback: callbackFn): TransportRequestCallback - forgetFollower, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.CcrForgetFollower, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_auto_follow_pattern, TContext = Context>(params?: RequestParams.CcrGetAutoFollowPattern, options?: TransportRequestOptions): TransportRequestPromise> + forgetFollower, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CcrForgetFollowerRequest, callback: callbackFn): TransportRequestCallback + forgetFollower, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CcrForgetFollowerRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_auto_follow_pattern, TContext = Context>(params?: Req.CcrGetAutoFollowPatternRequest, options?: TransportRequestOptions): TransportRequestPromise> get_auto_follow_pattern, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_auto_follow_pattern, TContext = Context>(params: RequestParams.CcrGetAutoFollowPattern, callback: callbackFn): TransportRequestCallback - get_auto_follow_pattern, TContext = Context>(params: RequestParams.CcrGetAutoFollowPattern, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getAutoFollowPattern, TContext = Context>(params?: RequestParams.CcrGetAutoFollowPattern, options?: TransportRequestOptions): TransportRequestPromise> + get_auto_follow_pattern, TContext = Context>(params: Req.CcrGetAutoFollowPatternRequest, callback: callbackFn): TransportRequestCallback + get_auto_follow_pattern, TContext = Context>(params: Req.CcrGetAutoFollowPatternRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getAutoFollowPattern, TContext = Context>(params?: Req.CcrGetAutoFollowPatternRequest, options?: TransportRequestOptions): TransportRequestPromise> getAutoFollowPattern, TContext = Context>(callback: callbackFn): TransportRequestCallback - getAutoFollowPattern, TContext = Context>(params: RequestParams.CcrGetAutoFollowPattern, callback: callbackFn): TransportRequestCallback - getAutoFollowPattern, TContext = Context>(params: RequestParams.CcrGetAutoFollowPattern, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - pause_auto_follow_pattern, TContext = Context>(params?: RequestParams.CcrPauseAutoFollowPattern, options?: TransportRequestOptions): TransportRequestPromise> + getAutoFollowPattern, TContext = Context>(params: Req.CcrGetAutoFollowPatternRequest, callback: callbackFn): TransportRequestCallback + getAutoFollowPattern, TContext = Context>(params: Req.CcrGetAutoFollowPatternRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + pause_auto_follow_pattern, TContext = Context>(params?: Req.CcrPauseAutoFollowPatternRequest, options?: TransportRequestOptions): TransportRequestPromise> pause_auto_follow_pattern, TContext = Context>(callback: callbackFn): TransportRequestCallback - pause_auto_follow_pattern, TContext = Context>(params: RequestParams.CcrPauseAutoFollowPattern, callback: callbackFn): TransportRequestCallback - pause_auto_follow_pattern, TContext = Context>(params: RequestParams.CcrPauseAutoFollowPattern, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - pauseAutoFollowPattern, TContext = Context>(params?: RequestParams.CcrPauseAutoFollowPattern, options?: TransportRequestOptions): TransportRequestPromise> + pause_auto_follow_pattern, TContext = Context>(params: Req.CcrPauseAutoFollowPatternRequest, callback: callbackFn): TransportRequestCallback + pause_auto_follow_pattern, TContext = Context>(params: Req.CcrPauseAutoFollowPatternRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + pauseAutoFollowPattern, TContext = Context>(params?: Req.CcrPauseAutoFollowPatternRequest, options?: TransportRequestOptions): TransportRequestPromise> pauseAutoFollowPattern, TContext = Context>(callback: callbackFn): TransportRequestCallback - pauseAutoFollowPattern, TContext = Context>(params: RequestParams.CcrPauseAutoFollowPattern, callback: callbackFn): TransportRequestCallback - pauseAutoFollowPattern, TContext = Context>(params: RequestParams.CcrPauseAutoFollowPattern, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - pause_follow, TContext = Context>(params?: RequestParams.CcrPauseFollow, options?: TransportRequestOptions): TransportRequestPromise> + pauseAutoFollowPattern, TContext = Context>(params: Req.CcrPauseAutoFollowPatternRequest, callback: callbackFn): TransportRequestCallback + pauseAutoFollowPattern, TContext = Context>(params: Req.CcrPauseAutoFollowPatternRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + pause_follow, TContext = Context>(params?: Req.CcrPauseFollowRequest, options?: TransportRequestOptions): TransportRequestPromise> pause_follow, TContext = Context>(callback: callbackFn): TransportRequestCallback - pause_follow, TContext = Context>(params: RequestParams.CcrPauseFollow, callback: callbackFn): TransportRequestCallback - pause_follow, TContext = Context>(params: RequestParams.CcrPauseFollow, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - pauseFollow, TContext = Context>(params?: RequestParams.CcrPauseFollow, options?: TransportRequestOptions): TransportRequestPromise> + pause_follow, TContext = Context>(params: Req.CcrPauseFollowRequest, callback: callbackFn): TransportRequestCallback + pause_follow, TContext = Context>(params: Req.CcrPauseFollowRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + pauseFollow, TContext = Context>(params?: Req.CcrPauseFollowRequest, options?: TransportRequestOptions): TransportRequestPromise> pauseFollow, TContext = Context>(callback: callbackFn): TransportRequestCallback - pauseFollow, TContext = Context>(params: RequestParams.CcrPauseFollow, callback: callbackFn): TransportRequestCallback - pauseFollow, TContext = Context>(params: RequestParams.CcrPauseFollow, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_auto_follow_pattern, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.CcrPutAutoFollowPattern, options?: TransportRequestOptions): TransportRequestPromise> + pauseFollow, TContext = Context>(params: Req.CcrPauseFollowRequest, callback: callbackFn): TransportRequestCallback + pauseFollow, TContext = Context>(params: Req.CcrPauseFollowRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_auto_follow_pattern, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.CcrPutAutoFollowPatternRequest, options?: TransportRequestOptions): TransportRequestPromise> put_auto_follow_pattern, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_auto_follow_pattern, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.CcrPutAutoFollowPattern, callback: callbackFn): TransportRequestCallback - put_auto_follow_pattern, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.CcrPutAutoFollowPattern, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putAutoFollowPattern, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.CcrPutAutoFollowPattern, options?: TransportRequestOptions): TransportRequestPromise> + put_auto_follow_pattern, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CcrPutAutoFollowPatternRequest, callback: callbackFn): TransportRequestCallback + put_auto_follow_pattern, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CcrPutAutoFollowPatternRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putAutoFollowPattern, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.CcrPutAutoFollowPatternRequest, options?: TransportRequestOptions): TransportRequestPromise> putAutoFollowPattern, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putAutoFollowPattern, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.CcrPutAutoFollowPattern, callback: callbackFn): TransportRequestCallback - putAutoFollowPattern, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.CcrPutAutoFollowPattern, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - resume_auto_follow_pattern, TContext = Context>(params?: RequestParams.CcrResumeAutoFollowPattern, options?: TransportRequestOptions): TransportRequestPromise> + putAutoFollowPattern, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CcrPutAutoFollowPatternRequest, callback: callbackFn): TransportRequestCallback + putAutoFollowPattern, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CcrPutAutoFollowPatternRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + resume_auto_follow_pattern, TContext = Context>(params?: Req.CcrResumeAutoFollowPatternRequest, options?: TransportRequestOptions): TransportRequestPromise> resume_auto_follow_pattern, TContext = Context>(callback: callbackFn): TransportRequestCallback - resume_auto_follow_pattern, TContext = Context>(params: RequestParams.CcrResumeAutoFollowPattern, callback: callbackFn): TransportRequestCallback - resume_auto_follow_pattern, TContext = Context>(params: RequestParams.CcrResumeAutoFollowPattern, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - resumeAutoFollowPattern, TContext = Context>(params?: RequestParams.CcrResumeAutoFollowPattern, options?: TransportRequestOptions): TransportRequestPromise> + resume_auto_follow_pattern, TContext = Context>(params: Req.CcrResumeAutoFollowPatternRequest, callback: callbackFn): TransportRequestCallback + resume_auto_follow_pattern, TContext = Context>(params: Req.CcrResumeAutoFollowPatternRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + resumeAutoFollowPattern, TContext = Context>(params?: Req.CcrResumeAutoFollowPatternRequest, options?: TransportRequestOptions): TransportRequestPromise> resumeAutoFollowPattern, TContext = Context>(callback: callbackFn): TransportRequestCallback - resumeAutoFollowPattern, TContext = Context>(params: RequestParams.CcrResumeAutoFollowPattern, callback: callbackFn): TransportRequestCallback - resumeAutoFollowPattern, TContext = Context>(params: RequestParams.CcrResumeAutoFollowPattern, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - resume_follow, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.CcrResumeFollow, options?: TransportRequestOptions): TransportRequestPromise> + resumeAutoFollowPattern, TContext = Context>(params: Req.CcrResumeAutoFollowPatternRequest, callback: callbackFn): TransportRequestCallback + resumeAutoFollowPattern, TContext = Context>(params: Req.CcrResumeAutoFollowPatternRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + resume_follow, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.CcrResumeFollowRequest, options?: TransportRequestOptions): TransportRequestPromise> resume_follow, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - resume_follow, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.CcrResumeFollow, callback: callbackFn): TransportRequestCallback - resume_follow, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.CcrResumeFollow, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - resumeFollow, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.CcrResumeFollow, options?: TransportRequestOptions): TransportRequestPromise> + resume_follow, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CcrResumeFollowRequest, callback: callbackFn): TransportRequestCallback + resume_follow, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CcrResumeFollowRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + resumeFollow, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.CcrResumeFollowRequest, options?: TransportRequestOptions): TransportRequestPromise> resumeFollow, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - resumeFollow, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.CcrResumeFollow, callback: callbackFn): TransportRequestCallback - resumeFollow, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.CcrResumeFollow, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params?: RequestParams.CcrStats, options?: TransportRequestOptions): TransportRequestPromise> + resumeFollow, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CcrResumeFollowRequest, callback: callbackFn): TransportRequestCallback + resumeFollow, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CcrResumeFollowRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params?: Req.CcrStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.CcrStats, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.CcrStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - unfollow, TContext = Context>(params?: RequestParams.CcrUnfollow, options?: TransportRequestOptions): TransportRequestPromise> + stats, TContext = Context>(params: Req.CcrStatsRequest, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params: Req.CcrStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + unfollow, TContext = Context>(params?: Req.CcrUnfollowRequest, options?: TransportRequestOptions): TransportRequestPromise> unfollow, TContext = Context>(callback: callbackFn): TransportRequestCallback - unfollow, TContext = Context>(params: RequestParams.CcrUnfollow, callback: callbackFn): TransportRequestCallback - unfollow, TContext = Context>(params: RequestParams.CcrUnfollow, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + unfollow, TContext = Context>(params: Req.CcrUnfollowRequest, callback: callbackFn): TransportRequestCallback + unfollow, TContext = Context>(params: Req.CcrUnfollowRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } - clear_scroll, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ClearScroll, options?: TransportRequestOptions): TransportRequestPromise> + clear_scroll, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ClearScrollRequest, options?: TransportRequestOptions): TransportRequestPromise> clear_scroll, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - clear_scroll, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClearScroll, callback: callbackFn): TransportRequestCallback - clear_scroll, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClearScroll, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - clearScroll, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ClearScroll, options?: TransportRequestOptions): TransportRequestPromise> + clear_scroll, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClearScrollRequest, callback: callbackFn): TransportRequestCallback + clear_scroll, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClearScrollRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + clearScroll, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ClearScrollRequest, options?: TransportRequestOptions): TransportRequestPromise> clearScroll, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - clearScroll, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClearScroll, callback: callbackFn): TransportRequestCallback - clearScroll, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClearScroll, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + clearScroll, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClearScrollRequest, callback: callbackFn): TransportRequestCallback + clearScroll, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClearScrollRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback cluster: { - allocation_explain, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ClusterAllocationExplain, options?: TransportRequestOptions): TransportRequestPromise> + allocation_explain, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ClusterAllocationExplainRequest, options?: TransportRequestOptions): TransportRequestPromise> allocation_explain, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - allocation_explain, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClusterAllocationExplain, callback: callbackFn): TransportRequestCallback - allocation_explain, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClusterAllocationExplain, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - allocationExplain, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ClusterAllocationExplain, options?: TransportRequestOptions): TransportRequestPromise> + allocation_explain, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClusterAllocationExplainRequest, callback: callbackFn): TransportRequestCallback + allocation_explain, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClusterAllocationExplainRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + allocationExplain, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ClusterAllocationExplainRequest, options?: TransportRequestOptions): TransportRequestPromise> allocationExplain, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - allocationExplain, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClusterAllocationExplain, callback: callbackFn): TransportRequestCallback - allocationExplain, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClusterAllocationExplain, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_component_template, TContext = Context>(params?: RequestParams.ClusterDeleteComponentTemplate, options?: TransportRequestOptions): TransportRequestPromise> + allocationExplain, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClusterAllocationExplainRequest, callback: callbackFn): TransportRequestCallback + allocationExplain, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClusterAllocationExplainRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_component_template, TContext = Context>(params?: Req.ClusterDeleteComponentTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_component_template, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_component_template, TContext = Context>(params: RequestParams.ClusterDeleteComponentTemplate, callback: callbackFn): TransportRequestCallback - delete_component_template, TContext = Context>(params: RequestParams.ClusterDeleteComponentTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteComponentTemplate, TContext = Context>(params?: RequestParams.ClusterDeleteComponentTemplate, options?: TransportRequestOptions): TransportRequestPromise> + delete_component_template, TContext = Context>(params: Req.ClusterDeleteComponentTemplateRequest, callback: callbackFn): TransportRequestCallback + delete_component_template, TContext = Context>(params: Req.ClusterDeleteComponentTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteComponentTemplate, TContext = Context>(params?: Req.ClusterDeleteComponentTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteComponentTemplate, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteComponentTemplate, TContext = Context>(params: RequestParams.ClusterDeleteComponentTemplate, callback: callbackFn): TransportRequestCallback - deleteComponentTemplate, TContext = Context>(params: RequestParams.ClusterDeleteComponentTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_voting_config_exclusions, TContext = Context>(params?: RequestParams.ClusterDeleteVotingConfigExclusions, options?: TransportRequestOptions): TransportRequestPromise> + deleteComponentTemplate, TContext = Context>(params: Req.ClusterDeleteComponentTemplateRequest, callback: callbackFn): TransportRequestCallback + deleteComponentTemplate, TContext = Context>(params: Req.ClusterDeleteComponentTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_voting_config_exclusions, TContext = Context>(params?: Req.ClusterDeleteVotingConfigExclusionsRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_voting_config_exclusions, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_voting_config_exclusions, TContext = Context>(params: RequestParams.ClusterDeleteVotingConfigExclusions, callback: callbackFn): TransportRequestCallback - delete_voting_config_exclusions, TContext = Context>(params: RequestParams.ClusterDeleteVotingConfigExclusions, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteVotingConfigExclusions, TContext = Context>(params?: RequestParams.ClusterDeleteVotingConfigExclusions, options?: TransportRequestOptions): TransportRequestPromise> + delete_voting_config_exclusions, TContext = Context>(params: Req.ClusterDeleteVotingConfigExclusionsRequest, callback: callbackFn): TransportRequestCallback + delete_voting_config_exclusions, TContext = Context>(params: Req.ClusterDeleteVotingConfigExclusionsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteVotingConfigExclusions, TContext = Context>(params?: Req.ClusterDeleteVotingConfigExclusionsRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteVotingConfigExclusions, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteVotingConfigExclusions, TContext = Context>(params: RequestParams.ClusterDeleteVotingConfigExclusions, callback: callbackFn): TransportRequestCallback - deleteVotingConfigExclusions, TContext = Context>(params: RequestParams.ClusterDeleteVotingConfigExclusions, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - exists_component_template, TContext = Context>(params?: RequestParams.ClusterExistsComponentTemplate, options?: TransportRequestOptions): TransportRequestPromise> + deleteVotingConfigExclusions, TContext = Context>(params: Req.ClusterDeleteVotingConfigExclusionsRequest, callback: callbackFn): TransportRequestCallback + deleteVotingConfigExclusions, TContext = Context>(params: Req.ClusterDeleteVotingConfigExclusionsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + exists_component_template, TContext = Context>(params?: Req.ClusterExistsComponentTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> exists_component_template, TContext = Context>(callback: callbackFn): TransportRequestCallback - exists_component_template, TContext = Context>(params: RequestParams.ClusterExistsComponentTemplate, callback: callbackFn): TransportRequestCallback - exists_component_template, TContext = Context>(params: RequestParams.ClusterExistsComponentTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - existsComponentTemplate, TContext = Context>(params?: RequestParams.ClusterExistsComponentTemplate, options?: TransportRequestOptions): TransportRequestPromise> + exists_component_template, TContext = Context>(params: Req.ClusterExistsComponentTemplateRequest, callback: callbackFn): TransportRequestCallback + exists_component_template, TContext = Context>(params: Req.ClusterExistsComponentTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + existsComponentTemplate, TContext = Context>(params?: Req.ClusterExistsComponentTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> existsComponentTemplate, TContext = Context>(callback: callbackFn): TransportRequestCallback - existsComponentTemplate, TContext = Context>(params: RequestParams.ClusterExistsComponentTemplate, callback: callbackFn): TransportRequestCallback - existsComponentTemplate, TContext = Context>(params: RequestParams.ClusterExistsComponentTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_component_template, TContext = Context>(params?: RequestParams.ClusterGetComponentTemplate, options?: TransportRequestOptions): TransportRequestPromise> + existsComponentTemplate, TContext = Context>(params: Req.ClusterExistsComponentTemplateRequest, callback: callbackFn): TransportRequestCallback + existsComponentTemplate, TContext = Context>(params: Req.ClusterExistsComponentTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_component_template, TContext = Context>(params?: Req.ClusterGetComponentTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> get_component_template, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_component_template, TContext = Context>(params: RequestParams.ClusterGetComponentTemplate, callback: callbackFn): TransportRequestCallback - get_component_template, TContext = Context>(params: RequestParams.ClusterGetComponentTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getComponentTemplate, TContext = Context>(params?: RequestParams.ClusterGetComponentTemplate, options?: TransportRequestOptions): TransportRequestPromise> + get_component_template, TContext = Context>(params: Req.ClusterGetComponentTemplateRequest, callback: callbackFn): TransportRequestCallback + get_component_template, TContext = Context>(params: Req.ClusterGetComponentTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getComponentTemplate, TContext = Context>(params?: Req.ClusterGetComponentTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> getComponentTemplate, TContext = Context>(callback: callbackFn): TransportRequestCallback - getComponentTemplate, TContext = Context>(params: RequestParams.ClusterGetComponentTemplate, callback: callbackFn): TransportRequestCallback - getComponentTemplate, TContext = Context>(params: RequestParams.ClusterGetComponentTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_settings, TContext = Context>(params?: RequestParams.ClusterGetSettings, options?: TransportRequestOptions): TransportRequestPromise> + getComponentTemplate, TContext = Context>(params: Req.ClusterGetComponentTemplateRequest, callback: callbackFn): TransportRequestCallback + getComponentTemplate, TContext = Context>(params: Req.ClusterGetComponentTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_settings, TContext = Context>(params?: Req.ClusterGetSettingsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_settings, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_settings, TContext = Context>(params: RequestParams.ClusterGetSettings, callback: callbackFn): TransportRequestCallback - get_settings, TContext = Context>(params: RequestParams.ClusterGetSettings, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getSettings, TContext = Context>(params?: RequestParams.ClusterGetSettings, options?: TransportRequestOptions): TransportRequestPromise> + get_settings, TContext = Context>(params: Req.ClusterGetSettingsRequest, callback: callbackFn): TransportRequestCallback + get_settings, TContext = Context>(params: Req.ClusterGetSettingsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getSettings, TContext = Context>(params?: Req.ClusterGetSettingsRequest, options?: TransportRequestOptions): TransportRequestPromise> getSettings, TContext = Context>(callback: callbackFn): TransportRequestCallback - getSettings, TContext = Context>(params: RequestParams.ClusterGetSettings, callback: callbackFn): TransportRequestCallback - getSettings, TContext = Context>(params: RequestParams.ClusterGetSettings, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - health, TContext = Context>(params?: RequestParams.ClusterHealth, options?: TransportRequestOptions): TransportRequestPromise> + getSettings, TContext = Context>(params: Req.ClusterGetSettingsRequest, callback: callbackFn): TransportRequestCallback + getSettings, TContext = Context>(params: Req.ClusterGetSettingsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + health, TContext = Context>(params?: Req.ClusterHealthRequest, options?: TransportRequestOptions): TransportRequestPromise> health, TContext = Context>(callback: callbackFn): TransportRequestCallback - health, TContext = Context>(params: RequestParams.ClusterHealth, callback: callbackFn): TransportRequestCallback - health, TContext = Context>(params: RequestParams.ClusterHealth, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - pending_tasks, TContext = Context>(params?: RequestParams.ClusterPendingTasks, options?: TransportRequestOptions): TransportRequestPromise> + health, TContext = Context>(params: Req.ClusterHealthRequest, callback: callbackFn): TransportRequestCallback + health, TContext = Context>(params: Req.ClusterHealthRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + pending_tasks, TContext = Context>(params?: Req.ClusterPendingTasksRequest, options?: TransportRequestOptions): TransportRequestPromise> pending_tasks, TContext = Context>(callback: callbackFn): TransportRequestCallback - pending_tasks, TContext = Context>(params: RequestParams.ClusterPendingTasks, callback: callbackFn): TransportRequestCallback - pending_tasks, TContext = Context>(params: RequestParams.ClusterPendingTasks, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - pendingTasks, TContext = Context>(params?: RequestParams.ClusterPendingTasks, options?: TransportRequestOptions): TransportRequestPromise> + pending_tasks, TContext = Context>(params: Req.ClusterPendingTasksRequest, callback: callbackFn): TransportRequestCallback + pending_tasks, TContext = Context>(params: Req.ClusterPendingTasksRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + pendingTasks, TContext = Context>(params?: Req.ClusterPendingTasksRequest, options?: TransportRequestOptions): TransportRequestPromise> pendingTasks, TContext = Context>(callback: callbackFn): TransportRequestCallback - pendingTasks, TContext = Context>(params: RequestParams.ClusterPendingTasks, callback: callbackFn): TransportRequestCallback - pendingTasks, TContext = Context>(params: RequestParams.ClusterPendingTasks, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - post_voting_config_exclusions, TContext = Context>(params?: RequestParams.ClusterPostVotingConfigExclusions, options?: TransportRequestOptions): TransportRequestPromise> + pendingTasks, TContext = Context>(params: Req.ClusterPendingTasksRequest, callback: callbackFn): TransportRequestCallback + pendingTasks, TContext = Context>(params: Req.ClusterPendingTasksRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + post_voting_config_exclusions, TContext = Context>(params?: Req.ClusterPostVotingConfigExclusionsRequest, options?: TransportRequestOptions): TransportRequestPromise> post_voting_config_exclusions, TContext = Context>(callback: callbackFn): TransportRequestCallback - post_voting_config_exclusions, TContext = Context>(params: RequestParams.ClusterPostVotingConfigExclusions, callback: callbackFn): TransportRequestCallback - post_voting_config_exclusions, TContext = Context>(params: RequestParams.ClusterPostVotingConfigExclusions, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - postVotingConfigExclusions, TContext = Context>(params?: RequestParams.ClusterPostVotingConfigExclusions, options?: TransportRequestOptions): TransportRequestPromise> + post_voting_config_exclusions, TContext = Context>(params: Req.ClusterPostVotingConfigExclusionsRequest, callback: callbackFn): TransportRequestCallback + post_voting_config_exclusions, TContext = Context>(params: Req.ClusterPostVotingConfigExclusionsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + postVotingConfigExclusions, TContext = Context>(params?: Req.ClusterPostVotingConfigExclusionsRequest, options?: TransportRequestOptions): TransportRequestPromise> postVotingConfigExclusions, TContext = Context>(callback: callbackFn): TransportRequestCallback - postVotingConfigExclusions, TContext = Context>(params: RequestParams.ClusterPostVotingConfigExclusions, callback: callbackFn): TransportRequestCallback - postVotingConfigExclusions, TContext = Context>(params: RequestParams.ClusterPostVotingConfigExclusions, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_component_template, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ClusterPutComponentTemplate, options?: TransportRequestOptions): TransportRequestPromise> + postVotingConfigExclusions, TContext = Context>(params: Req.ClusterPostVotingConfigExclusionsRequest, callback: callbackFn): TransportRequestCallback + postVotingConfigExclusions, TContext = Context>(params: Req.ClusterPostVotingConfigExclusionsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_component_template, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ClusterPutComponentTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> put_component_template, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_component_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClusterPutComponentTemplate, callback: callbackFn): TransportRequestCallback - put_component_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClusterPutComponentTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putComponentTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ClusterPutComponentTemplate, options?: TransportRequestOptions): TransportRequestPromise> + put_component_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClusterPutComponentTemplateRequest, callback: callbackFn): TransportRequestCallback + put_component_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClusterPutComponentTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putComponentTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ClusterPutComponentTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> putComponentTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putComponentTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClusterPutComponentTemplate, callback: callbackFn): TransportRequestCallback - putComponentTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClusterPutComponentTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ClusterPutSettings, options?: TransportRequestOptions): TransportRequestPromise> + putComponentTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClusterPutComponentTemplateRequest, callback: callbackFn): TransportRequestCallback + putComponentTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClusterPutComponentTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ClusterPutSettingsRequest, options?: TransportRequestOptions): TransportRequestPromise> put_settings, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClusterPutSettings, callback: callbackFn): TransportRequestCallback - put_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClusterPutSettings, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ClusterPutSettings, options?: TransportRequestOptions): TransportRequestPromise> + put_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClusterPutSettingsRequest, callback: callbackFn): TransportRequestCallback + put_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClusterPutSettingsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ClusterPutSettingsRequest, options?: TransportRequestOptions): TransportRequestPromise> putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClusterPutSettings, callback: callbackFn): TransportRequestCallback - putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClusterPutSettings, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - remote_info, TContext = Context>(params?: RequestParams.ClusterRemoteInfo, options?: TransportRequestOptions): TransportRequestPromise> + putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClusterPutSettingsRequest, callback: callbackFn): TransportRequestCallback + putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClusterPutSettingsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + remote_info, TContext = Context>(params?: Req.ClusterRemoteInfoRequest, options?: TransportRequestOptions): TransportRequestPromise> remote_info, TContext = Context>(callback: callbackFn): TransportRequestCallback - remote_info, TContext = Context>(params: RequestParams.ClusterRemoteInfo, callback: callbackFn): TransportRequestCallback - remote_info, TContext = Context>(params: RequestParams.ClusterRemoteInfo, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - remoteInfo, TContext = Context>(params?: RequestParams.ClusterRemoteInfo, options?: TransportRequestOptions): TransportRequestPromise> + remote_info, TContext = Context>(params: Req.ClusterRemoteInfoRequest, callback: callbackFn): TransportRequestCallback + remote_info, TContext = Context>(params: Req.ClusterRemoteInfoRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + remoteInfo, TContext = Context>(params?: Req.ClusterRemoteInfoRequest, options?: TransportRequestOptions): TransportRequestPromise> remoteInfo, TContext = Context>(callback: callbackFn): TransportRequestCallback - remoteInfo, TContext = Context>(params: RequestParams.ClusterRemoteInfo, callback: callbackFn): TransportRequestCallback - remoteInfo, TContext = Context>(params: RequestParams.ClusterRemoteInfo, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - reroute, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ClusterReroute, options?: TransportRequestOptions): TransportRequestPromise> + remoteInfo, TContext = Context>(params: Req.ClusterRemoteInfoRequest, callback: callbackFn): TransportRequestCallback + remoteInfo, TContext = Context>(params: Req.ClusterRemoteInfoRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + reroute, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ClusterRerouteRequest, options?: TransportRequestOptions): TransportRequestPromise> reroute, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - reroute, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClusterReroute, callback: callbackFn): TransportRequestCallback - reroute, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ClusterReroute, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - state, TContext = Context>(params?: RequestParams.ClusterState, options?: TransportRequestOptions): TransportRequestPromise> + reroute, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClusterRerouteRequest, callback: callbackFn): TransportRequestCallback + reroute, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ClusterRerouteRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + state, TContext = Context>(params?: Req.ClusterStateRequest, options?: TransportRequestOptions): TransportRequestPromise> state, TContext = Context>(callback: callbackFn): TransportRequestCallback - state, TContext = Context>(params: RequestParams.ClusterState, callback: callbackFn): TransportRequestCallback - state, TContext = Context>(params: RequestParams.ClusterState, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params?: RequestParams.ClusterStats, options?: TransportRequestOptions): TransportRequestPromise> + state, TContext = Context>(params: Req.ClusterStateRequest, callback: callbackFn): TransportRequestCallback + state, TContext = Context>(params: Req.ClusterStateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params?: Req.ClusterStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.ClusterStats, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.ClusterStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params: Req.ClusterStatsRequest, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params: Req.ClusterStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } - count, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Count, options?: TransportRequestOptions): TransportRequestPromise> + count, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.CountRequest, options?: TransportRequestOptions): TransportRequestPromise> count, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - count, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Count, callback: callbackFn): TransportRequestCallback - count, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Count, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - create, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Create, options?: TransportRequestOptions): TransportRequestPromise> - create, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - create, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Create, callback: callbackFn): TransportRequestCallback - create, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Create, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + count, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CountRequest, callback: callbackFn): TransportRequestCallback + count, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.CountRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + create, TContext = Context>(params?: Req.CreateRequest, options?: TransportRequestOptions): TransportRequestPromise> + create, TContext = Context>(callback: callbackFn): TransportRequestCallback + create, TContext = Context>(params: Req.CreateRequest, callback: callbackFn): TransportRequestCallback + create, TContext = Context>(params: Req.CreateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback dangling_indices: { - delete_dangling_index, TContext = Context>(params?: RequestParams.DanglingIndicesDeleteDanglingIndex, options?: TransportRequestOptions): TransportRequestPromise> + delete_dangling_index, TContext = Context>(params?: Req.DanglingIndicesDeleteDanglingIndexRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_dangling_index, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_dangling_index, TContext = Context>(params: RequestParams.DanglingIndicesDeleteDanglingIndex, callback: callbackFn): TransportRequestCallback - delete_dangling_index, TContext = Context>(params: RequestParams.DanglingIndicesDeleteDanglingIndex, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteDanglingIndex, TContext = Context>(params?: RequestParams.DanglingIndicesDeleteDanglingIndex, options?: TransportRequestOptions): TransportRequestPromise> + delete_dangling_index, TContext = Context>(params: Req.DanglingIndicesDeleteDanglingIndexRequest, callback: callbackFn): TransportRequestCallback + delete_dangling_index, TContext = Context>(params: Req.DanglingIndicesDeleteDanglingIndexRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteDanglingIndex, TContext = Context>(params?: Req.DanglingIndicesDeleteDanglingIndexRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteDanglingIndex, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteDanglingIndex, TContext = Context>(params: RequestParams.DanglingIndicesDeleteDanglingIndex, callback: callbackFn): TransportRequestCallback - deleteDanglingIndex, TContext = Context>(params: RequestParams.DanglingIndicesDeleteDanglingIndex, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - import_dangling_index, TContext = Context>(params?: RequestParams.DanglingIndicesImportDanglingIndex, options?: TransportRequestOptions): TransportRequestPromise> + deleteDanglingIndex, TContext = Context>(params: Req.DanglingIndicesDeleteDanglingIndexRequest, callback: callbackFn): TransportRequestCallback + deleteDanglingIndex, TContext = Context>(params: Req.DanglingIndicesDeleteDanglingIndexRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + import_dangling_index, TContext = Context>(params?: Req.DanglingIndicesImportDanglingIndexRequest, options?: TransportRequestOptions): TransportRequestPromise> import_dangling_index, TContext = Context>(callback: callbackFn): TransportRequestCallback - import_dangling_index, TContext = Context>(params: RequestParams.DanglingIndicesImportDanglingIndex, callback: callbackFn): TransportRequestCallback - import_dangling_index, TContext = Context>(params: RequestParams.DanglingIndicesImportDanglingIndex, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - importDanglingIndex, TContext = Context>(params?: RequestParams.DanglingIndicesImportDanglingIndex, options?: TransportRequestOptions): TransportRequestPromise> + import_dangling_index, TContext = Context>(params: Req.DanglingIndicesImportDanglingIndexRequest, callback: callbackFn): TransportRequestCallback + import_dangling_index, TContext = Context>(params: Req.DanglingIndicesImportDanglingIndexRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + importDanglingIndex, TContext = Context>(params?: Req.DanglingIndicesImportDanglingIndexRequest, options?: TransportRequestOptions): TransportRequestPromise> importDanglingIndex, TContext = Context>(callback: callbackFn): TransportRequestCallback - importDanglingIndex, TContext = Context>(params: RequestParams.DanglingIndicesImportDanglingIndex, callback: callbackFn): TransportRequestCallback - importDanglingIndex, TContext = Context>(params: RequestParams.DanglingIndicesImportDanglingIndex, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - list_dangling_indices, TContext = Context>(params?: RequestParams.DanglingIndicesListDanglingIndices, options?: TransportRequestOptions): TransportRequestPromise> + importDanglingIndex, TContext = Context>(params: Req.DanglingIndicesImportDanglingIndexRequest, callback: callbackFn): TransportRequestCallback + importDanglingIndex, TContext = Context>(params: Req.DanglingIndicesImportDanglingIndexRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + list_dangling_indices, TContext = Context>(params?: Req.DanglingIndicesListDanglingIndicesRequest, options?: TransportRequestOptions): TransportRequestPromise> list_dangling_indices, TContext = Context>(callback: callbackFn): TransportRequestCallback - list_dangling_indices, TContext = Context>(params: RequestParams.DanglingIndicesListDanglingIndices, callback: callbackFn): TransportRequestCallback - list_dangling_indices, TContext = Context>(params: RequestParams.DanglingIndicesListDanglingIndices, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - listDanglingIndices, TContext = Context>(params?: RequestParams.DanglingIndicesListDanglingIndices, options?: TransportRequestOptions): TransportRequestPromise> + list_dangling_indices, TContext = Context>(params: Req.DanglingIndicesListDanglingIndicesRequest, callback: callbackFn): TransportRequestCallback + list_dangling_indices, TContext = Context>(params: Req.DanglingIndicesListDanglingIndicesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + listDanglingIndices, TContext = Context>(params?: Req.DanglingIndicesListDanglingIndicesRequest, options?: TransportRequestOptions): TransportRequestPromise> listDanglingIndices, TContext = Context>(callback: callbackFn): TransportRequestCallback - listDanglingIndices, TContext = Context>(params: RequestParams.DanglingIndicesListDanglingIndices, callback: callbackFn): TransportRequestCallback - listDanglingIndices, TContext = Context>(params: RequestParams.DanglingIndicesListDanglingIndices, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + listDanglingIndices, TContext = Context>(params: Req.DanglingIndicesListDanglingIndicesRequest, callback: callbackFn): TransportRequestCallback + listDanglingIndices, TContext = Context>(params: Req.DanglingIndicesListDanglingIndicesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } danglingIndices: { - delete_dangling_index, TContext = Context>(params?: RequestParams.DanglingIndicesDeleteDanglingIndex, options?: TransportRequestOptions): TransportRequestPromise> + delete_dangling_index, TContext = Context>(params?: Req.DanglingIndicesDeleteDanglingIndexRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_dangling_index, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_dangling_index, TContext = Context>(params: RequestParams.DanglingIndicesDeleteDanglingIndex, callback: callbackFn): TransportRequestCallback - delete_dangling_index, TContext = Context>(params: RequestParams.DanglingIndicesDeleteDanglingIndex, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteDanglingIndex, TContext = Context>(params?: RequestParams.DanglingIndicesDeleteDanglingIndex, options?: TransportRequestOptions): TransportRequestPromise> + delete_dangling_index, TContext = Context>(params: Req.DanglingIndicesDeleteDanglingIndexRequest, callback: callbackFn): TransportRequestCallback + delete_dangling_index, TContext = Context>(params: Req.DanglingIndicesDeleteDanglingIndexRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteDanglingIndex, TContext = Context>(params?: Req.DanglingIndicesDeleteDanglingIndexRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteDanglingIndex, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteDanglingIndex, TContext = Context>(params: RequestParams.DanglingIndicesDeleteDanglingIndex, callback: callbackFn): TransportRequestCallback - deleteDanglingIndex, TContext = Context>(params: RequestParams.DanglingIndicesDeleteDanglingIndex, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - import_dangling_index, TContext = Context>(params?: RequestParams.DanglingIndicesImportDanglingIndex, options?: TransportRequestOptions): TransportRequestPromise> + deleteDanglingIndex, TContext = Context>(params: Req.DanglingIndicesDeleteDanglingIndexRequest, callback: callbackFn): TransportRequestCallback + deleteDanglingIndex, TContext = Context>(params: Req.DanglingIndicesDeleteDanglingIndexRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + import_dangling_index, TContext = Context>(params?: Req.DanglingIndicesImportDanglingIndexRequest, options?: TransportRequestOptions): TransportRequestPromise> import_dangling_index, TContext = Context>(callback: callbackFn): TransportRequestCallback - import_dangling_index, TContext = Context>(params: RequestParams.DanglingIndicesImportDanglingIndex, callback: callbackFn): TransportRequestCallback - import_dangling_index, TContext = Context>(params: RequestParams.DanglingIndicesImportDanglingIndex, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - importDanglingIndex, TContext = Context>(params?: RequestParams.DanglingIndicesImportDanglingIndex, options?: TransportRequestOptions): TransportRequestPromise> + import_dangling_index, TContext = Context>(params: Req.DanglingIndicesImportDanglingIndexRequest, callback: callbackFn): TransportRequestCallback + import_dangling_index, TContext = Context>(params: Req.DanglingIndicesImportDanglingIndexRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + importDanglingIndex, TContext = Context>(params?: Req.DanglingIndicesImportDanglingIndexRequest, options?: TransportRequestOptions): TransportRequestPromise> importDanglingIndex, TContext = Context>(callback: callbackFn): TransportRequestCallback - importDanglingIndex, TContext = Context>(params: RequestParams.DanglingIndicesImportDanglingIndex, callback: callbackFn): TransportRequestCallback - importDanglingIndex, TContext = Context>(params: RequestParams.DanglingIndicesImportDanglingIndex, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - list_dangling_indices, TContext = Context>(params?: RequestParams.DanglingIndicesListDanglingIndices, options?: TransportRequestOptions): TransportRequestPromise> + importDanglingIndex, TContext = Context>(params: Req.DanglingIndicesImportDanglingIndexRequest, callback: callbackFn): TransportRequestCallback + importDanglingIndex, TContext = Context>(params: Req.DanglingIndicesImportDanglingIndexRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + list_dangling_indices, TContext = Context>(params?: Req.DanglingIndicesListDanglingIndicesRequest, options?: TransportRequestOptions): TransportRequestPromise> list_dangling_indices, TContext = Context>(callback: callbackFn): TransportRequestCallback - list_dangling_indices, TContext = Context>(params: RequestParams.DanglingIndicesListDanglingIndices, callback: callbackFn): TransportRequestCallback - list_dangling_indices, TContext = Context>(params: RequestParams.DanglingIndicesListDanglingIndices, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - listDanglingIndices, TContext = Context>(params?: RequestParams.DanglingIndicesListDanglingIndices, options?: TransportRequestOptions): TransportRequestPromise> + list_dangling_indices, TContext = Context>(params: Req.DanglingIndicesListDanglingIndicesRequest, callback: callbackFn): TransportRequestCallback + list_dangling_indices, TContext = Context>(params: Req.DanglingIndicesListDanglingIndicesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + listDanglingIndices, TContext = Context>(params?: Req.DanglingIndicesListDanglingIndicesRequest, options?: TransportRequestOptions): TransportRequestPromise> listDanglingIndices, TContext = Context>(callback: callbackFn): TransportRequestCallback - listDanglingIndices, TContext = Context>(params: RequestParams.DanglingIndicesListDanglingIndices, callback: callbackFn): TransportRequestCallback - listDanglingIndices, TContext = Context>(params: RequestParams.DanglingIndicesListDanglingIndices, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + listDanglingIndices, TContext = Context>(params: Req.DanglingIndicesListDanglingIndicesRequest, callback: callbackFn): TransportRequestCallback + listDanglingIndices, TContext = Context>(params: Req.DanglingIndicesListDanglingIndicesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } data_frame_transform_deprecated: { - delete_transform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedDeleteTransform, options?: TransportRequestOptions): TransportRequestPromise> + delete_transform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedDeleteTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_transform, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedDeleteTransform, callback: callbackFn): TransportRequestCallback - delete_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedDeleteTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteTransform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedDeleteTransform, options?: TransportRequestOptions): TransportRequestPromise> + delete_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedDeleteTransformRequest, callback: callbackFn): TransportRequestCallback + delete_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedDeleteTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteTransform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedDeleteTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteTransform, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedDeleteTransform, callback: callbackFn): TransportRequestCallback - deleteTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedDeleteTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_transform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedGetTransform, options?: TransportRequestOptions): TransportRequestPromise> + deleteTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedDeleteTransformRequest, callback: callbackFn): TransportRequestCallback + deleteTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedDeleteTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_transform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedGetTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> get_transform, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransform, callback: callbackFn): TransportRequestCallback - get_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getTransform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedGetTransform, options?: TransportRequestOptions): TransportRequestPromise> + get_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformRequest, callback: callbackFn): TransportRequestCallback + get_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getTransform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedGetTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> getTransform, TContext = Context>(callback: callbackFn): TransportRequestCallback - getTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransform, callback: callbackFn): TransportRequestCallback - getTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_transform_stats, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedGetTransformStats, options?: TransportRequestOptions): TransportRequestPromise> + getTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformRequest, callback: callbackFn): TransportRequestCallback + getTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_transform_stats, TContext = Context>(params?: Req.DataFrameTransformDeprecatedGetTransformStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_transform_stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_transform_stats, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransformStats, callback: callbackFn): TransportRequestCallback - get_transform_stats, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransformStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getTransformStats, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedGetTransformStats, options?: TransportRequestOptions): TransportRequestPromise> + get_transform_stats, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformStatsRequest, callback: callbackFn): TransportRequestCallback + get_transform_stats, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getTransformStats, TContext = Context>(params?: Req.DataFrameTransformDeprecatedGetTransformStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> getTransformStats, TContext = Context>(callback: callbackFn): TransportRequestCallback - getTransformStats, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransformStats, callback: callbackFn): TransportRequestCallback - getTransformStats, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransformStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedPreviewTransform, options?: TransportRequestOptions): TransportRequestPromise> + getTransformStats, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformStatsRequest, callback: callbackFn): TransportRequestCallback + getTransformStats, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DataFrameTransformDeprecatedPreviewTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPreviewTransform, callback: callbackFn): TransportRequestCallback - preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPreviewTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedPreviewTransform, options?: TransportRequestOptions): TransportRequestPromise> + preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPreviewTransformRequest, callback: callbackFn): TransportRequestCallback + preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPreviewTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DataFrameTransformDeprecatedPreviewTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPreviewTransform, callback: callbackFn): TransportRequestCallback - previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPreviewTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedPutTransform, options?: TransportRequestOptions): TransportRequestPromise> + previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPreviewTransformRequest, callback: callbackFn): TransportRequestCallback + previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPreviewTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DataFrameTransformDeprecatedPutTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPutTransform, callback: callbackFn): TransportRequestCallback - put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPutTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedPutTransform, options?: TransportRequestOptions): TransportRequestPromise> + put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPutTransformRequest, callback: callbackFn): TransportRequestCallback + put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPutTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DataFrameTransformDeprecatedPutTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPutTransform, callback: callbackFn): TransportRequestCallback - putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPutTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - start_transform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedStartTransform, options?: TransportRequestOptions): TransportRequestPromise> + putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPutTransformRequest, callback: callbackFn): TransportRequestCallback + putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPutTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + start_transform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedStartTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> start_transform, TContext = Context>(callback: callbackFn): TransportRequestCallback - start_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStartTransform, callback: callbackFn): TransportRequestCallback - start_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStartTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - startTransform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedStartTransform, options?: TransportRequestOptions): TransportRequestPromise> + start_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStartTransformRequest, callback: callbackFn): TransportRequestCallback + start_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStartTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + startTransform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedStartTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> startTransform, TContext = Context>(callback: callbackFn): TransportRequestCallback - startTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStartTransform, callback: callbackFn): TransportRequestCallback - startTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStartTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stop_transform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedStopTransform, options?: TransportRequestOptions): TransportRequestPromise> + startTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStartTransformRequest, callback: callbackFn): TransportRequestCallback + startTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStartTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stop_transform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedStopTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> stop_transform, TContext = Context>(callback: callbackFn): TransportRequestCallback - stop_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStopTransform, callback: callbackFn): TransportRequestCallback - stop_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStopTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stopTransform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedStopTransform, options?: TransportRequestOptions): TransportRequestPromise> + stop_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStopTransformRequest, callback: callbackFn): TransportRequestCallback + stop_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStopTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stopTransform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedStopTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> stopTransform, TContext = Context>(callback: callbackFn): TransportRequestCallback - stopTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStopTransform, callback: callbackFn): TransportRequestCallback - stopTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStopTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedUpdateTransform, options?: TransportRequestOptions): TransportRequestPromise> + stopTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStopTransformRequest, callback: callbackFn): TransportRequestCallback + stopTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStopTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DataFrameTransformDeprecatedUpdateTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedUpdateTransform, callback: callbackFn): TransportRequestCallback - update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedUpdateTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedUpdateTransform, options?: TransportRequestOptions): TransportRequestPromise> + update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedUpdateTransformRequest, callback: callbackFn): TransportRequestCallback + update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedUpdateTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DataFrameTransformDeprecatedUpdateTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedUpdateTransform, callback: callbackFn): TransportRequestCallback - updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedUpdateTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedUpdateTransformRequest, callback: callbackFn): TransportRequestCallback + updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedUpdateTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } dataFrameTransformDeprecated: { - delete_transform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedDeleteTransform, options?: TransportRequestOptions): TransportRequestPromise> + delete_transform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedDeleteTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_transform, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedDeleteTransform, callback: callbackFn): TransportRequestCallback - delete_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedDeleteTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteTransform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedDeleteTransform, options?: TransportRequestOptions): TransportRequestPromise> + delete_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedDeleteTransformRequest, callback: callbackFn): TransportRequestCallback + delete_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedDeleteTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteTransform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedDeleteTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteTransform, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedDeleteTransform, callback: callbackFn): TransportRequestCallback - deleteTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedDeleteTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_transform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedGetTransform, options?: TransportRequestOptions): TransportRequestPromise> + deleteTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedDeleteTransformRequest, callback: callbackFn): TransportRequestCallback + deleteTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedDeleteTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_transform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedGetTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> get_transform, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransform, callback: callbackFn): TransportRequestCallback - get_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getTransform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedGetTransform, options?: TransportRequestOptions): TransportRequestPromise> + get_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformRequest, callback: callbackFn): TransportRequestCallback + get_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getTransform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedGetTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> getTransform, TContext = Context>(callback: callbackFn): TransportRequestCallback - getTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransform, callback: callbackFn): TransportRequestCallback - getTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_transform_stats, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedGetTransformStats, options?: TransportRequestOptions): TransportRequestPromise> + getTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformRequest, callback: callbackFn): TransportRequestCallback + getTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_transform_stats, TContext = Context>(params?: Req.DataFrameTransformDeprecatedGetTransformStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_transform_stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_transform_stats, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransformStats, callback: callbackFn): TransportRequestCallback - get_transform_stats, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransformStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getTransformStats, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedGetTransformStats, options?: TransportRequestOptions): TransportRequestPromise> + get_transform_stats, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformStatsRequest, callback: callbackFn): TransportRequestCallback + get_transform_stats, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getTransformStats, TContext = Context>(params?: Req.DataFrameTransformDeprecatedGetTransformStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> getTransformStats, TContext = Context>(callback: callbackFn): TransportRequestCallback - getTransformStats, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransformStats, callback: callbackFn): TransportRequestCallback - getTransformStats, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedGetTransformStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedPreviewTransform, options?: TransportRequestOptions): TransportRequestPromise> + getTransformStats, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformStatsRequest, callback: callbackFn): TransportRequestCallback + getTransformStats, TContext = Context>(params: Req.DataFrameTransformDeprecatedGetTransformStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DataFrameTransformDeprecatedPreviewTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPreviewTransform, callback: callbackFn): TransportRequestCallback - preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPreviewTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedPreviewTransform, options?: TransportRequestOptions): TransportRequestPromise> + preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPreviewTransformRequest, callback: callbackFn): TransportRequestCallback + preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPreviewTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DataFrameTransformDeprecatedPreviewTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPreviewTransform, callback: callbackFn): TransportRequestCallback - previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPreviewTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedPutTransform, options?: TransportRequestOptions): TransportRequestPromise> + previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPreviewTransformRequest, callback: callbackFn): TransportRequestCallback + previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPreviewTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DataFrameTransformDeprecatedPutTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPutTransform, callback: callbackFn): TransportRequestCallback - put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPutTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedPutTransform, options?: TransportRequestOptions): TransportRequestPromise> + put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPutTransformRequest, callback: callbackFn): TransportRequestCallback + put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPutTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DataFrameTransformDeprecatedPutTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPutTransform, callback: callbackFn): TransportRequestCallback - putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedPutTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - start_transform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedStartTransform, options?: TransportRequestOptions): TransportRequestPromise> + putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPutTransformRequest, callback: callbackFn): TransportRequestCallback + putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedPutTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + start_transform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedStartTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> start_transform, TContext = Context>(callback: callbackFn): TransportRequestCallback - start_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStartTransform, callback: callbackFn): TransportRequestCallback - start_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStartTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - startTransform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedStartTransform, options?: TransportRequestOptions): TransportRequestPromise> + start_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStartTransformRequest, callback: callbackFn): TransportRequestCallback + start_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStartTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + startTransform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedStartTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> startTransform, TContext = Context>(callback: callbackFn): TransportRequestCallback - startTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStartTransform, callback: callbackFn): TransportRequestCallback - startTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStartTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stop_transform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedStopTransform, options?: TransportRequestOptions): TransportRequestPromise> + startTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStartTransformRequest, callback: callbackFn): TransportRequestCallback + startTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStartTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stop_transform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedStopTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> stop_transform, TContext = Context>(callback: callbackFn): TransportRequestCallback - stop_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStopTransform, callback: callbackFn): TransportRequestCallback - stop_transform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStopTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stopTransform, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedStopTransform, options?: TransportRequestOptions): TransportRequestPromise> + stop_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStopTransformRequest, callback: callbackFn): TransportRequestCallback + stop_transform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStopTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stopTransform, TContext = Context>(params?: Req.DataFrameTransformDeprecatedStopTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> stopTransform, TContext = Context>(callback: callbackFn): TransportRequestCallback - stopTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStopTransform, callback: callbackFn): TransportRequestCallback - stopTransform, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedStopTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedUpdateTransform, options?: TransportRequestOptions): TransportRequestPromise> + stopTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStopTransformRequest, callback: callbackFn): TransportRequestCallback + stopTransform, TContext = Context>(params: Req.DataFrameTransformDeprecatedStopTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DataFrameTransformDeprecatedUpdateTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedUpdateTransform, callback: callbackFn): TransportRequestCallback - update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedUpdateTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DataFrameTransformDeprecatedUpdateTransform, options?: TransportRequestOptions): TransportRequestPromise> + update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedUpdateTransformRequest, callback: callbackFn): TransportRequestCallback + update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedUpdateTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DataFrameTransformDeprecatedUpdateTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedUpdateTransform, callback: callbackFn): TransportRequestCallback - updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DataFrameTransformDeprecatedUpdateTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedUpdateTransformRequest, callback: callbackFn): TransportRequestCallback + updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DataFrameTransformDeprecatedUpdateTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } - delete, TContext = Context>(params?: RequestParams.Delete, options?: TransportRequestOptions): TransportRequestPromise> - delete, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params: RequestParams.Delete, callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params: RequestParams.Delete, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_by_query, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DeleteByQuery, options?: TransportRequestOptions): TransportRequestPromise> + delete(params?: Req.DeleteRequest, options?: TransportRequestOptions): TransportRequestPromise> + delete(callback: callbackFn): TransportRequestCallback + delete(params: Req.DeleteRequest, callback: callbackFn): TransportRequestCallback + delete(params: Req.DeleteRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_by_query, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DeleteByQueryRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_by_query, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_by_query, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DeleteByQuery, callback: callbackFn): TransportRequestCallback - delete_by_query, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DeleteByQuery, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.DeleteByQuery, options?: TransportRequestOptions): TransportRequestPromise> + delete_by_query, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DeleteByQueryRequest, callback: callbackFn): TransportRequestCallback + delete_by_query, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DeleteByQueryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.DeleteByQueryRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DeleteByQuery, callback: callbackFn): TransportRequestCallback - deleteByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.DeleteByQuery, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_by_query_rethrottle, TContext = Context>(params?: RequestParams.DeleteByQueryRethrottle, options?: TransportRequestOptions): TransportRequestPromise> + deleteByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DeleteByQueryRequest, callback: callbackFn): TransportRequestCallback + deleteByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.DeleteByQueryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_by_query_rethrottle, TContext = Context>(params?: Req.DeleteByQueryRethrottleRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_by_query_rethrottle, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_by_query_rethrottle, TContext = Context>(params: RequestParams.DeleteByQueryRethrottle, callback: callbackFn): TransportRequestCallback - delete_by_query_rethrottle, TContext = Context>(params: RequestParams.DeleteByQueryRethrottle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteByQueryRethrottle, TContext = Context>(params?: RequestParams.DeleteByQueryRethrottle, options?: TransportRequestOptions): TransportRequestPromise> + delete_by_query_rethrottle, TContext = Context>(params: Req.DeleteByQueryRethrottleRequest, callback: callbackFn): TransportRequestCallback + delete_by_query_rethrottle, TContext = Context>(params: Req.DeleteByQueryRethrottleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteByQueryRethrottle, TContext = Context>(params?: Req.DeleteByQueryRethrottleRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteByQueryRethrottle, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteByQueryRethrottle, TContext = Context>(params: RequestParams.DeleteByQueryRethrottle, callback: callbackFn): TransportRequestCallback - deleteByQueryRethrottle, TContext = Context>(params: RequestParams.DeleteByQueryRethrottle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_script, TContext = Context>(params?: RequestParams.DeleteScript, options?: TransportRequestOptions): TransportRequestPromise> + deleteByQueryRethrottle, TContext = Context>(params: Req.DeleteByQueryRethrottleRequest, callback: callbackFn): TransportRequestCallback + deleteByQueryRethrottle, TContext = Context>(params: Req.DeleteByQueryRethrottleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_script, TContext = Context>(params?: Req.DeleteScriptRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_script, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_script, TContext = Context>(params: RequestParams.DeleteScript, callback: callbackFn): TransportRequestCallback - delete_script, TContext = Context>(params: RequestParams.DeleteScript, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteScript, TContext = Context>(params?: RequestParams.DeleteScript, options?: TransportRequestOptions): TransportRequestPromise> + delete_script, TContext = Context>(params: Req.DeleteScriptRequest, callback: callbackFn): TransportRequestCallback + delete_script, TContext = Context>(params: Req.DeleteScriptRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteScript, TContext = Context>(params?: Req.DeleteScriptRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteScript, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteScript, TContext = Context>(params: RequestParams.DeleteScript, callback: callbackFn): TransportRequestCallback - deleteScript, TContext = Context>(params: RequestParams.DeleteScript, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteScript, TContext = Context>(params: Req.DeleteScriptRequest, callback: callbackFn): TransportRequestCallback + deleteScript, TContext = Context>(params: Req.DeleteScriptRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback enrich: { - delete_policy, TContext = Context>(params?: RequestParams.EnrichDeletePolicy, options?: TransportRequestOptions): TransportRequestPromise> + delete_policy, TContext = Context>(params?: Req.EnrichDeletePolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_policy, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_policy, TContext = Context>(params: RequestParams.EnrichDeletePolicy, callback: callbackFn): TransportRequestCallback - delete_policy, TContext = Context>(params: RequestParams.EnrichDeletePolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deletePolicy, TContext = Context>(params?: RequestParams.EnrichDeletePolicy, options?: TransportRequestOptions): TransportRequestPromise> + delete_policy, TContext = Context>(params: Req.EnrichDeletePolicyRequest, callback: callbackFn): TransportRequestCallback + delete_policy, TContext = Context>(params: Req.EnrichDeletePolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deletePolicy, TContext = Context>(params?: Req.EnrichDeletePolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> deletePolicy, TContext = Context>(callback: callbackFn): TransportRequestCallback - deletePolicy, TContext = Context>(params: RequestParams.EnrichDeletePolicy, callback: callbackFn): TransportRequestCallback - deletePolicy, TContext = Context>(params: RequestParams.EnrichDeletePolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - execute_policy, TContext = Context>(params?: RequestParams.EnrichExecutePolicy, options?: TransportRequestOptions): TransportRequestPromise> + deletePolicy, TContext = Context>(params: Req.EnrichDeletePolicyRequest, callback: callbackFn): TransportRequestCallback + deletePolicy, TContext = Context>(params: Req.EnrichDeletePolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + execute_policy, TContext = Context>(params?: Req.EnrichExecutePolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> execute_policy, TContext = Context>(callback: callbackFn): TransportRequestCallback - execute_policy, TContext = Context>(params: RequestParams.EnrichExecutePolicy, callback: callbackFn): TransportRequestCallback - execute_policy, TContext = Context>(params: RequestParams.EnrichExecutePolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - executePolicy, TContext = Context>(params?: RequestParams.EnrichExecutePolicy, options?: TransportRequestOptions): TransportRequestPromise> + execute_policy, TContext = Context>(params: Req.EnrichExecutePolicyRequest, callback: callbackFn): TransportRequestCallback + execute_policy, TContext = Context>(params: Req.EnrichExecutePolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + executePolicy, TContext = Context>(params?: Req.EnrichExecutePolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> executePolicy, TContext = Context>(callback: callbackFn): TransportRequestCallback - executePolicy, TContext = Context>(params: RequestParams.EnrichExecutePolicy, callback: callbackFn): TransportRequestCallback - executePolicy, TContext = Context>(params: RequestParams.EnrichExecutePolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_policy, TContext = Context>(params?: RequestParams.EnrichGetPolicy, options?: TransportRequestOptions): TransportRequestPromise> + executePolicy, TContext = Context>(params: Req.EnrichExecutePolicyRequest, callback: callbackFn): TransportRequestCallback + executePolicy, TContext = Context>(params: Req.EnrichExecutePolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_policy, TContext = Context>(params?: Req.EnrichGetPolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> get_policy, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_policy, TContext = Context>(params: RequestParams.EnrichGetPolicy, callback: callbackFn): TransportRequestCallback - get_policy, TContext = Context>(params: RequestParams.EnrichGetPolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getPolicy, TContext = Context>(params?: RequestParams.EnrichGetPolicy, options?: TransportRequestOptions): TransportRequestPromise> + get_policy, TContext = Context>(params: Req.EnrichGetPolicyRequest, callback: callbackFn): TransportRequestCallback + get_policy, TContext = Context>(params: Req.EnrichGetPolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getPolicy, TContext = Context>(params?: Req.EnrichGetPolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> getPolicy, TContext = Context>(callback: callbackFn): TransportRequestCallback - getPolicy, TContext = Context>(params: RequestParams.EnrichGetPolicy, callback: callbackFn): TransportRequestCallback - getPolicy, TContext = Context>(params: RequestParams.EnrichGetPolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_policy, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.EnrichPutPolicy, options?: TransportRequestOptions): TransportRequestPromise> + getPolicy, TContext = Context>(params: Req.EnrichGetPolicyRequest, callback: callbackFn): TransportRequestCallback + getPolicy, TContext = Context>(params: Req.EnrichGetPolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_policy, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.EnrichPutPolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> put_policy, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_policy, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.EnrichPutPolicy, callback: callbackFn): TransportRequestCallback - put_policy, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.EnrichPutPolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.EnrichPutPolicy, options?: TransportRequestOptions): TransportRequestPromise> + put_policy, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.EnrichPutPolicyRequest, callback: callbackFn): TransportRequestCallback + put_policy, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.EnrichPutPolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.EnrichPutPolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> putPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.EnrichPutPolicy, callback: callbackFn): TransportRequestCallback - putPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.EnrichPutPolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params?: RequestParams.EnrichStats, options?: TransportRequestOptions): TransportRequestPromise> + putPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.EnrichPutPolicyRequest, callback: callbackFn): TransportRequestCallback + putPolicy, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.EnrichPutPolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params?: Req.EnrichStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.EnrichStats, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.EnrichStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params: Req.EnrichStatsRequest, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params: Req.EnrichStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } eql: { - delete, TContext = Context>(params?: RequestParams.EqlDelete, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params?: Req.EqlDeleteRequest, options?: TransportRequestOptions): TransportRequestPromise> delete, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params: RequestParams.EqlDelete, callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params: RequestParams.EqlDelete, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params?: RequestParams.EqlGet, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params: Req.EqlDeleteRequest, callback: callbackFn): TransportRequestCallback + delete, TContext = Context>(params: Req.EqlDeleteRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get, TContext = Context>(params?: Req.EqlGetRequest, options?: TransportRequestOptions): TransportRequestPromise> get, TContext = Context>(callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.EqlGet, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.EqlGet, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - search, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.EqlSearch, options?: TransportRequestOptions): TransportRequestPromise> + get, TContext = Context>(params: Req.EqlGetRequest, callback: callbackFn): TransportRequestCallback + get, TContext = Context>(params: Req.EqlGetRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + search, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.EqlSearchRequest, options?: TransportRequestOptions): TransportRequestPromise> search, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - search, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.EqlSearch, callback: callbackFn): TransportRequestCallback - search, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.EqlSearch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + search, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.EqlSearchRequest, callback: callbackFn): TransportRequestCallback + search, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.EqlSearchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } - exists, TContext = Context>(params?: RequestParams.Exists, options?: TransportRequestOptions): TransportRequestPromise> + exists, TContext = Context>(params?: Req.ExistsRequest, options?: TransportRequestOptions): TransportRequestPromise> exists, TContext = Context>(callback: callbackFn): TransportRequestCallback - exists, TContext = Context>(params: RequestParams.Exists, callback: callbackFn): TransportRequestCallback - exists, TContext = Context>(params: RequestParams.Exists, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - exists_source, TContext = Context>(params?: RequestParams.ExistsSource, options?: TransportRequestOptions): TransportRequestPromise> + exists, TContext = Context>(params: Req.ExistsRequest, callback: callbackFn): TransportRequestCallback + exists, TContext = Context>(params: Req.ExistsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + exists_source, TContext = Context>(params?: Req.ExistsSourceRequest, options?: TransportRequestOptions): TransportRequestPromise> exists_source, TContext = Context>(callback: callbackFn): TransportRequestCallback - exists_source, TContext = Context>(params: RequestParams.ExistsSource, callback: callbackFn): TransportRequestCallback - exists_source, TContext = Context>(params: RequestParams.ExistsSource, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - existsSource, TContext = Context>(params?: RequestParams.ExistsSource, options?: TransportRequestOptions): TransportRequestPromise> + exists_source, TContext = Context>(params: Req.ExistsSourceRequest, callback: callbackFn): TransportRequestCallback + exists_source, TContext = Context>(params: Req.ExistsSourceRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + existsSource, TContext = Context>(params?: Req.ExistsSourceRequest, options?: TransportRequestOptions): TransportRequestPromise> existsSource, TContext = Context>(callback: callbackFn): TransportRequestCallback - existsSource, TContext = Context>(params: RequestParams.ExistsSource, callback: callbackFn): TransportRequestCallback - existsSource, TContext = Context>(params: RequestParams.ExistsSource, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - explain, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Explain, options?: TransportRequestOptions): TransportRequestPromise> + existsSource, TContext = Context>(params: Req.ExistsSourceRequest, callback: callbackFn): TransportRequestCallback + existsSource, TContext = Context>(params: Req.ExistsSourceRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + explain, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ExplainRequest, options?: TransportRequestOptions): TransportRequestPromise> explain, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - explain, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Explain, callback: callbackFn): TransportRequestCallback - explain, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Explain, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - field_caps, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.FieldCaps, options?: TransportRequestOptions): TransportRequestPromise> + explain, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ExplainRequest, callback: callbackFn): TransportRequestCallback + explain, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ExplainRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + field_caps, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.FieldCapsRequest, options?: TransportRequestOptions): TransportRequestPromise> field_caps, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - field_caps, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.FieldCaps, callback: callbackFn): TransportRequestCallback - field_caps, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.FieldCaps, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - fieldCaps, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.FieldCaps, options?: TransportRequestOptions): TransportRequestPromise> + field_caps, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.FieldCapsRequest, callback: callbackFn): TransportRequestCallback + field_caps, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.FieldCapsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + fieldCaps, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.FieldCapsRequest, options?: TransportRequestOptions): TransportRequestPromise> fieldCaps, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - fieldCaps, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.FieldCaps, callback: callbackFn): TransportRequestCallback - fieldCaps, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.FieldCaps, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params?: RequestParams.Get, options?: TransportRequestOptions): TransportRequestPromise> - get, TContext = Context>(callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.Get, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.Get, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_script, TContext = Context>(params?: RequestParams.GetScript, options?: TransportRequestOptions): TransportRequestPromise> + fieldCaps, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.FieldCapsRequest, callback: callbackFn): TransportRequestCallback + fieldCaps, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.FieldCapsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get(params?: Req.GetRequest, options?: TransportRequestOptions): TransportRequestPromise> + get(callback: callbackFn): TransportRequestCallback + get(params: Req.GetRequest, callback: callbackFn): TransportRequestCallback + get(params: Req.GetRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_script, TContext = Context>(params?: Req.GetScriptRequest, options?: TransportRequestOptions): TransportRequestPromise> get_script, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_script, TContext = Context>(params: RequestParams.GetScript, callback: callbackFn): TransportRequestCallback - get_script, TContext = Context>(params: RequestParams.GetScript, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getScript, TContext = Context>(params?: RequestParams.GetScript, options?: TransportRequestOptions): TransportRequestPromise> + get_script, TContext = Context>(params: Req.GetScriptRequest, callback: callbackFn): TransportRequestCallback + get_script, TContext = Context>(params: Req.GetScriptRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getScript, TContext = Context>(params?: Req.GetScriptRequest, options?: TransportRequestOptions): TransportRequestPromise> getScript, TContext = Context>(callback: callbackFn): TransportRequestCallback - getScript, TContext = Context>(params: RequestParams.GetScript, callback: callbackFn): TransportRequestCallback - getScript, TContext = Context>(params: RequestParams.GetScript, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_script_context, TContext = Context>(params?: RequestParams.GetScriptContext, options?: TransportRequestOptions): TransportRequestPromise> + getScript, TContext = Context>(params: Req.GetScriptRequest, callback: callbackFn): TransportRequestCallback + getScript, TContext = Context>(params: Req.GetScriptRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_script_context, TContext = Context>(params?: Req.GetScriptContextRequest, options?: TransportRequestOptions): TransportRequestPromise> get_script_context, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_script_context, TContext = Context>(params: RequestParams.GetScriptContext, callback: callbackFn): TransportRequestCallback - get_script_context, TContext = Context>(params: RequestParams.GetScriptContext, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getScriptContext, TContext = Context>(params?: RequestParams.GetScriptContext, options?: TransportRequestOptions): TransportRequestPromise> + get_script_context, TContext = Context>(params: Req.GetScriptContextRequest, callback: callbackFn): TransportRequestCallback + get_script_context, TContext = Context>(params: Req.GetScriptContextRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getScriptContext, TContext = Context>(params?: Req.GetScriptContextRequest, options?: TransportRequestOptions): TransportRequestPromise> getScriptContext, TContext = Context>(callback: callbackFn): TransportRequestCallback - getScriptContext, TContext = Context>(params: RequestParams.GetScriptContext, callback: callbackFn): TransportRequestCallback - getScriptContext, TContext = Context>(params: RequestParams.GetScriptContext, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_script_languages, TContext = Context>(params?: RequestParams.GetScriptLanguages, options?: TransportRequestOptions): TransportRequestPromise> + getScriptContext, TContext = Context>(params: Req.GetScriptContextRequest, callback: callbackFn): TransportRequestCallback + getScriptContext, TContext = Context>(params: Req.GetScriptContextRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_script_languages, TContext = Context>(params?: Req.GetScriptLanguagesRequest, options?: TransportRequestOptions): TransportRequestPromise> get_script_languages, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_script_languages, TContext = Context>(params: RequestParams.GetScriptLanguages, callback: callbackFn): TransportRequestCallback - get_script_languages, TContext = Context>(params: RequestParams.GetScriptLanguages, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getScriptLanguages, TContext = Context>(params?: RequestParams.GetScriptLanguages, options?: TransportRequestOptions): TransportRequestPromise> + get_script_languages, TContext = Context>(params: Req.GetScriptLanguagesRequest, callback: callbackFn): TransportRequestCallback + get_script_languages, TContext = Context>(params: Req.GetScriptLanguagesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getScriptLanguages, TContext = Context>(params?: Req.GetScriptLanguagesRequest, options?: TransportRequestOptions): TransportRequestPromise> getScriptLanguages, TContext = Context>(callback: callbackFn): TransportRequestCallback - getScriptLanguages, TContext = Context>(params: RequestParams.GetScriptLanguages, callback: callbackFn): TransportRequestCallback - getScriptLanguages, TContext = Context>(params: RequestParams.GetScriptLanguages, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_source, TContext = Context>(params?: RequestParams.GetSource, options?: TransportRequestOptions): TransportRequestPromise> + getScriptLanguages, TContext = Context>(params: Req.GetScriptLanguagesRequest, callback: callbackFn): TransportRequestCallback + getScriptLanguages, TContext = Context>(params: Req.GetScriptLanguagesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_source, TContext = Context>(params?: Req.GetSourceRequest, options?: TransportRequestOptions): TransportRequestPromise> get_source, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_source, TContext = Context>(params: RequestParams.GetSource, callback: callbackFn): TransportRequestCallback - get_source, TContext = Context>(params: RequestParams.GetSource, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getSource, TContext = Context>(params?: RequestParams.GetSource, options?: TransportRequestOptions): TransportRequestPromise> + get_source, TContext = Context>(params: Req.GetSourceRequest, callback: callbackFn): TransportRequestCallback + get_source, TContext = Context>(params: Req.GetSourceRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getSource, TContext = Context>(params?: Req.GetSourceRequest, options?: TransportRequestOptions): TransportRequestPromise> getSource, TContext = Context>(callback: callbackFn): TransportRequestCallback - getSource, TContext = Context>(params: RequestParams.GetSource, callback: callbackFn): TransportRequestCallback - getSource, TContext = Context>(params: RequestParams.GetSource, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getSource, TContext = Context>(params: Req.GetSourceRequest, callback: callbackFn): TransportRequestCallback + getSource, TContext = Context>(params: Req.GetSourceRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback graph: { - explore, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.GraphExplore, options?: TransportRequestOptions): TransportRequestPromise> + explore, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.GraphExploreRequest, options?: TransportRequestOptions): TransportRequestPromise> explore, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - explore, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.GraphExplore, callback: callbackFn): TransportRequestCallback - explore, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.GraphExplore, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + explore, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.GraphExploreRequest, callback: callbackFn): TransportRequestCallback + explore, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.GraphExploreRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } ilm: { - delete_lifecycle, TContext = Context>(params?: RequestParams.IlmDeleteLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + delete_lifecycle, TContext = Context>(params?: Req.IlmDeleteLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_lifecycle, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_lifecycle, TContext = Context>(params: RequestParams.IlmDeleteLifecycle, callback: callbackFn): TransportRequestCallback - delete_lifecycle, TContext = Context>(params: RequestParams.IlmDeleteLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteLifecycle, TContext = Context>(params?: RequestParams.IlmDeleteLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + delete_lifecycle, TContext = Context>(params: Req.IlmDeleteLifecycleRequest, callback: callbackFn): TransportRequestCallback + delete_lifecycle, TContext = Context>(params: Req.IlmDeleteLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteLifecycle, TContext = Context>(params?: Req.IlmDeleteLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteLifecycle, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteLifecycle, TContext = Context>(params: RequestParams.IlmDeleteLifecycle, callback: callbackFn): TransportRequestCallback - deleteLifecycle, TContext = Context>(params: RequestParams.IlmDeleteLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - explain_lifecycle, TContext = Context>(params?: RequestParams.IlmExplainLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + deleteLifecycle, TContext = Context>(params: Req.IlmDeleteLifecycleRequest, callback: callbackFn): TransportRequestCallback + deleteLifecycle, TContext = Context>(params: Req.IlmDeleteLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + explain_lifecycle, TContext = Context>(params?: Req.IlmExplainLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> explain_lifecycle, TContext = Context>(callback: callbackFn): TransportRequestCallback - explain_lifecycle, TContext = Context>(params: RequestParams.IlmExplainLifecycle, callback: callbackFn): TransportRequestCallback - explain_lifecycle, TContext = Context>(params: RequestParams.IlmExplainLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - explainLifecycle, TContext = Context>(params?: RequestParams.IlmExplainLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + explain_lifecycle, TContext = Context>(params: Req.IlmExplainLifecycleRequest, callback: callbackFn): TransportRequestCallback + explain_lifecycle, TContext = Context>(params: Req.IlmExplainLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + explainLifecycle, TContext = Context>(params?: Req.IlmExplainLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> explainLifecycle, TContext = Context>(callback: callbackFn): TransportRequestCallback - explainLifecycle, TContext = Context>(params: RequestParams.IlmExplainLifecycle, callback: callbackFn): TransportRequestCallback - explainLifecycle, TContext = Context>(params: RequestParams.IlmExplainLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_lifecycle, TContext = Context>(params?: RequestParams.IlmGetLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + explainLifecycle, TContext = Context>(params: Req.IlmExplainLifecycleRequest, callback: callbackFn): TransportRequestCallback + explainLifecycle, TContext = Context>(params: Req.IlmExplainLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_lifecycle, TContext = Context>(params?: Req.IlmGetLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> get_lifecycle, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_lifecycle, TContext = Context>(params: RequestParams.IlmGetLifecycle, callback: callbackFn): TransportRequestCallback - get_lifecycle, TContext = Context>(params: RequestParams.IlmGetLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getLifecycle, TContext = Context>(params?: RequestParams.IlmGetLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + get_lifecycle, TContext = Context>(params: Req.IlmGetLifecycleRequest, callback: callbackFn): TransportRequestCallback + get_lifecycle, TContext = Context>(params: Req.IlmGetLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getLifecycle, TContext = Context>(params?: Req.IlmGetLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> getLifecycle, TContext = Context>(callback: callbackFn): TransportRequestCallback - getLifecycle, TContext = Context>(params: RequestParams.IlmGetLifecycle, callback: callbackFn): TransportRequestCallback - getLifecycle, TContext = Context>(params: RequestParams.IlmGetLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_status, TContext = Context>(params?: RequestParams.IlmGetStatus, options?: TransportRequestOptions): TransportRequestPromise> + getLifecycle, TContext = Context>(params: Req.IlmGetLifecycleRequest, callback: callbackFn): TransportRequestCallback + getLifecycle, TContext = Context>(params: Req.IlmGetLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_status, TContext = Context>(params?: Req.IlmGetStatusRequest, options?: TransportRequestOptions): TransportRequestPromise> get_status, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_status, TContext = Context>(params: RequestParams.IlmGetStatus, callback: callbackFn): TransportRequestCallback - get_status, TContext = Context>(params: RequestParams.IlmGetStatus, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getStatus, TContext = Context>(params?: RequestParams.IlmGetStatus, options?: TransportRequestOptions): TransportRequestPromise> + get_status, TContext = Context>(params: Req.IlmGetStatusRequest, callback: callbackFn): TransportRequestCallback + get_status, TContext = Context>(params: Req.IlmGetStatusRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getStatus, TContext = Context>(params?: Req.IlmGetStatusRequest, options?: TransportRequestOptions): TransportRequestPromise> getStatus, TContext = Context>(callback: callbackFn): TransportRequestCallback - getStatus, TContext = Context>(params: RequestParams.IlmGetStatus, callback: callbackFn): TransportRequestCallback - getStatus, TContext = Context>(params: RequestParams.IlmGetStatus, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - move_to_step, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IlmMoveToStep, options?: TransportRequestOptions): TransportRequestPromise> + getStatus, TContext = Context>(params: Req.IlmGetStatusRequest, callback: callbackFn): TransportRequestCallback + getStatus, TContext = Context>(params: Req.IlmGetStatusRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + move_to_step, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IlmMoveToStepRequest, options?: TransportRequestOptions): TransportRequestPromise> move_to_step, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - move_to_step, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IlmMoveToStep, callback: callbackFn): TransportRequestCallback - move_to_step, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IlmMoveToStep, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - moveToStep, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IlmMoveToStep, options?: TransportRequestOptions): TransportRequestPromise> + move_to_step, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IlmMoveToStepRequest, callback: callbackFn): TransportRequestCallback + move_to_step, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IlmMoveToStepRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + moveToStep, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IlmMoveToStepRequest, options?: TransportRequestOptions): TransportRequestPromise> moveToStep, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - moveToStep, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IlmMoveToStep, callback: callbackFn): TransportRequestCallback - moveToStep, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IlmMoveToStep, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_lifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IlmPutLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + moveToStep, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IlmMoveToStepRequest, callback: callbackFn): TransportRequestCallback + moveToStep, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IlmMoveToStepRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_lifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IlmPutLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> put_lifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_lifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IlmPutLifecycle, callback: callbackFn): TransportRequestCallback - put_lifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IlmPutLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IlmPutLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + put_lifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IlmPutLifecycleRequest, callback: callbackFn): TransportRequestCallback + put_lifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IlmPutLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IlmPutLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IlmPutLifecycle, callback: callbackFn): TransportRequestCallback - putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IlmPutLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - remove_policy, TContext = Context>(params?: RequestParams.IlmRemovePolicy, options?: TransportRequestOptions): TransportRequestPromise> + putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IlmPutLifecycleRequest, callback: callbackFn): TransportRequestCallback + putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IlmPutLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + remove_policy, TContext = Context>(params?: Req.IlmRemovePolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> remove_policy, TContext = Context>(callback: callbackFn): TransportRequestCallback - remove_policy, TContext = Context>(params: RequestParams.IlmRemovePolicy, callback: callbackFn): TransportRequestCallback - remove_policy, TContext = Context>(params: RequestParams.IlmRemovePolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - removePolicy, TContext = Context>(params?: RequestParams.IlmRemovePolicy, options?: TransportRequestOptions): TransportRequestPromise> + remove_policy, TContext = Context>(params: Req.IlmRemovePolicyRequest, callback: callbackFn): TransportRequestCallback + remove_policy, TContext = Context>(params: Req.IlmRemovePolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + removePolicy, TContext = Context>(params?: Req.IlmRemovePolicyRequest, options?: TransportRequestOptions): TransportRequestPromise> removePolicy, TContext = Context>(callback: callbackFn): TransportRequestCallback - removePolicy, TContext = Context>(params: RequestParams.IlmRemovePolicy, callback: callbackFn): TransportRequestCallback - removePolicy, TContext = Context>(params: RequestParams.IlmRemovePolicy, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - retry, TContext = Context>(params?: RequestParams.IlmRetry, options?: TransportRequestOptions): TransportRequestPromise> + removePolicy, TContext = Context>(params: Req.IlmRemovePolicyRequest, callback: callbackFn): TransportRequestCallback + removePolicy, TContext = Context>(params: Req.IlmRemovePolicyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + retry, TContext = Context>(params?: Req.IlmRetryRequest, options?: TransportRequestOptions): TransportRequestPromise> retry, TContext = Context>(callback: callbackFn): TransportRequestCallback - retry, TContext = Context>(params: RequestParams.IlmRetry, callback: callbackFn): TransportRequestCallback - retry, TContext = Context>(params: RequestParams.IlmRetry, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - start, TContext = Context>(params?: RequestParams.IlmStart, options?: TransportRequestOptions): TransportRequestPromise> + retry, TContext = Context>(params: Req.IlmRetryRequest, callback: callbackFn): TransportRequestCallback + retry, TContext = Context>(params: Req.IlmRetryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + start, TContext = Context>(params?: Req.IlmStartRequest, options?: TransportRequestOptions): TransportRequestPromise> start, TContext = Context>(callback: callbackFn): TransportRequestCallback - start, TContext = Context>(params: RequestParams.IlmStart, callback: callbackFn): TransportRequestCallback - start, TContext = Context>(params: RequestParams.IlmStart, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stop, TContext = Context>(params?: RequestParams.IlmStop, options?: TransportRequestOptions): TransportRequestPromise> + start, TContext = Context>(params: Req.IlmStartRequest, callback: callbackFn): TransportRequestCallback + start, TContext = Context>(params: Req.IlmStartRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stop, TContext = Context>(params?: Req.IlmStopRequest, options?: TransportRequestOptions): TransportRequestPromise> stop, TContext = Context>(callback: callbackFn): TransportRequestCallback - stop, TContext = Context>(params: RequestParams.IlmStop, callback: callbackFn): TransportRequestCallback - stop, TContext = Context>(params: RequestParams.IlmStop, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stop, TContext = Context>(params: Req.IlmStopRequest, callback: callbackFn): TransportRequestCallback + stop, TContext = Context>(params: Req.IlmStopRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } - index, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Index, options?: TransportRequestOptions): TransportRequestPromise> - index, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - index, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Index, callback: callbackFn): TransportRequestCallback - index, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Index, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + index, TContext = Context>(params?: Req.IndexRequest, options?: TransportRequestOptions): TransportRequestPromise> + index, TContext = Context>(callback: callbackFn): TransportRequestCallback + index, TContext = Context>(params: Req.IndexRequest, callback: callbackFn): TransportRequestCallback + index, TContext = Context>(params: Req.IndexRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback indices: { - add_block, TContext = Context>(params?: RequestParams.IndicesAddBlock, options?: TransportRequestOptions): TransportRequestPromise> + add_block, TContext = Context>(params?: Req.IndicesAddBlockRequest, options?: TransportRequestOptions): TransportRequestPromise> add_block, TContext = Context>(callback: callbackFn): TransportRequestCallback - add_block, TContext = Context>(params: RequestParams.IndicesAddBlock, callback: callbackFn): TransportRequestCallback - add_block, TContext = Context>(params: RequestParams.IndicesAddBlock, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - addBlock, TContext = Context>(params?: RequestParams.IndicesAddBlock, options?: TransportRequestOptions): TransportRequestPromise> + add_block, TContext = Context>(params: Req.IndicesAddBlockRequest, callback: callbackFn): TransportRequestCallback + add_block, TContext = Context>(params: Req.IndicesAddBlockRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + addBlock, TContext = Context>(params?: Req.IndicesAddBlockRequest, options?: TransportRequestOptions): TransportRequestPromise> addBlock, TContext = Context>(callback: callbackFn): TransportRequestCallback - addBlock, TContext = Context>(params: RequestParams.IndicesAddBlock, callback: callbackFn): TransportRequestCallback - addBlock, TContext = Context>(params: RequestParams.IndicesAddBlock, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - analyze, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesAnalyze, options?: TransportRequestOptions): TransportRequestPromise> + addBlock, TContext = Context>(params: Req.IndicesAddBlockRequest, callback: callbackFn): TransportRequestCallback + addBlock, TContext = Context>(params: Req.IndicesAddBlockRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + analyze, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesAnalyzeRequest, options?: TransportRequestOptions): TransportRequestPromise> analyze, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - analyze, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesAnalyze, callback: callbackFn): TransportRequestCallback - analyze, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesAnalyze, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - clear_cache, TContext = Context>(params?: RequestParams.IndicesClearCache, options?: TransportRequestOptions): TransportRequestPromise> + analyze, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesAnalyzeRequest, callback: callbackFn): TransportRequestCallback + analyze, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesAnalyzeRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + clear_cache, TContext = Context>(params?: Req.IndicesClearCacheRequest, options?: TransportRequestOptions): TransportRequestPromise> clear_cache, TContext = Context>(callback: callbackFn): TransportRequestCallback - clear_cache, TContext = Context>(params: RequestParams.IndicesClearCache, callback: callbackFn): TransportRequestCallback - clear_cache, TContext = Context>(params: RequestParams.IndicesClearCache, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - clearCache, TContext = Context>(params?: RequestParams.IndicesClearCache, options?: TransportRequestOptions): TransportRequestPromise> + clear_cache, TContext = Context>(params: Req.IndicesClearCacheRequest, callback: callbackFn): TransportRequestCallback + clear_cache, TContext = Context>(params: Req.IndicesClearCacheRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + clearCache, TContext = Context>(params?: Req.IndicesClearCacheRequest, options?: TransportRequestOptions): TransportRequestPromise> clearCache, TContext = Context>(callback: callbackFn): TransportRequestCallback - clearCache, TContext = Context>(params: RequestParams.IndicesClearCache, callback: callbackFn): TransportRequestCallback - clearCache, TContext = Context>(params: RequestParams.IndicesClearCache, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - clone, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesClone, options?: TransportRequestOptions): TransportRequestPromise> + clearCache, TContext = Context>(params: Req.IndicesClearCacheRequest, callback: callbackFn): TransportRequestCallback + clearCache, TContext = Context>(params: Req.IndicesClearCacheRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + clone, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesCloneRequest, options?: TransportRequestOptions): TransportRequestPromise> clone, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - clone, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesClone, callback: callbackFn): TransportRequestCallback - clone, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesClone, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - close, TContext = Context>(params?: RequestParams.IndicesClose, options?: TransportRequestOptions): TransportRequestPromise> + clone, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesCloneRequest, callback: callbackFn): TransportRequestCallback + clone, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesCloneRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + close, TContext = Context>(params?: Req.IndicesCloseRequest, options?: TransportRequestOptions): TransportRequestPromise> close, TContext = Context>(callback: callbackFn): TransportRequestCallback - close, TContext = Context>(params: RequestParams.IndicesClose, callback: callbackFn): TransportRequestCallback - close, TContext = Context>(params: RequestParams.IndicesClose, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - create, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesCreate, options?: TransportRequestOptions): TransportRequestPromise> + close, TContext = Context>(params: Req.IndicesCloseRequest, callback: callbackFn): TransportRequestCallback + close, TContext = Context>(params: Req.IndicesCloseRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + create, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesCreateRequest, options?: TransportRequestOptions): TransportRequestPromise> create, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - create, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesCreate, callback: callbackFn): TransportRequestCallback - create, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesCreate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - create_data_stream, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesCreateDataStream, options?: TransportRequestOptions): TransportRequestPromise> + create, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesCreateRequest, callback: callbackFn): TransportRequestCallback + create, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesCreateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + create_data_stream, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesCreateDataStreamRequest, options?: TransportRequestOptions): TransportRequestPromise> create_data_stream, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - create_data_stream, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesCreateDataStream, callback: callbackFn): TransportRequestCallback - create_data_stream, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesCreateDataStream, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - createDataStream, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesCreateDataStream, options?: TransportRequestOptions): TransportRequestPromise> + create_data_stream, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesCreateDataStreamRequest, callback: callbackFn): TransportRequestCallback + create_data_stream, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesCreateDataStreamRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + createDataStream, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesCreateDataStreamRequest, options?: TransportRequestOptions): TransportRequestPromise> createDataStream, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - createDataStream, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesCreateDataStream, callback: callbackFn): TransportRequestCallback - createDataStream, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesCreateDataStream, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - data_streams_stats, TContext = Context>(params?: RequestParams.IndicesDataStreamsStats, options?: TransportRequestOptions): TransportRequestPromise> + createDataStream, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesCreateDataStreamRequest, callback: callbackFn): TransportRequestCallback + createDataStream, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesCreateDataStreamRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + data_streams_stats, TContext = Context>(params?: Req.IndicesDataStreamsStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> data_streams_stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - data_streams_stats, TContext = Context>(params: RequestParams.IndicesDataStreamsStats, callback: callbackFn): TransportRequestCallback - data_streams_stats, TContext = Context>(params: RequestParams.IndicesDataStreamsStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - dataStreamsStats, TContext = Context>(params?: RequestParams.IndicesDataStreamsStats, options?: TransportRequestOptions): TransportRequestPromise> + data_streams_stats, TContext = Context>(params: Req.IndicesDataStreamsStatsRequest, callback: callbackFn): TransportRequestCallback + data_streams_stats, TContext = Context>(params: Req.IndicesDataStreamsStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + dataStreamsStats, TContext = Context>(params?: Req.IndicesDataStreamsStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> dataStreamsStats, TContext = Context>(callback: callbackFn): TransportRequestCallback - dataStreamsStats, TContext = Context>(params: RequestParams.IndicesDataStreamsStats, callback: callbackFn): TransportRequestCallback - dataStreamsStats, TContext = Context>(params: RequestParams.IndicesDataStreamsStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params?: RequestParams.IndicesDelete, options?: TransportRequestOptions): TransportRequestPromise> + dataStreamsStats, TContext = Context>(params: Req.IndicesDataStreamsStatsRequest, callback: callbackFn): TransportRequestCallback + dataStreamsStats, TContext = Context>(params: Req.IndicesDataStreamsStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete, TContext = Context>(params?: Req.IndicesDeleteRequest, options?: TransportRequestOptions): TransportRequestPromise> delete, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params: RequestParams.IndicesDelete, callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params: RequestParams.IndicesDelete, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_alias, TContext = Context>(params?: RequestParams.IndicesDeleteAlias, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params: Req.IndicesDeleteRequest, callback: callbackFn): TransportRequestCallback + delete, TContext = Context>(params: Req.IndicesDeleteRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_alias, TContext = Context>(params?: Req.IndicesDeleteAliasRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_alias, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_alias, TContext = Context>(params: RequestParams.IndicesDeleteAlias, callback: callbackFn): TransportRequestCallback - delete_alias, TContext = Context>(params: RequestParams.IndicesDeleteAlias, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteAlias, TContext = Context>(params?: RequestParams.IndicesDeleteAlias, options?: TransportRequestOptions): TransportRequestPromise> + delete_alias, TContext = Context>(params: Req.IndicesDeleteAliasRequest, callback: callbackFn): TransportRequestCallback + delete_alias, TContext = Context>(params: Req.IndicesDeleteAliasRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteAlias, TContext = Context>(params?: Req.IndicesDeleteAliasRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteAlias, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteAlias, TContext = Context>(params: RequestParams.IndicesDeleteAlias, callback: callbackFn): TransportRequestCallback - deleteAlias, TContext = Context>(params: RequestParams.IndicesDeleteAlias, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_data_stream, TContext = Context>(params?: RequestParams.IndicesDeleteDataStream, options?: TransportRequestOptions): TransportRequestPromise> + deleteAlias, TContext = Context>(params: Req.IndicesDeleteAliasRequest, callback: callbackFn): TransportRequestCallback + deleteAlias, TContext = Context>(params: Req.IndicesDeleteAliasRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_data_stream, TContext = Context>(params?: Req.IndicesDeleteDataStreamRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_data_stream, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_data_stream, TContext = Context>(params: RequestParams.IndicesDeleteDataStream, callback: callbackFn): TransportRequestCallback - delete_data_stream, TContext = Context>(params: RequestParams.IndicesDeleteDataStream, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteDataStream, TContext = Context>(params?: RequestParams.IndicesDeleteDataStream, options?: TransportRequestOptions): TransportRequestPromise> + delete_data_stream, TContext = Context>(params: Req.IndicesDeleteDataStreamRequest, callback: callbackFn): TransportRequestCallback + delete_data_stream, TContext = Context>(params: Req.IndicesDeleteDataStreamRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteDataStream, TContext = Context>(params?: Req.IndicesDeleteDataStreamRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteDataStream, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteDataStream, TContext = Context>(params: RequestParams.IndicesDeleteDataStream, callback: callbackFn): TransportRequestCallback - deleteDataStream, TContext = Context>(params: RequestParams.IndicesDeleteDataStream, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_index_template, TContext = Context>(params?: RequestParams.IndicesDeleteIndexTemplate, options?: TransportRequestOptions): TransportRequestPromise> + deleteDataStream, TContext = Context>(params: Req.IndicesDeleteDataStreamRequest, callback: callbackFn): TransportRequestCallback + deleteDataStream, TContext = Context>(params: Req.IndicesDeleteDataStreamRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_index_template, TContext = Context>(params?: Req.IndicesDeleteIndexTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_index_template, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_index_template, TContext = Context>(params: RequestParams.IndicesDeleteIndexTemplate, callback: callbackFn): TransportRequestCallback - delete_index_template, TContext = Context>(params: RequestParams.IndicesDeleteIndexTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteIndexTemplate, TContext = Context>(params?: RequestParams.IndicesDeleteIndexTemplate, options?: TransportRequestOptions): TransportRequestPromise> + delete_index_template, TContext = Context>(params: Req.IndicesDeleteIndexTemplateRequest, callback: callbackFn): TransportRequestCallback + delete_index_template, TContext = Context>(params: Req.IndicesDeleteIndexTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteIndexTemplate, TContext = Context>(params?: Req.IndicesDeleteIndexTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteIndexTemplate, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteIndexTemplate, TContext = Context>(params: RequestParams.IndicesDeleteIndexTemplate, callback: callbackFn): TransportRequestCallback - deleteIndexTemplate, TContext = Context>(params: RequestParams.IndicesDeleteIndexTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_template, TContext = Context>(params?: RequestParams.IndicesDeleteTemplate, options?: TransportRequestOptions): TransportRequestPromise> + deleteIndexTemplate, TContext = Context>(params: Req.IndicesDeleteIndexTemplateRequest, callback: callbackFn): TransportRequestCallback + deleteIndexTemplate, TContext = Context>(params: Req.IndicesDeleteIndexTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_template, TContext = Context>(params?: Req.IndicesDeleteTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_template, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_template, TContext = Context>(params: RequestParams.IndicesDeleteTemplate, callback: callbackFn): TransportRequestCallback - delete_template, TContext = Context>(params: RequestParams.IndicesDeleteTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteTemplate, TContext = Context>(params?: RequestParams.IndicesDeleteTemplate, options?: TransportRequestOptions): TransportRequestPromise> + delete_template, TContext = Context>(params: Req.IndicesDeleteTemplateRequest, callback: callbackFn): TransportRequestCallback + delete_template, TContext = Context>(params: Req.IndicesDeleteTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteTemplate, TContext = Context>(params?: Req.IndicesDeleteTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteTemplate, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteTemplate, TContext = Context>(params: RequestParams.IndicesDeleteTemplate, callback: callbackFn): TransportRequestCallback - deleteTemplate, TContext = Context>(params: RequestParams.IndicesDeleteTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - exists, TContext = Context>(params?: RequestParams.IndicesExists, options?: TransportRequestOptions): TransportRequestPromise> + deleteTemplate, TContext = Context>(params: Req.IndicesDeleteTemplateRequest, callback: callbackFn): TransportRequestCallback + deleteTemplate, TContext = Context>(params: Req.IndicesDeleteTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + exists, TContext = Context>(params?: Req.IndicesExistsRequest, options?: TransportRequestOptions): TransportRequestPromise> exists, TContext = Context>(callback: callbackFn): TransportRequestCallback - exists, TContext = Context>(params: RequestParams.IndicesExists, callback: callbackFn): TransportRequestCallback - exists, TContext = Context>(params: RequestParams.IndicesExists, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - exists_alias, TContext = Context>(params?: RequestParams.IndicesExistsAlias, options?: TransportRequestOptions): TransportRequestPromise> + exists, TContext = Context>(params: Req.IndicesExistsRequest, callback: callbackFn): TransportRequestCallback + exists, TContext = Context>(params: Req.IndicesExistsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + exists_alias, TContext = Context>(params?: Req.IndicesExistsAliasRequest, options?: TransportRequestOptions): TransportRequestPromise> exists_alias, TContext = Context>(callback: callbackFn): TransportRequestCallback - exists_alias, TContext = Context>(params: RequestParams.IndicesExistsAlias, callback: callbackFn): TransportRequestCallback - exists_alias, TContext = Context>(params: RequestParams.IndicesExistsAlias, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - existsAlias, TContext = Context>(params?: RequestParams.IndicesExistsAlias, options?: TransportRequestOptions): TransportRequestPromise> + exists_alias, TContext = Context>(params: Req.IndicesExistsAliasRequest, callback: callbackFn): TransportRequestCallback + exists_alias, TContext = Context>(params: Req.IndicesExistsAliasRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + existsAlias, TContext = Context>(params?: Req.IndicesExistsAliasRequest, options?: TransportRequestOptions): TransportRequestPromise> existsAlias, TContext = Context>(callback: callbackFn): TransportRequestCallback - existsAlias, TContext = Context>(params: RequestParams.IndicesExistsAlias, callback: callbackFn): TransportRequestCallback - existsAlias, TContext = Context>(params: RequestParams.IndicesExistsAlias, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - exists_index_template, TContext = Context>(params?: RequestParams.IndicesExistsIndexTemplate, options?: TransportRequestOptions): TransportRequestPromise> + existsAlias, TContext = Context>(params: Req.IndicesExistsAliasRequest, callback: callbackFn): TransportRequestCallback + existsAlias, TContext = Context>(params: Req.IndicesExistsAliasRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + exists_index_template, TContext = Context>(params?: Req.IndicesExistsIndexTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> exists_index_template, TContext = Context>(callback: callbackFn): TransportRequestCallback - exists_index_template, TContext = Context>(params: RequestParams.IndicesExistsIndexTemplate, callback: callbackFn): TransportRequestCallback - exists_index_template, TContext = Context>(params: RequestParams.IndicesExistsIndexTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - existsIndexTemplate, TContext = Context>(params?: RequestParams.IndicesExistsIndexTemplate, options?: TransportRequestOptions): TransportRequestPromise> + exists_index_template, TContext = Context>(params: Req.IndicesExistsIndexTemplateRequest, callback: callbackFn): TransportRequestCallback + exists_index_template, TContext = Context>(params: Req.IndicesExistsIndexTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + existsIndexTemplate, TContext = Context>(params?: Req.IndicesExistsIndexTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> existsIndexTemplate, TContext = Context>(callback: callbackFn): TransportRequestCallback - existsIndexTemplate, TContext = Context>(params: RequestParams.IndicesExistsIndexTemplate, callback: callbackFn): TransportRequestCallback - existsIndexTemplate, TContext = Context>(params: RequestParams.IndicesExistsIndexTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - exists_template, TContext = Context>(params?: RequestParams.IndicesExistsTemplate, options?: TransportRequestOptions): TransportRequestPromise> + existsIndexTemplate, TContext = Context>(params: Req.IndicesExistsIndexTemplateRequest, callback: callbackFn): TransportRequestCallback + existsIndexTemplate, TContext = Context>(params: Req.IndicesExistsIndexTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + exists_template, TContext = Context>(params?: Req.IndicesExistsTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> exists_template, TContext = Context>(callback: callbackFn): TransportRequestCallback - exists_template, TContext = Context>(params: RequestParams.IndicesExistsTemplate, callback: callbackFn): TransportRequestCallback - exists_template, TContext = Context>(params: RequestParams.IndicesExistsTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - existsTemplate, TContext = Context>(params?: RequestParams.IndicesExistsTemplate, options?: TransportRequestOptions): TransportRequestPromise> + exists_template, TContext = Context>(params: Req.IndicesExistsTemplateRequest, callback: callbackFn): TransportRequestCallback + exists_template, TContext = Context>(params: Req.IndicesExistsTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + existsTemplate, TContext = Context>(params?: Req.IndicesExistsTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> existsTemplate, TContext = Context>(callback: callbackFn): TransportRequestCallback - existsTemplate, TContext = Context>(params: RequestParams.IndicesExistsTemplate, callback: callbackFn): TransportRequestCallback - existsTemplate, TContext = Context>(params: RequestParams.IndicesExistsTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - exists_type, TContext = Context>(params?: RequestParams.IndicesExistsType, options?: TransportRequestOptions): TransportRequestPromise> + existsTemplate, TContext = Context>(params: Req.IndicesExistsTemplateRequest, callback: callbackFn): TransportRequestCallback + existsTemplate, TContext = Context>(params: Req.IndicesExistsTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + exists_type, TContext = Context>(params?: Req.IndicesExistsTypeRequest, options?: TransportRequestOptions): TransportRequestPromise> exists_type, TContext = Context>(callback: callbackFn): TransportRequestCallback - exists_type, TContext = Context>(params: RequestParams.IndicesExistsType, callback: callbackFn): TransportRequestCallback - exists_type, TContext = Context>(params: RequestParams.IndicesExistsType, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - existsType, TContext = Context>(params?: RequestParams.IndicesExistsType, options?: TransportRequestOptions): TransportRequestPromise> + exists_type, TContext = Context>(params: Req.IndicesExistsTypeRequest, callback: callbackFn): TransportRequestCallback + exists_type, TContext = Context>(params: Req.IndicesExistsTypeRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + existsType, TContext = Context>(params?: Req.IndicesExistsTypeRequest, options?: TransportRequestOptions): TransportRequestPromise> existsType, TContext = Context>(callback: callbackFn): TransportRequestCallback - existsType, TContext = Context>(params: RequestParams.IndicesExistsType, callback: callbackFn): TransportRequestCallback - existsType, TContext = Context>(params: RequestParams.IndicesExistsType, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - flush, TContext = Context>(params?: RequestParams.IndicesFlush, options?: TransportRequestOptions): TransportRequestPromise> + existsType, TContext = Context>(params: Req.IndicesExistsTypeRequest, callback: callbackFn): TransportRequestCallback + existsType, TContext = Context>(params: Req.IndicesExistsTypeRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + flush, TContext = Context>(params?: Req.IndicesFlushRequest, options?: TransportRequestOptions): TransportRequestPromise> flush, TContext = Context>(callback: callbackFn): TransportRequestCallback - flush, TContext = Context>(params: RequestParams.IndicesFlush, callback: callbackFn): TransportRequestCallback - flush, TContext = Context>(params: RequestParams.IndicesFlush, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - forcemerge, TContext = Context>(params?: RequestParams.IndicesForcemerge, options?: TransportRequestOptions): TransportRequestPromise> + flush, TContext = Context>(params: Req.IndicesFlushRequest, callback: callbackFn): TransportRequestCallback + flush, TContext = Context>(params: Req.IndicesFlushRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + forcemerge, TContext = Context>(params?: Req.IndicesForcemergeRequest, options?: TransportRequestOptions): TransportRequestPromise> forcemerge, TContext = Context>(callback: callbackFn): TransportRequestCallback - forcemerge, TContext = Context>(params: RequestParams.IndicesForcemerge, callback: callbackFn): TransportRequestCallback - forcemerge, TContext = Context>(params: RequestParams.IndicesForcemerge, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - freeze, TContext = Context>(params?: RequestParams.IndicesFreeze, options?: TransportRequestOptions): TransportRequestPromise> + forcemerge, TContext = Context>(params: Req.IndicesForcemergeRequest, callback: callbackFn): TransportRequestCallback + forcemerge, TContext = Context>(params: Req.IndicesForcemergeRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + freeze, TContext = Context>(params?: Req.IndicesFreezeRequest, options?: TransportRequestOptions): TransportRequestPromise> freeze, TContext = Context>(callback: callbackFn): TransportRequestCallback - freeze, TContext = Context>(params: RequestParams.IndicesFreeze, callback: callbackFn): TransportRequestCallback - freeze, TContext = Context>(params: RequestParams.IndicesFreeze, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params?: RequestParams.IndicesGet, options?: TransportRequestOptions): TransportRequestPromise> + freeze, TContext = Context>(params: Req.IndicesFreezeRequest, callback: callbackFn): TransportRequestCallback + freeze, TContext = Context>(params: Req.IndicesFreezeRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get, TContext = Context>(params?: Req.IndicesGetRequest, options?: TransportRequestOptions): TransportRequestPromise> get, TContext = Context>(callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.IndicesGet, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.IndicesGet, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_alias, TContext = Context>(params?: RequestParams.IndicesGetAlias, options?: TransportRequestOptions): TransportRequestPromise> + get, TContext = Context>(params: Req.IndicesGetRequest, callback: callbackFn): TransportRequestCallback + get, TContext = Context>(params: Req.IndicesGetRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_alias, TContext = Context>(params?: Req.IndicesGetAliasRequest, options?: TransportRequestOptions): TransportRequestPromise> get_alias, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_alias, TContext = Context>(params: RequestParams.IndicesGetAlias, callback: callbackFn): TransportRequestCallback - get_alias, TContext = Context>(params: RequestParams.IndicesGetAlias, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getAlias, TContext = Context>(params?: RequestParams.IndicesGetAlias, options?: TransportRequestOptions): TransportRequestPromise> + get_alias, TContext = Context>(params: Req.IndicesGetAliasRequest, callback: callbackFn): TransportRequestCallback + get_alias, TContext = Context>(params: Req.IndicesGetAliasRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getAlias, TContext = Context>(params?: Req.IndicesGetAliasRequest, options?: TransportRequestOptions): TransportRequestPromise> getAlias, TContext = Context>(callback: callbackFn): TransportRequestCallback - getAlias, TContext = Context>(params: RequestParams.IndicesGetAlias, callback: callbackFn): TransportRequestCallback - getAlias, TContext = Context>(params: RequestParams.IndicesGetAlias, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_data_stream, TContext = Context>(params?: RequestParams.IndicesGetDataStream, options?: TransportRequestOptions): TransportRequestPromise> + getAlias, TContext = Context>(params: Req.IndicesGetAliasRequest, callback: callbackFn): TransportRequestCallback + getAlias, TContext = Context>(params: Req.IndicesGetAliasRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_data_stream, TContext = Context>(params?: Req.IndicesGetDataStreamRequest, options?: TransportRequestOptions): TransportRequestPromise> get_data_stream, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_data_stream, TContext = Context>(params: RequestParams.IndicesGetDataStream, callback: callbackFn): TransportRequestCallback - get_data_stream, TContext = Context>(params: RequestParams.IndicesGetDataStream, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getDataStream, TContext = Context>(params?: RequestParams.IndicesGetDataStream, options?: TransportRequestOptions): TransportRequestPromise> + get_data_stream, TContext = Context>(params: Req.IndicesGetDataStreamRequest, callback: callbackFn): TransportRequestCallback + get_data_stream, TContext = Context>(params: Req.IndicesGetDataStreamRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getDataStream, TContext = Context>(params?: Req.IndicesGetDataStreamRequest, options?: TransportRequestOptions): TransportRequestPromise> getDataStream, TContext = Context>(callback: callbackFn): TransportRequestCallback - getDataStream, TContext = Context>(params: RequestParams.IndicesGetDataStream, callback: callbackFn): TransportRequestCallback - getDataStream, TContext = Context>(params: RequestParams.IndicesGetDataStream, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_field_mapping, TContext = Context>(params?: RequestParams.IndicesGetFieldMapping, options?: TransportRequestOptions): TransportRequestPromise> + getDataStream, TContext = Context>(params: Req.IndicesGetDataStreamRequest, callback: callbackFn): TransportRequestCallback + getDataStream, TContext = Context>(params: Req.IndicesGetDataStreamRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_field_mapping, TContext = Context>(params?: Req.IndicesGetFieldMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> get_field_mapping, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_field_mapping, TContext = Context>(params: RequestParams.IndicesGetFieldMapping, callback: callbackFn): TransportRequestCallback - get_field_mapping, TContext = Context>(params: RequestParams.IndicesGetFieldMapping, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getFieldMapping, TContext = Context>(params?: RequestParams.IndicesGetFieldMapping, options?: TransportRequestOptions): TransportRequestPromise> + get_field_mapping, TContext = Context>(params: Req.IndicesGetFieldMappingRequest, callback: callbackFn): TransportRequestCallback + get_field_mapping, TContext = Context>(params: Req.IndicesGetFieldMappingRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getFieldMapping, TContext = Context>(params?: Req.IndicesGetFieldMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> getFieldMapping, TContext = Context>(callback: callbackFn): TransportRequestCallback - getFieldMapping, TContext = Context>(params: RequestParams.IndicesGetFieldMapping, callback: callbackFn): TransportRequestCallback - getFieldMapping, TContext = Context>(params: RequestParams.IndicesGetFieldMapping, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_index_template, TContext = Context>(params?: RequestParams.IndicesGetIndexTemplate, options?: TransportRequestOptions): TransportRequestPromise> + getFieldMapping, TContext = Context>(params: Req.IndicesGetFieldMappingRequest, callback: callbackFn): TransportRequestCallback + getFieldMapping, TContext = Context>(params: Req.IndicesGetFieldMappingRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_index_template, TContext = Context>(params?: Req.IndicesGetIndexTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> get_index_template, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_index_template, TContext = Context>(params: RequestParams.IndicesGetIndexTemplate, callback: callbackFn): TransportRequestCallback - get_index_template, TContext = Context>(params: RequestParams.IndicesGetIndexTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getIndexTemplate, TContext = Context>(params?: RequestParams.IndicesGetIndexTemplate, options?: TransportRequestOptions): TransportRequestPromise> + get_index_template, TContext = Context>(params: Req.IndicesGetIndexTemplateRequest, callback: callbackFn): TransportRequestCallback + get_index_template, TContext = Context>(params: Req.IndicesGetIndexTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getIndexTemplate, TContext = Context>(params?: Req.IndicesGetIndexTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> getIndexTemplate, TContext = Context>(callback: callbackFn): TransportRequestCallback - getIndexTemplate, TContext = Context>(params: RequestParams.IndicesGetIndexTemplate, callback: callbackFn): TransportRequestCallback - getIndexTemplate, TContext = Context>(params: RequestParams.IndicesGetIndexTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_mapping, TContext = Context>(params?: RequestParams.IndicesGetMapping, options?: TransportRequestOptions): TransportRequestPromise> + getIndexTemplate, TContext = Context>(params: Req.IndicesGetIndexTemplateRequest, callback: callbackFn): TransportRequestCallback + getIndexTemplate, TContext = Context>(params: Req.IndicesGetIndexTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_mapping, TContext = Context>(params?: Req.IndicesGetMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> get_mapping, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_mapping, TContext = Context>(params: RequestParams.IndicesGetMapping, callback: callbackFn): TransportRequestCallback - get_mapping, TContext = Context>(params: RequestParams.IndicesGetMapping, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getMapping, TContext = Context>(params?: RequestParams.IndicesGetMapping, options?: TransportRequestOptions): TransportRequestPromise> + get_mapping, TContext = Context>(params: Req.IndicesGetMappingRequest, callback: callbackFn): TransportRequestCallback + get_mapping, TContext = Context>(params: Req.IndicesGetMappingRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getMapping, TContext = Context>(params?: Req.IndicesGetMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> getMapping, TContext = Context>(callback: callbackFn): TransportRequestCallback - getMapping, TContext = Context>(params: RequestParams.IndicesGetMapping, callback: callbackFn): TransportRequestCallback - getMapping, TContext = Context>(params: RequestParams.IndicesGetMapping, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_settings, TContext = Context>(params?: RequestParams.IndicesGetSettings, options?: TransportRequestOptions): TransportRequestPromise> + getMapping, TContext = Context>(params: Req.IndicesGetMappingRequest, callback: callbackFn): TransportRequestCallback + getMapping, TContext = Context>(params: Req.IndicesGetMappingRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_settings, TContext = Context>(params?: Req.IndicesGetSettingsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_settings, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_settings, TContext = Context>(params: RequestParams.IndicesGetSettings, callback: callbackFn): TransportRequestCallback - get_settings, TContext = Context>(params: RequestParams.IndicesGetSettings, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getSettings, TContext = Context>(params?: RequestParams.IndicesGetSettings, options?: TransportRequestOptions): TransportRequestPromise> + get_settings, TContext = Context>(params: Req.IndicesGetSettingsRequest, callback: callbackFn): TransportRequestCallback + get_settings, TContext = Context>(params: Req.IndicesGetSettingsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getSettings, TContext = Context>(params?: Req.IndicesGetSettingsRequest, options?: TransportRequestOptions): TransportRequestPromise> getSettings, TContext = Context>(callback: callbackFn): TransportRequestCallback - getSettings, TContext = Context>(params: RequestParams.IndicesGetSettings, callback: callbackFn): TransportRequestCallback - getSettings, TContext = Context>(params: RequestParams.IndicesGetSettings, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_template, TContext = Context>(params?: RequestParams.IndicesGetTemplate, options?: TransportRequestOptions): TransportRequestPromise> + getSettings, TContext = Context>(params: Req.IndicesGetSettingsRequest, callback: callbackFn): TransportRequestCallback + getSettings, TContext = Context>(params: Req.IndicesGetSettingsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_template, TContext = Context>(params?: Req.IndicesGetTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> get_template, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_template, TContext = Context>(params: RequestParams.IndicesGetTemplate, callback: callbackFn): TransportRequestCallback - get_template, TContext = Context>(params: RequestParams.IndicesGetTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getTemplate, TContext = Context>(params?: RequestParams.IndicesGetTemplate, options?: TransportRequestOptions): TransportRequestPromise> + get_template, TContext = Context>(params: Req.IndicesGetTemplateRequest, callback: callbackFn): TransportRequestCallback + get_template, TContext = Context>(params: Req.IndicesGetTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getTemplate, TContext = Context>(params?: Req.IndicesGetTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> getTemplate, TContext = Context>(callback: callbackFn): TransportRequestCallback - getTemplate, TContext = Context>(params: RequestParams.IndicesGetTemplate, callback: callbackFn): TransportRequestCallback - getTemplate, TContext = Context>(params: RequestParams.IndicesGetTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_upgrade, TContext = Context>(params?: RequestParams.IndicesGetUpgrade, options?: TransportRequestOptions): TransportRequestPromise> + getTemplate, TContext = Context>(params: Req.IndicesGetTemplateRequest, callback: callbackFn): TransportRequestCallback + getTemplate, TContext = Context>(params: Req.IndicesGetTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_upgrade, TContext = Context>(params?: Req.IndicesGetUpgradeRequest, options?: TransportRequestOptions): TransportRequestPromise> get_upgrade, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_upgrade, TContext = Context>(params: RequestParams.IndicesGetUpgrade, callback: callbackFn): TransportRequestCallback - get_upgrade, TContext = Context>(params: RequestParams.IndicesGetUpgrade, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getUpgrade, TContext = Context>(params?: RequestParams.IndicesGetUpgrade, options?: TransportRequestOptions): TransportRequestPromise> + get_upgrade, TContext = Context>(params: Req.IndicesGetUpgradeRequest, callback: callbackFn): TransportRequestCallback + get_upgrade, TContext = Context>(params: Req.IndicesGetUpgradeRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getUpgrade, TContext = Context>(params?: Req.IndicesGetUpgradeRequest, options?: TransportRequestOptions): TransportRequestPromise> getUpgrade, TContext = Context>(callback: callbackFn): TransportRequestCallback - getUpgrade, TContext = Context>(params: RequestParams.IndicesGetUpgrade, callback: callbackFn): TransportRequestCallback - getUpgrade, TContext = Context>(params: RequestParams.IndicesGetUpgrade, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - open, TContext = Context>(params?: RequestParams.IndicesOpen, options?: TransportRequestOptions): TransportRequestPromise> + getUpgrade, TContext = Context>(params: Req.IndicesGetUpgradeRequest, callback: callbackFn): TransportRequestCallback + getUpgrade, TContext = Context>(params: Req.IndicesGetUpgradeRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + open, TContext = Context>(params?: Req.IndicesOpenRequest, options?: TransportRequestOptions): TransportRequestPromise> open, TContext = Context>(callback: callbackFn): TransportRequestCallback - open, TContext = Context>(params: RequestParams.IndicesOpen, callback: callbackFn): TransportRequestCallback - open, TContext = Context>(params: RequestParams.IndicesOpen, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_alias, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesPutAlias, options?: TransportRequestOptions): TransportRequestPromise> + open, TContext = Context>(params: Req.IndicesOpenRequest, callback: callbackFn): TransportRequestCallback + open, TContext = Context>(params: Req.IndicesOpenRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_alias, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesPutAliasRequest, options?: TransportRequestOptions): TransportRequestPromise> put_alias, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_alias, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutAlias, callback: callbackFn): TransportRequestCallback - put_alias, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutAlias, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putAlias, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesPutAlias, options?: TransportRequestOptions): TransportRequestPromise> + put_alias, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutAliasRequest, callback: callbackFn): TransportRequestCallback + put_alias, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutAliasRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putAlias, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesPutAliasRequest, options?: TransportRequestOptions): TransportRequestPromise> putAlias, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putAlias, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutAlias, callback: callbackFn): TransportRequestCallback - putAlias, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutAlias, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_index_template, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesPutIndexTemplate, options?: TransportRequestOptions): TransportRequestPromise> + putAlias, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutAliasRequest, callback: callbackFn): TransportRequestCallback + putAlias, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutAliasRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_index_template, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesPutIndexTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> put_index_template, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_index_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutIndexTemplate, callback: callbackFn): TransportRequestCallback - put_index_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutIndexTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesPutIndexTemplate, options?: TransportRequestOptions): TransportRequestPromise> + put_index_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutIndexTemplateRequest, callback: callbackFn): TransportRequestCallback + put_index_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutIndexTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesPutIndexTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> putIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutIndexTemplate, callback: callbackFn): TransportRequestCallback - putIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutIndexTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_mapping, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesPutMapping, options?: TransportRequestOptions): TransportRequestPromise> + putIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutIndexTemplateRequest, callback: callbackFn): TransportRequestCallback + putIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutIndexTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_mapping, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesPutMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> put_mapping, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_mapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutMapping, callback: callbackFn): TransportRequestCallback - put_mapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutMapping, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesPutMapping, options?: TransportRequestOptions): TransportRequestPromise> + put_mapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutMappingRequest, callback: callbackFn): TransportRequestCallback + put_mapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutMappingRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesPutMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> putMapping, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutMapping, callback: callbackFn): TransportRequestCallback - putMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutMapping, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesPutSettings, options?: TransportRequestOptions): TransportRequestPromise> + putMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutMappingRequest, callback: callbackFn): TransportRequestCallback + putMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutMappingRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesPutSettingsRequest, options?: TransportRequestOptions): TransportRequestPromise> put_settings, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutSettings, callback: callbackFn): TransportRequestCallback - put_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutSettings, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesPutSettings, options?: TransportRequestOptions): TransportRequestPromise> + put_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutSettingsRequest, callback: callbackFn): TransportRequestCallback + put_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutSettingsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesPutSettingsRequest, options?: TransportRequestOptions): TransportRequestPromise> putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutSettings, callback: callbackFn): TransportRequestCallback - putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutSettings, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_template, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesPutTemplate, options?: TransportRequestOptions): TransportRequestPromise> + putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutSettingsRequest, callback: callbackFn): TransportRequestCallback + putSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutSettingsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_template, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesPutTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> put_template, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutTemplate, callback: callbackFn): TransportRequestCallback - put_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesPutTemplate, options?: TransportRequestOptions): TransportRequestPromise> + put_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutTemplateRequest, callback: callbackFn): TransportRequestCallback + put_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesPutTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> putTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutTemplate, callback: callbackFn): TransportRequestCallback - putTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesPutTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - recovery, TContext = Context>(params?: RequestParams.IndicesRecovery, options?: TransportRequestOptions): TransportRequestPromise> + putTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutTemplateRequest, callback: callbackFn): TransportRequestCallback + putTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesPutTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + recovery, TContext = Context>(params?: Req.IndicesRecoveryRequest, options?: TransportRequestOptions): TransportRequestPromise> recovery, TContext = Context>(callback: callbackFn): TransportRequestCallback - recovery, TContext = Context>(params: RequestParams.IndicesRecovery, callback: callbackFn): TransportRequestCallback - recovery, TContext = Context>(params: RequestParams.IndicesRecovery, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - refresh, TContext = Context>(params?: RequestParams.IndicesRefresh, options?: TransportRequestOptions): TransportRequestPromise> + recovery, TContext = Context>(params: Req.IndicesRecoveryRequest, callback: callbackFn): TransportRequestCallback + recovery, TContext = Context>(params: Req.IndicesRecoveryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + refresh, TContext = Context>(params?: Req.IndicesRefreshRequest, options?: TransportRequestOptions): TransportRequestPromise> refresh, TContext = Context>(callback: callbackFn): TransportRequestCallback - refresh, TContext = Context>(params: RequestParams.IndicesRefresh, callback: callbackFn): TransportRequestCallback - refresh, TContext = Context>(params: RequestParams.IndicesRefresh, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - reload_search_analyzers, TContext = Context>(params?: RequestParams.IndicesReloadSearchAnalyzers, options?: TransportRequestOptions): TransportRequestPromise> + refresh, TContext = Context>(params: Req.IndicesRefreshRequest, callback: callbackFn): TransportRequestCallback + refresh, TContext = Context>(params: Req.IndicesRefreshRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + reload_search_analyzers, TContext = Context>(params?: Req.IndicesReloadSearchAnalyzersRequest, options?: TransportRequestOptions): TransportRequestPromise> reload_search_analyzers, TContext = Context>(callback: callbackFn): TransportRequestCallback - reload_search_analyzers, TContext = Context>(params: RequestParams.IndicesReloadSearchAnalyzers, callback: callbackFn): TransportRequestCallback - reload_search_analyzers, TContext = Context>(params: RequestParams.IndicesReloadSearchAnalyzers, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - reloadSearchAnalyzers, TContext = Context>(params?: RequestParams.IndicesReloadSearchAnalyzers, options?: TransportRequestOptions): TransportRequestPromise> + reload_search_analyzers, TContext = Context>(params: Req.IndicesReloadSearchAnalyzersRequest, callback: callbackFn): TransportRequestCallback + reload_search_analyzers, TContext = Context>(params: Req.IndicesReloadSearchAnalyzersRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + reloadSearchAnalyzers, TContext = Context>(params?: Req.IndicesReloadSearchAnalyzersRequest, options?: TransportRequestOptions): TransportRequestPromise> reloadSearchAnalyzers, TContext = Context>(callback: callbackFn): TransportRequestCallback - reloadSearchAnalyzers, TContext = Context>(params: RequestParams.IndicesReloadSearchAnalyzers, callback: callbackFn): TransportRequestCallback - reloadSearchAnalyzers, TContext = Context>(params: RequestParams.IndicesReloadSearchAnalyzers, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - resolve_index, TContext = Context>(params?: RequestParams.IndicesResolveIndex, options?: TransportRequestOptions): TransportRequestPromise> + reloadSearchAnalyzers, TContext = Context>(params: Req.IndicesReloadSearchAnalyzersRequest, callback: callbackFn): TransportRequestCallback + reloadSearchAnalyzers, TContext = Context>(params: Req.IndicesReloadSearchAnalyzersRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + resolve_index, TContext = Context>(params?: Req.IndicesResolveIndexRequest, options?: TransportRequestOptions): TransportRequestPromise> resolve_index, TContext = Context>(callback: callbackFn): TransportRequestCallback - resolve_index, TContext = Context>(params: RequestParams.IndicesResolveIndex, callback: callbackFn): TransportRequestCallback - resolve_index, TContext = Context>(params: RequestParams.IndicesResolveIndex, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - resolveIndex, TContext = Context>(params?: RequestParams.IndicesResolveIndex, options?: TransportRequestOptions): TransportRequestPromise> + resolve_index, TContext = Context>(params: Req.IndicesResolveIndexRequest, callback: callbackFn): TransportRequestCallback + resolve_index, TContext = Context>(params: Req.IndicesResolveIndexRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + resolveIndex, TContext = Context>(params?: Req.IndicesResolveIndexRequest, options?: TransportRequestOptions): TransportRequestPromise> resolveIndex, TContext = Context>(callback: callbackFn): TransportRequestCallback - resolveIndex, TContext = Context>(params: RequestParams.IndicesResolveIndex, callback: callbackFn): TransportRequestCallback - resolveIndex, TContext = Context>(params: RequestParams.IndicesResolveIndex, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - rollover, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesRollover, options?: TransportRequestOptions): TransportRequestPromise> + resolveIndex, TContext = Context>(params: Req.IndicesResolveIndexRequest, callback: callbackFn): TransportRequestCallback + resolveIndex, TContext = Context>(params: Req.IndicesResolveIndexRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + rollover, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesRolloverRequest, options?: TransportRequestOptions): TransportRequestPromise> rollover, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - rollover, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesRollover, callback: callbackFn): TransportRequestCallback - rollover, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesRollover, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - segments, TContext = Context>(params?: RequestParams.IndicesSegments, options?: TransportRequestOptions): TransportRequestPromise> + rollover, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesRolloverRequest, callback: callbackFn): TransportRequestCallback + rollover, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesRolloverRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + segments, TContext = Context>(params?: Req.IndicesSegmentsRequest, options?: TransportRequestOptions): TransportRequestPromise> segments, TContext = Context>(callback: callbackFn): TransportRequestCallback - segments, TContext = Context>(params: RequestParams.IndicesSegments, callback: callbackFn): TransportRequestCallback - segments, TContext = Context>(params: RequestParams.IndicesSegments, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - shard_stores, TContext = Context>(params?: RequestParams.IndicesShardStores, options?: TransportRequestOptions): TransportRequestPromise> + segments, TContext = Context>(params: Req.IndicesSegmentsRequest, callback: callbackFn): TransportRequestCallback + segments, TContext = Context>(params: Req.IndicesSegmentsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + shard_stores, TContext = Context>(params?: Req.IndicesShardStoresRequest, options?: TransportRequestOptions): TransportRequestPromise> shard_stores, TContext = Context>(callback: callbackFn): TransportRequestCallback - shard_stores, TContext = Context>(params: RequestParams.IndicesShardStores, callback: callbackFn): TransportRequestCallback - shard_stores, TContext = Context>(params: RequestParams.IndicesShardStores, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - shardStores, TContext = Context>(params?: RequestParams.IndicesShardStores, options?: TransportRequestOptions): TransportRequestPromise> + shard_stores, TContext = Context>(params: Req.IndicesShardStoresRequest, callback: callbackFn): TransportRequestCallback + shard_stores, TContext = Context>(params: Req.IndicesShardStoresRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + shardStores, TContext = Context>(params?: Req.IndicesShardStoresRequest, options?: TransportRequestOptions): TransportRequestPromise> shardStores, TContext = Context>(callback: callbackFn): TransportRequestCallback - shardStores, TContext = Context>(params: RequestParams.IndicesShardStores, callback: callbackFn): TransportRequestCallback - shardStores, TContext = Context>(params: RequestParams.IndicesShardStores, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - shrink, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesShrink, options?: TransportRequestOptions): TransportRequestPromise> + shardStores, TContext = Context>(params: Req.IndicesShardStoresRequest, callback: callbackFn): TransportRequestCallback + shardStores, TContext = Context>(params: Req.IndicesShardStoresRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + shrink, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesShrinkRequest, options?: TransportRequestOptions): TransportRequestPromise> shrink, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - shrink, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesShrink, callback: callbackFn): TransportRequestCallback - shrink, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesShrink, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - simulate_index_template, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesSimulateIndexTemplate, options?: TransportRequestOptions): TransportRequestPromise> + shrink, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesShrinkRequest, callback: callbackFn): TransportRequestCallback + shrink, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesShrinkRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + simulate_index_template, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesSimulateIndexTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> simulate_index_template, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - simulate_index_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesSimulateIndexTemplate, callback: callbackFn): TransportRequestCallback - simulate_index_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesSimulateIndexTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - simulateIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesSimulateIndexTemplate, options?: TransportRequestOptions): TransportRequestPromise> + simulate_index_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesSimulateIndexTemplateRequest, callback: callbackFn): TransportRequestCallback + simulate_index_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesSimulateIndexTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + simulateIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesSimulateIndexTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> simulateIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - simulateIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesSimulateIndexTemplate, callback: callbackFn): TransportRequestCallback - simulateIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesSimulateIndexTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - simulate_template, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesSimulateTemplate, options?: TransportRequestOptions): TransportRequestPromise> + simulateIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesSimulateIndexTemplateRequest, callback: callbackFn): TransportRequestCallback + simulateIndexTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesSimulateIndexTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + simulate_template, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesSimulateTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> simulate_template, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - simulate_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesSimulateTemplate, callback: callbackFn): TransportRequestCallback - simulate_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesSimulateTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - simulateTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesSimulateTemplate, options?: TransportRequestOptions): TransportRequestPromise> + simulate_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesSimulateTemplateRequest, callback: callbackFn): TransportRequestCallback + simulate_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesSimulateTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + simulateTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesSimulateTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> simulateTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - simulateTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesSimulateTemplate, callback: callbackFn): TransportRequestCallback - simulateTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesSimulateTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - split, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesSplit, options?: TransportRequestOptions): TransportRequestPromise> + simulateTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesSimulateTemplateRequest, callback: callbackFn): TransportRequestCallback + simulateTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesSimulateTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + split, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesSplitRequest, options?: TransportRequestOptions): TransportRequestPromise> split, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - split, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesSplit, callback: callbackFn): TransportRequestCallback - split, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesSplit, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params?: RequestParams.IndicesStats, options?: TransportRequestOptions): TransportRequestPromise> + split, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesSplitRequest, callback: callbackFn): TransportRequestCallback + split, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesSplitRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params?: Req.IndicesStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.IndicesStats, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.IndicesStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - unfreeze, TContext = Context>(params?: RequestParams.IndicesUnfreeze, options?: TransportRequestOptions): TransportRequestPromise> + stats, TContext = Context>(params: Req.IndicesStatsRequest, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params: Req.IndicesStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + unfreeze, TContext = Context>(params?: Req.IndicesUnfreezeRequest, options?: TransportRequestOptions): TransportRequestPromise> unfreeze, TContext = Context>(callback: callbackFn): TransportRequestCallback - unfreeze, TContext = Context>(params: RequestParams.IndicesUnfreeze, callback: callbackFn): TransportRequestCallback - unfreeze, TContext = Context>(params: RequestParams.IndicesUnfreeze, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - update_aliases, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesUpdateAliases, options?: TransportRequestOptions): TransportRequestPromise> + unfreeze, TContext = Context>(params: Req.IndicesUnfreezeRequest, callback: callbackFn): TransportRequestCallback + unfreeze, TContext = Context>(params: Req.IndicesUnfreezeRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + update_aliases, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesUpdateAliasesRequest, options?: TransportRequestOptions): TransportRequestPromise> update_aliases, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - update_aliases, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesUpdateAliases, callback: callbackFn): TransportRequestCallback - update_aliases, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesUpdateAliases, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - updateAliases, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesUpdateAliases, options?: TransportRequestOptions): TransportRequestPromise> + update_aliases, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesUpdateAliasesRequest, callback: callbackFn): TransportRequestCallback + update_aliases, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesUpdateAliasesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + updateAliases, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesUpdateAliasesRequest, options?: TransportRequestOptions): TransportRequestPromise> updateAliases, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - updateAliases, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesUpdateAliases, callback: callbackFn): TransportRequestCallback - updateAliases, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesUpdateAliases, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - upgrade, TContext = Context>(params?: RequestParams.IndicesUpgrade, options?: TransportRequestOptions): TransportRequestPromise> + updateAliases, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesUpdateAliasesRequest, callback: callbackFn): TransportRequestCallback + updateAliases, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesUpdateAliasesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + upgrade, TContext = Context>(params?: Req.IndicesUpgradeRequest, options?: TransportRequestOptions): TransportRequestPromise> upgrade, TContext = Context>(callback: callbackFn): TransportRequestCallback - upgrade, TContext = Context>(params: RequestParams.IndicesUpgrade, callback: callbackFn): TransportRequestCallback - upgrade, TContext = Context>(params: RequestParams.IndicesUpgrade, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - validate_query, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesValidateQuery, options?: TransportRequestOptions): TransportRequestPromise> + upgrade, TContext = Context>(params: Req.IndicesUpgradeRequest, callback: callbackFn): TransportRequestCallback + upgrade, TContext = Context>(params: Req.IndicesUpgradeRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + validate_query, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesValidateQueryRequest, options?: TransportRequestOptions): TransportRequestPromise> validate_query, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - validate_query, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesValidateQuery, callback: callbackFn): TransportRequestCallback - validate_query, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesValidateQuery, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - validateQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IndicesValidateQuery, options?: TransportRequestOptions): TransportRequestPromise> + validate_query, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesValidateQueryRequest, callback: callbackFn): TransportRequestCallback + validate_query, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesValidateQueryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + validateQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IndicesValidateQueryRequest, options?: TransportRequestOptions): TransportRequestPromise> validateQuery, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - validateQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesValidateQuery, callback: callbackFn): TransportRequestCallback - validateQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IndicesValidateQuery, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + validateQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesValidateQueryRequest, callback: callbackFn): TransportRequestCallback + validateQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IndicesValidateQueryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } - info, TContext = Context>(params?: RequestParams.Info, options?: TransportRequestOptions): TransportRequestPromise> + info, TContext = Context>(params?: Req.InfoRequest, options?: TransportRequestOptions): TransportRequestPromise> info, TContext = Context>(callback: callbackFn): TransportRequestCallback - info, TContext = Context>(params: RequestParams.Info, callback: callbackFn): TransportRequestCallback - info, TContext = Context>(params: RequestParams.Info, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + info, TContext = Context>(params: Req.InfoRequest, callback: callbackFn): TransportRequestCallback + info, TContext = Context>(params: Req.InfoRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback ingest: { - delete_pipeline, TContext = Context>(params?: RequestParams.IngestDeletePipeline, options?: TransportRequestOptions): TransportRequestPromise> + delete_pipeline, TContext = Context>(params?: Req.IngestDeletePipelineRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_pipeline, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_pipeline, TContext = Context>(params: RequestParams.IngestDeletePipeline, callback: callbackFn): TransportRequestCallback - delete_pipeline, TContext = Context>(params: RequestParams.IngestDeletePipeline, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deletePipeline, TContext = Context>(params?: RequestParams.IngestDeletePipeline, options?: TransportRequestOptions): TransportRequestPromise> + delete_pipeline, TContext = Context>(params: Req.IngestDeletePipelineRequest, callback: callbackFn): TransportRequestCallback + delete_pipeline, TContext = Context>(params: Req.IngestDeletePipelineRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deletePipeline, TContext = Context>(params?: Req.IngestDeletePipelineRequest, options?: TransportRequestOptions): TransportRequestPromise> deletePipeline, TContext = Context>(callback: callbackFn): TransportRequestCallback - deletePipeline, TContext = Context>(params: RequestParams.IngestDeletePipeline, callback: callbackFn): TransportRequestCallback - deletePipeline, TContext = Context>(params: RequestParams.IngestDeletePipeline, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_pipeline, TContext = Context>(params?: RequestParams.IngestGetPipeline, options?: TransportRequestOptions): TransportRequestPromise> + deletePipeline, TContext = Context>(params: Req.IngestDeletePipelineRequest, callback: callbackFn): TransportRequestCallback + deletePipeline, TContext = Context>(params: Req.IngestDeletePipelineRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_pipeline, TContext = Context>(params?: Req.IngestGetPipelineRequest, options?: TransportRequestOptions): TransportRequestPromise> get_pipeline, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_pipeline, TContext = Context>(params: RequestParams.IngestGetPipeline, callback: callbackFn): TransportRequestCallback - get_pipeline, TContext = Context>(params: RequestParams.IngestGetPipeline, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getPipeline, TContext = Context>(params?: RequestParams.IngestGetPipeline, options?: TransportRequestOptions): TransportRequestPromise> + get_pipeline, TContext = Context>(params: Req.IngestGetPipelineRequest, callback: callbackFn): TransportRequestCallback + get_pipeline, TContext = Context>(params: Req.IngestGetPipelineRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getPipeline, TContext = Context>(params?: Req.IngestGetPipelineRequest, options?: TransportRequestOptions): TransportRequestPromise> getPipeline, TContext = Context>(callback: callbackFn): TransportRequestCallback - getPipeline, TContext = Context>(params: RequestParams.IngestGetPipeline, callback: callbackFn): TransportRequestCallback - getPipeline, TContext = Context>(params: RequestParams.IngestGetPipeline, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - processor_grok, TContext = Context>(params?: RequestParams.IngestProcessorGrok, options?: TransportRequestOptions): TransportRequestPromise> + getPipeline, TContext = Context>(params: Req.IngestGetPipelineRequest, callback: callbackFn): TransportRequestCallback + getPipeline, TContext = Context>(params: Req.IngestGetPipelineRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + processor_grok, TContext = Context>(params?: Req.IngestProcessorGrokRequest, options?: TransportRequestOptions): TransportRequestPromise> processor_grok, TContext = Context>(callback: callbackFn): TransportRequestCallback - processor_grok, TContext = Context>(params: RequestParams.IngestProcessorGrok, callback: callbackFn): TransportRequestCallback - processor_grok, TContext = Context>(params: RequestParams.IngestProcessorGrok, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - processorGrok, TContext = Context>(params?: RequestParams.IngestProcessorGrok, options?: TransportRequestOptions): TransportRequestPromise> + processor_grok, TContext = Context>(params: Req.IngestProcessorGrokRequest, callback: callbackFn): TransportRequestCallback + processor_grok, TContext = Context>(params: Req.IngestProcessorGrokRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + processorGrok, TContext = Context>(params?: Req.IngestProcessorGrokRequest, options?: TransportRequestOptions): TransportRequestPromise> processorGrok, TContext = Context>(callback: callbackFn): TransportRequestCallback - processorGrok, TContext = Context>(params: RequestParams.IngestProcessorGrok, callback: callbackFn): TransportRequestCallback - processorGrok, TContext = Context>(params: RequestParams.IngestProcessorGrok, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_pipeline, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IngestPutPipeline, options?: TransportRequestOptions): TransportRequestPromise> + processorGrok, TContext = Context>(params: Req.IngestProcessorGrokRequest, callback: callbackFn): TransportRequestCallback + processorGrok, TContext = Context>(params: Req.IngestProcessorGrokRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_pipeline, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IngestPutPipelineRequest, options?: TransportRequestOptions): TransportRequestPromise> put_pipeline, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_pipeline, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IngestPutPipeline, callback: callbackFn): TransportRequestCallback - put_pipeline, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IngestPutPipeline, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putPipeline, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IngestPutPipeline, options?: TransportRequestOptions): TransportRequestPromise> + put_pipeline, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IngestPutPipelineRequest, callback: callbackFn): TransportRequestCallback + put_pipeline, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IngestPutPipelineRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putPipeline, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IngestPutPipelineRequest, options?: TransportRequestOptions): TransportRequestPromise> putPipeline, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putPipeline, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IngestPutPipeline, callback: callbackFn): TransportRequestCallback - putPipeline, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IngestPutPipeline, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - simulate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.IngestSimulate, options?: TransportRequestOptions): TransportRequestPromise> + putPipeline, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IngestPutPipelineRequest, callback: callbackFn): TransportRequestCallback + putPipeline, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IngestPutPipelineRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + simulate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.IngestSimulateRequest, options?: TransportRequestOptions): TransportRequestPromise> simulate, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - simulate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IngestSimulate, callback: callbackFn): TransportRequestCallback - simulate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.IngestSimulate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + simulate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IngestSimulateRequest, callback: callbackFn): TransportRequestCallback + simulate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.IngestSimulateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } license: { - delete, TContext = Context>(params?: RequestParams.LicenseDelete, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params?: Req.LicenseDeleteRequest, options?: TransportRequestOptions): TransportRequestPromise> delete, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params: RequestParams.LicenseDelete, callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params: RequestParams.LicenseDelete, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params?: RequestParams.LicenseGet, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params: Req.LicenseDeleteRequest, callback: callbackFn): TransportRequestCallback + delete, TContext = Context>(params: Req.LicenseDeleteRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get, TContext = Context>(params?: Req.LicenseGetRequest, options?: TransportRequestOptions): TransportRequestPromise> get, TContext = Context>(callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.LicenseGet, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.LicenseGet, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_basic_status, TContext = Context>(params?: RequestParams.LicenseGetBasicStatus, options?: TransportRequestOptions): TransportRequestPromise> + get, TContext = Context>(params: Req.LicenseGetRequest, callback: callbackFn): TransportRequestCallback + get, TContext = Context>(params: Req.LicenseGetRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_basic_status, TContext = Context>(params?: Req.LicenseGetBasicStatusRequest, options?: TransportRequestOptions): TransportRequestPromise> get_basic_status, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_basic_status, TContext = Context>(params: RequestParams.LicenseGetBasicStatus, callback: callbackFn): TransportRequestCallback - get_basic_status, TContext = Context>(params: RequestParams.LicenseGetBasicStatus, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getBasicStatus, TContext = Context>(params?: RequestParams.LicenseGetBasicStatus, options?: TransportRequestOptions): TransportRequestPromise> + get_basic_status, TContext = Context>(params: Req.LicenseGetBasicStatusRequest, callback: callbackFn): TransportRequestCallback + get_basic_status, TContext = Context>(params: Req.LicenseGetBasicStatusRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getBasicStatus, TContext = Context>(params?: Req.LicenseGetBasicStatusRequest, options?: TransportRequestOptions): TransportRequestPromise> getBasicStatus, TContext = Context>(callback: callbackFn): TransportRequestCallback - getBasicStatus, TContext = Context>(params: RequestParams.LicenseGetBasicStatus, callback: callbackFn): TransportRequestCallback - getBasicStatus, TContext = Context>(params: RequestParams.LicenseGetBasicStatus, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_trial_status, TContext = Context>(params?: RequestParams.LicenseGetTrialStatus, options?: TransportRequestOptions): TransportRequestPromise> + getBasicStatus, TContext = Context>(params: Req.LicenseGetBasicStatusRequest, callback: callbackFn): TransportRequestCallback + getBasicStatus, TContext = Context>(params: Req.LicenseGetBasicStatusRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_trial_status, TContext = Context>(params?: Req.LicenseGetTrialStatusRequest, options?: TransportRequestOptions): TransportRequestPromise> get_trial_status, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_trial_status, TContext = Context>(params: RequestParams.LicenseGetTrialStatus, callback: callbackFn): TransportRequestCallback - get_trial_status, TContext = Context>(params: RequestParams.LicenseGetTrialStatus, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getTrialStatus, TContext = Context>(params?: RequestParams.LicenseGetTrialStatus, options?: TransportRequestOptions): TransportRequestPromise> + get_trial_status, TContext = Context>(params: Req.LicenseGetTrialStatusRequest, callback: callbackFn): TransportRequestCallback + get_trial_status, TContext = Context>(params: Req.LicenseGetTrialStatusRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getTrialStatus, TContext = Context>(params?: Req.LicenseGetTrialStatusRequest, options?: TransportRequestOptions): TransportRequestPromise> getTrialStatus, TContext = Context>(callback: callbackFn): TransportRequestCallback - getTrialStatus, TContext = Context>(params: RequestParams.LicenseGetTrialStatus, callback: callbackFn): TransportRequestCallback - getTrialStatus, TContext = Context>(params: RequestParams.LicenseGetTrialStatus, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - post, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.LicensePost, options?: TransportRequestOptions): TransportRequestPromise> + getTrialStatus, TContext = Context>(params: Req.LicenseGetTrialStatusRequest, callback: callbackFn): TransportRequestCallback + getTrialStatus, TContext = Context>(params: Req.LicenseGetTrialStatusRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + post, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.LicensePostRequest, options?: TransportRequestOptions): TransportRequestPromise> post, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - post, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.LicensePost, callback: callbackFn): TransportRequestCallback - post, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.LicensePost, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - post_start_basic, TContext = Context>(params?: RequestParams.LicensePostStartBasic, options?: TransportRequestOptions): TransportRequestPromise> + post, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.LicensePostRequest, callback: callbackFn): TransportRequestCallback + post, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.LicensePostRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + post_start_basic, TContext = Context>(params?: Req.LicensePostStartBasicRequest, options?: TransportRequestOptions): TransportRequestPromise> post_start_basic, TContext = Context>(callback: callbackFn): TransportRequestCallback - post_start_basic, TContext = Context>(params: RequestParams.LicensePostStartBasic, callback: callbackFn): TransportRequestCallback - post_start_basic, TContext = Context>(params: RequestParams.LicensePostStartBasic, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - postStartBasic, TContext = Context>(params?: RequestParams.LicensePostStartBasic, options?: TransportRequestOptions): TransportRequestPromise> + post_start_basic, TContext = Context>(params: Req.LicensePostStartBasicRequest, callback: callbackFn): TransportRequestCallback + post_start_basic, TContext = Context>(params: Req.LicensePostStartBasicRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + postStartBasic, TContext = Context>(params?: Req.LicensePostStartBasicRequest, options?: TransportRequestOptions): TransportRequestPromise> postStartBasic, TContext = Context>(callback: callbackFn): TransportRequestCallback - postStartBasic, TContext = Context>(params: RequestParams.LicensePostStartBasic, callback: callbackFn): TransportRequestCallback - postStartBasic, TContext = Context>(params: RequestParams.LicensePostStartBasic, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - post_start_trial, TContext = Context>(params?: RequestParams.LicensePostStartTrial, options?: TransportRequestOptions): TransportRequestPromise> + postStartBasic, TContext = Context>(params: Req.LicensePostStartBasicRequest, callback: callbackFn): TransportRequestCallback + postStartBasic, TContext = Context>(params: Req.LicensePostStartBasicRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + post_start_trial, TContext = Context>(params?: Req.LicensePostStartTrialRequest, options?: TransportRequestOptions): TransportRequestPromise> post_start_trial, TContext = Context>(callback: callbackFn): TransportRequestCallback - post_start_trial, TContext = Context>(params: RequestParams.LicensePostStartTrial, callback: callbackFn): TransportRequestCallback - post_start_trial, TContext = Context>(params: RequestParams.LicensePostStartTrial, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - postStartTrial, TContext = Context>(params?: RequestParams.LicensePostStartTrial, options?: TransportRequestOptions): TransportRequestPromise> + post_start_trial, TContext = Context>(params: Req.LicensePostStartTrialRequest, callback: callbackFn): TransportRequestCallback + post_start_trial, TContext = Context>(params: Req.LicensePostStartTrialRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + postStartTrial, TContext = Context>(params?: Req.LicensePostStartTrialRequest, options?: TransportRequestOptions): TransportRequestPromise> postStartTrial, TContext = Context>(callback: callbackFn): TransportRequestCallback - postStartTrial, TContext = Context>(params: RequestParams.LicensePostStartTrial, callback: callbackFn): TransportRequestCallback - postStartTrial, TContext = Context>(params: RequestParams.LicensePostStartTrial, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + postStartTrial, TContext = Context>(params: Req.LicensePostStartTrialRequest, callback: callbackFn): TransportRequestCallback + postStartTrial, TContext = Context>(params: Req.LicensePostStartTrialRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } - mget, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Mget, options?: TransportRequestOptions): TransportRequestPromise> + mget, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MgetRequest, options?: TransportRequestOptions): TransportRequestPromise> mget, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - mget, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Mget, callback: callbackFn): TransportRequestCallback - mget, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Mget, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + mget, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MgetRequest, callback: callbackFn): TransportRequestCallback + mget, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MgetRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback migration: { - deprecations, TContext = Context>(params?: RequestParams.MigrationDeprecations, options?: TransportRequestOptions): TransportRequestPromise> + deprecations, TContext = Context>(params?: Req.MigrationDeprecationsRequest, options?: TransportRequestOptions): TransportRequestPromise> deprecations, TContext = Context>(callback: callbackFn): TransportRequestCallback - deprecations, TContext = Context>(params: RequestParams.MigrationDeprecations, callback: callbackFn): TransportRequestCallback - deprecations, TContext = Context>(params: RequestParams.MigrationDeprecations, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deprecations, TContext = Context>(params: Req.MigrationDeprecationsRequest, callback: callbackFn): TransportRequestCallback + deprecations, TContext = Context>(params: Req.MigrationDeprecationsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } ml: { - close_job, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlCloseJob, options?: TransportRequestOptions): TransportRequestPromise> + close_job, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlCloseJobRequest, options?: TransportRequestOptions): TransportRequestPromise> close_job, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - close_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlCloseJob, callback: callbackFn): TransportRequestCallback - close_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlCloseJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - closeJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlCloseJob, options?: TransportRequestOptions): TransportRequestPromise> + close_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlCloseJobRequest, callback: callbackFn): TransportRequestCallback + close_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlCloseJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + closeJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlCloseJobRequest, options?: TransportRequestOptions): TransportRequestPromise> closeJob, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - closeJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlCloseJob, callback: callbackFn): TransportRequestCallback - closeJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlCloseJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_calendar, TContext = Context>(params?: RequestParams.MlDeleteCalendar, options?: TransportRequestOptions): TransportRequestPromise> + closeJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlCloseJobRequest, callback: callbackFn): TransportRequestCallback + closeJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlCloseJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_calendar, TContext = Context>(params?: Req.MlDeleteCalendarRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_calendar, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_calendar, TContext = Context>(params: RequestParams.MlDeleteCalendar, callback: callbackFn): TransportRequestCallback - delete_calendar, TContext = Context>(params: RequestParams.MlDeleteCalendar, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteCalendar, TContext = Context>(params?: RequestParams.MlDeleteCalendar, options?: TransportRequestOptions): TransportRequestPromise> + delete_calendar, TContext = Context>(params: Req.MlDeleteCalendarRequest, callback: callbackFn): TransportRequestCallback + delete_calendar, TContext = Context>(params: Req.MlDeleteCalendarRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteCalendar, TContext = Context>(params?: Req.MlDeleteCalendarRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteCalendar, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteCalendar, TContext = Context>(params: RequestParams.MlDeleteCalendar, callback: callbackFn): TransportRequestCallback - deleteCalendar, TContext = Context>(params: RequestParams.MlDeleteCalendar, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_calendar_event, TContext = Context>(params?: RequestParams.MlDeleteCalendarEvent, options?: TransportRequestOptions): TransportRequestPromise> + deleteCalendar, TContext = Context>(params: Req.MlDeleteCalendarRequest, callback: callbackFn): TransportRequestCallback + deleteCalendar, TContext = Context>(params: Req.MlDeleteCalendarRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_calendar_event, TContext = Context>(params?: Req.MlDeleteCalendarEventRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_calendar_event, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_calendar_event, TContext = Context>(params: RequestParams.MlDeleteCalendarEvent, callback: callbackFn): TransportRequestCallback - delete_calendar_event, TContext = Context>(params: RequestParams.MlDeleteCalendarEvent, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteCalendarEvent, TContext = Context>(params?: RequestParams.MlDeleteCalendarEvent, options?: TransportRequestOptions): TransportRequestPromise> + delete_calendar_event, TContext = Context>(params: Req.MlDeleteCalendarEventRequest, callback: callbackFn): TransportRequestCallback + delete_calendar_event, TContext = Context>(params: Req.MlDeleteCalendarEventRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteCalendarEvent, TContext = Context>(params?: Req.MlDeleteCalendarEventRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteCalendarEvent, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteCalendarEvent, TContext = Context>(params: RequestParams.MlDeleteCalendarEvent, callback: callbackFn): TransportRequestCallback - deleteCalendarEvent, TContext = Context>(params: RequestParams.MlDeleteCalendarEvent, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_calendar_job, TContext = Context>(params?: RequestParams.MlDeleteCalendarJob, options?: TransportRequestOptions): TransportRequestPromise> + deleteCalendarEvent, TContext = Context>(params: Req.MlDeleteCalendarEventRequest, callback: callbackFn): TransportRequestCallback + deleteCalendarEvent, TContext = Context>(params: Req.MlDeleteCalendarEventRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_calendar_job, TContext = Context>(params?: Req.MlDeleteCalendarJobRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_calendar_job, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_calendar_job, TContext = Context>(params: RequestParams.MlDeleteCalendarJob, callback: callbackFn): TransportRequestCallback - delete_calendar_job, TContext = Context>(params: RequestParams.MlDeleteCalendarJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteCalendarJob, TContext = Context>(params?: RequestParams.MlDeleteCalendarJob, options?: TransportRequestOptions): TransportRequestPromise> + delete_calendar_job, TContext = Context>(params: Req.MlDeleteCalendarJobRequest, callback: callbackFn): TransportRequestCallback + delete_calendar_job, TContext = Context>(params: Req.MlDeleteCalendarJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteCalendarJob, TContext = Context>(params?: Req.MlDeleteCalendarJobRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteCalendarJob, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteCalendarJob, TContext = Context>(params: RequestParams.MlDeleteCalendarJob, callback: callbackFn): TransportRequestCallback - deleteCalendarJob, TContext = Context>(params: RequestParams.MlDeleteCalendarJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_data_frame_analytics, TContext = Context>(params?: RequestParams.MlDeleteDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + deleteCalendarJob, TContext = Context>(params: Req.MlDeleteCalendarJobRequest, callback: callbackFn): TransportRequestCallback + deleteCalendarJob, TContext = Context>(params: Req.MlDeleteCalendarJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_data_frame_analytics, TContext = Context>(params?: Req.MlDeleteDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_data_frame_analytics, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_data_frame_analytics, TContext = Context>(params: RequestParams.MlDeleteDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - delete_data_frame_analytics, TContext = Context>(params: RequestParams.MlDeleteDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteDataFrameAnalytics, TContext = Context>(params?: RequestParams.MlDeleteDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + delete_data_frame_analytics, TContext = Context>(params: Req.MlDeleteDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + delete_data_frame_analytics, TContext = Context>(params: Req.MlDeleteDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteDataFrameAnalytics, TContext = Context>(params?: Req.MlDeleteDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteDataFrameAnalytics, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteDataFrameAnalytics, TContext = Context>(params: RequestParams.MlDeleteDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - deleteDataFrameAnalytics, TContext = Context>(params: RequestParams.MlDeleteDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_datafeed, TContext = Context>(params?: RequestParams.MlDeleteDatafeed, options?: TransportRequestOptions): TransportRequestPromise> + deleteDataFrameAnalytics, TContext = Context>(params: Req.MlDeleteDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + deleteDataFrameAnalytics, TContext = Context>(params: Req.MlDeleteDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_datafeed, TContext = Context>(params?: Req.MlDeleteDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_datafeed, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_datafeed, TContext = Context>(params: RequestParams.MlDeleteDatafeed, callback: callbackFn): TransportRequestCallback - delete_datafeed, TContext = Context>(params: RequestParams.MlDeleteDatafeed, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteDatafeed, TContext = Context>(params?: RequestParams.MlDeleteDatafeed, options?: TransportRequestOptions): TransportRequestPromise> + delete_datafeed, TContext = Context>(params: Req.MlDeleteDatafeedRequest, callback: callbackFn): TransportRequestCallback + delete_datafeed, TContext = Context>(params: Req.MlDeleteDatafeedRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteDatafeed, TContext = Context>(params?: Req.MlDeleteDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteDatafeed, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteDatafeed, TContext = Context>(params: RequestParams.MlDeleteDatafeed, callback: callbackFn): TransportRequestCallback - deleteDatafeed, TContext = Context>(params: RequestParams.MlDeleteDatafeed, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_expired_data, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlDeleteExpiredData, options?: TransportRequestOptions): TransportRequestPromise> + deleteDatafeed, TContext = Context>(params: Req.MlDeleteDatafeedRequest, callback: callbackFn): TransportRequestCallback + deleteDatafeed, TContext = Context>(params: Req.MlDeleteDatafeedRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_expired_data, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlDeleteExpiredDataRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_expired_data, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_expired_data, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlDeleteExpiredData, callback: callbackFn): TransportRequestCallback - delete_expired_data, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlDeleteExpiredData, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteExpiredData, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlDeleteExpiredData, options?: TransportRequestOptions): TransportRequestPromise> + delete_expired_data, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlDeleteExpiredDataRequest, callback: callbackFn): TransportRequestCallback + delete_expired_data, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlDeleteExpiredDataRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteExpiredData, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlDeleteExpiredDataRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteExpiredData, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteExpiredData, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlDeleteExpiredData, callback: callbackFn): TransportRequestCallback - deleteExpiredData, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlDeleteExpiredData, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_filter, TContext = Context>(params?: RequestParams.MlDeleteFilter, options?: TransportRequestOptions): TransportRequestPromise> + deleteExpiredData, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlDeleteExpiredDataRequest, callback: callbackFn): TransportRequestCallback + deleteExpiredData, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlDeleteExpiredDataRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_filter, TContext = Context>(params?: Req.MlDeleteFilterRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_filter, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_filter, TContext = Context>(params: RequestParams.MlDeleteFilter, callback: callbackFn): TransportRequestCallback - delete_filter, TContext = Context>(params: RequestParams.MlDeleteFilter, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteFilter, TContext = Context>(params?: RequestParams.MlDeleteFilter, options?: TransportRequestOptions): TransportRequestPromise> + delete_filter, TContext = Context>(params: Req.MlDeleteFilterRequest, callback: callbackFn): TransportRequestCallback + delete_filter, TContext = Context>(params: Req.MlDeleteFilterRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteFilter, TContext = Context>(params?: Req.MlDeleteFilterRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteFilter, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteFilter, TContext = Context>(params: RequestParams.MlDeleteFilter, callback: callbackFn): TransportRequestCallback - deleteFilter, TContext = Context>(params: RequestParams.MlDeleteFilter, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_forecast, TContext = Context>(params?: RequestParams.MlDeleteForecast, options?: TransportRequestOptions): TransportRequestPromise> + deleteFilter, TContext = Context>(params: Req.MlDeleteFilterRequest, callback: callbackFn): TransportRequestCallback + deleteFilter, TContext = Context>(params: Req.MlDeleteFilterRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_forecast, TContext = Context>(params?: Req.MlDeleteForecastRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_forecast, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_forecast, TContext = Context>(params: RequestParams.MlDeleteForecast, callback: callbackFn): TransportRequestCallback - delete_forecast, TContext = Context>(params: RequestParams.MlDeleteForecast, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteForecast, TContext = Context>(params?: RequestParams.MlDeleteForecast, options?: TransportRequestOptions): TransportRequestPromise> + delete_forecast, TContext = Context>(params: Req.MlDeleteForecastRequest, callback: callbackFn): TransportRequestCallback + delete_forecast, TContext = Context>(params: Req.MlDeleteForecastRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteForecast, TContext = Context>(params?: Req.MlDeleteForecastRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteForecast, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteForecast, TContext = Context>(params: RequestParams.MlDeleteForecast, callback: callbackFn): TransportRequestCallback - deleteForecast, TContext = Context>(params: RequestParams.MlDeleteForecast, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_job, TContext = Context>(params?: RequestParams.MlDeleteJob, options?: TransportRequestOptions): TransportRequestPromise> + deleteForecast, TContext = Context>(params: Req.MlDeleteForecastRequest, callback: callbackFn): TransportRequestCallback + deleteForecast, TContext = Context>(params: Req.MlDeleteForecastRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_job, TContext = Context>(params?: Req.MlDeleteJobRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_job, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_job, TContext = Context>(params: RequestParams.MlDeleteJob, callback: callbackFn): TransportRequestCallback - delete_job, TContext = Context>(params: RequestParams.MlDeleteJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteJob, TContext = Context>(params?: RequestParams.MlDeleteJob, options?: TransportRequestOptions): TransportRequestPromise> + delete_job, TContext = Context>(params: Req.MlDeleteJobRequest, callback: callbackFn): TransportRequestCallback + delete_job, TContext = Context>(params: Req.MlDeleteJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteJob, TContext = Context>(params?: Req.MlDeleteJobRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteJob, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteJob, TContext = Context>(params: RequestParams.MlDeleteJob, callback: callbackFn): TransportRequestCallback - deleteJob, TContext = Context>(params: RequestParams.MlDeleteJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_model_snapshot, TContext = Context>(params?: RequestParams.MlDeleteModelSnapshot, options?: TransportRequestOptions): TransportRequestPromise> + deleteJob, TContext = Context>(params: Req.MlDeleteJobRequest, callback: callbackFn): TransportRequestCallback + deleteJob, TContext = Context>(params: Req.MlDeleteJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_model_snapshot, TContext = Context>(params?: Req.MlDeleteModelSnapshotRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_model_snapshot, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_model_snapshot, TContext = Context>(params: RequestParams.MlDeleteModelSnapshot, callback: callbackFn): TransportRequestCallback - delete_model_snapshot, TContext = Context>(params: RequestParams.MlDeleteModelSnapshot, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteModelSnapshot, TContext = Context>(params?: RequestParams.MlDeleteModelSnapshot, options?: TransportRequestOptions): TransportRequestPromise> + delete_model_snapshot, TContext = Context>(params: Req.MlDeleteModelSnapshotRequest, callback: callbackFn): TransportRequestCallback + delete_model_snapshot, TContext = Context>(params: Req.MlDeleteModelSnapshotRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteModelSnapshot, TContext = Context>(params?: Req.MlDeleteModelSnapshotRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteModelSnapshot, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteModelSnapshot, TContext = Context>(params: RequestParams.MlDeleteModelSnapshot, callback: callbackFn): TransportRequestCallback - deleteModelSnapshot, TContext = Context>(params: RequestParams.MlDeleteModelSnapshot, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_trained_model, TContext = Context>(params?: RequestParams.MlDeleteTrainedModel, options?: TransportRequestOptions): TransportRequestPromise> + deleteModelSnapshot, TContext = Context>(params: Req.MlDeleteModelSnapshotRequest, callback: callbackFn): TransportRequestCallback + deleteModelSnapshot, TContext = Context>(params: Req.MlDeleteModelSnapshotRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_trained_model, TContext = Context>(params?: Req.MlDeleteTrainedModelRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_trained_model, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_trained_model, TContext = Context>(params: RequestParams.MlDeleteTrainedModel, callback: callbackFn): TransportRequestCallback - delete_trained_model, TContext = Context>(params: RequestParams.MlDeleteTrainedModel, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteTrainedModel, TContext = Context>(params?: RequestParams.MlDeleteTrainedModel, options?: TransportRequestOptions): TransportRequestPromise> + delete_trained_model, TContext = Context>(params: Req.MlDeleteTrainedModelRequest, callback: callbackFn): TransportRequestCallback + delete_trained_model, TContext = Context>(params: Req.MlDeleteTrainedModelRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteTrainedModel, TContext = Context>(params?: Req.MlDeleteTrainedModelRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteTrainedModel, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteTrainedModel, TContext = Context>(params: RequestParams.MlDeleteTrainedModel, callback: callbackFn): TransportRequestCallback - deleteTrainedModel, TContext = Context>(params: RequestParams.MlDeleteTrainedModel, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - estimate_model_memory, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlEstimateModelMemory, options?: TransportRequestOptions): TransportRequestPromise> + deleteTrainedModel, TContext = Context>(params: Req.MlDeleteTrainedModelRequest, callback: callbackFn): TransportRequestCallback + deleteTrainedModel, TContext = Context>(params: Req.MlDeleteTrainedModelRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + estimate_model_memory, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlEstimateModelMemoryRequest, options?: TransportRequestOptions): TransportRequestPromise> estimate_model_memory, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - estimate_model_memory, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlEstimateModelMemory, callback: callbackFn): TransportRequestCallback - estimate_model_memory, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlEstimateModelMemory, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - estimateModelMemory, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlEstimateModelMemory, options?: TransportRequestOptions): TransportRequestPromise> + estimate_model_memory, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlEstimateModelMemoryRequest, callback: callbackFn): TransportRequestCallback + estimate_model_memory, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlEstimateModelMemoryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + estimateModelMemory, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlEstimateModelMemoryRequest, options?: TransportRequestOptions): TransportRequestPromise> estimateModelMemory, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - estimateModelMemory, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlEstimateModelMemory, callback: callbackFn): TransportRequestCallback - estimateModelMemory, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlEstimateModelMemory, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - evaluate_data_frame, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlEvaluateDataFrame, options?: TransportRequestOptions): TransportRequestPromise> + estimateModelMemory, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlEstimateModelMemoryRequest, callback: callbackFn): TransportRequestCallback + estimateModelMemory, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlEstimateModelMemoryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + evaluate_data_frame, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlEvaluateDataFrameRequest, options?: TransportRequestOptions): TransportRequestPromise> evaluate_data_frame, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - evaluate_data_frame, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlEvaluateDataFrame, callback: callbackFn): TransportRequestCallback - evaluate_data_frame, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlEvaluateDataFrame, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - evaluateDataFrame, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlEvaluateDataFrame, options?: TransportRequestOptions): TransportRequestPromise> + evaluate_data_frame, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlEvaluateDataFrameRequest, callback: callbackFn): TransportRequestCallback + evaluate_data_frame, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlEvaluateDataFrameRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + evaluateDataFrame, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlEvaluateDataFrameRequest, options?: TransportRequestOptions): TransportRequestPromise> evaluateDataFrame, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - evaluateDataFrame, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlEvaluateDataFrame, callback: callbackFn): TransportRequestCallback - evaluateDataFrame, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlEvaluateDataFrame, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - explain_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlExplainDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + evaluateDataFrame, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlEvaluateDataFrameRequest, callback: callbackFn): TransportRequestCallback + evaluateDataFrame, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlEvaluateDataFrameRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + explain_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlExplainDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> explain_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - explain_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlExplainDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - explain_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlExplainDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - explainDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlExplainDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + explain_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlExplainDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + explain_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlExplainDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + explainDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlExplainDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> explainDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - explainDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlExplainDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - explainDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlExplainDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - find_file_structure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: RequestParams.MlFindFileStructure, options?: TransportRequestOptions): TransportRequestPromise> + explainDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlExplainDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + explainDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlExplainDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + find_file_structure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: Req.MlFindFileStructureRequest, options?: TransportRequestOptions): TransportRequestPromise> find_file_structure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(callback: callbackFn): TransportRequestCallback - find_file_structure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: RequestParams.MlFindFileStructure, callback: callbackFn): TransportRequestCallback - find_file_structure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: RequestParams.MlFindFileStructure, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - findFileStructure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: RequestParams.MlFindFileStructure, options?: TransportRequestOptions): TransportRequestPromise> + find_file_structure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: Req.MlFindFileStructureRequest, callback: callbackFn): TransportRequestCallback + find_file_structure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: Req.MlFindFileStructureRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + findFileStructure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: Req.MlFindFileStructureRequest, options?: TransportRequestOptions): TransportRequestPromise> findFileStructure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(callback: callbackFn): TransportRequestCallback - findFileStructure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: RequestParams.MlFindFileStructure, callback: callbackFn): TransportRequestCallback - findFileStructure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: RequestParams.MlFindFileStructure, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - flush_job, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlFlushJob, options?: TransportRequestOptions): TransportRequestPromise> + findFileStructure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: Req.MlFindFileStructureRequest, callback: callbackFn): TransportRequestCallback + findFileStructure, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: Req.MlFindFileStructureRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + flush_job, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlFlushJobRequest, options?: TransportRequestOptions): TransportRequestPromise> flush_job, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - flush_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlFlushJob, callback: callbackFn): TransportRequestCallback - flush_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlFlushJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - flushJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlFlushJob, options?: TransportRequestOptions): TransportRequestPromise> + flush_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlFlushJobRequest, callback: callbackFn): TransportRequestCallback + flush_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlFlushJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + flushJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlFlushJobRequest, options?: TransportRequestOptions): TransportRequestPromise> flushJob, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - flushJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlFlushJob, callback: callbackFn): TransportRequestCallback - flushJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlFlushJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - forecast, TContext = Context>(params?: RequestParams.MlForecast, options?: TransportRequestOptions): TransportRequestPromise> + flushJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlFlushJobRequest, callback: callbackFn): TransportRequestCallback + flushJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlFlushJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + forecast, TContext = Context>(params?: Req.MlForecastRequest, options?: TransportRequestOptions): TransportRequestPromise> forecast, TContext = Context>(callback: callbackFn): TransportRequestCallback - forecast, TContext = Context>(params: RequestParams.MlForecast, callback: callbackFn): TransportRequestCallback - forecast, TContext = Context>(params: RequestParams.MlForecast, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_buckets, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetBuckets, options?: TransportRequestOptions): TransportRequestPromise> + forecast, TContext = Context>(params: Req.MlForecastRequest, callback: callbackFn): TransportRequestCallback + forecast, TContext = Context>(params: Req.MlForecastRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_buckets, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetBucketsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_buckets, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_buckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetBuckets, callback: callbackFn): TransportRequestCallback - get_buckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetBuckets, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetBuckets, options?: TransportRequestOptions): TransportRequestPromise> + get_buckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetBucketsRequest, callback: callbackFn): TransportRequestCallback + get_buckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetBucketsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetBucketsRequest, options?: TransportRequestOptions): TransportRequestPromise> getBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - getBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetBuckets, callback: callbackFn): TransportRequestCallback - getBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetBuckets, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_calendar_events, TContext = Context>(params?: RequestParams.MlGetCalendarEvents, options?: TransportRequestOptions): TransportRequestPromise> + getBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetBucketsRequest, callback: callbackFn): TransportRequestCallback + getBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetBucketsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_calendar_events, TContext = Context>(params?: Req.MlGetCalendarEventsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_calendar_events, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_calendar_events, TContext = Context>(params: RequestParams.MlGetCalendarEvents, callback: callbackFn): TransportRequestCallback - get_calendar_events, TContext = Context>(params: RequestParams.MlGetCalendarEvents, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getCalendarEvents, TContext = Context>(params?: RequestParams.MlGetCalendarEvents, options?: TransportRequestOptions): TransportRequestPromise> + get_calendar_events, TContext = Context>(params: Req.MlGetCalendarEventsRequest, callback: callbackFn): TransportRequestCallback + get_calendar_events, TContext = Context>(params: Req.MlGetCalendarEventsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getCalendarEvents, TContext = Context>(params?: Req.MlGetCalendarEventsRequest, options?: TransportRequestOptions): TransportRequestPromise> getCalendarEvents, TContext = Context>(callback: callbackFn): TransportRequestCallback - getCalendarEvents, TContext = Context>(params: RequestParams.MlGetCalendarEvents, callback: callbackFn): TransportRequestCallback - getCalendarEvents, TContext = Context>(params: RequestParams.MlGetCalendarEvents, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_calendars, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetCalendars, options?: TransportRequestOptions): TransportRequestPromise> + getCalendarEvents, TContext = Context>(params: Req.MlGetCalendarEventsRequest, callback: callbackFn): TransportRequestCallback + getCalendarEvents, TContext = Context>(params: Req.MlGetCalendarEventsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_calendars, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetCalendarsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_calendars, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_calendars, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetCalendars, callback: callbackFn): TransportRequestCallback - get_calendars, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetCalendars, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getCalendars, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetCalendars, options?: TransportRequestOptions): TransportRequestPromise> + get_calendars, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetCalendarsRequest, callback: callbackFn): TransportRequestCallback + get_calendars, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetCalendarsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getCalendars, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetCalendarsRequest, options?: TransportRequestOptions): TransportRequestPromise> getCalendars, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - getCalendars, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetCalendars, callback: callbackFn): TransportRequestCallback - getCalendars, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetCalendars, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_categories, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetCategories, options?: TransportRequestOptions): TransportRequestPromise> + getCalendars, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetCalendarsRequest, callback: callbackFn): TransportRequestCallback + getCalendars, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetCalendarsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_categories, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetCategoriesRequest, options?: TransportRequestOptions): TransportRequestPromise> get_categories, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_categories, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetCategories, callback: callbackFn): TransportRequestCallback - get_categories, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetCategories, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getCategories, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetCategories, options?: TransportRequestOptions): TransportRequestPromise> + get_categories, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetCategoriesRequest, callback: callbackFn): TransportRequestCallback + get_categories, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetCategoriesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getCategories, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetCategoriesRequest, options?: TransportRequestOptions): TransportRequestPromise> getCategories, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - getCategories, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetCategories, callback: callbackFn): TransportRequestCallback - getCategories, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetCategories, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_data_frame_analytics, TContext = Context>(params?: RequestParams.MlGetDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + getCategories, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetCategoriesRequest, callback: callbackFn): TransportRequestCallback + getCategories, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetCategoriesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_data_frame_analytics, TContext = Context>(params?: Req.MlGetDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_data_frame_analytics, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_data_frame_analytics, TContext = Context>(params: RequestParams.MlGetDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - get_data_frame_analytics, TContext = Context>(params: RequestParams.MlGetDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getDataFrameAnalytics, TContext = Context>(params?: RequestParams.MlGetDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + get_data_frame_analytics, TContext = Context>(params: Req.MlGetDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + get_data_frame_analytics, TContext = Context>(params: Req.MlGetDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getDataFrameAnalytics, TContext = Context>(params?: Req.MlGetDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> getDataFrameAnalytics, TContext = Context>(callback: callbackFn): TransportRequestCallback - getDataFrameAnalytics, TContext = Context>(params: RequestParams.MlGetDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - getDataFrameAnalytics, TContext = Context>(params: RequestParams.MlGetDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_data_frame_analytics_stats, TContext = Context>(params?: RequestParams.MlGetDataFrameAnalyticsStats, options?: TransportRequestOptions): TransportRequestPromise> + getDataFrameAnalytics, TContext = Context>(params: Req.MlGetDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + getDataFrameAnalytics, TContext = Context>(params: Req.MlGetDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_data_frame_analytics_stats, TContext = Context>(params?: Req.MlGetDataFrameAnalyticsStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_data_frame_analytics_stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_data_frame_analytics_stats, TContext = Context>(params: RequestParams.MlGetDataFrameAnalyticsStats, callback: callbackFn): TransportRequestCallback - get_data_frame_analytics_stats, TContext = Context>(params: RequestParams.MlGetDataFrameAnalyticsStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getDataFrameAnalyticsStats, TContext = Context>(params?: RequestParams.MlGetDataFrameAnalyticsStats, options?: TransportRequestOptions): TransportRequestPromise> + get_data_frame_analytics_stats, TContext = Context>(params: Req.MlGetDataFrameAnalyticsStatsRequest, callback: callbackFn): TransportRequestCallback + get_data_frame_analytics_stats, TContext = Context>(params: Req.MlGetDataFrameAnalyticsStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getDataFrameAnalyticsStats, TContext = Context>(params?: Req.MlGetDataFrameAnalyticsStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> getDataFrameAnalyticsStats, TContext = Context>(callback: callbackFn): TransportRequestCallback - getDataFrameAnalyticsStats, TContext = Context>(params: RequestParams.MlGetDataFrameAnalyticsStats, callback: callbackFn): TransportRequestCallback - getDataFrameAnalyticsStats, TContext = Context>(params: RequestParams.MlGetDataFrameAnalyticsStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_datafeed_stats, TContext = Context>(params?: RequestParams.MlGetDatafeedStats, options?: TransportRequestOptions): TransportRequestPromise> + getDataFrameAnalyticsStats, TContext = Context>(params: Req.MlGetDataFrameAnalyticsStatsRequest, callback: callbackFn): TransportRequestCallback + getDataFrameAnalyticsStats, TContext = Context>(params: Req.MlGetDataFrameAnalyticsStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_datafeed_stats, TContext = Context>(params?: Req.MlGetDatafeedStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_datafeed_stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_datafeed_stats, TContext = Context>(params: RequestParams.MlGetDatafeedStats, callback: callbackFn): TransportRequestCallback - get_datafeed_stats, TContext = Context>(params: RequestParams.MlGetDatafeedStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getDatafeedStats, TContext = Context>(params?: RequestParams.MlGetDatafeedStats, options?: TransportRequestOptions): TransportRequestPromise> + get_datafeed_stats, TContext = Context>(params: Req.MlGetDatafeedStatsRequest, callback: callbackFn): TransportRequestCallback + get_datafeed_stats, TContext = Context>(params: Req.MlGetDatafeedStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getDatafeedStats, TContext = Context>(params?: Req.MlGetDatafeedStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> getDatafeedStats, TContext = Context>(callback: callbackFn): TransportRequestCallback - getDatafeedStats, TContext = Context>(params: RequestParams.MlGetDatafeedStats, callback: callbackFn): TransportRequestCallback - getDatafeedStats, TContext = Context>(params: RequestParams.MlGetDatafeedStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_datafeeds, TContext = Context>(params?: RequestParams.MlGetDatafeeds, options?: TransportRequestOptions): TransportRequestPromise> + getDatafeedStats, TContext = Context>(params: Req.MlGetDatafeedStatsRequest, callback: callbackFn): TransportRequestCallback + getDatafeedStats, TContext = Context>(params: Req.MlGetDatafeedStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_datafeeds, TContext = Context>(params?: Req.MlGetDatafeedsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_datafeeds, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_datafeeds, TContext = Context>(params: RequestParams.MlGetDatafeeds, callback: callbackFn): TransportRequestCallback - get_datafeeds, TContext = Context>(params: RequestParams.MlGetDatafeeds, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getDatafeeds, TContext = Context>(params?: RequestParams.MlGetDatafeeds, options?: TransportRequestOptions): TransportRequestPromise> + get_datafeeds, TContext = Context>(params: Req.MlGetDatafeedsRequest, callback: callbackFn): TransportRequestCallback + get_datafeeds, TContext = Context>(params: Req.MlGetDatafeedsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getDatafeeds, TContext = Context>(params?: Req.MlGetDatafeedsRequest, options?: TransportRequestOptions): TransportRequestPromise> getDatafeeds, TContext = Context>(callback: callbackFn): TransportRequestCallback - getDatafeeds, TContext = Context>(params: RequestParams.MlGetDatafeeds, callback: callbackFn): TransportRequestCallback - getDatafeeds, TContext = Context>(params: RequestParams.MlGetDatafeeds, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_filters, TContext = Context>(params?: RequestParams.MlGetFilters, options?: TransportRequestOptions): TransportRequestPromise> + getDatafeeds, TContext = Context>(params: Req.MlGetDatafeedsRequest, callback: callbackFn): TransportRequestCallback + getDatafeeds, TContext = Context>(params: Req.MlGetDatafeedsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_filters, TContext = Context>(params?: Req.MlGetFiltersRequest, options?: TransportRequestOptions): TransportRequestPromise> get_filters, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_filters, TContext = Context>(params: RequestParams.MlGetFilters, callback: callbackFn): TransportRequestCallback - get_filters, TContext = Context>(params: RequestParams.MlGetFilters, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getFilters, TContext = Context>(params?: RequestParams.MlGetFilters, options?: TransportRequestOptions): TransportRequestPromise> + get_filters, TContext = Context>(params: Req.MlGetFiltersRequest, callback: callbackFn): TransportRequestCallback + get_filters, TContext = Context>(params: Req.MlGetFiltersRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getFilters, TContext = Context>(params?: Req.MlGetFiltersRequest, options?: TransportRequestOptions): TransportRequestPromise> getFilters, TContext = Context>(callback: callbackFn): TransportRequestCallback - getFilters, TContext = Context>(params: RequestParams.MlGetFilters, callback: callbackFn): TransportRequestCallback - getFilters, TContext = Context>(params: RequestParams.MlGetFilters, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_influencers, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetInfluencers, options?: TransportRequestOptions): TransportRequestPromise> + getFilters, TContext = Context>(params: Req.MlGetFiltersRequest, callback: callbackFn): TransportRequestCallback + getFilters, TContext = Context>(params: Req.MlGetFiltersRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_influencers, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetInfluencersRequest, options?: TransportRequestOptions): TransportRequestPromise> get_influencers, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_influencers, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetInfluencers, callback: callbackFn): TransportRequestCallback - get_influencers, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetInfluencers, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getInfluencers, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetInfluencers, options?: TransportRequestOptions): TransportRequestPromise> + get_influencers, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetInfluencersRequest, callback: callbackFn): TransportRequestCallback + get_influencers, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetInfluencersRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getInfluencers, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetInfluencersRequest, options?: TransportRequestOptions): TransportRequestPromise> getInfluencers, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - getInfluencers, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetInfluencers, callback: callbackFn): TransportRequestCallback - getInfluencers, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetInfluencers, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_job_stats, TContext = Context>(params?: RequestParams.MlGetJobStats, options?: TransportRequestOptions): TransportRequestPromise> + getInfluencers, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetInfluencersRequest, callback: callbackFn): TransportRequestCallback + getInfluencers, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetInfluencersRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_job_stats, TContext = Context>(params?: Req.MlGetJobStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_job_stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_job_stats, TContext = Context>(params: RequestParams.MlGetJobStats, callback: callbackFn): TransportRequestCallback - get_job_stats, TContext = Context>(params: RequestParams.MlGetJobStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getJobStats, TContext = Context>(params?: RequestParams.MlGetJobStats, options?: TransportRequestOptions): TransportRequestPromise> + get_job_stats, TContext = Context>(params: Req.MlGetJobStatsRequest, callback: callbackFn): TransportRequestCallback + get_job_stats, TContext = Context>(params: Req.MlGetJobStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getJobStats, TContext = Context>(params?: Req.MlGetJobStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> getJobStats, TContext = Context>(callback: callbackFn): TransportRequestCallback - getJobStats, TContext = Context>(params: RequestParams.MlGetJobStats, callback: callbackFn): TransportRequestCallback - getJobStats, TContext = Context>(params: RequestParams.MlGetJobStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_jobs, TContext = Context>(params?: RequestParams.MlGetJobs, options?: TransportRequestOptions): TransportRequestPromise> + getJobStats, TContext = Context>(params: Req.MlGetJobStatsRequest, callback: callbackFn): TransportRequestCallback + getJobStats, TContext = Context>(params: Req.MlGetJobStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_jobs, TContext = Context>(params?: Req.MlGetJobsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_jobs, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_jobs, TContext = Context>(params: RequestParams.MlGetJobs, callback: callbackFn): TransportRequestCallback - get_jobs, TContext = Context>(params: RequestParams.MlGetJobs, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getJobs, TContext = Context>(params?: RequestParams.MlGetJobs, options?: TransportRequestOptions): TransportRequestPromise> + get_jobs, TContext = Context>(params: Req.MlGetJobsRequest, callback: callbackFn): TransportRequestCallback + get_jobs, TContext = Context>(params: Req.MlGetJobsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getJobs, TContext = Context>(params?: Req.MlGetJobsRequest, options?: TransportRequestOptions): TransportRequestPromise> getJobs, TContext = Context>(callback: callbackFn): TransportRequestCallback - getJobs, TContext = Context>(params: RequestParams.MlGetJobs, callback: callbackFn): TransportRequestCallback - getJobs, TContext = Context>(params: RequestParams.MlGetJobs, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_model_snapshots, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetModelSnapshots, options?: TransportRequestOptions): TransportRequestPromise> + getJobs, TContext = Context>(params: Req.MlGetJobsRequest, callback: callbackFn): TransportRequestCallback + getJobs, TContext = Context>(params: Req.MlGetJobsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_model_snapshots, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetModelSnapshotsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_model_snapshots, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_model_snapshots, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetModelSnapshots, callback: callbackFn): TransportRequestCallback - get_model_snapshots, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetModelSnapshots, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getModelSnapshots, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetModelSnapshots, options?: TransportRequestOptions): TransportRequestPromise> + get_model_snapshots, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetModelSnapshotsRequest, callback: callbackFn): TransportRequestCallback + get_model_snapshots, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetModelSnapshotsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getModelSnapshots, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetModelSnapshotsRequest, options?: TransportRequestOptions): TransportRequestPromise> getModelSnapshots, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - getModelSnapshots, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetModelSnapshots, callback: callbackFn): TransportRequestCallback - getModelSnapshots, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetModelSnapshots, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_overall_buckets, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetOverallBuckets, options?: TransportRequestOptions): TransportRequestPromise> + getModelSnapshots, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetModelSnapshotsRequest, callback: callbackFn): TransportRequestCallback + getModelSnapshots, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetModelSnapshotsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_overall_buckets, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetOverallBucketsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_overall_buckets, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_overall_buckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetOverallBuckets, callback: callbackFn): TransportRequestCallback - get_overall_buckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetOverallBuckets, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getOverallBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetOverallBuckets, options?: TransportRequestOptions): TransportRequestPromise> + get_overall_buckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetOverallBucketsRequest, callback: callbackFn): TransportRequestCallback + get_overall_buckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetOverallBucketsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getOverallBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetOverallBucketsRequest, options?: TransportRequestOptions): TransportRequestPromise> getOverallBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - getOverallBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetOverallBuckets, callback: callbackFn): TransportRequestCallback - getOverallBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetOverallBuckets, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_records, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetRecords, options?: TransportRequestOptions): TransportRequestPromise> + getOverallBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetOverallBucketsRequest, callback: callbackFn): TransportRequestCallback + getOverallBuckets, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetOverallBucketsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_records, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetRecordsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_records, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_records, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetRecords, callback: callbackFn): TransportRequestCallback - get_records, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetRecords, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getRecords, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlGetRecords, options?: TransportRequestOptions): TransportRequestPromise> + get_records, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetRecordsRequest, callback: callbackFn): TransportRequestCallback + get_records, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetRecordsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getRecords, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlGetRecordsRequest, options?: TransportRequestOptions): TransportRequestPromise> getRecords, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - getRecords, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetRecords, callback: callbackFn): TransportRequestCallback - getRecords, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlGetRecords, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_trained_models, TContext = Context>(params?: RequestParams.MlGetTrainedModels, options?: TransportRequestOptions): TransportRequestPromise> + getRecords, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetRecordsRequest, callback: callbackFn): TransportRequestCallback + getRecords, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlGetRecordsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_trained_models, TContext = Context>(params?: Req.MlGetTrainedModelsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_trained_models, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_trained_models, TContext = Context>(params: RequestParams.MlGetTrainedModels, callback: callbackFn): TransportRequestCallback - get_trained_models, TContext = Context>(params: RequestParams.MlGetTrainedModels, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getTrainedModels, TContext = Context>(params?: RequestParams.MlGetTrainedModels, options?: TransportRequestOptions): TransportRequestPromise> + get_trained_models, TContext = Context>(params: Req.MlGetTrainedModelsRequest, callback: callbackFn): TransportRequestCallback + get_trained_models, TContext = Context>(params: Req.MlGetTrainedModelsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getTrainedModels, TContext = Context>(params?: Req.MlGetTrainedModelsRequest, options?: TransportRequestOptions): TransportRequestPromise> getTrainedModels, TContext = Context>(callback: callbackFn): TransportRequestCallback - getTrainedModels, TContext = Context>(params: RequestParams.MlGetTrainedModels, callback: callbackFn): TransportRequestCallback - getTrainedModels, TContext = Context>(params: RequestParams.MlGetTrainedModels, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_trained_models_stats, TContext = Context>(params?: RequestParams.MlGetTrainedModelsStats, options?: TransportRequestOptions): TransportRequestPromise> + getTrainedModels, TContext = Context>(params: Req.MlGetTrainedModelsRequest, callback: callbackFn): TransportRequestCallback + getTrainedModels, TContext = Context>(params: Req.MlGetTrainedModelsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_trained_models_stats, TContext = Context>(params?: Req.MlGetTrainedModelsStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_trained_models_stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_trained_models_stats, TContext = Context>(params: RequestParams.MlGetTrainedModelsStats, callback: callbackFn): TransportRequestCallback - get_trained_models_stats, TContext = Context>(params: RequestParams.MlGetTrainedModelsStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getTrainedModelsStats, TContext = Context>(params?: RequestParams.MlGetTrainedModelsStats, options?: TransportRequestOptions): TransportRequestPromise> + get_trained_models_stats, TContext = Context>(params: Req.MlGetTrainedModelsStatsRequest, callback: callbackFn): TransportRequestCallback + get_trained_models_stats, TContext = Context>(params: Req.MlGetTrainedModelsStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getTrainedModelsStats, TContext = Context>(params?: Req.MlGetTrainedModelsStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> getTrainedModelsStats, TContext = Context>(callback: callbackFn): TransportRequestCallback - getTrainedModelsStats, TContext = Context>(params: RequestParams.MlGetTrainedModelsStats, callback: callbackFn): TransportRequestCallback - getTrainedModelsStats, TContext = Context>(params: RequestParams.MlGetTrainedModelsStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - info, TContext = Context>(params?: RequestParams.MlInfo, options?: TransportRequestOptions): TransportRequestPromise> + getTrainedModelsStats, TContext = Context>(params: Req.MlGetTrainedModelsStatsRequest, callback: callbackFn): TransportRequestCallback + getTrainedModelsStats, TContext = Context>(params: Req.MlGetTrainedModelsStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + info, TContext = Context>(params?: Req.MlInfoRequest, options?: TransportRequestOptions): TransportRequestPromise> info, TContext = Context>(callback: callbackFn): TransportRequestCallback - info, TContext = Context>(params: RequestParams.MlInfo, callback: callbackFn): TransportRequestCallback - info, TContext = Context>(params: RequestParams.MlInfo, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - open_job, TContext = Context>(params?: RequestParams.MlOpenJob, options?: TransportRequestOptions): TransportRequestPromise> + info, TContext = Context>(params: Req.MlInfoRequest, callback: callbackFn): TransportRequestCallback + info, TContext = Context>(params: Req.MlInfoRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + open_job, TContext = Context>(params?: Req.MlOpenJobRequest, options?: TransportRequestOptions): TransportRequestPromise> open_job, TContext = Context>(callback: callbackFn): TransportRequestCallback - open_job, TContext = Context>(params: RequestParams.MlOpenJob, callback: callbackFn): TransportRequestCallback - open_job, TContext = Context>(params: RequestParams.MlOpenJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - openJob, TContext = Context>(params?: RequestParams.MlOpenJob, options?: TransportRequestOptions): TransportRequestPromise> + open_job, TContext = Context>(params: Req.MlOpenJobRequest, callback: callbackFn): TransportRequestCallback + open_job, TContext = Context>(params: Req.MlOpenJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + openJob, TContext = Context>(params?: Req.MlOpenJobRequest, options?: TransportRequestOptions): TransportRequestPromise> openJob, TContext = Context>(callback: callbackFn): TransportRequestCallback - openJob, TContext = Context>(params: RequestParams.MlOpenJob, callback: callbackFn): TransportRequestCallback - openJob, TContext = Context>(params: RequestParams.MlOpenJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - post_calendar_events, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPostCalendarEvents, options?: TransportRequestOptions): TransportRequestPromise> + openJob, TContext = Context>(params: Req.MlOpenJobRequest, callback: callbackFn): TransportRequestCallback + openJob, TContext = Context>(params: Req.MlOpenJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + post_calendar_events, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPostCalendarEventsRequest, options?: TransportRequestOptions): TransportRequestPromise> post_calendar_events, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - post_calendar_events, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPostCalendarEvents, callback: callbackFn): TransportRequestCallback - post_calendar_events, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPostCalendarEvents, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - postCalendarEvents, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPostCalendarEvents, options?: TransportRequestOptions): TransportRequestPromise> + post_calendar_events, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPostCalendarEventsRequest, callback: callbackFn): TransportRequestCallback + post_calendar_events, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPostCalendarEventsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + postCalendarEvents, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPostCalendarEventsRequest, options?: TransportRequestOptions): TransportRequestPromise> postCalendarEvents, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - postCalendarEvents, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPostCalendarEvents, callback: callbackFn): TransportRequestCallback - postCalendarEvents, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPostCalendarEvents, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - post_data, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPostData, options?: TransportRequestOptions): TransportRequestPromise> + postCalendarEvents, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPostCalendarEventsRequest, callback: callbackFn): TransportRequestCallback + postCalendarEvents, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPostCalendarEventsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + post_data, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPostDataRequest, options?: TransportRequestOptions): TransportRequestPromise> post_data, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - post_data, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPostData, callback: callbackFn): TransportRequestCallback - post_data, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPostData, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - postData, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPostData, options?: TransportRequestOptions): TransportRequestPromise> + post_data, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPostDataRequest, callback: callbackFn): TransportRequestCallback + post_data, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPostDataRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + postData, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPostDataRequest, options?: TransportRequestOptions): TransportRequestPromise> postData, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - postData, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPostData, callback: callbackFn): TransportRequestCallback - postData, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPostData, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - preview_datafeed, TContext = Context>(params?: RequestParams.MlPreviewDatafeed, options?: TransportRequestOptions): TransportRequestPromise> + postData, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPostDataRequest, callback: callbackFn): TransportRequestCallback + postData, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPostDataRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + preview_datafeed, TContext = Context>(params?: Req.MlPreviewDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> preview_datafeed, TContext = Context>(callback: callbackFn): TransportRequestCallback - preview_datafeed, TContext = Context>(params: RequestParams.MlPreviewDatafeed, callback: callbackFn): TransportRequestCallback - preview_datafeed, TContext = Context>(params: RequestParams.MlPreviewDatafeed, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - previewDatafeed, TContext = Context>(params?: RequestParams.MlPreviewDatafeed, options?: TransportRequestOptions): TransportRequestPromise> + preview_datafeed, TContext = Context>(params: Req.MlPreviewDatafeedRequest, callback: callbackFn): TransportRequestCallback + preview_datafeed, TContext = Context>(params: Req.MlPreviewDatafeedRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + previewDatafeed, TContext = Context>(params?: Req.MlPreviewDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> previewDatafeed, TContext = Context>(callback: callbackFn): TransportRequestCallback - previewDatafeed, TContext = Context>(params: RequestParams.MlPreviewDatafeed, callback: callbackFn): TransportRequestCallback - previewDatafeed, TContext = Context>(params: RequestParams.MlPreviewDatafeed, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_calendar, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutCalendar, options?: TransportRequestOptions): TransportRequestPromise> + previewDatafeed, TContext = Context>(params: Req.MlPreviewDatafeedRequest, callback: callbackFn): TransportRequestCallback + previewDatafeed, TContext = Context>(params: Req.MlPreviewDatafeedRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_calendar, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutCalendarRequest, options?: TransportRequestOptions): TransportRequestPromise> put_calendar, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_calendar, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutCalendar, callback: callbackFn): TransportRequestCallback - put_calendar, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutCalendar, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putCalendar, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutCalendar, options?: TransportRequestOptions): TransportRequestPromise> + put_calendar, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutCalendarRequest, callback: callbackFn): TransportRequestCallback + put_calendar, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutCalendarRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putCalendar, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutCalendarRequest, options?: TransportRequestOptions): TransportRequestPromise> putCalendar, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putCalendar, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutCalendar, callback: callbackFn): TransportRequestCallback - putCalendar, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutCalendar, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_calendar_job, TContext = Context>(params?: RequestParams.MlPutCalendarJob, options?: TransportRequestOptions): TransportRequestPromise> + putCalendar, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutCalendarRequest, callback: callbackFn): TransportRequestCallback + putCalendar, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutCalendarRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_calendar_job, TContext = Context>(params?: Req.MlPutCalendarJobRequest, options?: TransportRequestOptions): TransportRequestPromise> put_calendar_job, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_calendar_job, TContext = Context>(params: RequestParams.MlPutCalendarJob, callback: callbackFn): TransportRequestCallback - put_calendar_job, TContext = Context>(params: RequestParams.MlPutCalendarJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putCalendarJob, TContext = Context>(params?: RequestParams.MlPutCalendarJob, options?: TransportRequestOptions): TransportRequestPromise> + put_calendar_job, TContext = Context>(params: Req.MlPutCalendarJobRequest, callback: callbackFn): TransportRequestCallback + put_calendar_job, TContext = Context>(params: Req.MlPutCalendarJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putCalendarJob, TContext = Context>(params?: Req.MlPutCalendarJobRequest, options?: TransportRequestOptions): TransportRequestPromise> putCalendarJob, TContext = Context>(callback: callbackFn): TransportRequestCallback - putCalendarJob, TContext = Context>(params: RequestParams.MlPutCalendarJob, callback: callbackFn): TransportRequestCallback - putCalendarJob, TContext = Context>(params: RequestParams.MlPutCalendarJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + putCalendarJob, TContext = Context>(params: Req.MlPutCalendarJobRequest, callback: callbackFn): TransportRequestCallback + putCalendarJob, TContext = Context>(params: Req.MlPutCalendarJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> put_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - put_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + put_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + put_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> putDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - putDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutDatafeed, options?: TransportRequestOptions): TransportRequestPromise> + putDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + putDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> put_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutDatafeed, callback: callbackFn): TransportRequestCallback - put_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutDatafeed, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutDatafeed, options?: TransportRequestOptions): TransportRequestPromise> + put_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutDatafeedRequest, callback: callbackFn): TransportRequestCallback + put_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutDatafeedRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> putDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutDatafeed, callback: callbackFn): TransportRequestCallback - putDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutDatafeed, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_filter, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutFilter, options?: TransportRequestOptions): TransportRequestPromise> + putDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutDatafeedRequest, callback: callbackFn): TransportRequestCallback + putDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutDatafeedRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_filter, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutFilterRequest, options?: TransportRequestOptions): TransportRequestPromise> put_filter, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_filter, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutFilter, callback: callbackFn): TransportRequestCallback - put_filter, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutFilter, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutFilter, options?: TransportRequestOptions): TransportRequestPromise> + put_filter, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutFilterRequest, callback: callbackFn): TransportRequestCallback + put_filter, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutFilterRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutFilterRequest, options?: TransportRequestOptions): TransportRequestPromise> putFilter, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutFilter, callback: callbackFn): TransportRequestCallback - putFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutFilter, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_job, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutJob, options?: TransportRequestOptions): TransportRequestPromise> + putFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutFilterRequest, callback: callbackFn): TransportRequestCallback + putFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutFilterRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_job, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutJobRequest, options?: TransportRequestOptions): TransportRequestPromise> put_job, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutJob, callback: callbackFn): TransportRequestCallback - put_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutJob, options?: TransportRequestOptions): TransportRequestPromise> + put_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutJobRequest, callback: callbackFn): TransportRequestCallback + put_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutJobRequest, options?: TransportRequestOptions): TransportRequestPromise> putJob, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutJob, callback: callbackFn): TransportRequestCallback - putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_trained_model, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutTrainedModel, options?: TransportRequestOptions): TransportRequestPromise> + putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutJobRequest, callback: callbackFn): TransportRequestCallback + putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_trained_model, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutTrainedModelRequest, options?: TransportRequestOptions): TransportRequestPromise> put_trained_model, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_trained_model, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutTrainedModel, callback: callbackFn): TransportRequestCallback - put_trained_model, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutTrainedModel, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putTrainedModel, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlPutTrainedModel, options?: TransportRequestOptions): TransportRequestPromise> + put_trained_model, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutTrainedModelRequest, callback: callbackFn): TransportRequestCallback + put_trained_model, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutTrainedModelRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putTrainedModel, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlPutTrainedModelRequest, options?: TransportRequestOptions): TransportRequestPromise> putTrainedModel, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putTrainedModel, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutTrainedModel, callback: callbackFn): TransportRequestCallback - putTrainedModel, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlPutTrainedModel, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - revert_model_snapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlRevertModelSnapshot, options?: TransportRequestOptions): TransportRequestPromise> + putTrainedModel, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutTrainedModelRequest, callback: callbackFn): TransportRequestCallback + putTrainedModel, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlPutTrainedModelRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + revert_model_snapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlRevertModelSnapshotRequest, options?: TransportRequestOptions): TransportRequestPromise> revert_model_snapshot, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - revert_model_snapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlRevertModelSnapshot, callback: callbackFn): TransportRequestCallback - revert_model_snapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlRevertModelSnapshot, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - revertModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlRevertModelSnapshot, options?: TransportRequestOptions): TransportRequestPromise> + revert_model_snapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlRevertModelSnapshotRequest, callback: callbackFn): TransportRequestCallback + revert_model_snapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlRevertModelSnapshotRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + revertModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlRevertModelSnapshotRequest, options?: TransportRequestOptions): TransportRequestPromise> revertModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - revertModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlRevertModelSnapshot, callback: callbackFn): TransportRequestCallback - revertModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlRevertModelSnapshot, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - set_upgrade_mode, TContext = Context>(params?: RequestParams.MlSetUpgradeMode, options?: TransportRequestOptions): TransportRequestPromise> + revertModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlRevertModelSnapshotRequest, callback: callbackFn): TransportRequestCallback + revertModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlRevertModelSnapshotRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + set_upgrade_mode, TContext = Context>(params?: Req.MlSetUpgradeModeRequest, options?: TransportRequestOptions): TransportRequestPromise> set_upgrade_mode, TContext = Context>(callback: callbackFn): TransportRequestCallback - set_upgrade_mode, TContext = Context>(params: RequestParams.MlSetUpgradeMode, callback: callbackFn): TransportRequestCallback - set_upgrade_mode, TContext = Context>(params: RequestParams.MlSetUpgradeMode, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - setUpgradeMode, TContext = Context>(params?: RequestParams.MlSetUpgradeMode, options?: TransportRequestOptions): TransportRequestPromise> + set_upgrade_mode, TContext = Context>(params: Req.MlSetUpgradeModeRequest, callback: callbackFn): TransportRequestCallback + set_upgrade_mode, TContext = Context>(params: Req.MlSetUpgradeModeRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + setUpgradeMode, TContext = Context>(params?: Req.MlSetUpgradeModeRequest, options?: TransportRequestOptions): TransportRequestPromise> setUpgradeMode, TContext = Context>(callback: callbackFn): TransportRequestCallback - setUpgradeMode, TContext = Context>(params: RequestParams.MlSetUpgradeMode, callback: callbackFn): TransportRequestCallback - setUpgradeMode, TContext = Context>(params: RequestParams.MlSetUpgradeMode, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - start_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlStartDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + setUpgradeMode, TContext = Context>(params: Req.MlSetUpgradeModeRequest, callback: callbackFn): TransportRequestCallback + setUpgradeMode, TContext = Context>(params: Req.MlSetUpgradeModeRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + start_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlStartDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> start_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - start_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlStartDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - start_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlStartDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - startDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlStartDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + start_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlStartDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + start_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlStartDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + startDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlStartDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> startDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - startDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlStartDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - startDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlStartDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - start_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlStartDatafeed, options?: TransportRequestOptions): TransportRequestPromise> + startDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlStartDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + startDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlStartDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + start_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlStartDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> start_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - start_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlStartDatafeed, callback: callbackFn): TransportRequestCallback - start_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlStartDatafeed, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - startDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlStartDatafeed, options?: TransportRequestOptions): TransportRequestPromise> + start_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlStartDatafeedRequest, callback: callbackFn): TransportRequestCallback + start_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlStartDatafeedRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + startDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlStartDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> startDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - startDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlStartDatafeed, callback: callbackFn): TransportRequestCallback - startDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlStartDatafeed, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stop_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlStopDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + startDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlStartDatafeedRequest, callback: callbackFn): TransportRequestCallback + startDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlStartDatafeedRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stop_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlStopDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> stop_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - stop_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlStopDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - stop_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlStopDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stopDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlStopDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + stop_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlStopDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + stop_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlStopDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stopDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlStopDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> stopDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - stopDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlStopDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - stopDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlStopDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stop_datafeed, TContext = Context>(params?: RequestParams.MlStopDatafeed, options?: TransportRequestOptions): TransportRequestPromise> + stopDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlStopDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + stopDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlStopDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stop_datafeed, TContext = Context>(params?: Req.MlStopDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> stop_datafeed, TContext = Context>(callback: callbackFn): TransportRequestCallback - stop_datafeed, TContext = Context>(params: RequestParams.MlStopDatafeed, callback: callbackFn): TransportRequestCallback - stop_datafeed, TContext = Context>(params: RequestParams.MlStopDatafeed, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stopDatafeed, TContext = Context>(params?: RequestParams.MlStopDatafeed, options?: TransportRequestOptions): TransportRequestPromise> + stop_datafeed, TContext = Context>(params: Req.MlStopDatafeedRequest, callback: callbackFn): TransportRequestCallback + stop_datafeed, TContext = Context>(params: Req.MlStopDatafeedRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stopDatafeed, TContext = Context>(params?: Req.MlStopDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> stopDatafeed, TContext = Context>(callback: callbackFn): TransportRequestCallback - stopDatafeed, TContext = Context>(params: RequestParams.MlStopDatafeed, callback: callbackFn): TransportRequestCallback - stopDatafeed, TContext = Context>(params: RequestParams.MlStopDatafeed, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - update_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlUpdateDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + stopDatafeed, TContext = Context>(params: Req.MlStopDatafeedRequest, callback: callbackFn): TransportRequestCallback + stopDatafeed, TContext = Context>(params: Req.MlStopDatafeedRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + update_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlUpdateDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> update_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - update_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - update_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - updateDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlUpdateDataFrameAnalytics, options?: TransportRequestOptions): TransportRequestPromise> + update_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + update_data_frame_analytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + updateDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlUpdateDataFrameAnalyticsRequest, options?: TransportRequestOptions): TransportRequestPromise> updateDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - updateDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateDataFrameAnalytics, callback: callbackFn): TransportRequestCallback - updateDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateDataFrameAnalytics, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - update_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlUpdateDatafeed, options?: TransportRequestOptions): TransportRequestPromise> + updateDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateDataFrameAnalyticsRequest, callback: callbackFn): TransportRequestCallback + updateDataFrameAnalytics, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateDataFrameAnalyticsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + update_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlUpdateDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> update_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - update_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateDatafeed, callback: callbackFn): TransportRequestCallback - update_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateDatafeed, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - updateDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlUpdateDatafeed, options?: TransportRequestOptions): TransportRequestPromise> + update_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateDatafeedRequest, callback: callbackFn): TransportRequestCallback + update_datafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateDatafeedRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + updateDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlUpdateDatafeedRequest, options?: TransportRequestOptions): TransportRequestPromise> updateDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - updateDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateDatafeed, callback: callbackFn): TransportRequestCallback - updateDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateDatafeed, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - update_filter, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlUpdateFilter, options?: TransportRequestOptions): TransportRequestPromise> + updateDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateDatafeedRequest, callback: callbackFn): TransportRequestCallback + updateDatafeed, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateDatafeedRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + update_filter, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlUpdateFilterRequest, options?: TransportRequestOptions): TransportRequestPromise> update_filter, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - update_filter, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateFilter, callback: callbackFn): TransportRequestCallback - update_filter, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateFilter, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - updateFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlUpdateFilter, options?: TransportRequestOptions): TransportRequestPromise> + update_filter, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateFilterRequest, callback: callbackFn): TransportRequestCallback + update_filter, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateFilterRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + updateFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlUpdateFilterRequest, options?: TransportRequestOptions): TransportRequestPromise> updateFilter, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - updateFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateFilter, callback: callbackFn): TransportRequestCallback - updateFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateFilter, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - update_job, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlUpdateJob, options?: TransportRequestOptions): TransportRequestPromise> + updateFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateFilterRequest, callback: callbackFn): TransportRequestCallback + updateFilter, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateFilterRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + update_job, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlUpdateJobRequest, options?: TransportRequestOptions): TransportRequestPromise> update_job, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - update_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateJob, callback: callbackFn): TransportRequestCallback - update_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - updateJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlUpdateJob, options?: TransportRequestOptions): TransportRequestPromise> + update_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateJobRequest, callback: callbackFn): TransportRequestCallback + update_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + updateJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlUpdateJobRequest, options?: TransportRequestOptions): TransportRequestPromise> updateJob, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - updateJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateJob, callback: callbackFn): TransportRequestCallback - updateJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - update_model_snapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlUpdateModelSnapshot, options?: TransportRequestOptions): TransportRequestPromise> + updateJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateJobRequest, callback: callbackFn): TransportRequestCallback + updateJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + update_model_snapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlUpdateModelSnapshotRequest, options?: TransportRequestOptions): TransportRequestPromise> update_model_snapshot, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - update_model_snapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateModelSnapshot, callback: callbackFn): TransportRequestCallback - update_model_snapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateModelSnapshot, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - updateModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlUpdateModelSnapshot, options?: TransportRequestOptions): TransportRequestPromise> + update_model_snapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateModelSnapshotRequest, callback: callbackFn): TransportRequestCallback + update_model_snapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateModelSnapshotRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + updateModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlUpdateModelSnapshotRequest, options?: TransportRequestOptions): TransportRequestPromise> updateModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - updateModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateModelSnapshot, callback: callbackFn): TransportRequestCallback - updateModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlUpdateModelSnapshot, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - validate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlValidate, options?: TransportRequestOptions): TransportRequestPromise> + updateModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateModelSnapshotRequest, callback: callbackFn): TransportRequestCallback + updateModelSnapshot, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlUpdateModelSnapshotRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + validate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlValidateRequest, options?: TransportRequestOptions): TransportRequestPromise> validate, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - validate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlValidate, callback: callbackFn): TransportRequestCallback - validate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlValidate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - validate_detector, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlValidateDetector, options?: TransportRequestOptions): TransportRequestPromise> + validate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlValidateRequest, callback: callbackFn): TransportRequestCallback + validate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlValidateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + validate_detector, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlValidateDetectorRequest, options?: TransportRequestOptions): TransportRequestPromise> validate_detector, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - validate_detector, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlValidateDetector, callback: callbackFn): TransportRequestCallback - validate_detector, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlValidateDetector, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - validateDetector, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.MlValidateDetector, options?: TransportRequestOptions): TransportRequestPromise> + validate_detector, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlValidateDetectorRequest, callback: callbackFn): TransportRequestCallback + validate_detector, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlValidateDetectorRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + validateDetector, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MlValidateDetectorRequest, options?: TransportRequestOptions): TransportRequestPromise> validateDetector, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - validateDetector, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlValidateDetector, callback: callbackFn): TransportRequestCallback - validateDetector, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.MlValidateDetector, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + validateDetector, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlValidateDetectorRequest, callback: callbackFn): TransportRequestCallback + validateDetector, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MlValidateDetectorRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } monitoring: { - bulk, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: RequestParams.MonitoringBulk, options?: TransportRequestOptions): TransportRequestPromise> + bulk, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: Req.MonitoringBulkRequest, options?: TransportRequestOptions): TransportRequestPromise> bulk, TRequestBody extends RequestNDBody = Record[], TContext = Context>(callback: callbackFn): TransportRequestCallback - bulk, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: RequestParams.MonitoringBulk, callback: callbackFn): TransportRequestCallback - bulk, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: RequestParams.MonitoringBulk, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + bulk, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: Req.MonitoringBulkRequest, callback: callbackFn): TransportRequestCallback + bulk, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: Req.MonitoringBulkRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } - msearch, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: RequestParams.Msearch, options?: TransportRequestOptions): TransportRequestPromise> + msearch, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: Req.MsearchRequest, options?: TransportRequestOptions): TransportRequestPromise> msearch, TRequestBody extends RequestNDBody = Record[], TContext = Context>(callback: callbackFn): TransportRequestCallback - msearch, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: RequestParams.Msearch, callback: callbackFn): TransportRequestCallback - msearch, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: RequestParams.Msearch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - msearch_template, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: RequestParams.MsearchTemplate, options?: TransportRequestOptions): TransportRequestPromise> + msearch, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: Req.MsearchRequest, callback: callbackFn): TransportRequestCallback + msearch, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: Req.MsearchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + msearch_template, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: Req.MsearchTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> msearch_template, TRequestBody extends RequestNDBody = Record[], TContext = Context>(callback: callbackFn): TransportRequestCallback - msearch_template, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: RequestParams.MsearchTemplate, callback: callbackFn): TransportRequestCallback - msearch_template, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: RequestParams.MsearchTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - msearchTemplate, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: RequestParams.MsearchTemplate, options?: TransportRequestOptions): TransportRequestPromise> + msearch_template, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: Req.MsearchTemplateRequest, callback: callbackFn): TransportRequestCallback + msearch_template, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: Req.MsearchTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + msearchTemplate, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params?: Req.MsearchTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> msearchTemplate, TRequestBody extends RequestNDBody = Record[], TContext = Context>(callback: callbackFn): TransportRequestCallback - msearchTemplate, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: RequestParams.MsearchTemplate, callback: callbackFn): TransportRequestCallback - msearchTemplate, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: RequestParams.MsearchTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - mtermvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Mtermvectors, options?: TransportRequestOptions): TransportRequestPromise> + msearchTemplate, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: Req.MsearchTemplateRequest, callback: callbackFn): TransportRequestCallback + msearchTemplate, TRequestBody extends RequestNDBody = Record[], TContext = Context>(params: Req.MsearchTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + mtermvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.MtermvectorsRequest, options?: TransportRequestOptions): TransportRequestPromise> mtermvectors, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - mtermvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Mtermvectors, callback: callbackFn): TransportRequestCallback - mtermvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Mtermvectors, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + mtermvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MtermvectorsRequest, callback: callbackFn): TransportRequestCallback + mtermvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.MtermvectorsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback nodes: { - hot_threads, TContext = Context>(params?: RequestParams.NodesHotThreads, options?: TransportRequestOptions): TransportRequestPromise> + hot_threads, TContext = Context>(params?: Req.NodesHotThreadsRequest, options?: TransportRequestOptions): TransportRequestPromise> hot_threads, TContext = Context>(callback: callbackFn): TransportRequestCallback - hot_threads, TContext = Context>(params: RequestParams.NodesHotThreads, callback: callbackFn): TransportRequestCallback - hot_threads, TContext = Context>(params: RequestParams.NodesHotThreads, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - hotThreads, TContext = Context>(params?: RequestParams.NodesHotThreads, options?: TransportRequestOptions): TransportRequestPromise> + hot_threads, TContext = Context>(params: Req.NodesHotThreadsRequest, callback: callbackFn): TransportRequestCallback + hot_threads, TContext = Context>(params: Req.NodesHotThreadsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + hotThreads, TContext = Context>(params?: Req.NodesHotThreadsRequest, options?: TransportRequestOptions): TransportRequestPromise> hotThreads, TContext = Context>(callback: callbackFn): TransportRequestCallback - hotThreads, TContext = Context>(params: RequestParams.NodesHotThreads, callback: callbackFn): TransportRequestCallback - hotThreads, TContext = Context>(params: RequestParams.NodesHotThreads, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - info, TContext = Context>(params?: RequestParams.NodesInfo, options?: TransportRequestOptions): TransportRequestPromise> + hotThreads, TContext = Context>(params: Req.NodesHotThreadsRequest, callback: callbackFn): TransportRequestCallback + hotThreads, TContext = Context>(params: Req.NodesHotThreadsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + info, TContext = Context>(params?: Req.NodesInfoRequest, options?: TransportRequestOptions): TransportRequestPromise> info, TContext = Context>(callback: callbackFn): TransportRequestCallback - info, TContext = Context>(params: RequestParams.NodesInfo, callback: callbackFn): TransportRequestCallback - info, TContext = Context>(params: RequestParams.NodesInfo, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - reload_secure_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.NodesReloadSecureSettings, options?: TransportRequestOptions): TransportRequestPromise> + info, TContext = Context>(params: Req.NodesInfoRequest, callback: callbackFn): TransportRequestCallback + info, TContext = Context>(params: Req.NodesInfoRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + reload_secure_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.NodesReloadSecureSettingsRequest, options?: TransportRequestOptions): TransportRequestPromise> reload_secure_settings, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - reload_secure_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.NodesReloadSecureSettings, callback: callbackFn): TransportRequestCallback - reload_secure_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.NodesReloadSecureSettings, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - reloadSecureSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.NodesReloadSecureSettings, options?: TransportRequestOptions): TransportRequestPromise> + reload_secure_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.NodesReloadSecureSettingsRequest, callback: callbackFn): TransportRequestCallback + reload_secure_settings, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.NodesReloadSecureSettingsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + reloadSecureSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.NodesReloadSecureSettingsRequest, options?: TransportRequestOptions): TransportRequestPromise> reloadSecureSettings, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - reloadSecureSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.NodesReloadSecureSettings, callback: callbackFn): TransportRequestCallback - reloadSecureSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.NodesReloadSecureSettings, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params?: RequestParams.NodesStats, options?: TransportRequestOptions): TransportRequestPromise> + reloadSecureSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.NodesReloadSecureSettingsRequest, callback: callbackFn): TransportRequestCallback + reloadSecureSettings, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.NodesReloadSecureSettingsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params?: Req.NodesStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.NodesStats, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.NodesStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - usage, TContext = Context>(params?: RequestParams.NodesUsage, options?: TransportRequestOptions): TransportRequestPromise> + stats, TContext = Context>(params: Req.NodesStatsRequest, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params: Req.NodesStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + usage, TContext = Context>(params?: Req.NodesUsageRequest, options?: TransportRequestOptions): TransportRequestPromise> usage, TContext = Context>(callback: callbackFn): TransportRequestCallback - usage, TContext = Context>(params: RequestParams.NodesUsage, callback: callbackFn): TransportRequestCallback - usage, TContext = Context>(params: RequestParams.NodesUsage, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + usage, TContext = Context>(params: Req.NodesUsageRequest, callback: callbackFn): TransportRequestCallback + usage, TContext = Context>(params: Req.NodesUsageRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } - ping, TContext = Context>(params?: RequestParams.Ping, options?: TransportRequestOptions): TransportRequestPromise> + ping, TContext = Context>(params?: Req.PingRequest, options?: TransportRequestOptions): TransportRequestPromise> ping, TContext = Context>(callback: callbackFn): TransportRequestCallback - ping, TContext = Context>(params: RequestParams.Ping, callback: callbackFn): TransportRequestCallback - ping, TContext = Context>(params: RequestParams.Ping, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_script, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.PutScript, options?: TransportRequestOptions): TransportRequestPromise> + ping, TContext = Context>(params: Req.PingRequest, callback: callbackFn): TransportRequestCallback + ping, TContext = Context>(params: Req.PingRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_script, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.PutScriptRequest, options?: TransportRequestOptions): TransportRequestPromise> put_script, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_script, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.PutScript, callback: callbackFn): TransportRequestCallback - put_script, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.PutScript, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putScript, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.PutScript, options?: TransportRequestOptions): TransportRequestPromise> + put_script, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.PutScriptRequest, callback: callbackFn): TransportRequestCallback + put_script, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.PutScriptRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putScript, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.PutScriptRequest, options?: TransportRequestOptions): TransportRequestPromise> putScript, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putScript, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.PutScript, callback: callbackFn): TransportRequestCallback - putScript, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.PutScript, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - rank_eval, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.RankEval, options?: TransportRequestOptions): TransportRequestPromise> + putScript, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.PutScriptRequest, callback: callbackFn): TransportRequestCallback + putScript, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.PutScriptRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + rank_eval, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.RankEvalRequest, options?: TransportRequestOptions): TransportRequestPromise> rank_eval, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - rank_eval, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RankEval, callback: callbackFn): TransportRequestCallback - rank_eval, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RankEval, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - rankEval, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.RankEval, options?: TransportRequestOptions): TransportRequestPromise> + rank_eval, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RankEvalRequest, callback: callbackFn): TransportRequestCallback + rank_eval, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RankEvalRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + rankEval, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.RankEvalRequest, options?: TransportRequestOptions): TransportRequestPromise> rankEval, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - rankEval, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RankEval, callback: callbackFn): TransportRequestCallback - rankEval, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RankEval, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - reindex, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Reindex, options?: TransportRequestOptions): TransportRequestPromise> + rankEval, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RankEvalRequest, callback: callbackFn): TransportRequestCallback + rankEval, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RankEvalRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + reindex, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ReindexRequest, options?: TransportRequestOptions): TransportRequestPromise> reindex, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - reindex, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Reindex, callback: callbackFn): TransportRequestCallback - reindex, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Reindex, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - reindex_rethrottle, TContext = Context>(params?: RequestParams.ReindexRethrottle, options?: TransportRequestOptions): TransportRequestPromise> + reindex, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ReindexRequest, callback: callbackFn): TransportRequestCallback + reindex, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ReindexRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + reindex_rethrottle, TContext = Context>(params?: Req.ReindexRethrottleRequest, options?: TransportRequestOptions): TransportRequestPromise> reindex_rethrottle, TContext = Context>(callback: callbackFn): TransportRequestCallback - reindex_rethrottle, TContext = Context>(params: RequestParams.ReindexRethrottle, callback: callbackFn): TransportRequestCallback - reindex_rethrottle, TContext = Context>(params: RequestParams.ReindexRethrottle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - reindexRethrottle, TContext = Context>(params?: RequestParams.ReindexRethrottle, options?: TransportRequestOptions): TransportRequestPromise> + reindex_rethrottle, TContext = Context>(params: Req.ReindexRethrottleRequest, callback: callbackFn): TransportRequestCallback + reindex_rethrottle, TContext = Context>(params: Req.ReindexRethrottleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + reindexRethrottle, TContext = Context>(params?: Req.ReindexRethrottleRequest, options?: TransportRequestOptions): TransportRequestPromise> reindexRethrottle, TContext = Context>(callback: callbackFn): TransportRequestCallback - reindexRethrottle, TContext = Context>(params: RequestParams.ReindexRethrottle, callback: callbackFn): TransportRequestCallback - reindexRethrottle, TContext = Context>(params: RequestParams.ReindexRethrottle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - render_search_template, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.RenderSearchTemplate, options?: TransportRequestOptions): TransportRequestPromise> + reindexRethrottle, TContext = Context>(params: Req.ReindexRethrottleRequest, callback: callbackFn): TransportRequestCallback + reindexRethrottle, TContext = Context>(params: Req.ReindexRethrottleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + render_search_template, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.RenderSearchTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> render_search_template, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - render_search_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RenderSearchTemplate, callback: callbackFn): TransportRequestCallback - render_search_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RenderSearchTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - renderSearchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.RenderSearchTemplate, options?: TransportRequestOptions): TransportRequestPromise> + render_search_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RenderSearchTemplateRequest, callback: callbackFn): TransportRequestCallback + render_search_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RenderSearchTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + renderSearchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.RenderSearchTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> renderSearchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - renderSearchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RenderSearchTemplate, callback: callbackFn): TransportRequestCallback - renderSearchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RenderSearchTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + renderSearchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RenderSearchTemplateRequest, callback: callbackFn): TransportRequestCallback + renderSearchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RenderSearchTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback rollup: { - delete_job, TContext = Context>(params?: RequestParams.RollupDeleteJob, options?: TransportRequestOptions): TransportRequestPromise> + delete_job, TContext = Context>(params?: Req.RollupDeleteJobRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_job, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_job, TContext = Context>(params: RequestParams.RollupDeleteJob, callback: callbackFn): TransportRequestCallback - delete_job, TContext = Context>(params: RequestParams.RollupDeleteJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteJob, TContext = Context>(params?: RequestParams.RollupDeleteJob, options?: TransportRequestOptions): TransportRequestPromise> + delete_job, TContext = Context>(params: Req.RollupDeleteJobRequest, callback: callbackFn): TransportRequestCallback + delete_job, TContext = Context>(params: Req.RollupDeleteJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteJob, TContext = Context>(params?: Req.RollupDeleteJobRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteJob, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteJob, TContext = Context>(params: RequestParams.RollupDeleteJob, callback: callbackFn): TransportRequestCallback - deleteJob, TContext = Context>(params: RequestParams.RollupDeleteJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_jobs, TContext = Context>(params?: RequestParams.RollupGetJobs, options?: TransportRequestOptions): TransportRequestPromise> + deleteJob, TContext = Context>(params: Req.RollupDeleteJobRequest, callback: callbackFn): TransportRequestCallback + deleteJob, TContext = Context>(params: Req.RollupDeleteJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_jobs, TContext = Context>(params?: Req.RollupGetJobsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_jobs, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_jobs, TContext = Context>(params: RequestParams.RollupGetJobs, callback: callbackFn): TransportRequestCallback - get_jobs, TContext = Context>(params: RequestParams.RollupGetJobs, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getJobs, TContext = Context>(params?: RequestParams.RollupGetJobs, options?: TransportRequestOptions): TransportRequestPromise> + get_jobs, TContext = Context>(params: Req.RollupGetJobsRequest, callback: callbackFn): TransportRequestCallback + get_jobs, TContext = Context>(params: Req.RollupGetJobsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getJobs, TContext = Context>(params?: Req.RollupGetJobsRequest, options?: TransportRequestOptions): TransportRequestPromise> getJobs, TContext = Context>(callback: callbackFn): TransportRequestCallback - getJobs, TContext = Context>(params: RequestParams.RollupGetJobs, callback: callbackFn): TransportRequestCallback - getJobs, TContext = Context>(params: RequestParams.RollupGetJobs, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_rollup_caps, TContext = Context>(params?: RequestParams.RollupGetRollupCaps, options?: TransportRequestOptions): TransportRequestPromise> + getJobs, TContext = Context>(params: Req.RollupGetJobsRequest, callback: callbackFn): TransportRequestCallback + getJobs, TContext = Context>(params: Req.RollupGetJobsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_rollup_caps, TContext = Context>(params?: Req.RollupGetRollupCapsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_rollup_caps, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_rollup_caps, TContext = Context>(params: RequestParams.RollupGetRollupCaps, callback: callbackFn): TransportRequestCallback - get_rollup_caps, TContext = Context>(params: RequestParams.RollupGetRollupCaps, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getRollupCaps, TContext = Context>(params?: RequestParams.RollupGetRollupCaps, options?: TransportRequestOptions): TransportRequestPromise> + get_rollup_caps, TContext = Context>(params: Req.RollupGetRollupCapsRequest, callback: callbackFn): TransportRequestCallback + get_rollup_caps, TContext = Context>(params: Req.RollupGetRollupCapsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getRollupCaps, TContext = Context>(params?: Req.RollupGetRollupCapsRequest, options?: TransportRequestOptions): TransportRequestPromise> getRollupCaps, TContext = Context>(callback: callbackFn): TransportRequestCallback - getRollupCaps, TContext = Context>(params: RequestParams.RollupGetRollupCaps, callback: callbackFn): TransportRequestCallback - getRollupCaps, TContext = Context>(params: RequestParams.RollupGetRollupCaps, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_rollup_index_caps, TContext = Context>(params?: RequestParams.RollupGetRollupIndexCaps, options?: TransportRequestOptions): TransportRequestPromise> + getRollupCaps, TContext = Context>(params: Req.RollupGetRollupCapsRequest, callback: callbackFn): TransportRequestCallback + getRollupCaps, TContext = Context>(params: Req.RollupGetRollupCapsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_rollup_index_caps, TContext = Context>(params?: Req.RollupGetRollupIndexCapsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_rollup_index_caps, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_rollup_index_caps, TContext = Context>(params: RequestParams.RollupGetRollupIndexCaps, callback: callbackFn): TransportRequestCallback - get_rollup_index_caps, TContext = Context>(params: RequestParams.RollupGetRollupIndexCaps, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getRollupIndexCaps, TContext = Context>(params?: RequestParams.RollupGetRollupIndexCaps, options?: TransportRequestOptions): TransportRequestPromise> + get_rollup_index_caps, TContext = Context>(params: Req.RollupGetRollupIndexCapsRequest, callback: callbackFn): TransportRequestCallback + get_rollup_index_caps, TContext = Context>(params: Req.RollupGetRollupIndexCapsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getRollupIndexCaps, TContext = Context>(params?: Req.RollupGetRollupIndexCapsRequest, options?: TransportRequestOptions): TransportRequestPromise> getRollupIndexCaps, TContext = Context>(callback: callbackFn): TransportRequestCallback - getRollupIndexCaps, TContext = Context>(params: RequestParams.RollupGetRollupIndexCaps, callback: callbackFn): TransportRequestCallback - getRollupIndexCaps, TContext = Context>(params: RequestParams.RollupGetRollupIndexCaps, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_job, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.RollupPutJob, options?: TransportRequestOptions): TransportRequestPromise> + getRollupIndexCaps, TContext = Context>(params: Req.RollupGetRollupIndexCapsRequest, callback: callbackFn): TransportRequestCallback + getRollupIndexCaps, TContext = Context>(params: Req.RollupGetRollupIndexCapsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_job, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.RollupPutJobRequest, options?: TransportRequestOptions): TransportRequestPromise> put_job, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RollupPutJob, callback: callbackFn): TransportRequestCallback - put_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RollupPutJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.RollupPutJob, options?: TransportRequestOptions): TransportRequestPromise> + put_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RollupPutJobRequest, callback: callbackFn): TransportRequestCallback + put_job, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RollupPutJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.RollupPutJobRequest, options?: TransportRequestOptions): TransportRequestPromise> putJob, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RollupPutJob, callback: callbackFn): TransportRequestCallback - putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RollupPutJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - rollup_search, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.RollupRollupSearch, options?: TransportRequestOptions): TransportRequestPromise> + putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RollupPutJobRequest, callback: callbackFn): TransportRequestCallback + putJob, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RollupPutJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + rollup_search, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.RollupRollupSearchRequest, options?: TransportRequestOptions): TransportRequestPromise> rollup_search, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - rollup_search, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RollupRollupSearch, callback: callbackFn): TransportRequestCallback - rollup_search, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RollupRollupSearch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - rollupSearch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.RollupRollupSearch, options?: TransportRequestOptions): TransportRequestPromise> + rollup_search, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RollupRollupSearchRequest, callback: callbackFn): TransportRequestCallback + rollup_search, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RollupRollupSearchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + rollupSearch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.RollupRollupSearchRequest, options?: TransportRequestOptions): TransportRequestPromise> rollupSearch, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - rollupSearch, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RollupRollupSearch, callback: callbackFn): TransportRequestCallback - rollupSearch, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.RollupRollupSearch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - start_job, TContext = Context>(params?: RequestParams.RollupStartJob, options?: TransportRequestOptions): TransportRequestPromise> + rollupSearch, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RollupRollupSearchRequest, callback: callbackFn): TransportRequestCallback + rollupSearch, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.RollupRollupSearchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + start_job, TContext = Context>(params?: Req.RollupStartJobRequest, options?: TransportRequestOptions): TransportRequestPromise> start_job, TContext = Context>(callback: callbackFn): TransportRequestCallback - start_job, TContext = Context>(params: RequestParams.RollupStartJob, callback: callbackFn): TransportRequestCallback - start_job, TContext = Context>(params: RequestParams.RollupStartJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - startJob, TContext = Context>(params?: RequestParams.RollupStartJob, options?: TransportRequestOptions): TransportRequestPromise> + start_job, TContext = Context>(params: Req.RollupStartJobRequest, callback: callbackFn): TransportRequestCallback + start_job, TContext = Context>(params: Req.RollupStartJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + startJob, TContext = Context>(params?: Req.RollupStartJobRequest, options?: TransportRequestOptions): TransportRequestPromise> startJob, TContext = Context>(callback: callbackFn): TransportRequestCallback - startJob, TContext = Context>(params: RequestParams.RollupStartJob, callback: callbackFn): TransportRequestCallback - startJob, TContext = Context>(params: RequestParams.RollupStartJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stop_job, TContext = Context>(params?: RequestParams.RollupStopJob, options?: TransportRequestOptions): TransportRequestPromise> + startJob, TContext = Context>(params: Req.RollupStartJobRequest, callback: callbackFn): TransportRequestCallback + startJob, TContext = Context>(params: Req.RollupStartJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stop_job, TContext = Context>(params?: Req.RollupStopJobRequest, options?: TransportRequestOptions): TransportRequestPromise> stop_job, TContext = Context>(callback: callbackFn): TransportRequestCallback - stop_job, TContext = Context>(params: RequestParams.RollupStopJob, callback: callbackFn): TransportRequestCallback - stop_job, TContext = Context>(params: RequestParams.RollupStopJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stopJob, TContext = Context>(params?: RequestParams.RollupStopJob, options?: TransportRequestOptions): TransportRequestPromise> + stop_job, TContext = Context>(params: Req.RollupStopJobRequest, callback: callbackFn): TransportRequestCallback + stop_job, TContext = Context>(params: Req.RollupStopJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stopJob, TContext = Context>(params?: Req.RollupStopJobRequest, options?: TransportRequestOptions): TransportRequestPromise> stopJob, TContext = Context>(callback: callbackFn): TransportRequestCallback - stopJob, TContext = Context>(params: RequestParams.RollupStopJob, callback: callbackFn): TransportRequestCallback - stopJob, TContext = Context>(params: RequestParams.RollupStopJob, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stopJob, TContext = Context>(params: Req.RollupStopJobRequest, callback: callbackFn): TransportRequestCallback + stopJob, TContext = Context>(params: Req.RollupStopJobRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } - scripts_painless_execute, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ScriptsPainlessExecute, options?: TransportRequestOptions): TransportRequestPromise> + scripts_painless_execute, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ScriptsPainlessExecuteRequest, options?: TransportRequestOptions): TransportRequestPromise> scripts_painless_execute, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - scripts_painless_execute, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ScriptsPainlessExecute, callback: callbackFn): TransportRequestCallback - scripts_painless_execute, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ScriptsPainlessExecute, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - scriptsPainlessExecute, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.ScriptsPainlessExecute, options?: TransportRequestOptions): TransportRequestPromise> + scripts_painless_execute, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ScriptsPainlessExecuteRequest, callback: callbackFn): TransportRequestCallback + scripts_painless_execute, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ScriptsPainlessExecuteRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + scriptsPainlessExecute, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ScriptsPainlessExecuteRequest, options?: TransportRequestOptions): TransportRequestPromise> scriptsPainlessExecute, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - scriptsPainlessExecute, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ScriptsPainlessExecute, callback: callbackFn): TransportRequestCallback - scriptsPainlessExecute, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.ScriptsPainlessExecute, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - scroll, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Scroll, options?: TransportRequestOptions): TransportRequestPromise> + scriptsPainlessExecute, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ScriptsPainlessExecuteRequest, callback: callbackFn): TransportRequestCallback + scriptsPainlessExecute, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ScriptsPainlessExecuteRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + scroll, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.ScrollRequest, options?: TransportRequestOptions): TransportRequestPromise> scroll, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - scroll, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Scroll, callback: callbackFn): TransportRequestCallback - scroll, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Scroll, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - search, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Search, options?: TransportRequestOptions): TransportRequestPromise> - search, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - search, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Search, callback: callbackFn): TransportRequestCallback - search, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Search, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - search_shards, TContext = Context>(params?: RequestParams.SearchShards, options?: TransportRequestOptions): TransportRequestPromise> + scroll, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ScrollRequest, callback: callbackFn): TransportRequestCallback + scroll, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.ScrollRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + search, TContext = Context>(params?: Req.SearchRequest, options?: TransportRequestOptions): TransportRequestPromise> + search, TContext = Context>(callback: callbackFn): TransportRequestCallback + search, TContext = Context>(params: Req.SearchRequest, callback: callbackFn): TransportRequestCallback + search, TContext = Context>(params: Req.SearchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + search_shards, TContext = Context>(params?: Req.SearchShardsRequest, options?: TransportRequestOptions): TransportRequestPromise> search_shards, TContext = Context>(callback: callbackFn): TransportRequestCallback - search_shards, TContext = Context>(params: RequestParams.SearchShards, callback: callbackFn): TransportRequestCallback - search_shards, TContext = Context>(params: RequestParams.SearchShards, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - searchShards, TContext = Context>(params?: RequestParams.SearchShards, options?: TransportRequestOptions): TransportRequestPromise> + search_shards, TContext = Context>(params: Req.SearchShardsRequest, callback: callbackFn): TransportRequestCallback + search_shards, TContext = Context>(params: Req.SearchShardsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + searchShards, TContext = Context>(params?: Req.SearchShardsRequest, options?: TransportRequestOptions): TransportRequestPromise> searchShards, TContext = Context>(callback: callbackFn): TransportRequestCallback - searchShards, TContext = Context>(params: RequestParams.SearchShards, callback: callbackFn): TransportRequestCallback - searchShards, TContext = Context>(params: RequestParams.SearchShards, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - search_template, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SearchTemplate, options?: TransportRequestOptions): TransportRequestPromise> + searchShards, TContext = Context>(params: Req.SearchShardsRequest, callback: callbackFn): TransportRequestCallback + searchShards, TContext = Context>(params: Req.SearchShardsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + search_template, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SearchTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> search_template, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - search_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SearchTemplate, callback: callbackFn): TransportRequestCallback - search_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SearchTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - searchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SearchTemplate, options?: TransportRequestOptions): TransportRequestPromise> + search_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SearchTemplateRequest, callback: callbackFn): TransportRequestCallback + search_template, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SearchTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + searchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SearchTemplateRequest, options?: TransportRequestOptions): TransportRequestPromise> searchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - searchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SearchTemplate, callback: callbackFn): TransportRequestCallback - searchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SearchTemplate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + searchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SearchTemplateRequest, callback: callbackFn): TransportRequestCallback + searchTemplate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SearchTemplateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback searchable_snapshots: { - clear_cache, TContext = Context>(params?: RequestParams.SearchableSnapshotsClearCache, options?: TransportRequestOptions): TransportRequestPromise> + clear_cache, TContext = Context>(params?: Req.SearchableSnapshotsClearCacheRequest, options?: TransportRequestOptions): TransportRequestPromise> clear_cache, TContext = Context>(callback: callbackFn): TransportRequestCallback - clear_cache, TContext = Context>(params: RequestParams.SearchableSnapshotsClearCache, callback: callbackFn): TransportRequestCallback - clear_cache, TContext = Context>(params: RequestParams.SearchableSnapshotsClearCache, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - clearCache, TContext = Context>(params?: RequestParams.SearchableSnapshotsClearCache, options?: TransportRequestOptions): TransportRequestPromise> + clear_cache, TContext = Context>(params: Req.SearchableSnapshotsClearCacheRequest, callback: callbackFn): TransportRequestCallback + clear_cache, TContext = Context>(params: Req.SearchableSnapshotsClearCacheRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + clearCache, TContext = Context>(params?: Req.SearchableSnapshotsClearCacheRequest, options?: TransportRequestOptions): TransportRequestPromise> clearCache, TContext = Context>(callback: callbackFn): TransportRequestCallback - clearCache, TContext = Context>(params: RequestParams.SearchableSnapshotsClearCache, callback: callbackFn): TransportRequestCallback - clearCache, TContext = Context>(params: RequestParams.SearchableSnapshotsClearCache, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - mount, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SearchableSnapshotsMount, options?: TransportRequestOptions): TransportRequestPromise> + clearCache, TContext = Context>(params: Req.SearchableSnapshotsClearCacheRequest, callback: callbackFn): TransportRequestCallback + clearCache, TContext = Context>(params: Req.SearchableSnapshotsClearCacheRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + mount, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SearchableSnapshotsMountRequest, options?: TransportRequestOptions): TransportRequestPromise> mount, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - mount, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SearchableSnapshotsMount, callback: callbackFn): TransportRequestCallback - mount, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SearchableSnapshotsMount, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - repository_stats, TContext = Context>(params?: RequestParams.SearchableSnapshotsRepositoryStats, options?: TransportRequestOptions): TransportRequestPromise> + mount, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SearchableSnapshotsMountRequest, callback: callbackFn): TransportRequestCallback + mount, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SearchableSnapshotsMountRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + repository_stats, TContext = Context>(params?: Req.SearchableSnapshotsRepositoryStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> repository_stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - repository_stats, TContext = Context>(params: RequestParams.SearchableSnapshotsRepositoryStats, callback: callbackFn): TransportRequestCallback - repository_stats, TContext = Context>(params: RequestParams.SearchableSnapshotsRepositoryStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - repositoryStats, TContext = Context>(params?: RequestParams.SearchableSnapshotsRepositoryStats, options?: TransportRequestOptions): TransportRequestPromise> + repository_stats, TContext = Context>(params: Req.SearchableSnapshotsRepositoryStatsRequest, callback: callbackFn): TransportRequestCallback + repository_stats, TContext = Context>(params: Req.SearchableSnapshotsRepositoryStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + repositoryStats, TContext = Context>(params?: Req.SearchableSnapshotsRepositoryStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> repositoryStats, TContext = Context>(callback: callbackFn): TransportRequestCallback - repositoryStats, TContext = Context>(params: RequestParams.SearchableSnapshotsRepositoryStats, callback: callbackFn): TransportRequestCallback - repositoryStats, TContext = Context>(params: RequestParams.SearchableSnapshotsRepositoryStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params?: RequestParams.SearchableSnapshotsStats, options?: TransportRequestOptions): TransportRequestPromise> + repositoryStats, TContext = Context>(params: Req.SearchableSnapshotsRepositoryStatsRequest, callback: callbackFn): TransportRequestCallback + repositoryStats, TContext = Context>(params: Req.SearchableSnapshotsRepositoryStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params?: Req.SearchableSnapshotsStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.SearchableSnapshotsStats, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.SearchableSnapshotsStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params: Req.SearchableSnapshotsStatsRequest, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params: Req.SearchableSnapshotsStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } searchableSnapshots: { - clear_cache, TContext = Context>(params?: RequestParams.SearchableSnapshotsClearCache, options?: TransportRequestOptions): TransportRequestPromise> + clear_cache, TContext = Context>(params?: Req.SearchableSnapshotsClearCacheRequest, options?: TransportRequestOptions): TransportRequestPromise> clear_cache, TContext = Context>(callback: callbackFn): TransportRequestCallback - clear_cache, TContext = Context>(params: RequestParams.SearchableSnapshotsClearCache, callback: callbackFn): TransportRequestCallback - clear_cache, TContext = Context>(params: RequestParams.SearchableSnapshotsClearCache, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - clearCache, TContext = Context>(params?: RequestParams.SearchableSnapshotsClearCache, options?: TransportRequestOptions): TransportRequestPromise> + clear_cache, TContext = Context>(params: Req.SearchableSnapshotsClearCacheRequest, callback: callbackFn): TransportRequestCallback + clear_cache, TContext = Context>(params: Req.SearchableSnapshotsClearCacheRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + clearCache, TContext = Context>(params?: Req.SearchableSnapshotsClearCacheRequest, options?: TransportRequestOptions): TransportRequestPromise> clearCache, TContext = Context>(callback: callbackFn): TransportRequestCallback - clearCache, TContext = Context>(params: RequestParams.SearchableSnapshotsClearCache, callback: callbackFn): TransportRequestCallback - clearCache, TContext = Context>(params: RequestParams.SearchableSnapshotsClearCache, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - mount, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SearchableSnapshotsMount, options?: TransportRequestOptions): TransportRequestPromise> + clearCache, TContext = Context>(params: Req.SearchableSnapshotsClearCacheRequest, callback: callbackFn): TransportRequestCallback + clearCache, TContext = Context>(params: Req.SearchableSnapshotsClearCacheRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + mount, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SearchableSnapshotsMountRequest, options?: TransportRequestOptions): TransportRequestPromise> mount, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - mount, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SearchableSnapshotsMount, callback: callbackFn): TransportRequestCallback - mount, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SearchableSnapshotsMount, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - repository_stats, TContext = Context>(params?: RequestParams.SearchableSnapshotsRepositoryStats, options?: TransportRequestOptions): TransportRequestPromise> + mount, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SearchableSnapshotsMountRequest, callback: callbackFn): TransportRequestCallback + mount, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SearchableSnapshotsMountRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + repository_stats, TContext = Context>(params?: Req.SearchableSnapshotsRepositoryStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> repository_stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - repository_stats, TContext = Context>(params: RequestParams.SearchableSnapshotsRepositoryStats, callback: callbackFn): TransportRequestCallback - repository_stats, TContext = Context>(params: RequestParams.SearchableSnapshotsRepositoryStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - repositoryStats, TContext = Context>(params?: RequestParams.SearchableSnapshotsRepositoryStats, options?: TransportRequestOptions): TransportRequestPromise> + repository_stats, TContext = Context>(params: Req.SearchableSnapshotsRepositoryStatsRequest, callback: callbackFn): TransportRequestCallback + repository_stats, TContext = Context>(params: Req.SearchableSnapshotsRepositoryStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + repositoryStats, TContext = Context>(params?: Req.SearchableSnapshotsRepositoryStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> repositoryStats, TContext = Context>(callback: callbackFn): TransportRequestCallback - repositoryStats, TContext = Context>(params: RequestParams.SearchableSnapshotsRepositoryStats, callback: callbackFn): TransportRequestCallback - repositoryStats, TContext = Context>(params: RequestParams.SearchableSnapshotsRepositoryStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params?: RequestParams.SearchableSnapshotsStats, options?: TransportRequestOptions): TransportRequestPromise> + repositoryStats, TContext = Context>(params: Req.SearchableSnapshotsRepositoryStatsRequest, callback: callbackFn): TransportRequestCallback + repositoryStats, TContext = Context>(params: Req.SearchableSnapshotsRepositoryStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params?: Req.SearchableSnapshotsStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.SearchableSnapshotsStats, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.SearchableSnapshotsStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params: Req.SearchableSnapshotsStatsRequest, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params: Req.SearchableSnapshotsStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } security: { - authenticate, TContext = Context>(params?: RequestParams.SecurityAuthenticate, options?: TransportRequestOptions): TransportRequestPromise> + authenticate, TContext = Context>(params?: Req.SecurityAuthenticateRequest, options?: TransportRequestOptions): TransportRequestPromise> authenticate, TContext = Context>(callback: callbackFn): TransportRequestCallback - authenticate, TContext = Context>(params: RequestParams.SecurityAuthenticate, callback: callbackFn): TransportRequestCallback - authenticate, TContext = Context>(params: RequestParams.SecurityAuthenticate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - change_password, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityChangePassword, options?: TransportRequestOptions): TransportRequestPromise> + authenticate, TContext = Context>(params: Req.SecurityAuthenticateRequest, callback: callbackFn): TransportRequestCallback + authenticate, TContext = Context>(params: Req.SecurityAuthenticateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + change_password, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityChangePasswordRequest, options?: TransportRequestOptions): TransportRequestPromise> change_password, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - change_password, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityChangePassword, callback: callbackFn): TransportRequestCallback - change_password, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityChangePassword, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - changePassword, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityChangePassword, options?: TransportRequestOptions): TransportRequestPromise> + change_password, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityChangePasswordRequest, callback: callbackFn): TransportRequestCallback + change_password, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityChangePasswordRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + changePassword, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityChangePasswordRequest, options?: TransportRequestOptions): TransportRequestPromise> changePassword, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - changePassword, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityChangePassword, callback: callbackFn): TransportRequestCallback - changePassword, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityChangePassword, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - clear_cached_privileges, TContext = Context>(params?: RequestParams.SecurityClearCachedPrivileges, options?: TransportRequestOptions): TransportRequestPromise> + changePassword, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityChangePasswordRequest, callback: callbackFn): TransportRequestCallback + changePassword, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityChangePasswordRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + clear_cached_privileges, TContext = Context>(params?: Req.SecurityClearCachedPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> clear_cached_privileges, TContext = Context>(callback: callbackFn): TransportRequestCallback - clear_cached_privileges, TContext = Context>(params: RequestParams.SecurityClearCachedPrivileges, callback: callbackFn): TransportRequestCallback - clear_cached_privileges, TContext = Context>(params: RequestParams.SecurityClearCachedPrivileges, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - clearCachedPrivileges, TContext = Context>(params?: RequestParams.SecurityClearCachedPrivileges, options?: TransportRequestOptions): TransportRequestPromise> + clear_cached_privileges, TContext = Context>(params: Req.SecurityClearCachedPrivilegesRequest, callback: callbackFn): TransportRequestCallback + clear_cached_privileges, TContext = Context>(params: Req.SecurityClearCachedPrivilegesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + clearCachedPrivileges, TContext = Context>(params?: Req.SecurityClearCachedPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> clearCachedPrivileges, TContext = Context>(callback: callbackFn): TransportRequestCallback - clearCachedPrivileges, TContext = Context>(params: RequestParams.SecurityClearCachedPrivileges, callback: callbackFn): TransportRequestCallback - clearCachedPrivileges, TContext = Context>(params: RequestParams.SecurityClearCachedPrivileges, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - clear_cached_realms, TContext = Context>(params?: RequestParams.SecurityClearCachedRealms, options?: TransportRequestOptions): TransportRequestPromise> + clearCachedPrivileges, TContext = Context>(params: Req.SecurityClearCachedPrivilegesRequest, callback: callbackFn): TransportRequestCallback + clearCachedPrivileges, TContext = Context>(params: Req.SecurityClearCachedPrivilegesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + clear_cached_realms, TContext = Context>(params?: Req.SecurityClearCachedRealmsRequest, options?: TransportRequestOptions): TransportRequestPromise> clear_cached_realms, TContext = Context>(callback: callbackFn): TransportRequestCallback - clear_cached_realms, TContext = Context>(params: RequestParams.SecurityClearCachedRealms, callback: callbackFn): TransportRequestCallback - clear_cached_realms, TContext = Context>(params: RequestParams.SecurityClearCachedRealms, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - clearCachedRealms, TContext = Context>(params?: RequestParams.SecurityClearCachedRealms, options?: TransportRequestOptions): TransportRequestPromise> + clear_cached_realms, TContext = Context>(params: Req.SecurityClearCachedRealmsRequest, callback: callbackFn): TransportRequestCallback + clear_cached_realms, TContext = Context>(params: Req.SecurityClearCachedRealmsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + clearCachedRealms, TContext = Context>(params?: Req.SecurityClearCachedRealmsRequest, options?: TransportRequestOptions): TransportRequestPromise> clearCachedRealms, TContext = Context>(callback: callbackFn): TransportRequestCallback - clearCachedRealms, TContext = Context>(params: RequestParams.SecurityClearCachedRealms, callback: callbackFn): TransportRequestCallback - clearCachedRealms, TContext = Context>(params: RequestParams.SecurityClearCachedRealms, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - clear_cached_roles, TContext = Context>(params?: RequestParams.SecurityClearCachedRoles, options?: TransportRequestOptions): TransportRequestPromise> + clearCachedRealms, TContext = Context>(params: Req.SecurityClearCachedRealmsRequest, callback: callbackFn): TransportRequestCallback + clearCachedRealms, TContext = Context>(params: Req.SecurityClearCachedRealmsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + clear_cached_roles, TContext = Context>(params?: Req.SecurityClearCachedRolesRequest, options?: TransportRequestOptions): TransportRequestPromise> clear_cached_roles, TContext = Context>(callback: callbackFn): TransportRequestCallback - clear_cached_roles, TContext = Context>(params: RequestParams.SecurityClearCachedRoles, callback: callbackFn): TransportRequestCallback - clear_cached_roles, TContext = Context>(params: RequestParams.SecurityClearCachedRoles, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - clearCachedRoles, TContext = Context>(params?: RequestParams.SecurityClearCachedRoles, options?: TransportRequestOptions): TransportRequestPromise> + clear_cached_roles, TContext = Context>(params: Req.SecurityClearCachedRolesRequest, callback: callbackFn): TransportRequestCallback + clear_cached_roles, TContext = Context>(params: Req.SecurityClearCachedRolesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + clearCachedRoles, TContext = Context>(params?: Req.SecurityClearCachedRolesRequest, options?: TransportRequestOptions): TransportRequestPromise> clearCachedRoles, TContext = Context>(callback: callbackFn): TransportRequestCallback - clearCachedRoles, TContext = Context>(params: RequestParams.SecurityClearCachedRoles, callback: callbackFn): TransportRequestCallback - clearCachedRoles, TContext = Context>(params: RequestParams.SecurityClearCachedRoles, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - create_api_key, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityCreateApiKey, options?: TransportRequestOptions): TransportRequestPromise> + clearCachedRoles, TContext = Context>(params: Req.SecurityClearCachedRolesRequest, callback: callbackFn): TransportRequestCallback + clearCachedRoles, TContext = Context>(params: Req.SecurityClearCachedRolesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + create_api_key, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityCreateApiKeyRequest, options?: TransportRequestOptions): TransportRequestPromise> create_api_key, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - create_api_key, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityCreateApiKey, callback: callbackFn): TransportRequestCallback - create_api_key, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityCreateApiKey, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - createApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityCreateApiKey, options?: TransportRequestOptions): TransportRequestPromise> + create_api_key, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityCreateApiKeyRequest, callback: callbackFn): TransportRequestCallback + create_api_key, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityCreateApiKeyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + createApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityCreateApiKeyRequest, options?: TransportRequestOptions): TransportRequestPromise> createApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - createApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityCreateApiKey, callback: callbackFn): TransportRequestCallback - createApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityCreateApiKey, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_privileges, TContext = Context>(params?: RequestParams.SecurityDeletePrivileges, options?: TransportRequestOptions): TransportRequestPromise> + createApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityCreateApiKeyRequest, callback: callbackFn): TransportRequestCallback + createApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityCreateApiKeyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_privileges, TContext = Context>(params?: Req.SecurityDeletePrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_privileges, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_privileges, TContext = Context>(params: RequestParams.SecurityDeletePrivileges, callback: callbackFn): TransportRequestCallback - delete_privileges, TContext = Context>(params: RequestParams.SecurityDeletePrivileges, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deletePrivileges, TContext = Context>(params?: RequestParams.SecurityDeletePrivileges, options?: TransportRequestOptions): TransportRequestPromise> + delete_privileges, TContext = Context>(params: Req.SecurityDeletePrivilegesRequest, callback: callbackFn): TransportRequestCallback + delete_privileges, TContext = Context>(params: Req.SecurityDeletePrivilegesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deletePrivileges, TContext = Context>(params?: Req.SecurityDeletePrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> deletePrivileges, TContext = Context>(callback: callbackFn): TransportRequestCallback - deletePrivileges, TContext = Context>(params: RequestParams.SecurityDeletePrivileges, callback: callbackFn): TransportRequestCallback - deletePrivileges, TContext = Context>(params: RequestParams.SecurityDeletePrivileges, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_role, TContext = Context>(params?: RequestParams.SecurityDeleteRole, options?: TransportRequestOptions): TransportRequestPromise> + deletePrivileges, TContext = Context>(params: Req.SecurityDeletePrivilegesRequest, callback: callbackFn): TransportRequestCallback + deletePrivileges, TContext = Context>(params: Req.SecurityDeletePrivilegesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_role, TContext = Context>(params?: Req.SecurityDeleteRoleRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_role, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_role, TContext = Context>(params: RequestParams.SecurityDeleteRole, callback: callbackFn): TransportRequestCallback - delete_role, TContext = Context>(params: RequestParams.SecurityDeleteRole, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteRole, TContext = Context>(params?: RequestParams.SecurityDeleteRole, options?: TransportRequestOptions): TransportRequestPromise> + delete_role, TContext = Context>(params: Req.SecurityDeleteRoleRequest, callback: callbackFn): TransportRequestCallback + delete_role, TContext = Context>(params: Req.SecurityDeleteRoleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteRole, TContext = Context>(params?: Req.SecurityDeleteRoleRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteRole, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteRole, TContext = Context>(params: RequestParams.SecurityDeleteRole, callback: callbackFn): TransportRequestCallback - deleteRole, TContext = Context>(params: RequestParams.SecurityDeleteRole, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_role_mapping, TContext = Context>(params?: RequestParams.SecurityDeleteRoleMapping, options?: TransportRequestOptions): TransportRequestPromise> + deleteRole, TContext = Context>(params: Req.SecurityDeleteRoleRequest, callback: callbackFn): TransportRequestCallback + deleteRole, TContext = Context>(params: Req.SecurityDeleteRoleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_role_mapping, TContext = Context>(params?: Req.SecurityDeleteRoleMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_role_mapping, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_role_mapping, TContext = Context>(params: RequestParams.SecurityDeleteRoleMapping, callback: callbackFn): TransportRequestCallback - delete_role_mapping, TContext = Context>(params: RequestParams.SecurityDeleteRoleMapping, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteRoleMapping, TContext = Context>(params?: RequestParams.SecurityDeleteRoleMapping, options?: TransportRequestOptions): TransportRequestPromise> + delete_role_mapping, TContext = Context>(params: Req.SecurityDeleteRoleMappingRequest, callback: callbackFn): TransportRequestCallback + delete_role_mapping, TContext = Context>(params: Req.SecurityDeleteRoleMappingRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteRoleMapping, TContext = Context>(params?: Req.SecurityDeleteRoleMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteRoleMapping, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteRoleMapping, TContext = Context>(params: RequestParams.SecurityDeleteRoleMapping, callback: callbackFn): TransportRequestCallback - deleteRoleMapping, TContext = Context>(params: RequestParams.SecurityDeleteRoleMapping, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_user, TContext = Context>(params?: RequestParams.SecurityDeleteUser, options?: TransportRequestOptions): TransportRequestPromise> + deleteRoleMapping, TContext = Context>(params: Req.SecurityDeleteRoleMappingRequest, callback: callbackFn): TransportRequestCallback + deleteRoleMapping, TContext = Context>(params: Req.SecurityDeleteRoleMappingRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_user, TContext = Context>(params?: Req.SecurityDeleteUserRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_user, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_user, TContext = Context>(params: RequestParams.SecurityDeleteUser, callback: callbackFn): TransportRequestCallback - delete_user, TContext = Context>(params: RequestParams.SecurityDeleteUser, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteUser, TContext = Context>(params?: RequestParams.SecurityDeleteUser, options?: TransportRequestOptions): TransportRequestPromise> + delete_user, TContext = Context>(params: Req.SecurityDeleteUserRequest, callback: callbackFn): TransportRequestCallback + delete_user, TContext = Context>(params: Req.SecurityDeleteUserRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteUser, TContext = Context>(params?: Req.SecurityDeleteUserRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteUser, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteUser, TContext = Context>(params: RequestParams.SecurityDeleteUser, callback: callbackFn): TransportRequestCallback - deleteUser, TContext = Context>(params: RequestParams.SecurityDeleteUser, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - disable_user, TContext = Context>(params?: RequestParams.SecurityDisableUser, options?: TransportRequestOptions): TransportRequestPromise> + deleteUser, TContext = Context>(params: Req.SecurityDeleteUserRequest, callback: callbackFn): TransportRequestCallback + deleteUser, TContext = Context>(params: Req.SecurityDeleteUserRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + disable_user, TContext = Context>(params?: Req.SecurityDisableUserRequest, options?: TransportRequestOptions): TransportRequestPromise> disable_user, TContext = Context>(callback: callbackFn): TransportRequestCallback - disable_user, TContext = Context>(params: RequestParams.SecurityDisableUser, callback: callbackFn): TransportRequestCallback - disable_user, TContext = Context>(params: RequestParams.SecurityDisableUser, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - disableUser, TContext = Context>(params?: RequestParams.SecurityDisableUser, options?: TransportRequestOptions): TransportRequestPromise> + disable_user, TContext = Context>(params: Req.SecurityDisableUserRequest, callback: callbackFn): TransportRequestCallback + disable_user, TContext = Context>(params: Req.SecurityDisableUserRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + disableUser, TContext = Context>(params?: Req.SecurityDisableUserRequest, options?: TransportRequestOptions): TransportRequestPromise> disableUser, TContext = Context>(callback: callbackFn): TransportRequestCallback - disableUser, TContext = Context>(params: RequestParams.SecurityDisableUser, callback: callbackFn): TransportRequestCallback - disableUser, TContext = Context>(params: RequestParams.SecurityDisableUser, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - enable_user, TContext = Context>(params?: RequestParams.SecurityEnableUser, options?: TransportRequestOptions): TransportRequestPromise> + disableUser, TContext = Context>(params: Req.SecurityDisableUserRequest, callback: callbackFn): TransportRequestCallback + disableUser, TContext = Context>(params: Req.SecurityDisableUserRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + enable_user, TContext = Context>(params?: Req.SecurityEnableUserRequest, options?: TransportRequestOptions): TransportRequestPromise> enable_user, TContext = Context>(callback: callbackFn): TransportRequestCallback - enable_user, TContext = Context>(params: RequestParams.SecurityEnableUser, callback: callbackFn): TransportRequestCallback - enable_user, TContext = Context>(params: RequestParams.SecurityEnableUser, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - enableUser, TContext = Context>(params?: RequestParams.SecurityEnableUser, options?: TransportRequestOptions): TransportRequestPromise> + enable_user, TContext = Context>(params: Req.SecurityEnableUserRequest, callback: callbackFn): TransportRequestCallback + enable_user, TContext = Context>(params: Req.SecurityEnableUserRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + enableUser, TContext = Context>(params?: Req.SecurityEnableUserRequest, options?: TransportRequestOptions): TransportRequestPromise> enableUser, TContext = Context>(callback: callbackFn): TransportRequestCallback - enableUser, TContext = Context>(params: RequestParams.SecurityEnableUser, callback: callbackFn): TransportRequestCallback - enableUser, TContext = Context>(params: RequestParams.SecurityEnableUser, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_api_key, TContext = Context>(params?: RequestParams.SecurityGetApiKey, options?: TransportRequestOptions): TransportRequestPromise> + enableUser, TContext = Context>(params: Req.SecurityEnableUserRequest, callback: callbackFn): TransportRequestCallback + enableUser, TContext = Context>(params: Req.SecurityEnableUserRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_api_key, TContext = Context>(params?: Req.SecurityGetApiKeyRequest, options?: TransportRequestOptions): TransportRequestPromise> get_api_key, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_api_key, TContext = Context>(params: RequestParams.SecurityGetApiKey, callback: callbackFn): TransportRequestCallback - get_api_key, TContext = Context>(params: RequestParams.SecurityGetApiKey, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getApiKey, TContext = Context>(params?: RequestParams.SecurityGetApiKey, options?: TransportRequestOptions): TransportRequestPromise> + get_api_key, TContext = Context>(params: Req.SecurityGetApiKeyRequest, callback: callbackFn): TransportRequestCallback + get_api_key, TContext = Context>(params: Req.SecurityGetApiKeyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getApiKey, TContext = Context>(params?: Req.SecurityGetApiKeyRequest, options?: TransportRequestOptions): TransportRequestPromise> getApiKey, TContext = Context>(callback: callbackFn): TransportRequestCallback - getApiKey, TContext = Context>(params: RequestParams.SecurityGetApiKey, callback: callbackFn): TransportRequestCallback - getApiKey, TContext = Context>(params: RequestParams.SecurityGetApiKey, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_builtin_privileges, TContext = Context>(params?: RequestParams.SecurityGetBuiltinPrivileges, options?: TransportRequestOptions): TransportRequestPromise> + getApiKey, TContext = Context>(params: Req.SecurityGetApiKeyRequest, callback: callbackFn): TransportRequestCallback + getApiKey, TContext = Context>(params: Req.SecurityGetApiKeyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_builtin_privileges, TContext = Context>(params?: Req.SecurityGetBuiltinPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> get_builtin_privileges, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_builtin_privileges, TContext = Context>(params: RequestParams.SecurityGetBuiltinPrivileges, callback: callbackFn): TransportRequestCallback - get_builtin_privileges, TContext = Context>(params: RequestParams.SecurityGetBuiltinPrivileges, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getBuiltinPrivileges, TContext = Context>(params?: RequestParams.SecurityGetBuiltinPrivileges, options?: TransportRequestOptions): TransportRequestPromise> + get_builtin_privileges, TContext = Context>(params: Req.SecurityGetBuiltinPrivilegesRequest, callback: callbackFn): TransportRequestCallback + get_builtin_privileges, TContext = Context>(params: Req.SecurityGetBuiltinPrivilegesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getBuiltinPrivileges, TContext = Context>(params?: Req.SecurityGetBuiltinPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> getBuiltinPrivileges, TContext = Context>(callback: callbackFn): TransportRequestCallback - getBuiltinPrivileges, TContext = Context>(params: RequestParams.SecurityGetBuiltinPrivileges, callback: callbackFn): TransportRequestCallback - getBuiltinPrivileges, TContext = Context>(params: RequestParams.SecurityGetBuiltinPrivileges, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_privileges, TContext = Context>(params?: RequestParams.SecurityGetPrivileges, options?: TransportRequestOptions): TransportRequestPromise> + getBuiltinPrivileges, TContext = Context>(params: Req.SecurityGetBuiltinPrivilegesRequest, callback: callbackFn): TransportRequestCallback + getBuiltinPrivileges, TContext = Context>(params: Req.SecurityGetBuiltinPrivilegesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_privileges, TContext = Context>(params?: Req.SecurityGetPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> get_privileges, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_privileges, TContext = Context>(params: RequestParams.SecurityGetPrivileges, callback: callbackFn): TransportRequestCallback - get_privileges, TContext = Context>(params: RequestParams.SecurityGetPrivileges, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getPrivileges, TContext = Context>(params?: RequestParams.SecurityGetPrivileges, options?: TransportRequestOptions): TransportRequestPromise> + get_privileges, TContext = Context>(params: Req.SecurityGetPrivilegesRequest, callback: callbackFn): TransportRequestCallback + get_privileges, TContext = Context>(params: Req.SecurityGetPrivilegesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getPrivileges, TContext = Context>(params?: Req.SecurityGetPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> getPrivileges, TContext = Context>(callback: callbackFn): TransportRequestCallback - getPrivileges, TContext = Context>(params: RequestParams.SecurityGetPrivileges, callback: callbackFn): TransportRequestCallback - getPrivileges, TContext = Context>(params: RequestParams.SecurityGetPrivileges, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_role, TContext = Context>(params?: RequestParams.SecurityGetRole, options?: TransportRequestOptions): TransportRequestPromise> + getPrivileges, TContext = Context>(params: Req.SecurityGetPrivilegesRequest, callback: callbackFn): TransportRequestCallback + getPrivileges, TContext = Context>(params: Req.SecurityGetPrivilegesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_role, TContext = Context>(params?: Req.SecurityGetRoleRequest, options?: TransportRequestOptions): TransportRequestPromise> get_role, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_role, TContext = Context>(params: RequestParams.SecurityGetRole, callback: callbackFn): TransportRequestCallback - get_role, TContext = Context>(params: RequestParams.SecurityGetRole, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getRole, TContext = Context>(params?: RequestParams.SecurityGetRole, options?: TransportRequestOptions): TransportRequestPromise> + get_role, TContext = Context>(params: Req.SecurityGetRoleRequest, callback: callbackFn): TransportRequestCallback + get_role, TContext = Context>(params: Req.SecurityGetRoleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getRole, TContext = Context>(params?: Req.SecurityGetRoleRequest, options?: TransportRequestOptions): TransportRequestPromise> getRole, TContext = Context>(callback: callbackFn): TransportRequestCallback - getRole, TContext = Context>(params: RequestParams.SecurityGetRole, callback: callbackFn): TransportRequestCallback - getRole, TContext = Context>(params: RequestParams.SecurityGetRole, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_role_mapping, TContext = Context>(params?: RequestParams.SecurityGetRoleMapping, options?: TransportRequestOptions): TransportRequestPromise> + getRole, TContext = Context>(params: Req.SecurityGetRoleRequest, callback: callbackFn): TransportRequestCallback + getRole, TContext = Context>(params: Req.SecurityGetRoleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_role_mapping, TContext = Context>(params?: Req.SecurityGetRoleMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> get_role_mapping, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_role_mapping, TContext = Context>(params: RequestParams.SecurityGetRoleMapping, callback: callbackFn): TransportRequestCallback - get_role_mapping, TContext = Context>(params: RequestParams.SecurityGetRoleMapping, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getRoleMapping, TContext = Context>(params?: RequestParams.SecurityGetRoleMapping, options?: TransportRequestOptions): TransportRequestPromise> + get_role_mapping, TContext = Context>(params: Req.SecurityGetRoleMappingRequest, callback: callbackFn): TransportRequestCallback + get_role_mapping, TContext = Context>(params: Req.SecurityGetRoleMappingRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getRoleMapping, TContext = Context>(params?: Req.SecurityGetRoleMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> getRoleMapping, TContext = Context>(callback: callbackFn): TransportRequestCallback - getRoleMapping, TContext = Context>(params: RequestParams.SecurityGetRoleMapping, callback: callbackFn): TransportRequestCallback - getRoleMapping, TContext = Context>(params: RequestParams.SecurityGetRoleMapping, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_token, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityGetToken, options?: TransportRequestOptions): TransportRequestPromise> + getRoleMapping, TContext = Context>(params: Req.SecurityGetRoleMappingRequest, callback: callbackFn): TransportRequestCallback + getRoleMapping, TContext = Context>(params: Req.SecurityGetRoleMappingRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_token, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityGetTokenRequest, options?: TransportRequestOptions): TransportRequestPromise> get_token, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_token, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityGetToken, callback: callbackFn): TransportRequestCallback - get_token, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityGetToken, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getToken, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityGetToken, options?: TransportRequestOptions): TransportRequestPromise> + get_token, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityGetTokenRequest, callback: callbackFn): TransportRequestCallback + get_token, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityGetTokenRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getToken, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityGetTokenRequest, options?: TransportRequestOptions): TransportRequestPromise> getToken, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - getToken, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityGetToken, callback: callbackFn): TransportRequestCallback - getToken, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityGetToken, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_user, TContext = Context>(params?: RequestParams.SecurityGetUser, options?: TransportRequestOptions): TransportRequestPromise> + getToken, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityGetTokenRequest, callback: callbackFn): TransportRequestCallback + getToken, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityGetTokenRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_user, TContext = Context>(params?: Req.SecurityGetUserRequest, options?: TransportRequestOptions): TransportRequestPromise> get_user, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_user, TContext = Context>(params: RequestParams.SecurityGetUser, callback: callbackFn): TransportRequestCallback - get_user, TContext = Context>(params: RequestParams.SecurityGetUser, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getUser, TContext = Context>(params?: RequestParams.SecurityGetUser, options?: TransportRequestOptions): TransportRequestPromise> + get_user, TContext = Context>(params: Req.SecurityGetUserRequest, callback: callbackFn): TransportRequestCallback + get_user, TContext = Context>(params: Req.SecurityGetUserRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getUser, TContext = Context>(params?: Req.SecurityGetUserRequest, options?: TransportRequestOptions): TransportRequestPromise> getUser, TContext = Context>(callback: callbackFn): TransportRequestCallback - getUser, TContext = Context>(params: RequestParams.SecurityGetUser, callback: callbackFn): TransportRequestCallback - getUser, TContext = Context>(params: RequestParams.SecurityGetUser, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_user_privileges, TContext = Context>(params?: RequestParams.SecurityGetUserPrivileges, options?: TransportRequestOptions): TransportRequestPromise> + getUser, TContext = Context>(params: Req.SecurityGetUserRequest, callback: callbackFn): TransportRequestCallback + getUser, TContext = Context>(params: Req.SecurityGetUserRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_user_privileges, TContext = Context>(params?: Req.SecurityGetUserPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> get_user_privileges, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_user_privileges, TContext = Context>(params: RequestParams.SecurityGetUserPrivileges, callback: callbackFn): TransportRequestCallback - get_user_privileges, TContext = Context>(params: RequestParams.SecurityGetUserPrivileges, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getUserPrivileges, TContext = Context>(params?: RequestParams.SecurityGetUserPrivileges, options?: TransportRequestOptions): TransportRequestPromise> + get_user_privileges, TContext = Context>(params: Req.SecurityGetUserPrivilegesRequest, callback: callbackFn): TransportRequestCallback + get_user_privileges, TContext = Context>(params: Req.SecurityGetUserPrivilegesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getUserPrivileges, TContext = Context>(params?: Req.SecurityGetUserPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> getUserPrivileges, TContext = Context>(callback: callbackFn): TransportRequestCallback - getUserPrivileges, TContext = Context>(params: RequestParams.SecurityGetUserPrivileges, callback: callbackFn): TransportRequestCallback - getUserPrivileges, TContext = Context>(params: RequestParams.SecurityGetUserPrivileges, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - has_privileges, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityHasPrivileges, options?: TransportRequestOptions): TransportRequestPromise> + getUserPrivileges, TContext = Context>(params: Req.SecurityGetUserPrivilegesRequest, callback: callbackFn): TransportRequestCallback + getUserPrivileges, TContext = Context>(params: Req.SecurityGetUserPrivilegesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + has_privileges, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityHasPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> has_privileges, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - has_privileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityHasPrivileges, callback: callbackFn): TransportRequestCallback - has_privileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityHasPrivileges, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - hasPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityHasPrivileges, options?: TransportRequestOptions): TransportRequestPromise> + has_privileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityHasPrivilegesRequest, callback: callbackFn): TransportRequestCallback + has_privileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityHasPrivilegesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + hasPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityHasPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> hasPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - hasPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityHasPrivileges, callback: callbackFn): TransportRequestCallback - hasPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityHasPrivileges, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - invalidate_api_key, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityInvalidateApiKey, options?: TransportRequestOptions): TransportRequestPromise> + hasPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityHasPrivilegesRequest, callback: callbackFn): TransportRequestCallback + hasPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityHasPrivilegesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + invalidate_api_key, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityInvalidateApiKeyRequest, options?: TransportRequestOptions): TransportRequestPromise> invalidate_api_key, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - invalidate_api_key, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityInvalidateApiKey, callback: callbackFn): TransportRequestCallback - invalidate_api_key, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityInvalidateApiKey, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - invalidateApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityInvalidateApiKey, options?: TransportRequestOptions): TransportRequestPromise> + invalidate_api_key, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityInvalidateApiKeyRequest, callback: callbackFn): TransportRequestCallback + invalidate_api_key, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityInvalidateApiKeyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + invalidateApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityInvalidateApiKeyRequest, options?: TransportRequestOptions): TransportRequestPromise> invalidateApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - invalidateApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityInvalidateApiKey, callback: callbackFn): TransportRequestCallback - invalidateApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityInvalidateApiKey, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - invalidate_token, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityInvalidateToken, options?: TransportRequestOptions): TransportRequestPromise> + invalidateApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityInvalidateApiKeyRequest, callback: callbackFn): TransportRequestCallback + invalidateApiKey, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityInvalidateApiKeyRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + invalidate_token, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityInvalidateTokenRequest, options?: TransportRequestOptions): TransportRequestPromise> invalidate_token, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - invalidate_token, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityInvalidateToken, callback: callbackFn): TransportRequestCallback - invalidate_token, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityInvalidateToken, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - invalidateToken, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityInvalidateToken, options?: TransportRequestOptions): TransportRequestPromise> + invalidate_token, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityInvalidateTokenRequest, callback: callbackFn): TransportRequestCallback + invalidate_token, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityInvalidateTokenRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + invalidateToken, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityInvalidateTokenRequest, options?: TransportRequestOptions): TransportRequestPromise> invalidateToken, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - invalidateToken, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityInvalidateToken, callback: callbackFn): TransportRequestCallback - invalidateToken, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityInvalidateToken, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_privileges, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityPutPrivileges, options?: TransportRequestOptions): TransportRequestPromise> + invalidateToken, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityInvalidateTokenRequest, callback: callbackFn): TransportRequestCallback + invalidateToken, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityInvalidateTokenRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_privileges, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityPutPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> put_privileges, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_privileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutPrivileges, callback: callbackFn): TransportRequestCallback - put_privileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutPrivileges, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityPutPrivileges, options?: TransportRequestOptions): TransportRequestPromise> + put_privileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutPrivilegesRequest, callback: callbackFn): TransportRequestCallback + put_privileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutPrivilegesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityPutPrivilegesRequest, options?: TransportRequestOptions): TransportRequestPromise> putPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutPrivileges, callback: callbackFn): TransportRequestCallback - putPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutPrivileges, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_role, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityPutRole, options?: TransportRequestOptions): TransportRequestPromise> + putPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutPrivilegesRequest, callback: callbackFn): TransportRequestCallback + putPrivileges, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutPrivilegesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_role, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityPutRoleRequest, options?: TransportRequestOptions): TransportRequestPromise> put_role, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_role, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutRole, callback: callbackFn): TransportRequestCallback - put_role, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutRole, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putRole, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityPutRole, options?: TransportRequestOptions): TransportRequestPromise> + put_role, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutRoleRequest, callback: callbackFn): TransportRequestCallback + put_role, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutRoleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putRole, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityPutRoleRequest, options?: TransportRequestOptions): TransportRequestPromise> putRole, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putRole, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutRole, callback: callbackFn): TransportRequestCallback - putRole, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutRole, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_role_mapping, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityPutRoleMapping, options?: TransportRequestOptions): TransportRequestPromise> + putRole, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutRoleRequest, callback: callbackFn): TransportRequestCallback + putRole, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutRoleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_role_mapping, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityPutRoleMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> put_role_mapping, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_role_mapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutRoleMapping, callback: callbackFn): TransportRequestCallback - put_role_mapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutRoleMapping, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putRoleMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityPutRoleMapping, options?: TransportRequestOptions): TransportRequestPromise> + put_role_mapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutRoleMappingRequest, callback: callbackFn): TransportRequestCallback + put_role_mapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutRoleMappingRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putRoleMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityPutRoleMappingRequest, options?: TransportRequestOptions): TransportRequestPromise> putRoleMapping, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putRoleMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutRoleMapping, callback: callbackFn): TransportRequestCallback - putRoleMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutRoleMapping, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_user, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityPutUser, options?: TransportRequestOptions): TransportRequestPromise> + putRoleMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutRoleMappingRequest, callback: callbackFn): TransportRequestCallback + putRoleMapping, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutRoleMappingRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_user, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityPutUserRequest, options?: TransportRequestOptions): TransportRequestPromise> put_user, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_user, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutUser, callback: callbackFn): TransportRequestCallback - put_user, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutUser, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putUser, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SecurityPutUser, options?: TransportRequestOptions): TransportRequestPromise> + put_user, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutUserRequest, callback: callbackFn): TransportRequestCallback + put_user, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutUserRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putUser, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SecurityPutUserRequest, options?: TransportRequestOptions): TransportRequestPromise> putUser, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putUser, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutUser, callback: callbackFn): TransportRequestCallback - putUser, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SecurityPutUser, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putUser, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutUserRequest, callback: callbackFn): TransportRequestCallback + putUser, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SecurityPutUserRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } slm: { - delete_lifecycle, TContext = Context>(params?: RequestParams.SlmDeleteLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + delete_lifecycle, TContext = Context>(params?: Req.SlmDeleteLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_lifecycle, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_lifecycle, TContext = Context>(params: RequestParams.SlmDeleteLifecycle, callback: callbackFn): TransportRequestCallback - delete_lifecycle, TContext = Context>(params: RequestParams.SlmDeleteLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteLifecycle, TContext = Context>(params?: RequestParams.SlmDeleteLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + delete_lifecycle, TContext = Context>(params: Req.SlmDeleteLifecycleRequest, callback: callbackFn): TransportRequestCallback + delete_lifecycle, TContext = Context>(params: Req.SlmDeleteLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteLifecycle, TContext = Context>(params?: Req.SlmDeleteLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteLifecycle, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteLifecycle, TContext = Context>(params: RequestParams.SlmDeleteLifecycle, callback: callbackFn): TransportRequestCallback - deleteLifecycle, TContext = Context>(params: RequestParams.SlmDeleteLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - execute_lifecycle, TContext = Context>(params?: RequestParams.SlmExecuteLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + deleteLifecycle, TContext = Context>(params: Req.SlmDeleteLifecycleRequest, callback: callbackFn): TransportRequestCallback + deleteLifecycle, TContext = Context>(params: Req.SlmDeleteLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + execute_lifecycle, TContext = Context>(params?: Req.SlmExecuteLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> execute_lifecycle, TContext = Context>(callback: callbackFn): TransportRequestCallback - execute_lifecycle, TContext = Context>(params: RequestParams.SlmExecuteLifecycle, callback: callbackFn): TransportRequestCallback - execute_lifecycle, TContext = Context>(params: RequestParams.SlmExecuteLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - executeLifecycle, TContext = Context>(params?: RequestParams.SlmExecuteLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + execute_lifecycle, TContext = Context>(params: Req.SlmExecuteLifecycleRequest, callback: callbackFn): TransportRequestCallback + execute_lifecycle, TContext = Context>(params: Req.SlmExecuteLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + executeLifecycle, TContext = Context>(params?: Req.SlmExecuteLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> executeLifecycle, TContext = Context>(callback: callbackFn): TransportRequestCallback - executeLifecycle, TContext = Context>(params: RequestParams.SlmExecuteLifecycle, callback: callbackFn): TransportRequestCallback - executeLifecycle, TContext = Context>(params: RequestParams.SlmExecuteLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - execute_retention, TContext = Context>(params?: RequestParams.SlmExecuteRetention, options?: TransportRequestOptions): TransportRequestPromise> + executeLifecycle, TContext = Context>(params: Req.SlmExecuteLifecycleRequest, callback: callbackFn): TransportRequestCallback + executeLifecycle, TContext = Context>(params: Req.SlmExecuteLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + execute_retention, TContext = Context>(params?: Req.SlmExecuteRetentionRequest, options?: TransportRequestOptions): TransportRequestPromise> execute_retention, TContext = Context>(callback: callbackFn): TransportRequestCallback - execute_retention, TContext = Context>(params: RequestParams.SlmExecuteRetention, callback: callbackFn): TransportRequestCallback - execute_retention, TContext = Context>(params: RequestParams.SlmExecuteRetention, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - executeRetention, TContext = Context>(params?: RequestParams.SlmExecuteRetention, options?: TransportRequestOptions): TransportRequestPromise> + execute_retention, TContext = Context>(params: Req.SlmExecuteRetentionRequest, callback: callbackFn): TransportRequestCallback + execute_retention, TContext = Context>(params: Req.SlmExecuteRetentionRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + executeRetention, TContext = Context>(params?: Req.SlmExecuteRetentionRequest, options?: TransportRequestOptions): TransportRequestPromise> executeRetention, TContext = Context>(callback: callbackFn): TransportRequestCallback - executeRetention, TContext = Context>(params: RequestParams.SlmExecuteRetention, callback: callbackFn): TransportRequestCallback - executeRetention, TContext = Context>(params: RequestParams.SlmExecuteRetention, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_lifecycle, TContext = Context>(params?: RequestParams.SlmGetLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + executeRetention, TContext = Context>(params: Req.SlmExecuteRetentionRequest, callback: callbackFn): TransportRequestCallback + executeRetention, TContext = Context>(params: Req.SlmExecuteRetentionRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_lifecycle, TContext = Context>(params?: Req.SlmGetLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> get_lifecycle, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_lifecycle, TContext = Context>(params: RequestParams.SlmGetLifecycle, callback: callbackFn): TransportRequestCallback - get_lifecycle, TContext = Context>(params: RequestParams.SlmGetLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getLifecycle, TContext = Context>(params?: RequestParams.SlmGetLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + get_lifecycle, TContext = Context>(params: Req.SlmGetLifecycleRequest, callback: callbackFn): TransportRequestCallback + get_lifecycle, TContext = Context>(params: Req.SlmGetLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getLifecycle, TContext = Context>(params?: Req.SlmGetLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> getLifecycle, TContext = Context>(callback: callbackFn): TransportRequestCallback - getLifecycle, TContext = Context>(params: RequestParams.SlmGetLifecycle, callback: callbackFn): TransportRequestCallback - getLifecycle, TContext = Context>(params: RequestParams.SlmGetLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_stats, TContext = Context>(params?: RequestParams.SlmGetStats, options?: TransportRequestOptions): TransportRequestPromise> + getLifecycle, TContext = Context>(params: Req.SlmGetLifecycleRequest, callback: callbackFn): TransportRequestCallback + getLifecycle, TContext = Context>(params: Req.SlmGetLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_stats, TContext = Context>(params?: Req.SlmGetStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_stats, TContext = Context>(params: RequestParams.SlmGetStats, callback: callbackFn): TransportRequestCallback - get_stats, TContext = Context>(params: RequestParams.SlmGetStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getStats, TContext = Context>(params?: RequestParams.SlmGetStats, options?: TransportRequestOptions): TransportRequestPromise> + get_stats, TContext = Context>(params: Req.SlmGetStatsRequest, callback: callbackFn): TransportRequestCallback + get_stats, TContext = Context>(params: Req.SlmGetStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getStats, TContext = Context>(params?: Req.SlmGetStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> getStats, TContext = Context>(callback: callbackFn): TransportRequestCallback - getStats, TContext = Context>(params: RequestParams.SlmGetStats, callback: callbackFn): TransportRequestCallback - getStats, TContext = Context>(params: RequestParams.SlmGetStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_status, TContext = Context>(params?: RequestParams.SlmGetStatus, options?: TransportRequestOptions): TransportRequestPromise> + getStats, TContext = Context>(params: Req.SlmGetStatsRequest, callback: callbackFn): TransportRequestCallback + getStats, TContext = Context>(params: Req.SlmGetStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_status, TContext = Context>(params?: Req.SlmGetStatusRequest, options?: TransportRequestOptions): TransportRequestPromise> get_status, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_status, TContext = Context>(params: RequestParams.SlmGetStatus, callback: callbackFn): TransportRequestCallback - get_status, TContext = Context>(params: RequestParams.SlmGetStatus, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getStatus, TContext = Context>(params?: RequestParams.SlmGetStatus, options?: TransportRequestOptions): TransportRequestPromise> + get_status, TContext = Context>(params: Req.SlmGetStatusRequest, callback: callbackFn): TransportRequestCallback + get_status, TContext = Context>(params: Req.SlmGetStatusRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getStatus, TContext = Context>(params?: Req.SlmGetStatusRequest, options?: TransportRequestOptions): TransportRequestPromise> getStatus, TContext = Context>(callback: callbackFn): TransportRequestCallback - getStatus, TContext = Context>(params: RequestParams.SlmGetStatus, callback: callbackFn): TransportRequestCallback - getStatus, TContext = Context>(params: RequestParams.SlmGetStatus, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_lifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SlmPutLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + getStatus, TContext = Context>(params: Req.SlmGetStatusRequest, callback: callbackFn): TransportRequestCallback + getStatus, TContext = Context>(params: Req.SlmGetStatusRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_lifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SlmPutLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> put_lifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_lifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SlmPutLifecycle, callback: callbackFn): TransportRequestCallback - put_lifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SlmPutLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SlmPutLifecycle, options?: TransportRequestOptions): TransportRequestPromise> + put_lifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SlmPutLifecycleRequest, callback: callbackFn): TransportRequestCallback + put_lifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SlmPutLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SlmPutLifecycleRequest, options?: TransportRequestOptions): TransportRequestPromise> putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SlmPutLifecycle, callback: callbackFn): TransportRequestCallback - putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SlmPutLifecycle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - start, TContext = Context>(params?: RequestParams.SlmStart, options?: TransportRequestOptions): TransportRequestPromise> + putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SlmPutLifecycleRequest, callback: callbackFn): TransportRequestCallback + putLifecycle, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SlmPutLifecycleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + start, TContext = Context>(params?: Req.SlmStartRequest, options?: TransportRequestOptions): TransportRequestPromise> start, TContext = Context>(callback: callbackFn): TransportRequestCallback - start, TContext = Context>(params: RequestParams.SlmStart, callback: callbackFn): TransportRequestCallback - start, TContext = Context>(params: RequestParams.SlmStart, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stop, TContext = Context>(params?: RequestParams.SlmStop, options?: TransportRequestOptions): TransportRequestPromise> + start, TContext = Context>(params: Req.SlmStartRequest, callback: callbackFn): TransportRequestCallback + start, TContext = Context>(params: Req.SlmStartRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stop, TContext = Context>(params?: Req.SlmStopRequest, options?: TransportRequestOptions): TransportRequestPromise> stop, TContext = Context>(callback: callbackFn): TransportRequestCallback - stop, TContext = Context>(params: RequestParams.SlmStop, callback: callbackFn): TransportRequestCallback - stop, TContext = Context>(params: RequestParams.SlmStop, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stop, TContext = Context>(params: Req.SlmStopRequest, callback: callbackFn): TransportRequestCallback + stop, TContext = Context>(params: Req.SlmStopRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } snapshot: { - cleanup_repository, TContext = Context>(params?: RequestParams.SnapshotCleanupRepository, options?: TransportRequestOptions): TransportRequestPromise> + cleanup_repository, TContext = Context>(params?: Req.SnapshotCleanupRepositoryRequest, options?: TransportRequestOptions): TransportRequestPromise> cleanup_repository, TContext = Context>(callback: callbackFn): TransportRequestCallback - cleanup_repository, TContext = Context>(params: RequestParams.SnapshotCleanupRepository, callback: callbackFn): TransportRequestCallback - cleanup_repository, TContext = Context>(params: RequestParams.SnapshotCleanupRepository, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - cleanupRepository, TContext = Context>(params?: RequestParams.SnapshotCleanupRepository, options?: TransportRequestOptions): TransportRequestPromise> + cleanup_repository, TContext = Context>(params: Req.SnapshotCleanupRepositoryRequest, callback: callbackFn): TransportRequestCallback + cleanup_repository, TContext = Context>(params: Req.SnapshotCleanupRepositoryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + cleanupRepository, TContext = Context>(params?: Req.SnapshotCleanupRepositoryRequest, options?: TransportRequestOptions): TransportRequestPromise> cleanupRepository, TContext = Context>(callback: callbackFn): TransportRequestCallback - cleanupRepository, TContext = Context>(params: RequestParams.SnapshotCleanupRepository, callback: callbackFn): TransportRequestCallback - cleanupRepository, TContext = Context>(params: RequestParams.SnapshotCleanupRepository, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - create, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SnapshotCreate, options?: TransportRequestOptions): TransportRequestPromise> + cleanupRepository, TContext = Context>(params: Req.SnapshotCleanupRepositoryRequest, callback: callbackFn): TransportRequestCallback + cleanupRepository, TContext = Context>(params: Req.SnapshotCleanupRepositoryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + create, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SnapshotCreateRequest, options?: TransportRequestOptions): TransportRequestPromise> create, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - create, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SnapshotCreate, callback: callbackFn): TransportRequestCallback - create, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SnapshotCreate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - create_repository, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SnapshotCreateRepository, options?: TransportRequestOptions): TransportRequestPromise> + create, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SnapshotCreateRequest, callback: callbackFn): TransportRequestCallback + create, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SnapshotCreateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + create_repository, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SnapshotCreateRepositoryRequest, options?: TransportRequestOptions): TransportRequestPromise> create_repository, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - create_repository, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SnapshotCreateRepository, callback: callbackFn): TransportRequestCallback - create_repository, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SnapshotCreateRepository, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - createRepository, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SnapshotCreateRepository, options?: TransportRequestOptions): TransportRequestPromise> + create_repository, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SnapshotCreateRepositoryRequest, callback: callbackFn): TransportRequestCallback + create_repository, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SnapshotCreateRepositoryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + createRepository, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SnapshotCreateRepositoryRequest, options?: TransportRequestOptions): TransportRequestPromise> createRepository, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - createRepository, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SnapshotCreateRepository, callback: callbackFn): TransportRequestCallback - createRepository, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SnapshotCreateRepository, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params?: RequestParams.SnapshotDelete, options?: TransportRequestOptions): TransportRequestPromise> + createRepository, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SnapshotCreateRepositoryRequest, callback: callbackFn): TransportRequestCallback + createRepository, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SnapshotCreateRepositoryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete, TContext = Context>(params?: Req.SnapshotDeleteRequest, options?: TransportRequestOptions): TransportRequestPromise> delete, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params: RequestParams.SnapshotDelete, callback: callbackFn): TransportRequestCallback - delete, TContext = Context>(params: RequestParams.SnapshotDelete, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_repository, TContext = Context>(params?: RequestParams.SnapshotDeleteRepository, options?: TransportRequestOptions): TransportRequestPromise> + delete, TContext = Context>(params: Req.SnapshotDeleteRequest, callback: callbackFn): TransportRequestCallback + delete, TContext = Context>(params: Req.SnapshotDeleteRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_repository, TContext = Context>(params?: Req.SnapshotDeleteRepositoryRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_repository, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_repository, TContext = Context>(params: RequestParams.SnapshotDeleteRepository, callback: callbackFn): TransportRequestCallback - delete_repository, TContext = Context>(params: RequestParams.SnapshotDeleteRepository, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteRepository, TContext = Context>(params?: RequestParams.SnapshotDeleteRepository, options?: TransportRequestOptions): TransportRequestPromise> + delete_repository, TContext = Context>(params: Req.SnapshotDeleteRepositoryRequest, callback: callbackFn): TransportRequestCallback + delete_repository, TContext = Context>(params: Req.SnapshotDeleteRepositoryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteRepository, TContext = Context>(params?: Req.SnapshotDeleteRepositoryRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteRepository, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteRepository, TContext = Context>(params: RequestParams.SnapshotDeleteRepository, callback: callbackFn): TransportRequestCallback - deleteRepository, TContext = Context>(params: RequestParams.SnapshotDeleteRepository, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params?: RequestParams.SnapshotGet, options?: TransportRequestOptions): TransportRequestPromise> + deleteRepository, TContext = Context>(params: Req.SnapshotDeleteRepositoryRequest, callback: callbackFn): TransportRequestCallback + deleteRepository, TContext = Context>(params: Req.SnapshotDeleteRepositoryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get, TContext = Context>(params?: Req.SnapshotGetRequest, options?: TransportRequestOptions): TransportRequestPromise> get, TContext = Context>(callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.SnapshotGet, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.SnapshotGet, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_repository, TContext = Context>(params?: RequestParams.SnapshotGetRepository, options?: TransportRequestOptions): TransportRequestPromise> + get, TContext = Context>(params: Req.SnapshotGetRequest, callback: callbackFn): TransportRequestCallback + get, TContext = Context>(params: Req.SnapshotGetRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_repository, TContext = Context>(params?: Req.SnapshotGetRepositoryRequest, options?: TransportRequestOptions): TransportRequestPromise> get_repository, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_repository, TContext = Context>(params: RequestParams.SnapshotGetRepository, callback: callbackFn): TransportRequestCallback - get_repository, TContext = Context>(params: RequestParams.SnapshotGetRepository, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getRepository, TContext = Context>(params?: RequestParams.SnapshotGetRepository, options?: TransportRequestOptions): TransportRequestPromise> + get_repository, TContext = Context>(params: Req.SnapshotGetRepositoryRequest, callback: callbackFn): TransportRequestCallback + get_repository, TContext = Context>(params: Req.SnapshotGetRepositoryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getRepository, TContext = Context>(params?: Req.SnapshotGetRepositoryRequest, options?: TransportRequestOptions): TransportRequestPromise> getRepository, TContext = Context>(callback: callbackFn): TransportRequestCallback - getRepository, TContext = Context>(params: RequestParams.SnapshotGetRepository, callback: callbackFn): TransportRequestCallback - getRepository, TContext = Context>(params: RequestParams.SnapshotGetRepository, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - restore, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SnapshotRestore, options?: TransportRequestOptions): TransportRequestPromise> + getRepository, TContext = Context>(params: Req.SnapshotGetRepositoryRequest, callback: callbackFn): TransportRequestCallback + getRepository, TContext = Context>(params: Req.SnapshotGetRepositoryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + restore, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SnapshotRestoreRequest, options?: TransportRequestOptions): TransportRequestPromise> restore, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - restore, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SnapshotRestore, callback: callbackFn): TransportRequestCallback - restore, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SnapshotRestore, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - status, TContext = Context>(params?: RequestParams.SnapshotStatus, options?: TransportRequestOptions): TransportRequestPromise> + restore, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SnapshotRestoreRequest, callback: callbackFn): TransportRequestCallback + restore, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SnapshotRestoreRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + status, TContext = Context>(params?: Req.SnapshotStatusRequest, options?: TransportRequestOptions): TransportRequestPromise> status, TContext = Context>(callback: callbackFn): TransportRequestCallback - status, TContext = Context>(params: RequestParams.SnapshotStatus, callback: callbackFn): TransportRequestCallback - status, TContext = Context>(params: RequestParams.SnapshotStatus, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - verify_repository, TContext = Context>(params?: RequestParams.SnapshotVerifyRepository, options?: TransportRequestOptions): TransportRequestPromise> + status, TContext = Context>(params: Req.SnapshotStatusRequest, callback: callbackFn): TransportRequestCallback + status, TContext = Context>(params: Req.SnapshotStatusRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + verify_repository, TContext = Context>(params?: Req.SnapshotVerifyRepositoryRequest, options?: TransportRequestOptions): TransportRequestPromise> verify_repository, TContext = Context>(callback: callbackFn): TransportRequestCallback - verify_repository, TContext = Context>(params: RequestParams.SnapshotVerifyRepository, callback: callbackFn): TransportRequestCallback - verify_repository, TContext = Context>(params: RequestParams.SnapshotVerifyRepository, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - verifyRepository, TContext = Context>(params?: RequestParams.SnapshotVerifyRepository, options?: TransportRequestOptions): TransportRequestPromise> + verify_repository, TContext = Context>(params: Req.SnapshotVerifyRepositoryRequest, callback: callbackFn): TransportRequestCallback + verify_repository, TContext = Context>(params: Req.SnapshotVerifyRepositoryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + verifyRepository, TContext = Context>(params?: Req.SnapshotVerifyRepositoryRequest, options?: TransportRequestOptions): TransportRequestPromise> verifyRepository, TContext = Context>(callback: callbackFn): TransportRequestCallback - verifyRepository, TContext = Context>(params: RequestParams.SnapshotVerifyRepository, callback: callbackFn): TransportRequestCallback - verifyRepository, TContext = Context>(params: RequestParams.SnapshotVerifyRepository, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + verifyRepository, TContext = Context>(params: Req.SnapshotVerifyRepositoryRequest, callback: callbackFn): TransportRequestCallback + verifyRepository, TContext = Context>(params: Req.SnapshotVerifyRepositoryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } sql: { - clear_cursor, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SqlClearCursor, options?: TransportRequestOptions): TransportRequestPromise> + clear_cursor, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SqlClearCursorRequest, options?: TransportRequestOptions): TransportRequestPromise> clear_cursor, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - clear_cursor, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SqlClearCursor, callback: callbackFn): TransportRequestCallback - clear_cursor, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SqlClearCursor, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - clearCursor, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SqlClearCursor, options?: TransportRequestOptions): TransportRequestPromise> + clear_cursor, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SqlClearCursorRequest, callback: callbackFn): TransportRequestCallback + clear_cursor, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SqlClearCursorRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + clearCursor, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SqlClearCursorRequest, options?: TransportRequestOptions): TransportRequestPromise> clearCursor, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - clearCursor, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SqlClearCursor, callback: callbackFn): TransportRequestCallback - clearCursor, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SqlClearCursor, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - query, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SqlQuery, options?: TransportRequestOptions): TransportRequestPromise> + clearCursor, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SqlClearCursorRequest, callback: callbackFn): TransportRequestCallback + clearCursor, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SqlClearCursorRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + query, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SqlQueryRequest, options?: TransportRequestOptions): TransportRequestPromise> query, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - query, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SqlQuery, callback: callbackFn): TransportRequestCallback - query, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SqlQuery, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - translate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.SqlTranslate, options?: TransportRequestOptions): TransportRequestPromise> + query, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SqlQueryRequest, callback: callbackFn): TransportRequestCallback + query, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SqlQueryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + translate, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.SqlTranslateRequest, options?: TransportRequestOptions): TransportRequestPromise> translate, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - translate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SqlTranslate, callback: callbackFn): TransportRequestCallback - translate, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.SqlTranslate, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + translate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SqlTranslateRequest, callback: callbackFn): TransportRequestCallback + translate, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.SqlTranslateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } ssl: { - certificates, TContext = Context>(params?: RequestParams.SslCertificates, options?: TransportRequestOptions): TransportRequestPromise> + certificates, TContext = Context>(params?: Req.SslCertificatesRequest, options?: TransportRequestOptions): TransportRequestPromise> certificates, TContext = Context>(callback: callbackFn): TransportRequestCallback - certificates, TContext = Context>(params: RequestParams.SslCertificates, callback: callbackFn): TransportRequestCallback - certificates, TContext = Context>(params: RequestParams.SslCertificates, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + certificates, TContext = Context>(params: Req.SslCertificatesRequest, callback: callbackFn): TransportRequestCallback + certificates, TContext = Context>(params: Req.SslCertificatesRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } tasks: { - cancel, TContext = Context>(params?: RequestParams.TasksCancel, options?: TransportRequestOptions): TransportRequestPromise> + cancel, TContext = Context>(params?: Req.TasksCancelRequest, options?: TransportRequestOptions): TransportRequestPromise> cancel, TContext = Context>(callback: callbackFn): TransportRequestCallback - cancel, TContext = Context>(params: RequestParams.TasksCancel, callback: callbackFn): TransportRequestCallback - cancel, TContext = Context>(params: RequestParams.TasksCancel, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params?: RequestParams.TasksGet, options?: TransportRequestOptions): TransportRequestPromise> + cancel, TContext = Context>(params: Req.TasksCancelRequest, callback: callbackFn): TransportRequestCallback + cancel, TContext = Context>(params: Req.TasksCancelRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get, TContext = Context>(params?: Req.TasksGetRequest, options?: TransportRequestOptions): TransportRequestPromise> get, TContext = Context>(callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.TasksGet, callback: callbackFn): TransportRequestCallback - get, TContext = Context>(params: RequestParams.TasksGet, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - list, TContext = Context>(params?: RequestParams.TasksList, options?: TransportRequestOptions): TransportRequestPromise> + get, TContext = Context>(params: Req.TasksGetRequest, callback: callbackFn): TransportRequestCallback + get, TContext = Context>(params: Req.TasksGetRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + list, TContext = Context>(params?: Req.TasksListRequest, options?: TransportRequestOptions): TransportRequestPromise> list, TContext = Context>(callback: callbackFn): TransportRequestCallback - list, TContext = Context>(params: RequestParams.TasksList, callback: callbackFn): TransportRequestCallback - list, TContext = Context>(params: RequestParams.TasksList, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + list, TContext = Context>(params: Req.TasksListRequest, callback: callbackFn): TransportRequestCallback + list, TContext = Context>(params: Req.TasksListRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } - termvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Termvectors, options?: TransportRequestOptions): TransportRequestPromise> + termvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.TermvectorsRequest, options?: TransportRequestOptions): TransportRequestPromise> termvectors, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - termvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Termvectors, callback: callbackFn): TransportRequestCallback - termvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Termvectors, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + termvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.TermvectorsRequest, callback: callbackFn): TransportRequestCallback + termvectors, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.TermvectorsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback transform: { - delete_transform, TContext = Context>(params?: RequestParams.TransformDeleteTransform, options?: TransportRequestOptions): TransportRequestPromise> + delete_transform, TContext = Context>(params?: Req.TransformDeleteTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_transform, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_transform, TContext = Context>(params: RequestParams.TransformDeleteTransform, callback: callbackFn): TransportRequestCallback - delete_transform, TContext = Context>(params: RequestParams.TransformDeleteTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteTransform, TContext = Context>(params?: RequestParams.TransformDeleteTransform, options?: TransportRequestOptions): TransportRequestPromise> + delete_transform, TContext = Context>(params: Req.TransformDeleteTransformRequest, callback: callbackFn): TransportRequestCallback + delete_transform, TContext = Context>(params: Req.TransformDeleteTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteTransform, TContext = Context>(params?: Req.TransformDeleteTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteTransform, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteTransform, TContext = Context>(params: RequestParams.TransformDeleteTransform, callback: callbackFn): TransportRequestCallback - deleteTransform, TContext = Context>(params: RequestParams.TransformDeleteTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_transform, TContext = Context>(params?: RequestParams.TransformGetTransform, options?: TransportRequestOptions): TransportRequestPromise> + deleteTransform, TContext = Context>(params: Req.TransformDeleteTransformRequest, callback: callbackFn): TransportRequestCallback + deleteTransform, TContext = Context>(params: Req.TransformDeleteTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_transform, TContext = Context>(params?: Req.TransformGetTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> get_transform, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_transform, TContext = Context>(params: RequestParams.TransformGetTransform, callback: callbackFn): TransportRequestCallback - get_transform, TContext = Context>(params: RequestParams.TransformGetTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getTransform, TContext = Context>(params?: RequestParams.TransformGetTransform, options?: TransportRequestOptions): TransportRequestPromise> + get_transform, TContext = Context>(params: Req.TransformGetTransformRequest, callback: callbackFn): TransportRequestCallback + get_transform, TContext = Context>(params: Req.TransformGetTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getTransform, TContext = Context>(params?: Req.TransformGetTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> getTransform, TContext = Context>(callback: callbackFn): TransportRequestCallback - getTransform, TContext = Context>(params: RequestParams.TransformGetTransform, callback: callbackFn): TransportRequestCallback - getTransform, TContext = Context>(params: RequestParams.TransformGetTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_transform_stats, TContext = Context>(params?: RequestParams.TransformGetTransformStats, options?: TransportRequestOptions): TransportRequestPromise> + getTransform, TContext = Context>(params: Req.TransformGetTransformRequest, callback: callbackFn): TransportRequestCallback + getTransform, TContext = Context>(params: Req.TransformGetTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_transform_stats, TContext = Context>(params?: Req.TransformGetTransformStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> get_transform_stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_transform_stats, TContext = Context>(params: RequestParams.TransformGetTransformStats, callback: callbackFn): TransportRequestCallback - get_transform_stats, TContext = Context>(params: RequestParams.TransformGetTransformStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getTransformStats, TContext = Context>(params?: RequestParams.TransformGetTransformStats, options?: TransportRequestOptions): TransportRequestPromise> + get_transform_stats, TContext = Context>(params: Req.TransformGetTransformStatsRequest, callback: callbackFn): TransportRequestCallback + get_transform_stats, TContext = Context>(params: Req.TransformGetTransformStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getTransformStats, TContext = Context>(params?: Req.TransformGetTransformStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> getTransformStats, TContext = Context>(callback: callbackFn): TransportRequestCallback - getTransformStats, TContext = Context>(params: RequestParams.TransformGetTransformStats, callback: callbackFn): TransportRequestCallback - getTransformStats, TContext = Context>(params: RequestParams.TransformGetTransformStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.TransformPreviewTransform, options?: TransportRequestOptions): TransportRequestPromise> + getTransformStats, TContext = Context>(params: Req.TransformGetTransformStatsRequest, callback: callbackFn): TransportRequestCallback + getTransformStats, TContext = Context>(params: Req.TransformGetTransformStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.TransformPreviewTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.TransformPreviewTransform, callback: callbackFn): TransportRequestCallback - preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.TransformPreviewTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.TransformPreviewTransform, options?: TransportRequestOptions): TransportRequestPromise> + preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.TransformPreviewTransformRequest, callback: callbackFn): TransportRequestCallback + preview_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.TransformPreviewTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.TransformPreviewTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.TransformPreviewTransform, callback: callbackFn): TransportRequestCallback - previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.TransformPreviewTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.TransformPutTransform, options?: TransportRequestOptions): TransportRequestPromise> + previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.TransformPreviewTransformRequest, callback: callbackFn): TransportRequestCallback + previewTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.TransformPreviewTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.TransformPutTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.TransformPutTransform, callback: callbackFn): TransportRequestCallback - put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.TransformPutTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.TransformPutTransform, options?: TransportRequestOptions): TransportRequestPromise> + put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.TransformPutTransformRequest, callback: callbackFn): TransportRequestCallback + put_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.TransformPutTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.TransformPutTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.TransformPutTransform, callback: callbackFn): TransportRequestCallback - putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.TransformPutTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - start_transform, TContext = Context>(params?: RequestParams.TransformStartTransform, options?: TransportRequestOptions): TransportRequestPromise> + putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.TransformPutTransformRequest, callback: callbackFn): TransportRequestCallback + putTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.TransformPutTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + start_transform, TContext = Context>(params?: Req.TransformStartTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> start_transform, TContext = Context>(callback: callbackFn): TransportRequestCallback - start_transform, TContext = Context>(params: RequestParams.TransformStartTransform, callback: callbackFn): TransportRequestCallback - start_transform, TContext = Context>(params: RequestParams.TransformStartTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - startTransform, TContext = Context>(params?: RequestParams.TransformStartTransform, options?: TransportRequestOptions): TransportRequestPromise> + start_transform, TContext = Context>(params: Req.TransformStartTransformRequest, callback: callbackFn): TransportRequestCallback + start_transform, TContext = Context>(params: Req.TransformStartTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + startTransform, TContext = Context>(params?: Req.TransformStartTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> startTransform, TContext = Context>(callback: callbackFn): TransportRequestCallback - startTransform, TContext = Context>(params: RequestParams.TransformStartTransform, callback: callbackFn): TransportRequestCallback - startTransform, TContext = Context>(params: RequestParams.TransformStartTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stop_transform, TContext = Context>(params?: RequestParams.TransformStopTransform, options?: TransportRequestOptions): TransportRequestPromise> + startTransform, TContext = Context>(params: Req.TransformStartTransformRequest, callback: callbackFn): TransportRequestCallback + startTransform, TContext = Context>(params: Req.TransformStartTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stop_transform, TContext = Context>(params?: Req.TransformStopTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> stop_transform, TContext = Context>(callback: callbackFn): TransportRequestCallback - stop_transform, TContext = Context>(params: RequestParams.TransformStopTransform, callback: callbackFn): TransportRequestCallback - stop_transform, TContext = Context>(params: RequestParams.TransformStopTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stopTransform, TContext = Context>(params?: RequestParams.TransformStopTransform, options?: TransportRequestOptions): TransportRequestPromise> + stop_transform, TContext = Context>(params: Req.TransformStopTransformRequest, callback: callbackFn): TransportRequestCallback + stop_transform, TContext = Context>(params: Req.TransformStopTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stopTransform, TContext = Context>(params?: Req.TransformStopTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> stopTransform, TContext = Context>(callback: callbackFn): TransportRequestCallback - stopTransform, TContext = Context>(params: RequestParams.TransformStopTransform, callback: callbackFn): TransportRequestCallback - stopTransform, TContext = Context>(params: RequestParams.TransformStopTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.TransformUpdateTransform, options?: TransportRequestOptions): TransportRequestPromise> + stopTransform, TContext = Context>(params: Req.TransformStopTransformRequest, callback: callbackFn): TransportRequestCallback + stopTransform, TContext = Context>(params: Req.TransformStopTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.TransformUpdateTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.TransformUpdateTransform, callback: callbackFn): TransportRequestCallback - update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.TransformUpdateTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.TransformUpdateTransform, options?: TransportRequestOptions): TransportRequestPromise> + update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.TransformUpdateTransformRequest, callback: callbackFn): TransportRequestCallback + update_transform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.TransformUpdateTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.TransformUpdateTransformRequest, options?: TransportRequestOptions): TransportRequestPromise> updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.TransformUpdateTransform, callback: callbackFn): TransportRequestCallback - updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.TransformUpdateTransform, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.TransformUpdateTransformRequest, callback: callbackFn): TransportRequestCallback + updateTransform, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.TransformUpdateTransformRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } - update, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.Update, options?: TransportRequestOptions): TransportRequestPromise> - update, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - update, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Update, callback: callbackFn): TransportRequestCallback - update, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.Update, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - update_by_query, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.UpdateByQuery, options?: TransportRequestOptions): TransportRequestPromise> + update, TContext = Context>(params?: Req.UpdateRequest, options?: TransportRequestOptions): TransportRequestPromise> + update, TContext = Context>(callback: callbackFn): TransportRequestCallback + update, TContext = Context>(params: Req.UpdateRequest, callback: callbackFn): TransportRequestCallback + update, TContext = Context>(params: Req.UpdateRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + update_by_query, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.UpdateByQueryRequest, options?: TransportRequestOptions): TransportRequestPromise> update_by_query, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - update_by_query, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.UpdateByQuery, callback: callbackFn): TransportRequestCallback - update_by_query, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.UpdateByQuery, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - updateByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.UpdateByQuery, options?: TransportRequestOptions): TransportRequestPromise> + update_by_query, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.UpdateByQueryRequest, callback: callbackFn): TransportRequestCallback + update_by_query, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.UpdateByQueryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + updateByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.UpdateByQueryRequest, options?: TransportRequestOptions): TransportRequestPromise> updateByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - updateByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.UpdateByQuery, callback: callbackFn): TransportRequestCallback - updateByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.UpdateByQuery, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - update_by_query_rethrottle, TContext = Context>(params?: RequestParams.UpdateByQueryRethrottle, options?: TransportRequestOptions): TransportRequestPromise> + updateByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.UpdateByQueryRequest, callback: callbackFn): TransportRequestCallback + updateByQuery, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.UpdateByQueryRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + update_by_query_rethrottle, TContext = Context>(params?: Req.UpdateByQueryRethrottleRequest, options?: TransportRequestOptions): TransportRequestPromise> update_by_query_rethrottle, TContext = Context>(callback: callbackFn): TransportRequestCallback - update_by_query_rethrottle, TContext = Context>(params: RequestParams.UpdateByQueryRethrottle, callback: callbackFn): TransportRequestCallback - update_by_query_rethrottle, TContext = Context>(params: RequestParams.UpdateByQueryRethrottle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - updateByQueryRethrottle, TContext = Context>(params?: RequestParams.UpdateByQueryRethrottle, options?: TransportRequestOptions): TransportRequestPromise> + update_by_query_rethrottle, TContext = Context>(params: Req.UpdateByQueryRethrottleRequest, callback: callbackFn): TransportRequestCallback + update_by_query_rethrottle, TContext = Context>(params: Req.UpdateByQueryRethrottleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + updateByQueryRethrottle, TContext = Context>(params?: Req.UpdateByQueryRethrottleRequest, options?: TransportRequestOptions): TransportRequestPromise> updateByQueryRethrottle, TContext = Context>(callback: callbackFn): TransportRequestCallback - updateByQueryRethrottle, TContext = Context>(params: RequestParams.UpdateByQueryRethrottle, callback: callbackFn): TransportRequestCallback - updateByQueryRethrottle, TContext = Context>(params: RequestParams.UpdateByQueryRethrottle, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + updateByQueryRethrottle, TContext = Context>(params: Req.UpdateByQueryRethrottleRequest, callback: callbackFn): TransportRequestCallback + updateByQueryRethrottle, TContext = Context>(params: Req.UpdateByQueryRethrottleRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback watcher: { - ack_watch, TContext = Context>(params?: RequestParams.WatcherAckWatch, options?: TransportRequestOptions): TransportRequestPromise> + ack_watch, TContext = Context>(params?: Req.WatcherAckWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> ack_watch, TContext = Context>(callback: callbackFn): TransportRequestCallback - ack_watch, TContext = Context>(params: RequestParams.WatcherAckWatch, callback: callbackFn): TransportRequestCallback - ack_watch, TContext = Context>(params: RequestParams.WatcherAckWatch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - ackWatch, TContext = Context>(params?: RequestParams.WatcherAckWatch, options?: TransportRequestOptions): TransportRequestPromise> + ack_watch, TContext = Context>(params: Req.WatcherAckWatchRequest, callback: callbackFn): TransportRequestCallback + ack_watch, TContext = Context>(params: Req.WatcherAckWatchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + ackWatch, TContext = Context>(params?: Req.WatcherAckWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> ackWatch, TContext = Context>(callback: callbackFn): TransportRequestCallback - ackWatch, TContext = Context>(params: RequestParams.WatcherAckWatch, callback: callbackFn): TransportRequestCallback - ackWatch, TContext = Context>(params: RequestParams.WatcherAckWatch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - activate_watch, TContext = Context>(params?: RequestParams.WatcherActivateWatch, options?: TransportRequestOptions): TransportRequestPromise> + ackWatch, TContext = Context>(params: Req.WatcherAckWatchRequest, callback: callbackFn): TransportRequestCallback + ackWatch, TContext = Context>(params: Req.WatcherAckWatchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + activate_watch, TContext = Context>(params?: Req.WatcherActivateWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> activate_watch, TContext = Context>(callback: callbackFn): TransportRequestCallback - activate_watch, TContext = Context>(params: RequestParams.WatcherActivateWatch, callback: callbackFn): TransportRequestCallback - activate_watch, TContext = Context>(params: RequestParams.WatcherActivateWatch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - activateWatch, TContext = Context>(params?: RequestParams.WatcherActivateWatch, options?: TransportRequestOptions): TransportRequestPromise> + activate_watch, TContext = Context>(params: Req.WatcherActivateWatchRequest, callback: callbackFn): TransportRequestCallback + activate_watch, TContext = Context>(params: Req.WatcherActivateWatchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + activateWatch, TContext = Context>(params?: Req.WatcherActivateWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> activateWatch, TContext = Context>(callback: callbackFn): TransportRequestCallback - activateWatch, TContext = Context>(params: RequestParams.WatcherActivateWatch, callback: callbackFn): TransportRequestCallback - activateWatch, TContext = Context>(params: RequestParams.WatcherActivateWatch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deactivate_watch, TContext = Context>(params?: RequestParams.WatcherDeactivateWatch, options?: TransportRequestOptions): TransportRequestPromise> + activateWatch, TContext = Context>(params: Req.WatcherActivateWatchRequest, callback: callbackFn): TransportRequestCallback + activateWatch, TContext = Context>(params: Req.WatcherActivateWatchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deactivate_watch, TContext = Context>(params?: Req.WatcherDeactivateWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> deactivate_watch, TContext = Context>(callback: callbackFn): TransportRequestCallback - deactivate_watch, TContext = Context>(params: RequestParams.WatcherDeactivateWatch, callback: callbackFn): TransportRequestCallback - deactivate_watch, TContext = Context>(params: RequestParams.WatcherDeactivateWatch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deactivateWatch, TContext = Context>(params?: RequestParams.WatcherDeactivateWatch, options?: TransportRequestOptions): TransportRequestPromise> + deactivate_watch, TContext = Context>(params: Req.WatcherDeactivateWatchRequest, callback: callbackFn): TransportRequestCallback + deactivate_watch, TContext = Context>(params: Req.WatcherDeactivateWatchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deactivateWatch, TContext = Context>(params?: Req.WatcherDeactivateWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> deactivateWatch, TContext = Context>(callback: callbackFn): TransportRequestCallback - deactivateWatch, TContext = Context>(params: RequestParams.WatcherDeactivateWatch, callback: callbackFn): TransportRequestCallback - deactivateWatch, TContext = Context>(params: RequestParams.WatcherDeactivateWatch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - delete_watch, TContext = Context>(params?: RequestParams.WatcherDeleteWatch, options?: TransportRequestOptions): TransportRequestPromise> + deactivateWatch, TContext = Context>(params: Req.WatcherDeactivateWatchRequest, callback: callbackFn): TransportRequestCallback + deactivateWatch, TContext = Context>(params: Req.WatcherDeactivateWatchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + delete_watch, TContext = Context>(params?: Req.WatcherDeleteWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> delete_watch, TContext = Context>(callback: callbackFn): TransportRequestCallback - delete_watch, TContext = Context>(params: RequestParams.WatcherDeleteWatch, callback: callbackFn): TransportRequestCallback - delete_watch, TContext = Context>(params: RequestParams.WatcherDeleteWatch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - deleteWatch, TContext = Context>(params?: RequestParams.WatcherDeleteWatch, options?: TransportRequestOptions): TransportRequestPromise> + delete_watch, TContext = Context>(params: Req.WatcherDeleteWatchRequest, callback: callbackFn): TransportRequestCallback + delete_watch, TContext = Context>(params: Req.WatcherDeleteWatchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + deleteWatch, TContext = Context>(params?: Req.WatcherDeleteWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> deleteWatch, TContext = Context>(callback: callbackFn): TransportRequestCallback - deleteWatch, TContext = Context>(params: RequestParams.WatcherDeleteWatch, callback: callbackFn): TransportRequestCallback - deleteWatch, TContext = Context>(params: RequestParams.WatcherDeleteWatch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - execute_watch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.WatcherExecuteWatch, options?: TransportRequestOptions): TransportRequestPromise> + deleteWatch, TContext = Context>(params: Req.WatcherDeleteWatchRequest, callback: callbackFn): TransportRequestCallback + deleteWatch, TContext = Context>(params: Req.WatcherDeleteWatchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + execute_watch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.WatcherExecuteWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> execute_watch, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - execute_watch, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.WatcherExecuteWatch, callback: callbackFn): TransportRequestCallback - execute_watch, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.WatcherExecuteWatch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - executeWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.WatcherExecuteWatch, options?: TransportRequestOptions): TransportRequestPromise> + execute_watch, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.WatcherExecuteWatchRequest, callback: callbackFn): TransportRequestCallback + execute_watch, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.WatcherExecuteWatchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + executeWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.WatcherExecuteWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> executeWatch, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - executeWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.WatcherExecuteWatch, callback: callbackFn): TransportRequestCallback - executeWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.WatcherExecuteWatch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - get_watch, TContext = Context>(params?: RequestParams.WatcherGetWatch, options?: TransportRequestOptions): TransportRequestPromise> + executeWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.WatcherExecuteWatchRequest, callback: callbackFn): TransportRequestCallback + executeWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.WatcherExecuteWatchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + get_watch, TContext = Context>(params?: Req.WatcherGetWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> get_watch, TContext = Context>(callback: callbackFn): TransportRequestCallback - get_watch, TContext = Context>(params: RequestParams.WatcherGetWatch, callback: callbackFn): TransportRequestCallback - get_watch, TContext = Context>(params: RequestParams.WatcherGetWatch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - getWatch, TContext = Context>(params?: RequestParams.WatcherGetWatch, options?: TransportRequestOptions): TransportRequestPromise> + get_watch, TContext = Context>(params: Req.WatcherGetWatchRequest, callback: callbackFn): TransportRequestCallback + get_watch, TContext = Context>(params: Req.WatcherGetWatchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + getWatch, TContext = Context>(params?: Req.WatcherGetWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> getWatch, TContext = Context>(callback: callbackFn): TransportRequestCallback - getWatch, TContext = Context>(params: RequestParams.WatcherGetWatch, callback: callbackFn): TransportRequestCallback - getWatch, TContext = Context>(params: RequestParams.WatcherGetWatch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - put_watch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.WatcherPutWatch, options?: TransportRequestOptions): TransportRequestPromise> + getWatch, TContext = Context>(params: Req.WatcherGetWatchRequest, callback: callbackFn): TransportRequestCallback + getWatch, TContext = Context>(params: Req.WatcherGetWatchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + put_watch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.WatcherPutWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> put_watch, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - put_watch, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.WatcherPutWatch, callback: callbackFn): TransportRequestCallback - put_watch, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.WatcherPutWatch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - putWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: RequestParams.WatcherPutWatch, options?: TransportRequestOptions): TransportRequestPromise> + put_watch, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.WatcherPutWatchRequest, callback: callbackFn): TransportRequestCallback + put_watch, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.WatcherPutWatchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + putWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params?: Req.WatcherPutWatchRequest, options?: TransportRequestOptions): TransportRequestPromise> putWatch, TRequestBody extends RequestBody = Record, TContext = Context>(callback: callbackFn): TransportRequestCallback - putWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.WatcherPutWatch, callback: callbackFn): TransportRequestCallback - putWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params: RequestParams.WatcherPutWatch, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - start, TContext = Context>(params?: RequestParams.WatcherStart, options?: TransportRequestOptions): TransportRequestPromise> + putWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.WatcherPutWatchRequest, callback: callbackFn): TransportRequestCallback + putWatch, TRequestBody extends RequestBody = Record, TContext = Context>(params: Req.WatcherPutWatchRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + start, TContext = Context>(params?: Req.WatcherStartRequest, options?: TransportRequestOptions): TransportRequestPromise> start, TContext = Context>(callback: callbackFn): TransportRequestCallback - start, TContext = Context>(params: RequestParams.WatcherStart, callback: callbackFn): TransportRequestCallback - start, TContext = Context>(params: RequestParams.WatcherStart, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params?: RequestParams.WatcherStats, options?: TransportRequestOptions): TransportRequestPromise> + start, TContext = Context>(params: Req.WatcherStartRequest, callback: callbackFn): TransportRequestCallback + start, TContext = Context>(params: Req.WatcherStartRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params?: Req.WatcherStatsRequest, options?: TransportRequestOptions): TransportRequestPromise> stats, TContext = Context>(callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.WatcherStats, callback: callbackFn): TransportRequestCallback - stats, TContext = Context>(params: RequestParams.WatcherStats, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - stop, TContext = Context>(params?: RequestParams.WatcherStop, options?: TransportRequestOptions): TransportRequestPromise> + stats, TContext = Context>(params: Req.WatcherStatsRequest, callback: callbackFn): TransportRequestCallback + stats, TContext = Context>(params: Req.WatcherStatsRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stop, TContext = Context>(params?: Req.WatcherStopRequest, options?: TransportRequestOptions): TransportRequestPromise> stop, TContext = Context>(callback: callbackFn): TransportRequestCallback - stop, TContext = Context>(params: RequestParams.WatcherStop, callback: callbackFn): TransportRequestCallback - stop, TContext = Context>(params: RequestParams.WatcherStop, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + stop, TContext = Context>(params: Req.WatcherStopRequest, callback: callbackFn): TransportRequestCallback + stop, TContext = Context>(params: Req.WatcherStopRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } xpack: { - info, TContext = Context>(params?: RequestParams.XpackInfo, options?: TransportRequestOptions): TransportRequestPromise> + info, TContext = Context>(params?: Req.XpackInfoRequest, options?: TransportRequestOptions): TransportRequestPromise> info, TContext = Context>(callback: callbackFn): TransportRequestCallback - info, TContext = Context>(params: RequestParams.XpackInfo, callback: callbackFn): TransportRequestCallback - info, TContext = Context>(params: RequestParams.XpackInfo, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback - usage, TContext = Context>(params?: RequestParams.XpackUsage, options?: TransportRequestOptions): TransportRequestPromise> + info, TContext = Context>(params: Req.XpackInfoRequest, callback: callbackFn): TransportRequestCallback + info, TContext = Context>(params: Req.XpackInfoRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + usage, TContext = Context>(params?: Req.XpackUsageRequest, options?: TransportRequestOptions): TransportRequestPromise> usage, TContext = Context>(callback: callbackFn): TransportRequestCallback - usage, TContext = Context>(params: RequestParams.XpackUsage, callback: callbackFn): TransportRequestCallback - usage, TContext = Context>(params: RequestParams.XpackUsage, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback + usage, TContext = Context>(params: Req.XpackUsageRequest, callback: callbackFn): TransportRequestCallback + usage, TContext = Context>(params: Req.XpackUsageRequest, options: TransportRequestOptions, callback: callbackFn): TransportRequestCallback } /* /GENERATED */ } @@ -2643,6 +2644,8 @@ declare const events: { RESURRECT: string; }; +export * from './api/RequestTypes' +export * from './api/ResponseTypes' export { Client, Transport, @@ -2657,7 +2660,6 @@ export { ApiResponse, RequestEvent, ResurrectEvent, - RequestParams, ClientOptions, NodeOptions, ClientExtendsCallbackOptions diff --git a/lib/Helpers.d.ts b/lib/Helpers.d.ts index 70af79c60..c6786900a 100644 --- a/lib/Helpers.d.ts +++ b/lib/Helpers.d.ts @@ -4,12 +4,12 @@ import { Readable as ReadableStream } from 'stream' import { TransportRequestOptions, ApiError, ApiResponse, RequestBody, Context } from './Transport' -import { Search, Msearch, Bulk } from '../api/requestParams' +import { SearchRequest, BulkRequest, MsearchRequest } from '../api/RequestTypes' export default class Helpers { - search>(params: Search, options?: TransportRequestOptions): Promise - scrollSearch, TRequestBody extends RequestBody = Record, TContext = Context>(params: Search, options?: TransportRequestOptions): AsyncIterable> - scrollDocuments>(params: Search, options?: TransportRequestOptions): AsyncIterable + search>(params: SearchRequest, options?: TransportRequestOptions): Promise + scrollSearch, TRequestBody extends RequestBody = Record, TContext = Context>(params: SearchRequest, options?: TransportRequestOptions): AsyncIterable> + scrollDocuments>(params: SearchRequest, options?: TransportRequestOptions): AsyncIterable msearch(options?: MsearchHelperOptions): MsearchHelper bulk(options: BulkHelperOptions): BulkHelper } @@ -65,7 +65,7 @@ type UpdateAction = [UpdateActionOperation, Record] type Action = IndexAction | CreateAction | UpdateAction | DeleteAction type Omit = Pick> -export interface BulkHelperOptions extends Omit { +export interface BulkHelperOptions extends Omit { datasource: TDocument[] | Buffer | ReadableStream | AsyncIterator onDocument: (doc: TDocument) => Action flushBytes?: number @@ -91,7 +91,7 @@ export interface OnDropDocument { retried: boolean } -export interface MsearchHelperOptions extends Omit { +export interface MsearchHelperOptions extends Omit { operations?: number flushInterval?: number concurrency?: number @@ -102,6 +102,6 @@ export interface MsearchHelperOptions extends Omit { declare type callbackFn = (err: ApiError, result: ApiResponse) => void; export interface MsearchHelper extends Promise { stop(error?: Error): void - search, TRequestBody extends RequestBody = Record, TContext = Context>(header: Omit, body: TRequestBody): Promise> - search, TRequestBody extends RequestBody = Record, TContext = Context>(header: Omit, body: TRequestBody, callback: callbackFn): void + search, TRequestBody extends RequestBody = Record, TContext = Context>(header: Omit, body: TRequestBody): Promise> + search, TRequestBody extends RequestBody = Record, TContext = Context>(header: Omit, body: TRequestBody, callback: callbackFn): void } diff --git a/scripts/generate.js b/scripts/generate.js index e1c011303..03c82a5f6 100644 --- a/scripts/generate.js +++ b/scripts/generate.js @@ -35,7 +35,7 @@ function start (opts) { const typeDefFile = join(__dirname, '..', 'index.d.ts') const kibanaTypeDefFile = join(packageFolder, 'kibana.d.ts') const docOutputFile = join(__dirname, '..', 'docs', 'reference.asciidoc') - const requestParamsOutputFile = join(packageFolder, 'requestParams.d.ts') + const requestParamsOutputFile = join(packageFolder, 'RequestTypes.d.ts') const allSpec = [] log.text = 'Cleaning API folder...' diff --git a/scripts/utils/generateMain.js b/scripts/utils/generateMain.js index f3223688a..1d8c0f33e 100644 --- a/scripts/utils/generateMain.js +++ b/scripts/utils/generateMain.js @@ -12,6 +12,17 @@ const dedent = require('dedent') const deepmerge = require('deepmerge') const { ndjsonApi } = require('./generateApis') +const supportedResponses = [ + 'Search', + 'MSearch', + 'Create', + 'Index', + 'Delete', + 'Update', + 'Get', + 'Bulk' +] + const ndjsonApiKey = ndjsonApi .map(api => { return api @@ -220,48 +231,49 @@ function buildMethodDefinition (opts, api, name, hasBody) { const Name = toPascalCase(name) const bodyType = ndjsonApiKey.includes(Name) ? 'RequestNDBody' : 'RequestBody' const defaultBodyType = ndjsonApiKey.includes(Name) ? 'Record[]' : 'Record' + const responseType = supportedResponses.includes(Name) ? `Res.${Name}Response` : 'Record' if (opts.kibana) { if (hasBody) { return [ - { key: `${camelify(api)}, TRequestBody extends ${bodyType} = ${defaultBodyType}, TContext = Context>(params?: RequestParams.${Name}, options?: TransportRequestOptions)`, val: `TransportRequestPromise>` } + { key: `${camelify(api)}, TRequestBody extends ${bodyType} = ${defaultBodyType}, TContext = Context>(params?: Req.${Name}Request, options?: TransportRequestOptions)`, val: `TransportRequestPromise>` } ] } else { return [ - { key: `${camelify(api)}, TContext = Context>(params?: RequestParams.${Name}, options?: TransportRequestOptions)`, val: `TransportRequestPromise>` } + { key: `${camelify(api)}, TContext = Context>(params?: Req.${Name}Request, options?: TransportRequestOptions)`, val: `TransportRequestPromise>` } ] } } if (hasBody) { let methods = [ - { key: `${api}, TRequestBody extends ${bodyType} = ${defaultBodyType}, TContext = Context>(params?: RequestParams.${Name}, options?: TransportRequestOptions)`, val: `TransportRequestPromise>` }, - { key: `${api}, TRequestBody extends ${bodyType} = ${defaultBodyType}, TContext = Context>(callback: callbackFn)`, val: `TransportRequestCallback` }, - { key: `${api}, TRequestBody extends ${bodyType} = ${defaultBodyType}, TContext = Context>(params: RequestParams.${Name}, callback: callbackFn)`, val: `TransportRequestCallback` }, - { key: `${api}, TRequestBody extends ${bodyType} = ${defaultBodyType}, TContext = Context>(params: RequestParams.${Name}, options: TransportRequestOptions, callback: callbackFn)`, val: `TransportRequestCallback` } + { key: `${api}(params?: Req.${Name}Request, options?: TransportRequestOptions)`, val: `TransportRequestPromise>` }, + { key: `${api}(callback: callbackFn)`, val: `TransportRequestCallback` }, + { key: `${api}(params: Req.${Name}Request, callback: callbackFn)`, val: `TransportRequestCallback` }, + { key: `${api}(params: Req.${Name}Request, options: TransportRequestOptions, callback: callbackFn)`, val: `TransportRequestCallback` } ] if (isSnakeCased(api)) { methods = methods.concat([ - { key: `${camelify(api)}, TRequestBody extends ${bodyType} = ${defaultBodyType}, TContext = Context>(params?: RequestParams.${Name}, options?: TransportRequestOptions)`, val: `TransportRequestPromise>` }, - { key: `${camelify(api)}, TRequestBody extends ${bodyType} = ${defaultBodyType}, TContext = Context>(callback: callbackFn)`, val: `TransportRequestCallback` }, - { key: `${camelify(api)}, TRequestBody extends ${bodyType} = ${defaultBodyType}, TContext = Context>(params: RequestParams.${Name}, callback: callbackFn)`, val: `TransportRequestCallback` }, - { key: `${camelify(api)}, TRequestBody extends ${bodyType} = ${defaultBodyType}, TContext = Context>(params: RequestParams.${Name}, options: TransportRequestOptions, callback: callbackFn)`, val: `TransportRequestCallback` } + { key: `${camelify(api)}(params?: Req.${Name}Request, options?: TransportRequestOptions)`, val: `TransportRequestPromise>` }, + { key: `${camelify(api)}(callback: callbackFn)`, val: `TransportRequestCallback` }, + { key: `${camelify(api)}(params: Req.${Name}Request, callback: callbackFn)`, val: `TransportRequestCallback` }, + { key: `${camelify(api)}(params: Req.${Name}Request, options: TransportRequestOptions, callback: callbackFn)`, val: `TransportRequestCallback` } ]) } return methods } else { let methods = [ - { key: `${api}, TContext = Context>(params?: RequestParams.${Name}, options?: TransportRequestOptions)`, val: `TransportRequestPromise>` }, - { key: `${api}, TContext = Context>(callback: callbackFn)`, val: `TransportRequestCallback` }, - { key: `${api}, TContext = Context>(params: RequestParams.${Name}, callback: callbackFn)`, val: `TransportRequestCallback` }, - { key: `${api}, TContext = Context>(params: RequestParams.${Name}, options: TransportRequestOptions, callback: callbackFn)`, val: `TransportRequestCallback` } + { key: `${api}(params?: Req.${Name}Request, options?: TransportRequestOptions)`, val: `TransportRequestPromise>` }, + { key: `${api}(callback: callbackFn)`, val: `TransportRequestCallback` }, + { key: `${api}(params: Req.${Name}Request, callback: callbackFn)`, val: `TransportRequestCallback` }, + { key: `${api}(params: Req.${Name}Request, options: TransportRequestOptions, callback: callbackFn)`, val: `TransportRequestCallback` } ] if (isSnakeCased(api)) { methods = methods.concat([ - { key: `${camelify(api)}, TContext = Context>(params?: RequestParams.${Name}, options?: TransportRequestOptions)`, val: `TransportRequestPromise>` }, - { key: `${camelify(api)}, TContext = Context>(callback: callbackFn)`, val: `TransportRequestCallback` }, - { key: `${camelify(api)}, TContext = Context>(params: RequestParams.${Name}, callback: callbackFn)`, val: `TransportRequestCallback` }, - { key: `${camelify(api)}, TContext = Context>(params: RequestParams.${Name}, options: TransportRequestOptions, callback: callbackFn)`, val: `TransportRequestCallback` } + { key: `${camelify(api)}(params?: Req.${Name}Request, options?: TransportRequestOptions)`, val: `TransportRequestPromise>` }, + { key: `${camelify(api)}(callback: callbackFn)`, val: `TransportRequestCallback` }, + { key: `${camelify(api)}(params: Req.${Name}Request, callback: callbackFn)`, val: `TransportRequestCallback` }, + { key: `${camelify(api)}(params: Req.${Name}Request, options: TransportRequestOptions, callback: callbackFn)`, val: `TransportRequestCallback` } ]) } return methods diff --git a/scripts/utils/generateRequestTypes.js b/scripts/utils/generateRequestTypes.js index 4e4f389b2..58ac19f6b 100644 --- a/scripts/utils/generateRequestTypes.js +++ b/scripts/utils/generateRequestTypes.js @@ -17,6 +17,7 @@ const ndjsonApiKey = ndjsonApi .map(toPascalCase) function generate (version, api) { + var exportNewLineCount = 0 const release = semver.valid(version) ? semver.major(version) : version var types = `// Licensed to Elasticsearch B.V under one or more agreements. // Elasticsearch B.V licenses this file to you under the Apache 2.0 License. @@ -24,7 +25,7 @@ function generate (version, api) { import { RequestBody, RequestNDBody } from '../lib/Transport' -export interface Generic { +interface GenericRequest { method?: string; filter_path?: string | string[]; pretty?: boolean; @@ -35,6 +36,11 @@ export interface Generic { ` api.forEach(generateRequestType) + types += '\nexport {\n' + api.forEach(generateExport) + // removes last comma + types = types.slice(0, -2) + '\n' + types += '}' return types function generateRequestType (spec) { @@ -96,7 +102,7 @@ export interface Generic { const bodyGeneric = ndjsonApiKey.includes(toPascalCase(name)) ? 'RequestNDBody' : 'RequestBody' const code = ` -export interface ${toPascalCase(name)}${body ? `` : ''} extends Generic { +interface ${toPascalCase(name)}Request${body ? `` : ''} extends GenericRequest { ${partsArr.map(genLine).join('\n ')} ${paramsArr.map(genLine).join('\n ')} ${body ? `body${body.required ? '' : '?'}: T;` : ''} @@ -152,6 +158,18 @@ export interface ${toPascalCase(name)}${body ? `` : ''} exte return type } } + + function generateExport (spec) { + const api = Object.keys(spec)[0] + const name = api + .replace(/\.([a-z])/g, k => k[1].toUpperCase()) + .replace(/_([a-z])/g, k => k[1].toUpperCase()) + types += exportNewLineCount === 0 ? ' ' : '' + types += toPascalCase(name) + 'Request,' + types += exportNewLineCount < 3 ? ' ' : '\n' + exportNewLineCount += 1 + if (exportNewLineCount > 3) exportNewLineCount = 0 + } } function intersect (first, ...rest) { diff --git a/test/types/api-response-body.test-d.ts b/test/types/api-response-body.test-d.ts index 6a20beb27..7181b5bcc 100644 --- a/test/types/api-response-body.test-d.ts +++ b/test/types/api-response-body.test-d.ts @@ -5,7 +5,7 @@ import { expectType, expectError } from 'tsd' import { Readable as ReadableStream } from 'stream'; import { TransportRequestCallback, Context } from '../../lib/Transport' -import { Client, ApiError } from '../../' +import { Client, ApiError, SearchResponse } from '../../' const client = new Client({ node: 'http://localhost:9200' @@ -17,45 +17,6 @@ interface SearchBody { } } -interface ShardsResponse { - total: number; - successful: number; - failed: number; - skipped: number; -} - -interface Explanation { - value: number; - description: string; - details: Explanation[]; -} - -interface SearchResponse { - took: number; - timed_out: boolean; - _scroll_id?: string; - _shards: ShardsResponse; - hits: { - total: number; - max_score: number; - hits: Array<{ - _index: string; - _type: string; - _id: string; - _score: number; - _source: T; - _version?: number; - _explanation?: Explanation; - fields?: any; - highlight?: any; - inner_hits?: any; - matched_queries?: string[]; - sort?: string[]; - }>; - }; - aggregations?: any; -} - interface Source { foo: string } @@ -79,7 +40,7 @@ expectError( } }) - expectType>(response.body) + expectType(response.body) expectType(response.meta.context) } @@ -135,7 +96,7 @@ expectError( body: 'hello world' }) - expectType>(response.body) + expectType(response.body) expectType(response.meta.context) } @@ -146,7 +107,7 @@ expectError( body: Buffer.from('hello world') }) - expectType>(response.body) + expectType(response.body) expectType(response.meta.context) } @@ -157,7 +118,7 @@ expectError( body: new ReadableStream() }) - expectType>(response.body) + expectType(response.body) expectType(response.meta.context) } @@ -172,7 +133,7 @@ expectError( } }, (err, response) => { expectType(err) - expectType>(response.body) + expectType(response.body) expectType(response.meta.context) }) expectType(result) @@ -236,7 +197,7 @@ expectError( body: 'hello world' }, (err, response) => { expectType(err) - expectType>(response.body) + expectType(response.body) expectType(response.meta.context) }) expectType(result) @@ -249,7 +210,7 @@ expectError( body: Buffer.from('hello world') }, (err, response) => { expectType(err) - expectType>(response.body) + expectType(response.body) expectType(response.meta.context) }) expectType(result) @@ -262,7 +223,7 @@ expectError( body: new ReadableStream() }, (err, response) => { expectType(err) - expectType>(response.body) + expectType(response.body) expectType(response.meta.context) }) expectType(result)