@@ -60,6 +60,9 @@ internal static class ApiUrlLookup
60
60
internal static ApiUrls EqlGet = new ApiUrls ( new [ ] { "_eql/search/{id}" } ) ;
61
61
internal static ApiUrls EqlGetStatus = new ApiUrls ( new [ ] { "_eql/search/status/{id}" } ) ;
62
62
internal static ApiUrls EqlSearch = new ApiUrls ( new [ ] { "{index}/_eql/search" } ) ;
63
+ internal static ApiUrls EsqlAsyncQuery = new ApiUrls ( new [ ] { "_query/async" } ) ;
64
+ internal static ApiUrls EsqlAsyncQueryDelete = new ApiUrls ( new [ ] { "_query/async/{id}" } ) ;
65
+ internal static ApiUrls EsqlAsyncQueryGet = new ApiUrls ( new [ ] { "_query/async/{id}" } ) ;
63
66
internal static ApiUrls EsqlQuery = new ApiUrls ( new [ ] { "_query" } ) ;
64
67
internal static ApiUrls FeaturesGetFeatures = new ApiUrls ( new [ ] { "_features" } ) ;
65
68
internal static ApiUrls FeaturesResetFeatures = new ApiUrls ( new [ ] { "_features/_reset" } ) ;
@@ -100,6 +103,7 @@ internal static class ApiUrlLookup
100
103
internal static ApiUrls IndexManagementGet = new ApiUrls ( new [ ] { "{index}" } ) ;
101
104
internal static ApiUrls IndexManagementGetAlias = new ApiUrls ( new [ ] { "_alias" , "_alias/{name}" , "{index}/_alias/{name}" , "{index}/_alias" } ) ;
102
105
internal static ApiUrls IndexManagementGetDataLifecycle = new ApiUrls ( new [ ] { "_data_stream/{name}/_lifecycle" } ) ;
106
+ internal static ApiUrls IndexManagementGetDataLifecycleStats = new ApiUrls ( new [ ] { "_lifecycle/stats" } ) ;
103
107
internal static ApiUrls IndexManagementGetDataStream = new ApiUrls ( new [ ] { "_data_stream" , "_data_stream/{name}" } ) ;
104
108
internal static ApiUrls IndexManagementGetFieldMapping = new ApiUrls ( new [ ] { "_mapping/field/{fields}" , "{index}/_mapping/field/{fields}" } ) ;
105
109
internal static ApiUrls IndexManagementGetIndexTemplate = new ApiUrls ( new [ ] { "_index_template" , "_index_template/{name}" } ) ;
@@ -135,6 +139,8 @@ internal static class ApiUrlLookup
135
139
internal static ApiUrls InferenceGet = new ApiUrls ( new [ ] { "_inference" , "_inference/{inference_id}" , "_inference/{task_type}/{inference_id}" } ) ;
136
140
internal static ApiUrls InferenceInference = new ApiUrls ( new [ ] { "_inference/{inference_id}" , "_inference/{task_type}/{inference_id}" } ) ;
137
141
internal static ApiUrls InferencePut = new ApiUrls ( new [ ] { "_inference/{inference_id}" , "_inference/{task_type}/{inference_id}" } ) ;
142
+ internal static ApiUrls InferenceStreamInference = new ApiUrls ( new [ ] { "_inference/{inference_id}/_stream" , "_inference/{task_type}/{inference_id}/_stream" } ) ;
143
+ internal static ApiUrls InferenceUpdate = new ApiUrls ( new [ ] { "_inference/{inference_id}/_update" , "_inference/{task_type}/{inference_id}/_update" } ) ;
138
144
internal static ApiUrls IngestDeleteGeoipDatabase = new ApiUrls ( new [ ] { "_ingest/geoip/database/{id}" } ) ;
139
145
internal static ApiUrls IngestDeleteIpLocationDatabase = new ApiUrls ( new [ ] { "_ingest/ip_location/database/{id}" } ) ;
140
146
internal static ApiUrls IngestDeletePipeline = new ApiUrls ( new [ ] { "_ingest/pipeline/{id}" } ) ;
@@ -300,13 +306,16 @@ internal static class ApiUrlLookup
300
306
internal static ApiUrls SearchApplicationGet = new ApiUrls ( new [ ] { "_application/search_application/{name}" } ) ;
301
307
internal static ApiUrls SearchApplicationGetBehavioralAnalytics = new ApiUrls ( new [ ] { "_application/analytics" , "_application/analytics/{name}" } ) ;
302
308
internal static ApiUrls SearchApplicationList = new ApiUrls ( new [ ] { "_application/search_application" } ) ;
309
+ internal static ApiUrls SearchApplicationPostBehavioralAnalyticsEvent = new ApiUrls ( new [ ] { "_application/analytics/{collection_name}/event/{event_type}" } ) ;
303
310
internal static ApiUrls SearchApplicationPut = new ApiUrls ( new [ ] { "_application/search_application/{name}" } ) ;
304
311
internal static ApiUrls SearchApplicationPutBehavioralAnalytics = new ApiUrls ( new [ ] { "_application/analytics/{name}" } ) ;
312
+ internal static ApiUrls SearchApplicationRenderQuery = new ApiUrls ( new [ ] { "_application/search_application/{name}/_render_query" } ) ;
305
313
internal static ApiUrls SearchApplicationSearch = new ApiUrls ( new [ ] { "_application/search_application/{name}/_search" } ) ;
306
314
internal static ApiUrls SecurityActivateUserProfile = new ApiUrls ( new [ ] { "_security/profile/_activate" } ) ;
307
315
internal static ApiUrls SecurityAuthenticate = new ApiUrls ( new [ ] { "_security/_authenticate" } ) ;
308
316
internal static ApiUrls SecurityBulkDeleteRole = new ApiUrls ( new [ ] { "_security/role" } ) ;
309
317
internal static ApiUrls SecurityBulkPutRole = new ApiUrls ( new [ ] { "_security/role" } ) ;
318
+ internal static ApiUrls SecurityBulkUpdateApiKeys = new ApiUrls ( new [ ] { "_security/api_key/_bulk_update" } ) ;
310
319
internal static ApiUrls SecurityChangePassword = new ApiUrls ( new [ ] { "_security/user/{username}/_password" , "_security/user/_password" } ) ;
311
320
internal static ApiUrls SecurityClearApiKeyCache = new ApiUrls ( new [ ] { "_security/api_key/{ids}/_clear_cache" } ) ;
312
321
internal static ApiUrls SecurityClearCachedPrivileges = new ApiUrls ( new [ ] { "_security/privilege/{application}/_clear_cache" } ) ;
@@ -316,6 +325,7 @@ internal static class ApiUrlLookup
316
325
internal static ApiUrls SecurityCreateApiKey = new ApiUrls ( new [ ] { "_security/api_key" } ) ;
317
326
internal static ApiUrls SecurityCreateCrossClusterApiKey = new ApiUrls ( new [ ] { "_security/cross_cluster/api_key" } ) ;
318
327
internal static ApiUrls SecurityCreateServiceToken = new ApiUrls ( new [ ] { "_security/service/{namespace}/{service}/credential/token/{name}" , "_security/service/{namespace}/{service}/credential/token" } ) ;
328
+ internal static ApiUrls SecurityDelegatePki = new ApiUrls ( new [ ] { "_security/delegate_pki" } ) ;
319
329
internal static ApiUrls SecurityDeletePrivileges = new ApiUrls ( new [ ] { "_security/privilege/{application}/{name}" } ) ;
320
330
internal static ApiUrls SecurityDeleteRole = new ApiUrls ( new [ ] { "_security/role/{name}" } ) ;
321
331
internal static ApiUrls SecurityDeleteRoleMapping = new ApiUrls ( new [ ] { "_security/role_mapping/{name}" } ) ;
@@ -334,6 +344,7 @@ internal static class ApiUrlLookup
334
344
internal static ApiUrls SecurityGetRoleMapping = new ApiUrls ( new [ ] { "_security/role_mapping/{name}" , "_security/role_mapping" } ) ;
335
345
internal static ApiUrls SecurityGetServiceAccounts = new ApiUrls ( new [ ] { "_security/service/{namespace}/{service}" , "_security/service/{namespace}" , "_security/service" } ) ;
336
346
internal static ApiUrls SecurityGetServiceCredentials = new ApiUrls ( new [ ] { "_security/service/{namespace}/{service}/credential" } ) ;
347
+ internal static ApiUrls SecurityGetSettings = new ApiUrls ( new [ ] { "_security/settings" } ) ;
337
348
internal static ApiUrls SecurityGetToken = new ApiUrls ( new [ ] { "_security/oauth2/token" } ) ;
338
349
internal static ApiUrls SecurityGetUser = new ApiUrls ( new [ ] { "_security/user/{username}" , "_security/user" } ) ;
339
350
internal static ApiUrls SecurityGetUserPrivileges = new ApiUrls ( new [ ] { "_security/user/_privileges" } ) ;
@@ -343,6 +354,9 @@ internal static class ApiUrlLookup
343
354
internal static ApiUrls SecurityHasPrivilegesUserProfile = new ApiUrls ( new [ ] { "_security/profile/_has_privileges" } ) ;
344
355
internal static ApiUrls SecurityInvalidateApiKey = new ApiUrls ( new [ ] { "_security/api_key" } ) ;
345
356
internal static ApiUrls SecurityInvalidateToken = new ApiUrls ( new [ ] { "_security/oauth2/token" } ) ;
357
+ internal static ApiUrls SecurityOidcAuthenticate = new ApiUrls ( new [ ] { "_security/oidc/authenticate" } ) ;
358
+ internal static ApiUrls SecurityOidcLogout = new ApiUrls ( new [ ] { "_security/oidc/logout" } ) ;
359
+ internal static ApiUrls SecurityOidcPrepareAuthentication = new ApiUrls ( new [ ] { "_security/oidc/prepare" } ) ;
346
360
internal static ApiUrls SecurityPutPrivileges = new ApiUrls ( new [ ] { "_security/privilege" } ) ;
347
361
internal static ApiUrls SecurityPutRole = new ApiUrls ( new [ ] { "_security/role/{name}" } ) ;
348
362
internal static ApiUrls SecurityPutRoleMapping = new ApiUrls ( new [ ] { "_security/role_mapping/{name}" } ) ;
@@ -359,7 +373,9 @@ internal static class ApiUrlLookup
359
373
internal static ApiUrls SecuritySuggestUserProfiles = new ApiUrls ( new [ ] { "_security/profile/_suggest" } ) ;
360
374
internal static ApiUrls SecurityUpdateApiKey = new ApiUrls ( new [ ] { "_security/api_key/{id}" } ) ;
361
375
internal static ApiUrls SecurityUpdateCrossClusterApiKey = new ApiUrls ( new [ ] { "_security/cross_cluster/api_key/{id}" } ) ;
376
+ internal static ApiUrls SecurityUpdateSettings = new ApiUrls ( new [ ] { "_security/settings" } ) ;
362
377
internal static ApiUrls SecurityUpdateUserProfileData = new ApiUrls ( new [ ] { "_security/profile/{uid}/_data" } ) ;
378
+ internal static ApiUrls SimulateIngest = new ApiUrls ( new [ ] { "_ingest/_simulate" , "_ingest/{index}/_simulate" } ) ;
363
379
internal static ApiUrls SnapshotCleanupRepository = new ApiUrls ( new [ ] { "_snapshot/{repository}/_cleanup" } ) ;
364
380
internal static ApiUrls SnapshotClone = new ApiUrls ( new [ ] { "_snapshot/{repository}/{snapshot}/_clone/{target_snapshot}" } ) ;
365
381
internal static ApiUrls SnapshotCreate = new ApiUrls ( new [ ] { "_snapshot/{repository}/{snapshot}" } ) ;
@@ -377,6 +393,7 @@ internal static class ApiUrlLookup
377
393
internal static ApiUrls SnapshotLifecycleManagementPutLifecycle = new ApiUrls ( new [ ] { "_slm/policy/{policy_id}" } ) ;
378
394
internal static ApiUrls SnapshotLifecycleManagementStart = new ApiUrls ( new [ ] { "_slm/start" } ) ;
379
395
internal static ApiUrls SnapshotLifecycleManagementStop = new ApiUrls ( new [ ] { "_slm/stop" } ) ;
396
+ internal static ApiUrls SnapshotRepositoryAnalyze = new ApiUrls ( new [ ] { "_snapshot/{repository}/_analyze" } ) ;
380
397
internal static ApiUrls SnapshotRepositoryVerifyIntegrity = new ApiUrls ( new [ ] { "_snapshot/{repository}/_verify_integrity" } ) ;
381
398
internal static ApiUrls SnapshotRestore = new ApiUrls ( new [ ] { "_snapshot/{repository}/{snapshot}/_restore" } ) ;
382
399
internal static ApiUrls SnapshotStatus = new ApiUrls ( new [ ] { "_snapshot/_status" , "_snapshot/{repository}/_status" , "_snapshot/{repository}/{snapshot}/_status" } ) ;
0 commit comments