[Rename] refactor o.e.action.admin.indices (#209)
This commit refactors o.e.action.admin.indices package to o.opensearch.action.admin.indices. References through out the codebase have been updated to reflect the new package location. Signed-off-by: Nicholas Knize <nknize@amazon.com>
This commit is contained in:
parent
0e25c23e5f
commit
0c81a5cf65
|
@ -20,26 +20,26 @@
|
|||
package org.elasticsearch.client;
|
||||
|
||||
import org.elasticsearch.action.ActionListener;
|
||||
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequest;
|
||||
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesRequest;
|
||||
import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheRequest;
|
||||
import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheResponse;
|
||||
import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest;
|
||||
import org.elasticsearch.action.admin.indices.flush.FlushRequest;
|
||||
import org.elasticsearch.action.admin.indices.flush.FlushResponse;
|
||||
import org.elasticsearch.action.admin.indices.flush.SyncedFlushRequest;
|
||||
import org.elasticsearch.action.admin.indices.forcemerge.ForceMergeRequest;
|
||||
import org.elasticsearch.action.admin.indices.forcemerge.ForceMergeResponse;
|
||||
import org.elasticsearch.action.admin.indices.open.OpenIndexRequest;
|
||||
import org.elasticsearch.action.admin.indices.open.OpenIndexResponse;
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshResponse;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsRequest;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
||||
import org.elasticsearch.action.admin.indices.template.delete.DeleteIndexTemplateRequest;
|
||||
import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryRequest;
|
||||
import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryResponse;
|
||||
import org.opensearch.action.admin.indices.alias.IndicesAliasesRequest;
|
||||
import org.opensearch.action.admin.indices.alias.get.GetAliasesRequest;
|
||||
import org.opensearch.action.admin.indices.cache.clear.ClearIndicesCacheRequest;
|
||||
import org.opensearch.action.admin.indices.cache.clear.ClearIndicesCacheResponse;
|
||||
import org.opensearch.action.admin.indices.delete.DeleteIndexRequest;
|
||||
import org.opensearch.action.admin.indices.flush.FlushRequest;
|
||||
import org.opensearch.action.admin.indices.flush.FlushResponse;
|
||||
import org.opensearch.action.admin.indices.flush.SyncedFlushRequest;
|
||||
import org.opensearch.action.admin.indices.forcemerge.ForceMergeRequest;
|
||||
import org.opensearch.action.admin.indices.forcemerge.ForceMergeResponse;
|
||||
import org.opensearch.action.admin.indices.open.OpenIndexRequest;
|
||||
import org.opensearch.action.admin.indices.open.OpenIndexResponse;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshResponse;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsRequest;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.opensearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
||||
import org.opensearch.action.admin.indices.template.delete.DeleteIndexTemplateRequest;
|
||||
import org.opensearch.action.admin.indices.validate.query.ValidateQueryRequest;
|
||||
import org.opensearch.action.admin.indices.validate.query.ValidateQueryResponse;
|
||||
import org.elasticsearch.action.support.master.AcknowledgedResponse;
|
||||
import org.elasticsearch.client.indices.AnalyzeRequest;
|
||||
import org.elasticsearch.client.indices.AnalyzeResponse;
|
||||
|
@ -305,12 +305,12 @@ public final class IndicesClient {
|
|||
* request object.
|
||||
*/
|
||||
@Deprecated
|
||||
public org.elasticsearch.action.admin.indices.create.CreateIndexResponse create(
|
||||
org.elasticsearch.action.admin.indices.create.CreateIndexRequest createIndexRequest,
|
||||
public org.opensearch.action.admin.indices.create.CreateIndexResponse create(
|
||||
org.opensearch.action.admin.indices.create.CreateIndexRequest createIndexRequest,
|
||||
RequestOptions options) throws IOException {
|
||||
return restHighLevelClient.performRequestAndParseEntity(createIndexRequest,
|
||||
IndicesRequestConverters::createIndex, options,
|
||||
org.elasticsearch.action.admin.indices.create.CreateIndexResponse::fromXContent, emptySet());
|
||||
org.opensearch.action.admin.indices.create.CreateIndexResponse::fromXContent, emptySet());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -327,12 +327,12 @@ public final class IndicesClient {
|
|||
* @return cancellable that may be used to cancel the request
|
||||
*/
|
||||
@Deprecated
|
||||
public Cancellable createAsync(org.elasticsearch.action.admin.indices.create.CreateIndexRequest createIndexRequest,
|
||||
public Cancellable createAsync(org.opensearch.action.admin.indices.create.CreateIndexRequest createIndexRequest,
|
||||
RequestOptions options,
|
||||
ActionListener<org.elasticsearch.action.admin.indices.create.CreateIndexResponse> listener) {
|
||||
ActionListener<org.opensearch.action.admin.indices.create.CreateIndexResponse> listener) {
|
||||
return restHighLevelClient.performRequestAsyncAndParseEntity(createIndexRequest,
|
||||
IndicesRequestConverters::createIndex, options,
|
||||
org.elasticsearch.action.admin.indices.create.CreateIndexResponse::fromXContent, listener, emptySet());
|
||||
org.opensearch.action.admin.indices.create.CreateIndexResponse::fromXContent, listener, emptySet());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -377,7 +377,7 @@ public final class IndicesClient {
|
|||
* {@link #putMapping(PutMappingRequest, RequestOptions)} should be used instead, which accepts a new request object.
|
||||
*/
|
||||
@Deprecated
|
||||
public AcknowledgedResponse putMapping(org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest putMappingRequest,
|
||||
public AcknowledgedResponse putMapping(org.opensearch.action.admin.indices.mapping.put.PutMappingRequest putMappingRequest,
|
||||
RequestOptions options) throws IOException {
|
||||
return restHighLevelClient.performRequestAndParseEntity(putMappingRequest, IndicesRequestConverters::putMapping, options,
|
||||
AcknowledgedResponse::fromXContent, emptySet());
|
||||
|
@ -397,7 +397,7 @@ public final class IndicesClient {
|
|||
* @return cancellable that may be used to cancel the request
|
||||
*/
|
||||
@Deprecated
|
||||
public Cancellable putMappingAsync(org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest putMappingRequest,
|
||||
public Cancellable putMappingAsync(org.opensearch.action.admin.indices.mapping.put.PutMappingRequest putMappingRequest,
|
||||
RequestOptions options,
|
||||
ActionListener<AcknowledgedResponse> listener) {
|
||||
return restHighLevelClient.performRequestAsyncAndParseEntity(putMappingRequest, IndicesRequestConverters::putMapping, options,
|
||||
|
@ -454,13 +454,13 @@ public final class IndicesClient {
|
|||
* accepts a new request object.
|
||||
*/
|
||||
@Deprecated
|
||||
public org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse getMapping(
|
||||
org.elasticsearch.action.admin.indices.mapping.get.GetMappingsRequest getMappingsRequest,
|
||||
public org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse getMapping(
|
||||
org.opensearch.action.admin.indices.mapping.get.GetMappingsRequest getMappingsRequest,
|
||||
RequestOptions options) throws IOException {
|
||||
return restHighLevelClient.performRequestAndParseEntity(getMappingsRequest,
|
||||
IndicesRequestConverters::getMappings,
|
||||
options,
|
||||
org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse::fromXContent,
|
||||
org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse::fromXContent,
|
||||
emptySet());
|
||||
}
|
||||
|
||||
|
@ -478,13 +478,13 @@ public final class IndicesClient {
|
|||
* @return cancellable that may be used to cancel the request
|
||||
*/
|
||||
@Deprecated
|
||||
public Cancellable getMappingAsync(org.elasticsearch.action.admin.indices.mapping.get.GetMappingsRequest getMappingsRequest,
|
||||
public Cancellable getMappingAsync(org.opensearch.action.admin.indices.mapping.get.GetMappingsRequest getMappingsRequest,
|
||||
RequestOptions options,
|
||||
ActionListener<org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse> listener) {
|
||||
ActionListener<org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse> listener) {
|
||||
return restHighLevelClient.performRequestAsyncAndParseEntity(getMappingsRequest,
|
||||
IndicesRequestConverters::getMappings,
|
||||
options,
|
||||
org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse::fromXContent,
|
||||
org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse::fromXContent,
|
||||
listener,
|
||||
emptySet());
|
||||
}
|
||||
|
@ -503,11 +503,11 @@ public final class IndicesClient {
|
|||
* accepts a new request object.
|
||||
*/
|
||||
@Deprecated
|
||||
public org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsResponse getFieldMapping(
|
||||
org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsRequest getFieldMappingsRequest,
|
||||
public org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsResponse getFieldMapping(
|
||||
org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsRequest getFieldMappingsRequest,
|
||||
RequestOptions options) throws IOException {
|
||||
return restHighLevelClient.performRequestAndParseEntity(getFieldMappingsRequest, IndicesRequestConverters::getFieldMapping,
|
||||
options, org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsResponse::fromXContent, emptySet());
|
||||
options, org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsResponse::fromXContent, emptySet());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -525,12 +525,12 @@ public final class IndicesClient {
|
|||
*/
|
||||
@Deprecated
|
||||
public Cancellable getFieldMappingAsync(
|
||||
org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsRequest getFieldMappingsRequest,
|
||||
org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsRequest getFieldMappingsRequest,
|
||||
RequestOptions options,
|
||||
ActionListener<org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsResponse> listener) {
|
||||
ActionListener<org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsResponse> listener) {
|
||||
return restHighLevelClient.performRequestAsyncAndParseEntity(getFieldMappingsRequest,
|
||||
IndicesRequestConverters::getFieldMapping, options,
|
||||
org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsResponse::fromXContent,
|
||||
org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsResponse::fromXContent,
|
||||
listener, emptySet());
|
||||
}
|
||||
|
||||
|
@ -840,10 +840,10 @@ public final class IndicesClient {
|
|||
* {@link #get(GetIndexRequest, RequestOptions)} should be used instead, which accepts a new request object.
|
||||
*/
|
||||
@Deprecated
|
||||
public org.elasticsearch.action.admin.indices.get.GetIndexResponse get(
|
||||
org.elasticsearch.action.admin.indices.get.GetIndexRequest getIndexRequest, RequestOptions options) throws IOException {
|
||||
public org.opensearch.action.admin.indices.get.GetIndexResponse get(
|
||||
org.opensearch.action.admin.indices.get.GetIndexRequest getIndexRequest, RequestOptions options) throws IOException {
|
||||
return restHighLevelClient.performRequestAndParseEntity(getIndexRequest, IndicesRequestConverters::getIndex, options,
|
||||
org.elasticsearch.action.admin.indices.get.GetIndexResponse::fromXContent, emptySet());
|
||||
org.opensearch.action.admin.indices.get.GetIndexResponse::fromXContent, emptySet());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -858,10 +858,10 @@ public final class IndicesClient {
|
|||
* @return cancellable that may be used to cancel the request
|
||||
*/
|
||||
@Deprecated
|
||||
public Cancellable getAsync(org.elasticsearch.action.admin.indices.get.GetIndexRequest getIndexRequest, RequestOptions options,
|
||||
ActionListener<org.elasticsearch.action.admin.indices.get.GetIndexResponse> listener) {
|
||||
public Cancellable getAsync(org.opensearch.action.admin.indices.get.GetIndexRequest getIndexRequest, RequestOptions options,
|
||||
ActionListener<org.opensearch.action.admin.indices.get.GetIndexResponse> listener) {
|
||||
return restHighLevelClient.performRequestAsyncAndParseEntity(getIndexRequest, IndicesRequestConverters::getIndex, options,
|
||||
org.elasticsearch.action.admin.indices.get.GetIndexResponse::fromXContent, listener, emptySet());
|
||||
org.opensearch.action.admin.indices.get.GetIndexResponse::fromXContent, listener, emptySet());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1007,7 +1007,7 @@ public final class IndicesClient {
|
|||
* {@link #exists(GetIndexRequest, RequestOptions)} should be used instead, which accepts a new request object.
|
||||
*/
|
||||
@Deprecated
|
||||
public boolean exists(org.elasticsearch.action.admin.indices.get.GetIndexRequest request, RequestOptions options) throws IOException {
|
||||
public boolean exists(org.opensearch.action.admin.indices.get.GetIndexRequest request, RequestOptions options) throws IOException {
|
||||
return restHighLevelClient.performRequest(
|
||||
request,
|
||||
IndicesRequestConverters::indicesExist,
|
||||
|
@ -1029,7 +1029,7 @@ public final class IndicesClient {
|
|||
* @return cancellable that may be used to cancel the request
|
||||
*/
|
||||
@Deprecated
|
||||
public Cancellable existsAsync(org.elasticsearch.action.admin.indices.get.GetIndexRequest request, RequestOptions options,
|
||||
public Cancellable existsAsync(org.opensearch.action.admin.indices.get.GetIndexRequest request, RequestOptions options,
|
||||
ActionListener<Boolean> listener) {
|
||||
return restHighLevelClient.performRequestAsync(
|
||||
request,
|
||||
|
@ -1066,10 +1066,10 @@ public final class IndicesClient {
|
|||
* @deprecated use {@link #shrink(ResizeRequest, RequestOptions)}
|
||||
*/
|
||||
@Deprecated
|
||||
public org.elasticsearch.action.admin.indices.shrink.ResizeResponse shrink(
|
||||
org.elasticsearch.action.admin.indices.shrink.ResizeRequest resizeRequest, RequestOptions options) throws IOException {
|
||||
public org.opensearch.action.admin.indices.shrink.ResizeResponse shrink(
|
||||
org.opensearch.action.admin.indices.shrink.ResizeRequest resizeRequest, RequestOptions options) throws IOException {
|
||||
return restHighLevelClient.performRequestAndParseEntity(resizeRequest, IndicesRequestConverters::shrink, options,
|
||||
org.elasticsearch.action.admin.indices.shrink.ResizeResponse::fromXContent, emptySet());
|
||||
org.opensearch.action.admin.indices.shrink.ResizeResponse::fromXContent, emptySet());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1097,10 +1097,10 @@ public final class IndicesClient {
|
|||
* @deprecated use {@link #shrinkAsync(ResizeRequest, RequestOptions, ActionListener)}
|
||||
*/
|
||||
@Deprecated
|
||||
public Cancellable shrinkAsync(org.elasticsearch.action.admin.indices.shrink.ResizeRequest resizeRequest, RequestOptions options,
|
||||
ActionListener<org.elasticsearch.action.admin.indices.shrink.ResizeResponse> listener) {
|
||||
public Cancellable shrinkAsync(org.opensearch.action.admin.indices.shrink.ResizeRequest resizeRequest, RequestOptions options,
|
||||
ActionListener<org.opensearch.action.admin.indices.shrink.ResizeResponse> listener) {
|
||||
return restHighLevelClient.performRequestAsyncAndParseEntity(resizeRequest, IndicesRequestConverters::shrink, options,
|
||||
org.elasticsearch.action.admin.indices.shrink.ResizeResponse::fromXContent, listener, emptySet());
|
||||
org.opensearch.action.admin.indices.shrink.ResizeResponse::fromXContent, listener, emptySet());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1128,10 +1128,10 @@ public final class IndicesClient {
|
|||
* @deprecated use {@link #split(ResizeRequest, RequestOptions)}
|
||||
*/
|
||||
@Deprecated
|
||||
public org.elasticsearch.action.admin.indices.shrink.ResizeResponse split(
|
||||
org.elasticsearch.action.admin.indices.shrink.ResizeRequest resizeRequest, RequestOptions options) throws IOException {
|
||||
public org.opensearch.action.admin.indices.shrink.ResizeResponse split(
|
||||
org.opensearch.action.admin.indices.shrink.ResizeRequest resizeRequest, RequestOptions options) throws IOException {
|
||||
return restHighLevelClient.performRequestAndParseEntity(resizeRequest, IndicesRequestConverters::split, options,
|
||||
org.elasticsearch.action.admin.indices.shrink.ResizeResponse::fromXContent, emptySet());
|
||||
org.opensearch.action.admin.indices.shrink.ResizeResponse::fromXContent, emptySet());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1159,10 +1159,10 @@ public final class IndicesClient {
|
|||
* @deprecated use {@link #splitAsync(ResizeRequest, RequestOptions, ActionListener)}
|
||||
*/
|
||||
@Deprecated
|
||||
public Cancellable splitAsync(org.elasticsearch.action.admin.indices.shrink.ResizeRequest resizeRequest, RequestOptions options,
|
||||
ActionListener<org.elasticsearch.action.admin.indices.shrink.ResizeResponse> listener) {
|
||||
public Cancellable splitAsync(org.opensearch.action.admin.indices.shrink.ResizeRequest resizeRequest, RequestOptions options,
|
||||
ActionListener<org.opensearch.action.admin.indices.shrink.ResizeResponse> listener) {
|
||||
return restHighLevelClient.performRequestAsyncAndParseEntity(resizeRequest, IndicesRequestConverters::split, options,
|
||||
org.elasticsearch.action.admin.indices.shrink.ResizeResponse::fromXContent, listener, emptySet());
|
||||
org.opensearch.action.admin.indices.shrink.ResizeResponse::fromXContent, listener, emptySet());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1190,10 +1190,10 @@ public final class IndicesClient {
|
|||
* @deprecated use {@link #clone(ResizeRequest, RequestOptions)}
|
||||
*/
|
||||
@Deprecated
|
||||
public org.elasticsearch.action.admin.indices.shrink.ResizeResponse clone(
|
||||
org.elasticsearch.action.admin.indices.shrink.ResizeRequest resizeRequest, RequestOptions options) throws IOException {
|
||||
public org.opensearch.action.admin.indices.shrink.ResizeResponse clone(
|
||||
org.opensearch.action.admin.indices.shrink.ResizeRequest resizeRequest, RequestOptions options) throws IOException {
|
||||
return restHighLevelClient.performRequestAndParseEntity(resizeRequest, IndicesRequestConverters::clone, options,
|
||||
org.elasticsearch.action.admin.indices.shrink.ResizeResponse::fromXContent, emptySet());
|
||||
org.opensearch.action.admin.indices.shrink.ResizeResponse::fromXContent, emptySet());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1221,10 +1221,10 @@ public final class IndicesClient {
|
|||
* @deprecated use {@link #cloneAsync(ResizeRequest, RequestOptions, ActionListener)}
|
||||
*/
|
||||
@Deprecated
|
||||
public Cancellable cloneAsync(org.elasticsearch.action.admin.indices.shrink.ResizeRequest resizeRequest, RequestOptions options,
|
||||
ActionListener<org.elasticsearch.action.admin.indices.shrink.ResizeResponse> listener) {
|
||||
public Cancellable cloneAsync(org.opensearch.action.admin.indices.shrink.ResizeRequest resizeRequest, RequestOptions options,
|
||||
ActionListener<org.opensearch.action.admin.indices.shrink.ResizeResponse> listener) {
|
||||
return restHighLevelClient.performRequestAsyncAndParseEntity(resizeRequest, IndicesRequestConverters::clone, options,
|
||||
org.elasticsearch.action.admin.indices.shrink.ResizeResponse::fromXContent, listener, emptySet());
|
||||
org.opensearch.action.admin.indices.shrink.ResizeResponse::fromXContent, listener, emptySet());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1269,11 +1269,11 @@ public final class IndicesClient {
|
|||
* The method {@link #rollover(RolloverRequest, RequestOptions)} should be used instead, which accepts a new request object.
|
||||
*/
|
||||
@Deprecated
|
||||
public org.elasticsearch.action.admin.indices.rollover.RolloverResponse rollover(
|
||||
org.elasticsearch.action.admin.indices.rollover.RolloverRequest rolloverRequest,
|
||||
public org.opensearch.action.admin.indices.rollover.RolloverResponse rollover(
|
||||
org.opensearch.action.admin.indices.rollover.RolloverRequest rolloverRequest,
|
||||
RequestOptions options) throws IOException {
|
||||
return restHighLevelClient.performRequestAndParseEntity(rolloverRequest, IndicesRequestConverters::rollover, options,
|
||||
org.elasticsearch.action.admin.indices.rollover.RolloverResponse::fromXContent, emptySet());
|
||||
org.opensearch.action.admin.indices.rollover.RolloverResponse::fromXContent, emptySet());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1290,11 +1290,11 @@ public final class IndicesClient {
|
|||
* @return cancellable that may be used to cancel the request
|
||||
*/
|
||||
@Deprecated
|
||||
public Cancellable rolloverAsync(org.elasticsearch.action.admin.indices.rollover.RolloverRequest rolloverRequest,
|
||||
RequestOptions options,
|
||||
ActionListener<org.elasticsearch.action.admin.indices.rollover.RolloverResponse> listener) {
|
||||
public Cancellable rolloverAsync(org.opensearch.action.admin.indices.rollover.RolloverRequest rolloverRequest,
|
||||
RequestOptions options,
|
||||
ActionListener<org.opensearch.action.admin.indices.rollover.RolloverResponse> listener) {
|
||||
return restHighLevelClient.performRequestAsyncAndParseEntity(rolloverRequest, IndicesRequestConverters::rollover, options,
|
||||
org.elasticsearch.action.admin.indices.rollover.RolloverResponse::fromXContent, listener, emptySet());
|
||||
org.opensearch.action.admin.indices.rollover.RolloverResponse::fromXContent, listener, emptySet());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1371,7 +1371,7 @@ public final class IndicesClient {
|
|||
*/
|
||||
@Deprecated
|
||||
public AcknowledgedResponse putTemplate(
|
||||
org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequest putIndexTemplateRequest,
|
||||
org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequest putIndexTemplateRequest,
|
||||
RequestOptions options) throws IOException {
|
||||
return restHighLevelClient.performRequestAndParseEntity(putIndexTemplateRequest, IndicesRequestConverters::putTemplate, options,
|
||||
AcknowledgedResponse::fromXContent, emptySet());
|
||||
|
@ -1391,7 +1391,7 @@ public final class IndicesClient {
|
|||
*/
|
||||
@Deprecated
|
||||
public Cancellable putTemplateAsync(
|
||||
org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequest putIndexTemplateRequest,
|
||||
org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequest putIndexTemplateRequest,
|
||||
RequestOptions options, ActionListener<AcknowledgedResponse> listener) {
|
||||
return restHighLevelClient.performRequestAsyncAndParseEntity(putIndexTemplateRequest,
|
||||
IndicesRequestConverters::putTemplate, options,
|
||||
|
@ -1542,12 +1542,12 @@ public final class IndicesClient {
|
|||
* {@link #getIndexTemplate(GetIndexTemplatesRequest, RequestOptions)} instead which returns a new response object
|
||||
*/
|
||||
@Deprecated
|
||||
public org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse getTemplate(
|
||||
public org.opensearch.action.admin.indices.template.get.GetIndexTemplatesResponse getTemplate(
|
||||
GetIndexTemplatesRequest getIndexTemplatesRequest, RequestOptions options) throws IOException {
|
||||
return restHighLevelClient.performRequestAndParseEntity(getIndexTemplatesRequest,
|
||||
IndicesRequestConverters::getTemplatesWithDocumentTypes,
|
||||
options,
|
||||
org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse::fromXContent, emptySet());
|
||||
org.opensearch.action.admin.indices.template.get.GetIndexTemplatesResponse::fromXContent, emptySet());
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1610,11 +1610,11 @@ public final class IndicesClient {
|
|||
*/
|
||||
@Deprecated
|
||||
public Cancellable getTemplateAsync(GetIndexTemplatesRequest getIndexTemplatesRequest, RequestOptions options,
|
||||
ActionListener<org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse> listener) {
|
||||
ActionListener<org.opensearch.action.admin.indices.template.get.GetIndexTemplatesResponse> listener) {
|
||||
return restHighLevelClient.performRequestAsyncAndParseEntity(getIndexTemplatesRequest,
|
||||
IndicesRequestConverters::getTemplatesWithDocumentTypes,
|
||||
options,
|
||||
org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse::fromXContent,
|
||||
org.opensearch.action.admin.indices.template.get.GetIndexTemplatesResponse::fromXContent,
|
||||
listener, emptySet());
|
||||
}
|
||||
|
||||
|
|
|
@ -24,20 +24,20 @@ import org.apache.http.client.methods.HttpGet;
|
|||
import org.apache.http.client.methods.HttpHead;
|
||||
import org.apache.http.client.methods.HttpPost;
|
||||
import org.apache.http.client.methods.HttpPut;
|
||||
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequest;
|
||||
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesRequest;
|
||||
import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheRequest;
|
||||
import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest;
|
||||
import org.elasticsearch.action.admin.indices.flush.FlushRequest;
|
||||
import org.elasticsearch.action.admin.indices.flush.SyncedFlushRequest;
|
||||
import org.elasticsearch.action.admin.indices.forcemerge.ForceMergeRequest;
|
||||
import org.elasticsearch.action.admin.indices.open.OpenIndexRequest;
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsRequest;
|
||||
import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
||||
import org.elasticsearch.action.admin.indices.shrink.ResizeType;
|
||||
import org.elasticsearch.action.admin.indices.template.delete.DeleteIndexTemplateRequest;
|
||||
import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryRequest;
|
||||
import org.opensearch.action.admin.indices.alias.IndicesAliasesRequest;
|
||||
import org.opensearch.action.admin.indices.alias.get.GetAliasesRequest;
|
||||
import org.opensearch.action.admin.indices.cache.clear.ClearIndicesCacheRequest;
|
||||
import org.opensearch.action.admin.indices.delete.DeleteIndexRequest;
|
||||
import org.opensearch.action.admin.indices.flush.FlushRequest;
|
||||
import org.opensearch.action.admin.indices.flush.SyncedFlushRequest;
|
||||
import org.opensearch.action.admin.indices.forcemerge.ForceMergeRequest;
|
||||
import org.opensearch.action.admin.indices.open.OpenIndexRequest;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsRequest;
|
||||
import org.opensearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
||||
import org.opensearch.action.admin.indices.shrink.ResizeType;
|
||||
import org.opensearch.action.admin.indices.template.delete.DeleteIndexTemplateRequest;
|
||||
import org.opensearch.action.admin.indices.validate.query.ValidateQueryRequest;
|
||||
import org.elasticsearch.client.indices.AnalyzeRequest;
|
||||
import org.elasticsearch.client.indices.CloseIndexRequest;
|
||||
import org.elasticsearch.client.indices.CreateDataStreamRequest;
|
||||
|
@ -155,7 +155,7 @@ final class IndicesRequestConverters {
|
|||
return request;
|
||||
}
|
||||
|
||||
static Request createIndex(org.elasticsearch.action.admin.indices.create.CreateIndexRequest createIndexRequest)
|
||||
static Request createIndex(org.opensearch.action.admin.indices.create.CreateIndexRequest createIndexRequest)
|
||||
throws IOException {
|
||||
String endpoint = RequestConverters.endpoint(createIndexRequest.indices());
|
||||
Request request = new Request(HttpPut.METHOD_NAME, endpoint);
|
||||
|
@ -195,11 +195,11 @@ final class IndicesRequestConverters {
|
|||
}
|
||||
|
||||
/**
|
||||
* converter for the legacy server-side {@link org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest} that still supports
|
||||
* converter for the legacy server-side {@link org.opensearch.action.admin.indices.mapping.put.PutMappingRequest} that still supports
|
||||
* types
|
||||
*/
|
||||
@Deprecated
|
||||
static Request putMapping(org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest putMappingRequest) throws IOException {
|
||||
static Request putMapping(org.opensearch.action.admin.indices.mapping.put.PutMappingRequest putMappingRequest) throws IOException {
|
||||
// The concreteIndex is an internal concept, not applicable to requests made over the REST API.
|
||||
if (putMappingRequest.getConcreteIndex() != null) {
|
||||
throw new IllegalArgumentException("concreteIndex cannot be set on PutMapping requests made over the REST API");
|
||||
|
@ -231,7 +231,7 @@ final class IndicesRequestConverters {
|
|||
}
|
||||
|
||||
@Deprecated
|
||||
static Request getMappings(org.elasticsearch.action.admin.indices.mapping.get.GetMappingsRequest getMappingsRequest) {
|
||||
static Request getMappings(org.opensearch.action.admin.indices.mapping.get.GetMappingsRequest getMappingsRequest) {
|
||||
String[] indices = getMappingsRequest.indices() == null ? Strings.EMPTY_ARRAY : getMappingsRequest.indices();
|
||||
String[] types = getMappingsRequest.types() == null ? Strings.EMPTY_ARRAY : getMappingsRequest.types();
|
||||
|
||||
|
@ -267,7 +267,7 @@ final class IndicesRequestConverters {
|
|||
}
|
||||
|
||||
@Deprecated
|
||||
static Request getFieldMapping(org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsRequest getFieldMappingsRequest) {
|
||||
static Request getFieldMapping(org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsRequest getFieldMappingsRequest) {
|
||||
String[] indices = getFieldMappingsRequest.indices() == null ? Strings.EMPTY_ARRAY : getFieldMappingsRequest.indices();
|
||||
String[] types = getFieldMappingsRequest.types() == null ? Strings.EMPTY_ARRAY : getFieldMappingsRequest.types();
|
||||
String[] fields = getFieldMappingsRequest.fields() == null ? Strings.EMPTY_ARRAY : getFieldMappingsRequest.fields();
|
||||
|
@ -371,7 +371,7 @@ final class IndicesRequestConverters {
|
|||
}
|
||||
|
||||
@Deprecated
|
||||
static Request split(org.elasticsearch.action.admin.indices.shrink.ResizeRequest resizeRequest) throws IOException {
|
||||
static Request split(org.opensearch.action.admin.indices.shrink.ResizeRequest resizeRequest) throws IOException {
|
||||
if (resizeRequest.getResizeType() != ResizeType.SPLIT) {
|
||||
throw new IllegalArgumentException("Wrong resize type [" + resizeRequest.getResizeType() + "] for indices split request");
|
||||
}
|
||||
|
@ -383,7 +383,7 @@ final class IndicesRequestConverters {
|
|||
}
|
||||
|
||||
@Deprecated
|
||||
static Request shrink(org.elasticsearch.action.admin.indices.shrink.ResizeRequest resizeRequest) throws IOException {
|
||||
static Request shrink(org.opensearch.action.admin.indices.shrink.ResizeRequest resizeRequest) throws IOException {
|
||||
if (resizeRequest.getResizeType() != ResizeType.SHRINK) {
|
||||
throw new IllegalArgumentException("Wrong resize type [" + resizeRequest.getResizeType() + "] for indices shrink request");
|
||||
}
|
||||
|
@ -395,7 +395,7 @@ final class IndicesRequestConverters {
|
|||
}
|
||||
|
||||
@Deprecated
|
||||
static Request clone(org.elasticsearch.action.admin.indices.shrink.ResizeRequest resizeRequest) throws IOException {
|
||||
static Request clone(org.opensearch.action.admin.indices.shrink.ResizeRequest resizeRequest) throws IOException {
|
||||
if (resizeRequest.getResizeType() != ResizeType.CLONE) {
|
||||
throw new IllegalArgumentException("Wrong resize type [" + resizeRequest.getResizeType() + "] for indices clone request");
|
||||
}
|
||||
|
@ -418,7 +418,7 @@ final class IndicesRequestConverters {
|
|||
}
|
||||
|
||||
@Deprecated
|
||||
private static Request resize(org.elasticsearch.action.admin.indices.shrink.ResizeRequest resizeRequest) throws IOException {
|
||||
private static Request resize(org.opensearch.action.admin.indices.shrink.ResizeRequest resizeRequest) throws IOException {
|
||||
String endpoint = new RequestConverters.EndpointBuilder().addPathPart(resizeRequest.getSourceIndex())
|
||||
.addPathPartAsIs("_" + resizeRequest.getResizeType().name().toLowerCase(Locale.ROOT))
|
||||
.addPathPart(resizeRequest.getTargetIndexRequest().index()).build();
|
||||
|
@ -451,7 +451,7 @@ final class IndicesRequestConverters {
|
|||
}
|
||||
|
||||
@Deprecated
|
||||
static Request rollover(org.elasticsearch.action.admin.indices.rollover.RolloverRequest rolloverRequest) throws IOException {
|
||||
static Request rollover(org.opensearch.action.admin.indices.rollover.RolloverRequest rolloverRequest) throws IOException {
|
||||
String endpoint = new RequestConverters.EndpointBuilder().addPathPart(rolloverRequest.getRolloverTarget())
|
||||
.addPathPartAsIs("_rollover").addPathPart(rolloverRequest.getNewIndexName()).build();
|
||||
Request request = new Request(HttpPost.METHOD_NAME, endpoint);
|
||||
|
@ -486,11 +486,11 @@ final class IndicesRequestConverters {
|
|||
}
|
||||
|
||||
/**
|
||||
* converter for the legacy server-side {@link org.elasticsearch.action.admin.indices.get.GetIndexRequest} that
|
||||
* converter for the legacy server-side {@link org.opensearch.action.admin.indices.get.GetIndexRequest} that
|
||||
* still supports types
|
||||
*/
|
||||
@Deprecated
|
||||
static Request getIndex(org.elasticsearch.action.admin.indices.get.GetIndexRequest getIndexRequest) {
|
||||
static Request getIndex(org.opensearch.action.admin.indices.get.GetIndexRequest getIndexRequest) {
|
||||
String[] indices = getIndexRequest.indices() == null ? Strings.EMPTY_ARRAY : getIndexRequest.indices();
|
||||
|
||||
String endpoint = RequestConverters.endpoint(indices);
|
||||
|
@ -524,11 +524,11 @@ final class IndicesRequestConverters {
|
|||
}
|
||||
|
||||
/**
|
||||
* converter for the legacy server-side {@link org.elasticsearch.action.admin.indices.get.GetIndexRequest} that
|
||||
* converter for the legacy server-side {@link org.opensearch.action.admin.indices.get.GetIndexRequest} that
|
||||
* still supports types
|
||||
*/
|
||||
@Deprecated
|
||||
static Request indicesExist(org.elasticsearch.action.admin.indices.get.GetIndexRequest getIndexRequest) {
|
||||
static Request indicesExist(org.opensearch.action.admin.indices.get.GetIndexRequest getIndexRequest) {
|
||||
// this can be called with no indices as argument by transport client, not via REST though
|
||||
if (getIndexRequest.indices() == null || getIndexRequest.indices().length == 0) {
|
||||
throw new IllegalArgumentException("indices are mandatory");
|
||||
|
@ -582,7 +582,7 @@ final class IndicesRequestConverters {
|
|||
* Use (@link {@link #putTemplate(PutIndexTemplateRequest)} instead
|
||||
*/
|
||||
@Deprecated
|
||||
static Request putTemplate(org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequest putIndexTemplateRequest)
|
||||
static Request putTemplate(org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequest putIndexTemplateRequest)
|
||||
throws IOException {
|
||||
String endpoint = new RequestConverters.EndpointBuilder().addPathPartAsIs("_template")
|
||||
.addPathPart(putIndexTemplateRequest.name()).build();
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
package org.elasticsearch.client.indices;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.open.OpenIndexResponse;
|
||||
import org.opensearch.action.admin.indices.open.OpenIndexResponse;
|
||||
import org.elasticsearch.action.support.ActiveShardCount;
|
||||
import org.elasticsearch.action.support.IndicesOptions;
|
||||
import org.elasticsearch.client.TimedRequest;
|
||||
|
|
|
@ -21,7 +21,7 @@ package org.elasticsearch.client.indices;
|
|||
|
||||
import org.elasticsearch.OpenSearchGenerationException;
|
||||
import org.elasticsearch.OpenSearchParseException;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.support.ActiveShardCount;
|
||||
import org.elasticsearch.client.TimedRequest;
|
||||
import org.elasticsearch.client.Validatable;
|
||||
|
|
|
@ -22,7 +22,7 @@ import org.elasticsearch.OpenSearchGenerationException;
|
|||
import org.elasticsearch.OpenSearchParseException;
|
||||
import org.elasticsearch.action.ActionRequestValidationException;
|
||||
import org.elasticsearch.action.IndicesRequest;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.support.IndicesOptions;
|
||||
import org.elasticsearch.action.support.master.MasterNodeRequest;
|
||||
import org.elasticsearch.common.Nullable;
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
package org.elasticsearch.client.indices;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.support.ActiveShardCount;
|
||||
import org.elasticsearch.client.TimedRequest;
|
||||
import org.elasticsearch.client.Validatable;
|
||||
|
|
|
@ -18,10 +18,10 @@
|
|||
*/
|
||||
package org.elasticsearch.client.indices.rollover;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.rollover.Condition;
|
||||
import org.elasticsearch.action.admin.indices.rollover.MaxAgeCondition;
|
||||
import org.elasticsearch.action.admin.indices.rollover.MaxDocsCondition;
|
||||
import org.elasticsearch.action.admin.indices.rollover.MaxSizeCondition;
|
||||
import org.opensearch.action.admin.indices.rollover.Condition;
|
||||
import org.opensearch.action.admin.indices.rollover.MaxAgeCondition;
|
||||
import org.opensearch.action.admin.indices.rollover.MaxDocsCondition;
|
||||
import org.opensearch.action.admin.indices.rollover.MaxSizeCondition;
|
||||
import org.elasticsearch.client.TimedRequest;
|
||||
import org.elasticsearch.client.indices.CreateIndexRequest;
|
||||
import org.elasticsearch.common.unit.ByteSizeValue;
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
package org.elasticsearch.client;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.elasticsearch.action.bulk.BackoffPolicy;
|
||||
import org.elasticsearch.action.bulk.BulkItemResponse;
|
||||
import org.elasticsearch.action.bulk.BulkProcessor;
|
||||
|
|
|
@ -24,31 +24,31 @@ import org.apache.http.client.methods.HttpPost;
|
|||
import org.apache.http.client.methods.HttpPut;
|
||||
import org.elasticsearch.OpenSearchException;
|
||||
import org.elasticsearch.OpenSearchStatusException;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequest;
|
||||
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequest.AliasActions;
|
||||
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesRequest;
|
||||
import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheRequest;
|
||||
import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheResponse;
|
||||
import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest;
|
||||
import org.elasticsearch.action.admin.indices.flush.FlushRequest;
|
||||
import org.elasticsearch.action.admin.indices.flush.FlushResponse;
|
||||
import org.elasticsearch.action.admin.indices.flush.SyncedFlushRequest;
|
||||
import org.elasticsearch.action.admin.indices.forcemerge.ForceMergeRequest;
|
||||
import org.elasticsearch.action.admin.indices.forcemerge.ForceMergeResponse;
|
||||
import org.elasticsearch.action.admin.indices.open.OpenIndexRequest;
|
||||
import org.elasticsearch.action.admin.indices.open.OpenIndexResponse;
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshResponse;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsRequest;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
||||
import org.elasticsearch.action.admin.indices.shrink.ResizeRequest;
|
||||
import org.elasticsearch.action.admin.indices.shrink.ResizeResponse;
|
||||
import org.elasticsearch.action.admin.indices.shrink.ResizeType;
|
||||
import org.elasticsearch.action.admin.indices.template.delete.DeleteIndexTemplateRequest;
|
||||
import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryRequest;
|
||||
import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryResponse;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.IndicesAliasesRequest;
|
||||
import org.opensearch.action.admin.indices.alias.IndicesAliasesRequest.AliasActions;
|
||||
import org.opensearch.action.admin.indices.alias.get.GetAliasesRequest;
|
||||
import org.opensearch.action.admin.indices.cache.clear.ClearIndicesCacheRequest;
|
||||
import org.opensearch.action.admin.indices.cache.clear.ClearIndicesCacheResponse;
|
||||
import org.opensearch.action.admin.indices.delete.DeleteIndexRequest;
|
||||
import org.opensearch.action.admin.indices.flush.FlushRequest;
|
||||
import org.opensearch.action.admin.indices.flush.FlushResponse;
|
||||
import org.opensearch.action.admin.indices.flush.SyncedFlushRequest;
|
||||
import org.opensearch.action.admin.indices.forcemerge.ForceMergeRequest;
|
||||
import org.opensearch.action.admin.indices.forcemerge.ForceMergeResponse;
|
||||
import org.opensearch.action.admin.indices.open.OpenIndexRequest;
|
||||
import org.opensearch.action.admin.indices.open.OpenIndexResponse;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshResponse;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsRequest;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.opensearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
||||
import org.opensearch.action.admin.indices.shrink.ResizeRequest;
|
||||
import org.opensearch.action.admin.indices.shrink.ResizeResponse;
|
||||
import org.opensearch.action.admin.indices.shrink.ResizeType;
|
||||
import org.opensearch.action.admin.indices.template.delete.DeleteIndexTemplateRequest;
|
||||
import org.opensearch.action.admin.indices.validate.query.ValidateQueryRequest;
|
||||
import org.opensearch.action.admin.indices.validate.query.ValidateQueryResponse;
|
||||
import org.elasticsearch.action.index.IndexRequest;
|
||||
import org.elasticsearch.action.support.IndicesOptions;
|
||||
import org.elasticsearch.action.support.WriteRequest;
|
||||
|
@ -207,8 +207,8 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
String indexName = "test_index_exists_index_present";
|
||||
createIndex(indexName, Settings.EMPTY);
|
||||
|
||||
org.elasticsearch.action.admin.indices.get.GetIndexRequest request
|
||||
= new org.elasticsearch.action.admin.indices.get.GetIndexRequest();
|
||||
org.opensearch.action.admin.indices.get.GetIndexRequest request
|
||||
= new org.opensearch.action.admin.indices.get.GetIndexRequest();
|
||||
request.indices(indexName);
|
||||
|
||||
boolean response = execute(request, highLevelClient().indices()::exists, highLevelClient().indices()::existsAsync);
|
||||
|
@ -278,10 +278,10 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
String indexName = "plain_index";
|
||||
assertFalse(indexExists(indexName));
|
||||
|
||||
org.elasticsearch.action.admin.indices.create.CreateIndexRequest createIndexRequest =
|
||||
new org.elasticsearch.action.admin.indices.create.CreateIndexRequest(indexName);
|
||||
org.opensearch.action.admin.indices.create.CreateIndexRequest createIndexRequest =
|
||||
new org.opensearch.action.admin.indices.create.CreateIndexRequest(indexName);
|
||||
|
||||
org.elasticsearch.action.admin.indices.create.CreateIndexResponse createIndexResponse = execute(
|
||||
org.opensearch.action.admin.indices.create.CreateIndexResponse createIndexResponse = execute(
|
||||
createIndexRequest,
|
||||
highLevelClient().indices()::create,
|
||||
highLevelClient().indices()::createAsync,
|
||||
|
@ -295,8 +295,8 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
String indexName = "rich_index";
|
||||
assertFalse(indexExists(indexName));
|
||||
|
||||
org.elasticsearch.action.admin.indices.create.CreateIndexRequest createIndexRequest =
|
||||
new org.elasticsearch.action.admin.indices.create.CreateIndexRequest(indexName);
|
||||
org.opensearch.action.admin.indices.create.CreateIndexRequest createIndexRequest =
|
||||
new org.opensearch.action.admin.indices.create.CreateIndexRequest(indexName);
|
||||
|
||||
Alias alias = new Alias("alias_name");
|
||||
alias.filter("{\"term\":{\"year\":2016}}");
|
||||
|
@ -313,7 +313,7 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
mappingBuilder.endObject().endObject().endObject();
|
||||
createIndexRequest.mapping(MapperService.SINGLE_MAPPING_NAME, mappingBuilder);
|
||||
|
||||
org.elasticsearch.action.admin.indices.create.CreateIndexResponse createIndexResponse = execute(
|
||||
org.opensearch.action.admin.indices.create.CreateIndexResponse createIndexResponse = execute(
|
||||
createIndexRequest,
|
||||
highLevelClient().indices()::create,
|
||||
highLevelClient().indices()::createAsync,
|
||||
|
@ -481,9 +481,9 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
String mappings = "\"properties\":{\"field-1\":{\"type\":\"integer\"}}";
|
||||
createIndex(indexName, basicSettings, mappings);
|
||||
|
||||
org.elasticsearch.action.admin.indices.get.GetIndexRequest getIndexRequest =
|
||||
new org.elasticsearch.action.admin.indices.get.GetIndexRequest().indices(indexName).includeDefaults(false);
|
||||
org.elasticsearch.action.admin.indices.get.GetIndexResponse getIndexResponse = execute(getIndexRequest,
|
||||
org.opensearch.action.admin.indices.get.GetIndexRequest getIndexRequest =
|
||||
new org.opensearch.action.admin.indices.get.GetIndexRequest().indices(indexName).includeDefaults(false);
|
||||
org.opensearch.action.admin.indices.get.GetIndexResponse getIndexResponse = execute(getIndexRequest,
|
||||
highLevelClient().indices()::get, highLevelClient().indices()::getAsync,
|
||||
expectWarnings(RestGetIndicesAction.TYPES_DEPRECATION_MESSAGE));
|
||||
|
||||
|
@ -561,8 +561,8 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
String indexName = "mapping_index";
|
||||
createIndex(indexName, Settings.EMPTY);
|
||||
|
||||
org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest putMappingRequest =
|
||||
new org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest(indexName);
|
||||
org.opensearch.action.admin.indices.mapping.put.PutMappingRequest putMappingRequest =
|
||||
new org.opensearch.action.admin.indices.mapping.put.PutMappingRequest(indexName);
|
||||
putMappingRequest.type("some_type");
|
||||
|
||||
XContentBuilder mappingBuilder = JsonXContent.contentBuilder();
|
||||
|
@ -637,10 +637,10 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
Map<String, Object> getIndexResponse = getAsMap(indexName);
|
||||
assertEquals("text", XContentMapValues.extractValue(indexName + ".mappings.properties.field.type", getIndexResponse));
|
||||
|
||||
org.elasticsearch.action.admin.indices.mapping.get.GetMappingsRequest request =
|
||||
new org.elasticsearch.action.admin.indices.mapping.get.GetMappingsRequest().indices(indexName);
|
||||
org.opensearch.action.admin.indices.mapping.get.GetMappingsRequest request =
|
||||
new org.opensearch.action.admin.indices.mapping.get.GetMappingsRequest().indices(indexName);
|
||||
|
||||
org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse getMappingsResponse = execute(
|
||||
org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse getMappingsResponse = execute(
|
||||
request,
|
||||
highLevelClient().indices()::getMapping,
|
||||
highLevelClient().indices()::getMappingAsync,
|
||||
|
@ -704,23 +704,23 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
execute(putMappingRequest, highLevelClient().indices()::putMapping, highLevelClient().indices()::putMappingAsync);
|
||||
assertTrue(putMappingResponse.isAcknowledged());
|
||||
|
||||
org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsRequest getFieldMappingsRequest =
|
||||
new org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsRequest()
|
||||
org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsRequest getFieldMappingsRequest =
|
||||
new org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsRequest()
|
||||
.indices(indexName)
|
||||
.types("_doc")
|
||||
.fields("field");
|
||||
|
||||
org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsResponse getFieldMappingsResponse =
|
||||
org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsResponse getFieldMappingsResponse =
|
||||
execute(getFieldMappingsRequest,
|
||||
highLevelClient().indices()::getFieldMapping,
|
||||
highLevelClient().indices()::getFieldMappingAsync,
|
||||
expectWarnings(RestGetFieldMappingAction.TYPES_DEPRECATION_MESSAGE));
|
||||
|
||||
final Map<String, org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsResponse.FieldMappingMetadata>
|
||||
final Map<String, org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsResponse.FieldMappingMetadata>
|
||||
fieldMappingMap = getFieldMappingsResponse.mappings().get(indexName).get("_doc");
|
||||
|
||||
final org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsResponse.FieldMappingMetadata metadata =
|
||||
new org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsResponse.FieldMappingMetadata("field",
|
||||
final org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsResponse.FieldMappingMetadata metadata =
|
||||
new org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsResponse.FieldMappingMetadata("field",
|
||||
new BytesArray("{\"field\":{\"type\":\"text\"}}"));
|
||||
assertThat(fieldMappingMap, equalTo(Collections.singletonMap("field", metadata)));
|
||||
}
|
||||
|
@ -1110,7 +1110,7 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
.put("index.number_of_replicas", 0)
|
||||
.putNull("index.routing.allocation.require._name")
|
||||
.build();
|
||||
resizeRequest.setTargetIndex(new org.elasticsearch.action.admin.indices.create.CreateIndexRequest("target")
|
||||
resizeRequest.setTargetIndex(new org.opensearch.action.admin.indices.create.CreateIndexRequest("target")
|
||||
.settings(targetSettings)
|
||||
.alias(new Alias("alias")));
|
||||
ResizeResponse resizeResponse = execute(resizeRequest, highLevelClient().indices()::shrink,
|
||||
|
@ -1135,7 +1135,7 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
ResizeRequest resizeRequest = new ResizeRequest("target", "source");
|
||||
resizeRequest.setResizeType(ResizeType.SPLIT);
|
||||
Settings targetSettings = Settings.builder().put("index.number_of_shards", 4).put("index.number_of_replicas", 0).build();
|
||||
resizeRequest.setTargetIndex(new org.elasticsearch.action.admin.indices.create.CreateIndexRequest("target")
|
||||
resizeRequest.setTargetIndex(new org.opensearch.action.admin.indices.create.CreateIndexRequest("target")
|
||||
.settings(targetSettings)
|
||||
.alias(new Alias("alias")));
|
||||
ResizeResponse resizeResponse = execute(resizeRequest, highLevelClient().indices()::split, highLevelClient().indices()::splitAsync);
|
||||
|
@ -1159,7 +1159,7 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
ResizeRequest resizeRequest = new ResizeRequest("target", "source");
|
||||
resizeRequest.setResizeType(ResizeType.CLONE);
|
||||
Settings targetSettings = Settings.builder().put("index.number_of_shards", 2).put("index.number_of_replicas", 0).build();
|
||||
resizeRequest.setTargetIndex(new org.elasticsearch.action.admin.indices.create.CreateIndexRequest("target")
|
||||
resizeRequest.setTargetIndex(new org.opensearch.action.admin.indices.create.CreateIndexRequest("target")
|
||||
.settings(targetSettings)
|
||||
.alias(new Alias("alias")));
|
||||
ResizeResponse resizeResponse = execute(resizeRequest, highLevelClient().indices()::clone, highLevelClient().indices()::cloneAsync);
|
||||
|
@ -1235,12 +1235,12 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
highLevelClient().index(new IndexRequest("test").id("2").source("field", "value")
|
||||
.setRefreshPolicy(WriteRequest.RefreshPolicy.WAIT_UNTIL), RequestOptions.DEFAULT);
|
||||
|
||||
org.elasticsearch.action.admin.indices.rollover.RolloverRequest rolloverRequest =
|
||||
new org.elasticsearch.action.admin.indices.rollover.RolloverRequest("alias", "test_new");
|
||||
org.opensearch.action.admin.indices.rollover.RolloverRequest rolloverRequest =
|
||||
new org.opensearch.action.admin.indices.rollover.RolloverRequest("alias", "test_new");
|
||||
rolloverRequest.addMaxIndexDocsCondition(1);
|
||||
rolloverRequest.getCreateIndexRequest().mapping("_doc", "field2", "type=keyword");
|
||||
|
||||
org.elasticsearch.action.admin.indices.rollover.RolloverResponse rolloverResponse = execute(
|
||||
org.opensearch.action.admin.indices.rollover.RolloverResponse rolloverResponse = execute(
|
||||
rolloverRequest,
|
||||
highLevelClient().indices()::rollover,
|
||||
highLevelClient().indices()::rolloverAsync,
|
||||
|
@ -1550,8 +1550,8 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
|
||||
@SuppressWarnings("unchecked")
|
||||
public void testPutTemplateWithTypes() throws Exception {
|
||||
org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequest putTemplateRequest =
|
||||
new org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequest()
|
||||
org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequest putTemplateRequest =
|
||||
new org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequest()
|
||||
.name("my-template")
|
||||
.patterns(Arrays.asList("pattern-1", "name-*"))
|
||||
.order(10)
|
||||
|
@ -1660,8 +1660,8 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
|
||||
@SuppressWarnings("unchecked")
|
||||
public void testPutTemplateWithNoTypesUsingTypedApi() throws Exception {
|
||||
org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequest putTemplateRequest =
|
||||
new org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequest()
|
||||
org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequest putTemplateRequest =
|
||||
new org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequest()
|
||||
.name("my-template")
|
||||
.patterns(Arrays.asList("pattern-1", "name-*"))
|
||||
.order(10)
|
||||
|
@ -1770,14 +1770,14 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
public void testCRUDIndexTemplateWithTypes() throws Exception {
|
||||
RestHighLevelClient client = highLevelClient();
|
||||
|
||||
org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequest putTemplate1 =
|
||||
new org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequest().name("template-1")
|
||||
org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequest putTemplate1 =
|
||||
new org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequest().name("template-1")
|
||||
.patterns(Arrays.asList("pattern-1", "name-1")).alias(new Alias("alias-1"));
|
||||
assertThat(execute(putTemplate1, client.indices()::putTemplate, client.indices()::putTemplateAsync
|
||||
, expectWarnings(RestPutIndexTemplateAction.TYPES_DEPRECATION_MESSAGE))
|
||||
.isAcknowledged(), equalTo(true));
|
||||
org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequest putTemplate2 =
|
||||
new org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequest().name("template-2")
|
||||
org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequest putTemplate2 =
|
||||
new org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequest().name("template-2")
|
||||
.patterns(Arrays.asList("pattern-2", "name-2"))
|
||||
.mapping("custom_doc_type", "name", "type=text")
|
||||
.settings(Settings.builder().put("number_of_shards", "2").put("number_of_replicas", "0"));
|
||||
|
@ -1785,7 +1785,7 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
expectWarnings(RestPutIndexTemplateAction.TYPES_DEPRECATION_MESSAGE))
|
||||
.isAcknowledged(), equalTo(true));
|
||||
|
||||
org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse getTemplate1 = execute(
|
||||
org.opensearch.action.admin.indices.template.get.GetIndexTemplatesResponse getTemplate1 = execute(
|
||||
new GetIndexTemplatesRequest("template-1"),
|
||||
client.indices()::getTemplate, client.indices()::getTemplateAsync,
|
||||
expectWarnings(RestGetIndexTemplateAction.TYPES_DEPRECATION_MESSAGE));
|
||||
|
@ -1796,7 +1796,7 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
assertTrue(template1.aliases().containsKey("alias-1"));
|
||||
|
||||
//Check the typed version of the call
|
||||
org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse getTemplate2 =
|
||||
org.opensearch.action.admin.indices.template.get.GetIndexTemplatesResponse getTemplate2 =
|
||||
execute(new GetIndexTemplatesRequest("template-2"),
|
||||
client.indices()::getTemplate, client.indices()::getTemplateAsync,
|
||||
expectWarnings(RestGetIndexTemplateAction.TYPES_DEPRECATION_MESSAGE));
|
||||
|
@ -1814,7 +1814,7 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
? Arrays.asList("*plate-1", "template-2")
|
||||
: Arrays.asList("template-*");
|
||||
GetIndexTemplatesRequest getBothRequest = new GetIndexTemplatesRequest(names);
|
||||
org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse getBoth = execute(
|
||||
org.opensearch.action.admin.indices.template.get.GetIndexTemplatesResponse getBoth = execute(
|
||||
getBothRequest, client.indices()::getTemplate, client.indices()::getTemplateAsync,
|
||||
expectWarnings(RestGetIndexTemplateAction.TYPES_DEPRECATION_MESSAGE));
|
||||
assertThat(getBoth.getIndexTemplates(), hasSize(2));
|
||||
|
@ -1822,7 +1822,7 @@ public class IndicesClientIT extends ESRestHighLevelClientTestCase {
|
|||
arrayContainingInAnyOrder("template-1", "template-2"));
|
||||
|
||||
GetIndexTemplatesRequest getAllRequest = new GetIndexTemplatesRequest();
|
||||
org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse getAll = execute(
|
||||
org.opensearch.action.admin.indices.template.get.GetIndexTemplatesResponse getAll = execute(
|
||||
getAllRequest, client.indices()::getTemplate, client.indices()::getTemplateAsync,
|
||||
expectWarnings(RestGetIndexTemplateAction.TYPES_DEPRECATION_MESSAGE));
|
||||
assertThat(getAll.getIndexTemplates().size(), greaterThanOrEqualTo(2));
|
||||
|
|
|
@ -26,21 +26,21 @@ import org.apache.http.client.methods.HttpPost;
|
|||
import org.apache.http.client.methods.HttpPut;
|
||||
import org.apache.lucene.util.LuceneTestCase;
|
||||
import org.elasticsearch.action.ActionRequestValidationException;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequest;
|
||||
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesRequest;
|
||||
import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheRequest;
|
||||
import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest;
|
||||
import org.elasticsearch.action.admin.indices.flush.FlushRequest;
|
||||
import org.elasticsearch.action.admin.indices.flush.SyncedFlushRequest;
|
||||
import org.elasticsearch.action.admin.indices.forcemerge.ForceMergeRequest;
|
||||
import org.elasticsearch.action.admin.indices.open.OpenIndexRequest;
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsRequest;
|
||||
import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
||||
import org.elasticsearch.action.admin.indices.shrink.ResizeType;
|
||||
import org.elasticsearch.action.admin.indices.template.delete.DeleteIndexTemplateRequest;
|
||||
import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryRequest;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.IndicesAliasesRequest;
|
||||
import org.opensearch.action.admin.indices.alias.get.GetAliasesRequest;
|
||||
import org.opensearch.action.admin.indices.cache.clear.ClearIndicesCacheRequest;
|
||||
import org.opensearch.action.admin.indices.delete.DeleteIndexRequest;
|
||||
import org.opensearch.action.admin.indices.flush.FlushRequest;
|
||||
import org.opensearch.action.admin.indices.flush.SyncedFlushRequest;
|
||||
import org.opensearch.action.admin.indices.forcemerge.ForceMergeRequest;
|
||||
import org.opensearch.action.admin.indices.open.OpenIndexRequest;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsRequest;
|
||||
import org.opensearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
||||
import org.opensearch.action.admin.indices.shrink.ResizeType;
|
||||
import org.opensearch.action.admin.indices.template.delete.DeleteIndexTemplateRequest;
|
||||
import org.opensearch.action.admin.indices.validate.query.ValidateQueryRequest;
|
||||
import org.elasticsearch.action.support.master.AcknowledgedRequest;
|
||||
import org.elasticsearch.client.indices.AnalyzeRequest;
|
||||
import org.elasticsearch.client.indices.CloseIndexRequest;
|
||||
|
@ -130,16 +130,16 @@ public class IndicesRequestConvertersTests extends ESTestCase {
|
|||
|
||||
public void testIndicesExistEmptyIndicesWithTypes() {
|
||||
LuceneTestCase.expectThrows(IllegalArgumentException.class,
|
||||
() -> IndicesRequestConverters.indicesExist(new org.elasticsearch.action.admin.indices.get.GetIndexRequest()));
|
||||
() -> IndicesRequestConverters.indicesExist(new org.opensearch.action.admin.indices.get.GetIndexRequest()));
|
||||
LuceneTestCase.expectThrows(IllegalArgumentException.class, () -> IndicesRequestConverters
|
||||
.indicesExist(new org.elasticsearch.action.admin.indices.get.GetIndexRequest().indices((String[]) null)));
|
||||
.indicesExist(new org.opensearch.action.admin.indices.get.GetIndexRequest().indices((String[]) null)));
|
||||
}
|
||||
|
||||
public void testIndicesExistWithTypes() {
|
||||
String[] indices = RequestConvertersTests.randomIndicesNames(1, 10);
|
||||
|
||||
org.elasticsearch.action.admin.indices.get.GetIndexRequest getIndexRequest =
|
||||
new org.elasticsearch.action.admin.indices.get.GetIndexRequest().indices(indices);
|
||||
org.opensearch.action.admin.indices.get.GetIndexRequest getIndexRequest =
|
||||
new org.opensearch.action.admin.indices.get.GetIndexRequest().indices(indices);
|
||||
|
||||
Map<String, String> expectedParams = new HashMap<>();
|
||||
RequestConvertersTests.setRandomIndicesOptions(getIndexRequest::indicesOptions, getIndexRequest::indicesOptions, expectedParams);
|
||||
|
@ -172,7 +172,7 @@ public class IndicesRequestConvertersTests extends ESTestCase {
|
|||
}
|
||||
|
||||
public void testCreateIndexWithTypes() throws IOException {
|
||||
org.elasticsearch.action.admin.indices.create.CreateIndexRequest createIndexRequest =
|
||||
org.opensearch.action.admin.indices.create.CreateIndexRequest createIndexRequest =
|
||||
org.elasticsearch.index.RandomCreateIndexGenerator.randomCreateIndexRequest();
|
||||
|
||||
Map<String, String> expectedParams = new HashMap<>();
|
||||
|
@ -234,8 +234,8 @@ public class IndicesRequestConvertersTests extends ESTestCase {
|
|||
}
|
||||
|
||||
public void testPutMappingWithTypes() throws IOException {
|
||||
org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest putMappingRequest =
|
||||
new org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest();
|
||||
org.opensearch.action.admin.indices.mapping.put.PutMappingRequest putMappingRequest =
|
||||
new org.opensearch.action.admin.indices.mapping.put.PutMappingRequest();
|
||||
|
||||
String[] indices = RequestConvertersTests.randomIndicesNames(0, 5);
|
||||
putMappingRequest.indices(indices);
|
||||
|
@ -295,8 +295,8 @@ public class IndicesRequestConvertersTests extends ESTestCase {
|
|||
}
|
||||
|
||||
public void testGetMappingWithTypes() {
|
||||
org.elasticsearch.action.admin.indices.mapping.get.GetMappingsRequest getMappingRequest =
|
||||
new org.elasticsearch.action.admin.indices.mapping.get.GetMappingsRequest();
|
||||
org.opensearch.action.admin.indices.mapping.get.GetMappingsRequest getMappingRequest =
|
||||
new org.opensearch.action.admin.indices.mapping.get.GetMappingsRequest();
|
||||
|
||||
String[] indices = Strings.EMPTY_ARRAY;
|
||||
if (randomBoolean()) {
|
||||
|
@ -381,8 +381,8 @@ public class IndicesRequestConvertersTests extends ESTestCase {
|
|||
}
|
||||
|
||||
public void testGetFieldMappingWithTypes() {
|
||||
org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsRequest getFieldMappingsRequest =
|
||||
new org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsRequest();
|
||||
org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsRequest getFieldMappingsRequest =
|
||||
new org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsRequest();
|
||||
|
||||
String[] indices = Strings.EMPTY_ARRAY;
|
||||
if (randomBoolean()) {
|
||||
|
@ -567,8 +567,8 @@ public class IndicesRequestConvertersTests extends ESTestCase {
|
|||
public void testGetIndexWithTypes() throws IOException {
|
||||
String[] indicesUnderTest = ESTestCase.randomBoolean() ? null : RequestConvertersTests.randomIndicesNames(0, 5);
|
||||
|
||||
org.elasticsearch.action.admin.indices.get.GetIndexRequest getIndexRequest =
|
||||
new org.elasticsearch.action.admin.indices.get.GetIndexRequest().indices(indicesUnderTest);
|
||||
org.opensearch.action.admin.indices.get.GetIndexRequest getIndexRequest =
|
||||
new org.opensearch.action.admin.indices.get.GetIndexRequest().indices(indicesUnderTest);
|
||||
|
||||
Map<String, String> expectedParams = new HashMap<>();
|
||||
RequestConvertersTests.setRandomMasterTimeout(getIndexRequest, expectedParams);
|
||||
|
@ -942,8 +942,8 @@ public class IndicesRequestConvertersTests extends ESTestCase {
|
|||
}
|
||||
|
||||
public void testRolloverWithTypes() throws IOException {
|
||||
org.elasticsearch.action.admin.indices.rollover.RolloverRequest rolloverRequest =
|
||||
new org.elasticsearch.action.admin.indices.rollover.RolloverRequest(ESTestCase.randomAlphaOfLengthBetween(3, 10),
|
||||
org.opensearch.action.admin.indices.rollover.RolloverRequest rolloverRequest =
|
||||
new org.opensearch.action.admin.indices.rollover.RolloverRequest(ESTestCase.randomAlphaOfLengthBetween(3, 10),
|
||||
ESTestCase.randomBoolean() ? null : ESTestCase.randomAlphaOfLengthBetween(3, 10));
|
||||
Map<String, String> expectedParams = new HashMap<>();
|
||||
RequestConvertersTests.setRandomTimeout(rolloverRequest::timeout, rolloverRequest.timeout(), expectedParams);
|
||||
|
@ -1049,8 +1049,8 @@ public class IndicesRequestConvertersTests extends ESTestCase {
|
|||
names.put("-#template", "-%23template");
|
||||
names.put("foo^bar", "foo%5Ebar");
|
||||
|
||||
org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequest putTemplateRequest =
|
||||
new org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequest()
|
||||
org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequest putTemplateRequest =
|
||||
new org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequest()
|
||||
.name(ESTestCase.randomFrom(names.keySet()))
|
||||
.patterns(Arrays.asList(ESTestCase.generateRandomStringArray(20, 100, false, false)));
|
||||
if (ESTestCase.randomBoolean()) {
|
||||
|
|
|
@ -120,7 +120,7 @@ public class SyncedFlushResponseTests extends ESTestCase {
|
|||
SyncedFlushResponse.ShardCounts totalCounts;
|
||||
Map<String, SyncedFlushResponse.ShardCounts> countsPerIndex = new HashMap<>();
|
||||
ObjectIntMap<String> expectedFailuresPerIndex = new ObjectIntHashMap<>();
|
||||
org.elasticsearch.action.admin.indices.flush.SyncedFlushResponse result;
|
||||
org.opensearch.action.admin.indices.flush.SyncedFlushResponse result;
|
||||
SyncedFlushResponse clientResult;
|
||||
}
|
||||
|
||||
|
@ -213,7 +213,7 @@ public class SyncedFlushResponseTests extends ESTestCase {
|
|||
totalShards += shards * (replicas + 1);
|
||||
totalSuccessful += successful;
|
||||
}
|
||||
testPlan.result = new org.elasticsearch.action.admin.indices.flush.SyncedFlushResponse(indicesResults);
|
||||
testPlan.result = new org.opensearch.action.admin.indices.flush.SyncedFlushResponse(indicesResults);
|
||||
testPlan.totalCounts = new SyncedFlushResponse.ShardCounts(totalShards, totalSuccessful, totalFailed);
|
||||
testPlan.clientResult = new SyncedFlushResponse(
|
||||
new SyncedFlushResponse.ShardCounts(totalShards, totalSuccessful, totalFailed),
|
||||
|
|
|
@ -22,32 +22,32 @@ package org.elasticsearch.client.documentation;
|
|||
import org.elasticsearch.OpenSearchException;
|
||||
import org.elasticsearch.action.ActionListener;
|
||||
import org.elasticsearch.action.LatchedActionListener;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequest;
|
||||
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequest.AliasActions;
|
||||
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesRequest;
|
||||
import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheRequest;
|
||||
import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheResponse;
|
||||
import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest;
|
||||
import org.elasticsearch.action.admin.indices.flush.FlushRequest;
|
||||
import org.elasticsearch.action.admin.indices.flush.FlushResponse;
|
||||
import org.elasticsearch.action.admin.indices.flush.SyncedFlushRequest;
|
||||
import org.elasticsearch.action.admin.indices.forcemerge.ForceMergeRequest;
|
||||
import org.elasticsearch.action.admin.indices.forcemerge.ForceMergeResponse;
|
||||
import org.elasticsearch.action.admin.indices.open.OpenIndexRequest;
|
||||
import org.elasticsearch.action.admin.indices.open.OpenIndexResponse;
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshResponse;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsRequest;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
||||
import org.elasticsearch.action.admin.indices.shrink.ResizeRequest;
|
||||
import org.elasticsearch.action.admin.indices.shrink.ResizeResponse;
|
||||
import org.elasticsearch.action.admin.indices.shrink.ResizeType;
|
||||
import org.elasticsearch.action.admin.indices.template.delete.DeleteIndexTemplateRequest;
|
||||
import org.elasticsearch.action.admin.indices.validate.query.QueryExplanation;
|
||||
import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryRequest;
|
||||
import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryResponse;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.IndicesAliasesRequest;
|
||||
import org.opensearch.action.admin.indices.alias.IndicesAliasesRequest.AliasActions;
|
||||
import org.opensearch.action.admin.indices.alias.get.GetAliasesRequest;
|
||||
import org.opensearch.action.admin.indices.cache.clear.ClearIndicesCacheRequest;
|
||||
import org.opensearch.action.admin.indices.cache.clear.ClearIndicesCacheResponse;
|
||||
import org.opensearch.action.admin.indices.delete.DeleteIndexRequest;
|
||||
import org.opensearch.action.admin.indices.flush.FlushRequest;
|
||||
import org.opensearch.action.admin.indices.flush.FlushResponse;
|
||||
import org.opensearch.action.admin.indices.flush.SyncedFlushRequest;
|
||||
import org.opensearch.action.admin.indices.forcemerge.ForceMergeRequest;
|
||||
import org.opensearch.action.admin.indices.forcemerge.ForceMergeResponse;
|
||||
import org.opensearch.action.admin.indices.open.OpenIndexRequest;
|
||||
import org.opensearch.action.admin.indices.open.OpenIndexResponse;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshResponse;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsRequest;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.opensearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
||||
import org.opensearch.action.admin.indices.shrink.ResizeRequest;
|
||||
import org.opensearch.action.admin.indices.shrink.ResizeResponse;
|
||||
import org.opensearch.action.admin.indices.shrink.ResizeType;
|
||||
import org.opensearch.action.admin.indices.template.delete.DeleteIndexTemplateRequest;
|
||||
import org.opensearch.action.admin.indices.validate.query.QueryExplanation;
|
||||
import org.opensearch.action.admin.indices.validate.query.ValidateQueryRequest;
|
||||
import org.opensearch.action.admin.indices.validate.query.ValidateQueryResponse;
|
||||
import org.elasticsearch.action.support.ActiveShardCount;
|
||||
import org.elasticsearch.action.support.DefaultShardOperationFailedException;
|
||||
import org.elasticsearch.action.support.IndicesOptions;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
package org.elasticsearch.client.indices;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.analyze.AnalyzeAction;
|
||||
import org.opensearch.action.admin.indices.analyze.AnalyzeAction;
|
||||
import org.elasticsearch.common.xcontent.XContentParser;
|
||||
|
||||
import java.io.IOException;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
package org.elasticsearch.client.indices;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.analyze.AnalyzeAction;
|
||||
import org.opensearch.action.admin.indices.analyze.AnalyzeAction;
|
||||
import org.elasticsearch.common.xcontent.XContentParser;
|
||||
|
||||
import java.io.IOException;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
package org.elasticsearch.client.indices;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.analyze.AnalyzeAction;
|
||||
import org.opensearch.action.admin.indices.analyze.AnalyzeAction;
|
||||
import org.elasticsearch.client.AbstractRequestTestCase;
|
||||
|
||||
public abstract class AnalyzeRequestTests extends AbstractRequestTestCase<AnalyzeRequest, AnalyzeAction.Request> {
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
package org.elasticsearch.client.indices;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.analyze.AnalyzeAction;
|
||||
import org.opensearch.action.admin.indices.analyze.AnalyzeAction;
|
||||
import org.elasticsearch.client.AbstractResponseTestCase;
|
||||
import org.elasticsearch.common.xcontent.XContentParser;
|
||||
import org.elasticsearch.common.xcontent.XContentType;
|
||||
|
|
|
@ -48,33 +48,33 @@ import static org.hamcrest.Matchers.notNullValue;
|
|||
import static org.hamcrest.Matchers.nullValue;
|
||||
|
||||
public class CloseIndexResponseTests extends
|
||||
AbstractResponseTestCase<org.elasticsearch.action.admin.indices.close.CloseIndexResponse, CloseIndexResponse> {
|
||||
AbstractResponseTestCase<org.opensearch.action.admin.indices.close.CloseIndexResponse, CloseIndexResponse> {
|
||||
|
||||
@Override
|
||||
protected org.elasticsearch.action.admin.indices.close.CloseIndexResponse createServerTestInstance(XContentType xContentType) {
|
||||
protected org.opensearch.action.admin.indices.close.CloseIndexResponse createServerTestInstance(XContentType xContentType) {
|
||||
boolean acknowledged = true;
|
||||
final String[] indicesNames = generateRandomStringArray(10, 10, false, true);
|
||||
|
||||
final List<org.elasticsearch.action.admin.indices.close.CloseIndexResponse.IndexResult> indexResults = new ArrayList<>();
|
||||
final List<org.opensearch.action.admin.indices.close.CloseIndexResponse.IndexResult> indexResults = new ArrayList<>();
|
||||
for (String indexName : indicesNames) {
|
||||
final Index index = new Index(indexName, randomAlphaOfLength(5));
|
||||
if (randomBoolean()) {
|
||||
indexResults.add(new org.elasticsearch.action.admin.indices.close.CloseIndexResponse.IndexResult(index));
|
||||
indexResults.add(new org.opensearch.action.admin.indices.close.CloseIndexResponse.IndexResult(index));
|
||||
} else {
|
||||
if (randomBoolean()) {
|
||||
acknowledged = false;
|
||||
Exception exception = randomFrom(new IndexNotFoundException(index), new ActionNotFoundTransportException("test"));
|
||||
indexResults.add(new org.elasticsearch.action.admin.indices.close.CloseIndexResponse.IndexResult(index, exception));
|
||||
indexResults.add(new org.opensearch.action.admin.indices.close.CloseIndexResponse.IndexResult(index, exception));
|
||||
} else {
|
||||
final int nbShards = randomIntBetween(1, 5);
|
||||
org.elasticsearch.action.admin.indices.close.CloseIndexResponse.ShardResult[] shards =
|
||||
new org.elasticsearch.action.admin.indices.close.CloseIndexResponse.ShardResult[nbShards];
|
||||
org.opensearch.action.admin.indices.close.CloseIndexResponse.ShardResult[] shards =
|
||||
new org.opensearch.action.admin.indices.close.CloseIndexResponse.ShardResult[nbShards];
|
||||
for (int i = 0; i < nbShards; i++) {
|
||||
org.elasticsearch.action.admin.indices.close.CloseIndexResponse.ShardResult.Failure[] failures = null;
|
||||
org.opensearch.action.admin.indices.close.CloseIndexResponse.ShardResult.Failure[] failures = null;
|
||||
if (randomBoolean()) {
|
||||
acknowledged = false;
|
||||
int nbFailures = randomIntBetween(1, 3);
|
||||
failures = new org.elasticsearch.action.admin.indices.close.CloseIndexResponse.ShardResult.Failure[nbFailures];
|
||||
failures = new org.opensearch.action.admin.indices.close.CloseIndexResponse.ShardResult.Failure[nbFailures];
|
||||
for (int j = 0; j < failures.length; j++) {
|
||||
String nodeId = null;
|
||||
if (frequently()) {
|
||||
|
@ -83,15 +83,15 @@ public class CloseIndexResponseTests extends
|
|||
failures[j] = newFailure(indexName, i, nodeId);
|
||||
}
|
||||
}
|
||||
shards[i] = new org.elasticsearch.action.admin.indices.close.CloseIndexResponse.ShardResult(i, failures);
|
||||
shards[i] = new org.opensearch.action.admin.indices.close.CloseIndexResponse.ShardResult(i, failures);
|
||||
}
|
||||
indexResults.add(new org.elasticsearch.action.admin.indices.close.CloseIndexResponse.IndexResult(index, shards));
|
||||
indexResults.add(new org.opensearch.action.admin.indices.close.CloseIndexResponse.IndexResult(index, shards));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
final boolean shardsAcknowledged = acknowledged ? randomBoolean() : false;
|
||||
return new org.elasticsearch.action.admin.indices.close.CloseIndexResponse(acknowledged, shardsAcknowledged, indexResults);
|
||||
return new org.opensearch.action.admin.indices.close.CloseIndexResponse(acknowledged, shardsAcknowledged, indexResults);
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -100,7 +100,7 @@ public class CloseIndexResponseTests extends
|
|||
}
|
||||
|
||||
@Override
|
||||
protected void assertInstances(final org.elasticsearch.action.admin.indices.close.CloseIndexResponse serverInstance,
|
||||
protected void assertInstances(final org.opensearch.action.admin.indices.close.CloseIndexResponse serverInstance,
|
||||
final CloseIndexResponse clientInstance) {
|
||||
assertNotSame(serverInstance, clientInstance);
|
||||
assertThat(clientInstance.isAcknowledged(), equalTo(serverInstance.isAcknowledged()));
|
||||
|
@ -129,9 +129,9 @@ public class CloseIndexResponseTests extends
|
|||
if (expectedIndexResult.getShards() != null) {
|
||||
assertThat(actualIndexResult.getException(), nullValue());
|
||||
|
||||
List<org.elasticsearch.action.admin.indices.close.CloseIndexResponse.ShardResult> failedShardResults =
|
||||
List<org.opensearch.action.admin.indices.close.CloseIndexResponse.ShardResult> failedShardResults =
|
||||
Arrays.stream(expectedIndexResult.getShards())
|
||||
.filter(org.elasticsearch.action.admin.indices.close.CloseIndexResponse.ShardResult::hasFailures)
|
||||
.filter(org.opensearch.action.admin.indices.close.CloseIndexResponse.ShardResult::hasFailures)
|
||||
.collect(Collectors.toList());
|
||||
|
||||
if (failedShardResults.isEmpty()) {
|
||||
|
@ -156,7 +156,7 @@ public class CloseIndexResponseTests extends
|
|||
assertThat(actualShardResult.getFailures().length, equalTo(failedShardResult.getFailures().length));
|
||||
|
||||
for (int i = 0; i < failedShardResult.getFailures().length; i++) {
|
||||
org.elasticsearch.action.admin.indices.close.CloseIndexResponse.ShardResult.Failure expectedFailure =
|
||||
org.opensearch.action.admin.indices.close.CloseIndexResponse.ShardResult.Failure expectedFailure =
|
||||
failedShardResult.getFailures()[i];
|
||||
CloseIndexResponse.ShardResult.Failure actualFailure = actualShardResult.getFailures()[i];
|
||||
assertThat(actualFailure.getNodeId(), equalTo(expectedFailure.getNodeId()));
|
||||
|
@ -209,13 +209,13 @@ public class CloseIndexResponseTests extends
|
|||
}
|
||||
}
|
||||
|
||||
private org.elasticsearch.action.admin.indices.close.CloseIndexResponse.ShardResult.Failure newFailure(final String indexName,
|
||||
final int shard,
|
||||
final String nodeId) {
|
||||
private org.opensearch.action.admin.indices.close.CloseIndexResponse.ShardResult.Failure newFailure(final String indexName,
|
||||
final int shard,
|
||||
final String nodeId) {
|
||||
Exception exception = randomFrom(new IndexNotFoundException(indexName),
|
||||
new ActionNotFoundTransportException("test"),
|
||||
new IOException("boom", new NullPointerException()),
|
||||
new OpenSearchStatusException("something", RestStatus.TOO_MANY_REQUESTS));
|
||||
return new org.elasticsearch.action.admin.indices.close.CloseIndexResponse.ShardResult.Failure(indexName, shard, exception, nodeId);
|
||||
return new org.opensearch.action.admin.indices.close.CloseIndexResponse.ShardResult.Failure(indexName, shard, exception, nodeId);
|
||||
}
|
||||
}
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
package org.elasticsearch.client.indices;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.common.xcontent.XContentParser;
|
||||
import org.elasticsearch.test.AbstractXContentTestCase;
|
||||
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
package org.elasticsearch.client.indices;
|
||||
|
||||
import org.elasticsearch.OpenSearchException;
|
||||
import org.elasticsearch.action.admin.indices.datastream.DataStreamsStatsAction;
|
||||
import org.opensearch.action.admin.indices.datastream.DataStreamsStatsAction;
|
||||
import org.elasticsearch.action.support.DefaultShardOperationFailedException;
|
||||
import org.elasticsearch.client.AbstractResponseTestCase;
|
||||
import org.elasticsearch.common.unit.ByteSizeValue;
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
|
||||
package org.elasticsearch.client.indices;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.datastream.GetDataStreamAction;
|
||||
import org.elasticsearch.action.admin.indices.datastream.GetDataStreamAction.Response.DataStreamInfo;
|
||||
import org.opensearch.action.admin.indices.datastream.GetDataStreamAction;
|
||||
import org.opensearch.action.admin.indices.datastream.GetDataStreamAction.Response.DataStreamInfo;
|
||||
import org.elasticsearch.client.AbstractResponseTestCase;
|
||||
import org.elasticsearch.cluster.health.ClusterHealthStatus;
|
||||
import org.elasticsearch.cluster.metadata.DataStream;
|
||||
|
|
|
@ -167,7 +167,7 @@ public class GetIndexResponseTests extends ESTestCase {
|
|||
}
|
||||
|
||||
private static void toXContent(GetIndexResponse response, XContentBuilder builder) throws IOException {
|
||||
// first we need to repackage from GetIndexResponse to org.elasticsearch.action.admin.indices.get.GetIndexResponse
|
||||
// first we need to repackage from GetIndexResponse to org.opensearch.action.admin.indices.get.GetIndexResponse
|
||||
ImmutableOpenMap.Builder<String, ImmutableOpenMap<String, MappingMetadata>> allMappings = ImmutableOpenMap.builder();
|
||||
ImmutableOpenMap.Builder<String, List<AliasMetadata>> aliases = ImmutableOpenMap.builder();
|
||||
ImmutableOpenMap.Builder<String, Settings> settings = ImmutableOpenMap.builder();
|
||||
|
@ -186,8 +186,8 @@ public class GetIndexResponseTests extends ESTestCase {
|
|||
defaultSettings.put(index, response.getDefaultSettings().get(index));
|
||||
}
|
||||
|
||||
org.elasticsearch.action.admin.indices.get.GetIndexResponse serverResponse
|
||||
= new org.elasticsearch.action.admin.indices.get.GetIndexResponse(
|
||||
org.opensearch.action.admin.indices.get.GetIndexResponse serverResponse
|
||||
= new org.opensearch.action.admin.indices.get.GetIndexResponse(
|
||||
response.getIndices(),
|
||||
allMappings.build(),
|
||||
aliases.build(),
|
||||
|
|
|
@ -72,8 +72,8 @@ public class GetIndexTemplatesResponseTests extends ESTestCase {
|
|||
|
||||
public void testParsingFromEsResponse() throws IOException {
|
||||
for (int runs = 0; runs < 20; runs++) {
|
||||
org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse esResponse =
|
||||
new org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse(new ArrayList<>());
|
||||
org.opensearch.action.admin.indices.template.get.GetIndexTemplatesResponse esResponse =
|
||||
new org.opensearch.action.admin.indices.template.get.GetIndexTemplatesResponse(new ArrayList<>());
|
||||
|
||||
XContentType xContentType = randomFrom(XContentType.values());
|
||||
int numTemplates = randomIntBetween(0, 32);
|
||||
|
@ -215,8 +215,8 @@ public class GetIndexTemplatesResponseTests extends ESTestCase {
|
|||
serverIndexTemplates.add(serverTemplateBuilder.build());
|
||||
|
||||
}
|
||||
org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse serverResponse = new
|
||||
org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse(serverIndexTemplates);
|
||||
org.opensearch.action.admin.indices.template.get.GetIndexTemplatesResponse serverResponse = new
|
||||
org.opensearch.action.admin.indices.template.get.GetIndexTemplatesResponse(serverIndexTemplates);
|
||||
serverResponse.toXContent(builder, ToXContent.EMPTY_PARAMS);
|
||||
}
|
||||
|
||||
|
|
|
@ -110,8 +110,8 @@ public class GetMappingsResponseTests extends ESTestCase {
|
|||
allMappings.put(indexEntry.getKey(), mappings.build());
|
||||
}
|
||||
|
||||
org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse serverResponse =
|
||||
new org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse(allMappings.build());
|
||||
org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse serverResponse =
|
||||
new org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse(allMappings.build());
|
||||
|
||||
builder.startObject();
|
||||
serverResponse.toXContent(builder, params);
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
package org.elasticsearch.client.indices;
|
||||
|
||||
import org.elasticsearch.action.ActionRequestValidationException;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
import org.elasticsearch.common.xcontent.XContentFactory;
|
||||
import org.elasticsearch.common.xcontent.XContentParser;
|
||||
|
|
|
@ -40,7 +40,7 @@ public class RandomCreateIndexGenerator {
|
|||
// Create a random server request, and copy its contents into the HLRC request.
|
||||
// Because client requests only accept typeless mappings, we must swap out the
|
||||
// mapping definition for one that does not contain types.
|
||||
org.elasticsearch.action.admin.indices.create.CreateIndexRequest serverRequest =
|
||||
org.opensearch.action.admin.indices.create.CreateIndexRequest serverRequest =
|
||||
org.elasticsearch.index.RandomCreateIndexGenerator.randomCreateIndexRequest();
|
||||
return new CreateIndexRequest(serverRequest.index())
|
||||
.settings(serverRequest.settings())
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
package org.elasticsearch.client.indices;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.client.AbstractRequestTestCase;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
import org.elasticsearch.common.xcontent.XContentParser;
|
||||
|
@ -28,7 +28,7 @@ import java.io.IOException;
|
|||
import java.util.Arrays;
|
||||
|
||||
public class ResizeRequestTests extends AbstractRequestTestCase<ResizeRequest,
|
||||
org.elasticsearch.action.admin.indices.shrink.ResizeRequest> {
|
||||
org.opensearch.action.admin.indices.shrink.ResizeRequest> {
|
||||
|
||||
@Override
|
||||
protected ResizeRequest createClientTestInstance() {
|
||||
|
@ -38,16 +38,16 @@ public class ResizeRequestTests extends AbstractRequestTestCase<ResizeRequest,
|
|||
}
|
||||
|
||||
@Override
|
||||
protected org.elasticsearch.action.admin.indices.shrink.ResizeRequest doParseToServerInstance(XContentParser parser)
|
||||
protected org.opensearch.action.admin.indices.shrink.ResizeRequest doParseToServerInstance(XContentParser parser)
|
||||
throws IOException {
|
||||
org.elasticsearch.action.admin.indices.shrink.ResizeRequest req
|
||||
= new org.elasticsearch.action.admin.indices.shrink.ResizeRequest("target", "source");
|
||||
org.opensearch.action.admin.indices.shrink.ResizeRequest req
|
||||
= new org.opensearch.action.admin.indices.shrink.ResizeRequest("target", "source");
|
||||
req.fromXContent(parser);
|
||||
return req;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected void assertInstances(org.elasticsearch.action.admin.indices.shrink.ResizeRequest serverInstance,
|
||||
protected void assertInstances(org.opensearch.action.admin.indices.shrink.ResizeRequest serverInstance,
|
||||
ResizeRequest clientTestInstance) {
|
||||
assertEquals(serverInstance.getSourceIndex(), clientTestInstance.getSourceIndex());
|
||||
assertEquals(serverInstance.getTargetIndexRequest().index(), clientTestInstance.getTargetIndex());
|
||||
|
|
|
@ -26,12 +26,12 @@ import org.elasticsearch.common.xcontent.XContentType;
|
|||
import java.io.IOException;
|
||||
|
||||
public class ResizeResponseTests extends
|
||||
AbstractResponseTestCase<org.elasticsearch.action.admin.indices.shrink.ResizeResponse, ResizeResponse> {
|
||||
AbstractResponseTestCase<org.opensearch.action.admin.indices.shrink.ResizeResponse, ResizeResponse> {
|
||||
|
||||
@Override
|
||||
protected org.elasticsearch.action.admin.indices.shrink.ResizeResponse createServerTestInstance(XContentType xContentType) {
|
||||
protected org.opensearch.action.admin.indices.shrink.ResizeResponse createServerTestInstance(XContentType xContentType) {
|
||||
boolean acked = randomBoolean();
|
||||
return new org.elasticsearch.action.admin.indices.shrink.ResizeResponse(acked, acked, randomAlphaOfLength(5));
|
||||
return new org.opensearch.action.admin.indices.shrink.ResizeResponse(acked, acked, randomAlphaOfLength(5));
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -40,7 +40,7 @@ public class ResizeResponseTests extends
|
|||
}
|
||||
|
||||
@Override
|
||||
protected void assertInstances(org.elasticsearch.action.admin.indices.shrink.ResizeResponse serverTestInstance,
|
||||
protected void assertInstances(org.opensearch.action.admin.indices.shrink.ResizeResponse serverTestInstance,
|
||||
ResizeResponse clientInstance) {
|
||||
assertEquals(serverTestInstance.isAcknowledged(), clientInstance.isAcknowledged());
|
||||
assertEquals(serverTestInstance.isShardsAcknowledged(), clientInstance.isShardsAcknowledged());
|
||||
|
|
|
@ -19,10 +19,10 @@
|
|||
|
||||
package org.elasticsearch.client.indices.rollover;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.rollover.Condition;
|
||||
import org.elasticsearch.action.admin.indices.rollover.MaxAgeCondition;
|
||||
import org.elasticsearch.action.admin.indices.rollover.MaxDocsCondition;
|
||||
import org.elasticsearch.action.admin.indices.rollover.MaxSizeCondition;
|
||||
import org.opensearch.action.admin.indices.rollover.Condition;
|
||||
import org.opensearch.action.admin.indices.rollover.MaxAgeCondition;
|
||||
import org.opensearch.action.admin.indices.rollover.MaxDocsCondition;
|
||||
import org.opensearch.action.admin.indices.rollover.MaxSizeCondition;
|
||||
import org.elasticsearch.common.unit.ByteSizeValue;
|
||||
import org.elasticsearch.common.unit.TimeValue;
|
||||
import org.elasticsearch.test.ESTestCase;
|
||||
|
|
|
@ -19,10 +19,10 @@
|
|||
|
||||
package org.elasticsearch.client.indices.rollover;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.rollover.Condition;
|
||||
import org.elasticsearch.action.admin.indices.rollover.MaxAgeCondition;
|
||||
import org.elasticsearch.action.admin.indices.rollover.MaxDocsCondition;
|
||||
import org.elasticsearch.action.admin.indices.rollover.MaxSizeCondition;
|
||||
import org.opensearch.action.admin.indices.rollover.Condition;
|
||||
import org.opensearch.action.admin.indices.rollover.MaxAgeCondition;
|
||||
import org.opensearch.action.admin.indices.rollover.MaxDocsCondition;
|
||||
import org.opensearch.action.admin.indices.rollover.MaxSizeCondition;
|
||||
import org.elasticsearch.common.unit.ByteSizeValue;
|
||||
import org.elasticsearch.common.unit.TimeValue;
|
||||
import org.elasticsearch.common.xcontent.ToXContent;
|
||||
|
@ -85,8 +85,8 @@ public class RolloverResponseTests extends ESTestCase {
|
|||
private static void toXContent(RolloverResponse response, XContentBuilder builder) throws IOException {
|
||||
Params params = new ToXContent.MapParams(
|
||||
Collections.singletonMap(BaseRestHandler.INCLUDE_TYPE_NAME_PARAMETER, "false"));
|
||||
org.elasticsearch.action.admin.indices.rollover.RolloverResponse serverResponse =
|
||||
new org.elasticsearch.action.admin.indices.rollover.RolloverResponse(
|
||||
org.opensearch.action.admin.indices.rollover.RolloverResponse serverResponse =
|
||||
new org.opensearch.action.admin.indices.rollover.RolloverResponse(
|
||||
response.getOldIndex(),
|
||||
response.getNewIndex(),
|
||||
response.getConditionStatus(),
|
||||
|
|
|
@ -22,7 +22,7 @@ package org.elasticsearch.index.query;
|
|||
import org.apache.lucene.document.FeatureField;
|
||||
import org.apache.lucene.search.MatchNoDocsQuery;
|
||||
import org.apache.lucene.search.Query;
|
||||
import org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest;
|
||||
import org.opensearch.action.admin.indices.mapping.put.PutMappingRequest;
|
||||
import org.elasticsearch.common.Strings;
|
||||
import org.elasticsearch.common.compress.CompressedXContent;
|
||||
import org.elasticsearch.index.mapper.MapperExtrasPlugin;
|
||||
|
|
|
@ -22,7 +22,7 @@ package org.opensearch.percolator;
|
|||
import org.apache.lucene.search.Query;
|
||||
import org.elasticsearch.OpenSearchException;
|
||||
import org.elasticsearch.ResourceNotFoundException;
|
||||
import org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest;
|
||||
import org.opensearch.action.admin.indices.mapping.put.PutMappingRequest;
|
||||
import org.elasticsearch.action.get.GetRequest;
|
||||
import org.elasticsearch.action.get.GetResponse;
|
||||
import org.elasticsearch.common.Strings;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
package org.opensearch.percolator;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest;
|
||||
import org.opensearch.action.admin.indices.mapping.put.PutMappingRequest;
|
||||
import org.elasticsearch.common.Strings;
|
||||
import org.elasticsearch.common.bytes.BytesArray;
|
||||
import org.elasticsearch.common.compress.CompressedXContent;
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
package org.opensearch.index.rankeval;
|
||||
|
||||
import org.elasticsearch.OpenSearchException;
|
||||
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequest.AliasActions;
|
||||
import org.opensearch.action.admin.indices.alias.IndicesAliasesRequest.AliasActions;
|
||||
import org.elasticsearch.action.search.SearchRequest;
|
||||
import org.elasticsearch.action.support.IndicesOptions;
|
||||
import org.elasticsearch.index.IndexNotFoundException;
|
||||
|
|
|
@ -24,8 +24,8 @@ import org.apache.logging.log4j.message.ParameterizedMessage;
|
|||
import org.elasticsearch.action.ActionListener;
|
||||
import org.elasticsearch.action.DocWriteRequest;
|
||||
import org.elasticsearch.action.DocWriteResponse;
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshResponse;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshResponse;
|
||||
import org.elasticsearch.action.bulk.BackoffPolicy;
|
||||
import org.elasticsearch.action.bulk.BulkItemResponse;
|
||||
import org.elasticsearch.action.bulk.BulkItemResponse.Failure;
|
||||
|
|
|
@ -30,7 +30,7 @@ import org.elasticsearch.action.ActionResponse;
|
|||
import org.elasticsearch.action.DocWriteRequest;
|
||||
import org.elasticsearch.action.DocWriteResponse;
|
||||
import org.elasticsearch.action.DocWriteResponse.Result;
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.elasticsearch.action.bulk.BackoffPolicy;
|
||||
import org.elasticsearch.action.bulk.BulkItemResponse;
|
||||
import org.elasticsearch.action.bulk.BulkItemResponse.Failure;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
package org.elasticsearch.index.reindex;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.index.IndexRequestBuilder;
|
||||
import org.elasticsearch.cluster.ClusterInfoService;
|
||||
import org.elasticsearch.cluster.InternalClusterInfoService;
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
package org.elasticsearch.index.mapper.size;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.elasticsearch.action.get.GetResponse;
|
||||
import org.elasticsearch.action.support.master.AcknowledgedResponse;
|
||||
import org.elasticsearch.common.xcontent.XContentBuilder;
|
||||
|
|
|
@ -19,40 +19,40 @@
|
|||
|
||||
package org.elasticsearch.action;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.admin.indices.analyze.AnalyzeAction;
|
||||
import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheAction;
|
||||
import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheRequest;
|
||||
import org.elasticsearch.action.admin.indices.close.CloseIndexAction;
|
||||
import org.elasticsearch.action.admin.indices.close.CloseIndexRequest;
|
||||
import org.elasticsearch.action.admin.indices.delete.DeleteIndexAction;
|
||||
import org.elasticsearch.action.admin.indices.delete.DeleteIndexRequest;
|
||||
import org.elasticsearch.action.admin.indices.flush.FlushRequest;
|
||||
import org.elasticsearch.action.admin.indices.flush.TransportShardFlushAction;
|
||||
import org.elasticsearch.action.admin.indices.forcemerge.ForceMergeAction;
|
||||
import org.elasticsearch.action.admin.indices.forcemerge.ForceMergeRequest;
|
||||
import org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsAction;
|
||||
import org.elasticsearch.action.admin.indices.mapping.get.GetFieldMappingsRequest;
|
||||
import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsAction;
|
||||
import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsRequest;
|
||||
import org.elasticsearch.action.admin.indices.mapping.put.PutMappingAction;
|
||||
import org.elasticsearch.action.admin.indices.mapping.put.PutMappingRequest;
|
||||
import org.elasticsearch.action.admin.indices.open.OpenIndexAction;
|
||||
import org.elasticsearch.action.admin.indices.open.OpenIndexRequest;
|
||||
import org.elasticsearch.action.admin.indices.recovery.RecoveryAction;
|
||||
import org.elasticsearch.action.admin.indices.recovery.RecoveryRequest;
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.elasticsearch.action.admin.indices.refresh.TransportShardRefreshAction;
|
||||
import org.elasticsearch.action.admin.indices.segments.IndicesSegmentsAction;
|
||||
import org.elasticsearch.action.admin.indices.segments.IndicesSegmentsRequest;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsAction;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsRequest;
|
||||
import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsAction;
|
||||
import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
||||
import org.elasticsearch.action.admin.indices.stats.IndicesStatsAction;
|
||||
import org.elasticsearch.action.admin.indices.stats.IndicesStatsRequest;
|
||||
import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryAction;
|
||||
import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryRequest;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.analyze.AnalyzeAction;
|
||||
import org.opensearch.action.admin.indices.cache.clear.ClearIndicesCacheAction;
|
||||
import org.opensearch.action.admin.indices.cache.clear.ClearIndicesCacheRequest;
|
||||
import org.opensearch.action.admin.indices.close.CloseIndexAction;
|
||||
import org.opensearch.action.admin.indices.close.CloseIndexRequest;
|
||||
import org.opensearch.action.admin.indices.delete.DeleteIndexAction;
|
||||
import org.opensearch.action.admin.indices.delete.DeleteIndexRequest;
|
||||
import org.opensearch.action.admin.indices.flush.FlushRequest;
|
||||
import org.opensearch.action.admin.indices.flush.TransportShardFlushAction;
|
||||
import org.opensearch.action.admin.indices.forcemerge.ForceMergeAction;
|
||||
import org.opensearch.action.admin.indices.forcemerge.ForceMergeRequest;
|
||||
import org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsAction;
|
||||
import org.opensearch.action.admin.indices.mapping.get.GetFieldMappingsRequest;
|
||||
import org.opensearch.action.admin.indices.mapping.get.GetMappingsAction;
|
||||
import org.opensearch.action.admin.indices.mapping.get.GetMappingsRequest;
|
||||
import org.opensearch.action.admin.indices.mapping.put.PutMappingAction;
|
||||
import org.opensearch.action.admin.indices.mapping.put.PutMappingRequest;
|
||||
import org.opensearch.action.admin.indices.open.OpenIndexAction;
|
||||
import org.opensearch.action.admin.indices.open.OpenIndexRequest;
|
||||
import org.opensearch.action.admin.indices.recovery.RecoveryAction;
|
||||
import org.opensearch.action.admin.indices.recovery.RecoveryRequest;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.opensearch.action.admin.indices.refresh.TransportShardRefreshAction;
|
||||
import org.opensearch.action.admin.indices.segments.IndicesSegmentsAction;
|
||||
import org.opensearch.action.admin.indices.segments.IndicesSegmentsRequest;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsAction;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsRequest;
|
||||
import org.opensearch.action.admin.indices.settings.put.UpdateSettingsAction;
|
||||
import org.opensearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
||||
import org.opensearch.action.admin.indices.stats.IndicesStatsAction;
|
||||
import org.opensearch.action.admin.indices.stats.IndicesStatsRequest;
|
||||
import org.opensearch.action.admin.indices.validate.query.ValidateQueryAction;
|
||||
import org.opensearch.action.admin.indices.validate.query.ValidateQueryRequest;
|
||||
import org.elasticsearch.action.bulk.BulkAction;
|
||||
import org.elasticsearch.action.bulk.BulkRequest;
|
||||
import org.elasticsearch.action.delete.DeleteRequest;
|
||||
|
|
|
@ -31,9 +31,9 @@ import org.elasticsearch.action.admin.cluster.node.tasks.get.GetTaskRequest;
|
|||
import org.elasticsearch.action.admin.cluster.node.tasks.get.GetTaskResponse;
|
||||
import org.elasticsearch.action.admin.cluster.node.tasks.list.ListTasksAction;
|
||||
import org.elasticsearch.action.admin.cluster.node.tasks.list.ListTasksResponse;
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshAction;
|
||||
import org.elasticsearch.action.admin.indices.upgrade.post.UpgradeAction;
|
||||
import org.elasticsearch.action.admin.indices.validate.query.ValidateQueryAction;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshAction;
|
||||
import org.opensearch.action.admin.indices.upgrade.post.UpgradeAction;
|
||||
import org.opensearch.action.admin.indices.validate.query.ValidateQueryAction;
|
||||
import org.elasticsearch.action.bulk.BulkAction;
|
||||
import org.elasticsearch.action.index.IndexAction;
|
||||
import org.elasticsearch.action.index.IndexResponse;
|
||||
|
|
|
@ -20,9 +20,10 @@
|
|||
package org.elasticsearch.action.admin.indices.alias;
|
||||
|
||||
import org.elasticsearch.action.RequestValidators;
|
||||
import org.elasticsearch.action.admin.indices.alias.exists.AliasesExistResponse;
|
||||
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesRequest;
|
||||
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesResponse;
|
||||
import org.opensearch.action.admin.indices.alias.IndicesAliasesRequest;
|
||||
import org.opensearch.action.admin.indices.alias.exists.AliasesExistResponse;
|
||||
import org.opensearch.action.admin.indices.alias.get.GetAliasesRequest;
|
||||
import org.opensearch.action.admin.indices.alias.get.GetAliasesResponse;
|
||||
import org.elasticsearch.cluster.metadata.AliasMetadata;
|
||||
import org.elasticsearch.common.settings.Setting;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
|
|
|
@ -21,6 +21,7 @@ package org.elasticsearch.action.admin.indices.cache.clear;
|
|||
|
||||
import org.elasticsearch.test.ESIntegTestCase;
|
||||
import org.elasticsearch.test.ESIntegTestCase.ClusterScope;
|
||||
import org.opensearch.action.admin.indices.cache.clear.ClearIndicesCacheResponse;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
|
|
|
@ -19,9 +19,9 @@
|
|||
package org.elasticsearch.action.admin.indices.create;
|
||||
|
||||
import org.elasticsearch.Version;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.elasticsearch.action.admin.indices.shrink.ResizeType;
|
||||
import org.elasticsearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.opensearch.action.admin.indices.shrink.ResizeType;
|
||||
import org.opensearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.elasticsearch.cluster.routing.allocation.decider.EnableAllocationDecider;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
import org.elasticsearch.common.xcontent.XContentType;
|
||||
|
|
|
@ -22,8 +22,8 @@ package org.elasticsearch.action.admin.indices.create;
|
|||
import org.elasticsearch.action.ActionListener;
|
||||
import org.elasticsearch.action.UnavailableShardsException;
|
||||
import org.elasticsearch.action.admin.cluster.state.ClusterStateResponse;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.elasticsearch.action.search.SearchResponse;
|
||||
import org.elasticsearch.action.support.ActiveShardCount;
|
||||
import org.elasticsearch.action.support.IndicesOptions;
|
||||
|
@ -44,6 +44,7 @@ import org.elasticsearch.indices.IndicesService;
|
|||
import org.elasticsearch.test.ESIntegTestCase;
|
||||
import org.elasticsearch.test.ESIntegTestCase.ClusterScope;
|
||||
import org.elasticsearch.test.ESIntegTestCase.Scope;
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexResponse;
|
||||
|
||||
import java.util.HashMap;
|
||||
import java.util.concurrent.CountDownLatch;
|
||||
|
|
|
@ -28,14 +28,14 @@ import org.elasticsearch.Version;
|
|||
import org.elasticsearch.action.admin.cluster.reroute.ClusterRerouteResponse;
|
||||
import org.elasticsearch.action.admin.cluster.state.ClusterStateRequest;
|
||||
import org.elasticsearch.action.admin.cluster.state.ClusterStateResponse;
|
||||
import org.elasticsearch.action.admin.indices.segments.IndexShardSegments;
|
||||
import org.elasticsearch.action.admin.indices.segments.IndicesSegmentResponse;
|
||||
import org.elasticsearch.action.admin.indices.segments.ShardSegments;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.elasticsearch.action.admin.indices.shrink.ResizeType;
|
||||
import org.elasticsearch.action.admin.indices.stats.CommonStats;
|
||||
import org.elasticsearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.elasticsearch.action.admin.indices.stats.ShardStats;
|
||||
import org.opensearch.action.admin.indices.segments.IndexShardSegments;
|
||||
import org.opensearch.action.admin.indices.segments.IndicesSegmentResponse;
|
||||
import org.opensearch.action.admin.indices.segments.ShardSegments;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.opensearch.action.admin.indices.shrink.ResizeType;
|
||||
import org.opensearch.action.admin.indices.stats.CommonStats;
|
||||
import org.opensearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.opensearch.action.admin.indices.stats.ShardStats;
|
||||
import org.elasticsearch.action.index.IndexRequest;
|
||||
import org.elasticsearch.action.support.ActiveShardCount;
|
||||
import org.elasticsearch.client.Client;
|
||||
|
|
|
@ -28,11 +28,11 @@ import org.apache.lucene.util.Constants;
|
|||
import org.elasticsearch.Version;
|
||||
import org.elasticsearch.action.admin.cluster.state.ClusterStateRequest;
|
||||
import org.elasticsearch.action.admin.cluster.state.ClusterStateResponse;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.elasticsearch.action.admin.indices.shrink.ResizeType;
|
||||
import org.elasticsearch.action.admin.indices.stats.CommonStats;
|
||||
import org.elasticsearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.elasticsearch.action.admin.indices.stats.ShardStats;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.opensearch.action.admin.indices.shrink.ResizeType;
|
||||
import org.opensearch.action.admin.indices.stats.CommonStats;
|
||||
import org.opensearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.opensearch.action.admin.indices.stats.ShardStats;
|
||||
import org.elasticsearch.action.get.GetResponse;
|
||||
import org.elasticsearch.action.index.IndexRequest;
|
||||
import org.elasticsearch.action.index.IndexRequestBuilder;
|
||||
|
@ -57,6 +57,7 @@ import org.elasticsearch.index.shard.IndexShard;
|
|||
import org.elasticsearch.indices.IndicesService;
|
||||
import org.elasticsearch.test.ESIntegTestCase;
|
||||
import org.elasticsearch.test.VersionUtils;
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexRequestBuilder;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.UncheckedIOException;
|
||||
|
|
|
@ -21,6 +21,7 @@ package org.elasticsearch.action.admin.indices.flush;
|
|||
|
||||
import org.elasticsearch.test.ESIntegTestCase;
|
||||
import org.elasticsearch.test.ESIntegTestCase.ClusterScope;
|
||||
import org.opensearch.action.admin.indices.flush.FlushResponse;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
|
|
|
@ -21,6 +21,7 @@ package org.elasticsearch.action.admin.indices.forcemerge;
|
|||
|
||||
import org.elasticsearch.test.ESIntegTestCase;
|
||||
import org.elasticsearch.test.ESIntegTestCase.ClusterScope;
|
||||
import org.opensearch.action.admin.indices.forcemerge.ForceMergeResponse;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
package org.elasticsearch.action.admin.indices.forcemerge;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.flush.FlushResponse;
|
||||
import org.opensearch.action.admin.indices.flush.FlushResponse;
|
||||
import org.elasticsearch.cluster.ClusterState;
|
||||
import org.elasticsearch.cluster.metadata.IndexMetadata;
|
||||
import org.elasticsearch.cluster.routing.IndexRoutingTable;
|
||||
|
@ -30,6 +30,7 @@ import org.elasticsearch.index.engine.Engine;
|
|||
import org.elasticsearch.index.shard.IndexShard;
|
||||
import org.elasticsearch.indices.IndicesService;
|
||||
import org.elasticsearch.test.ESIntegTestCase;
|
||||
import org.opensearch.action.admin.indices.forcemerge.ForceMergeResponse;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
package org.elasticsearch.action.admin.indices.get;
|
||||
|
||||
import com.carrotsearch.hppc.cursors.ObjectObjectCursor;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.admin.indices.get.GetIndexRequest.Feature;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.get.GetIndexRequest.Feature;
|
||||
import org.elasticsearch.cluster.metadata.AliasMetadata;
|
||||
import org.elasticsearch.cluster.metadata.MappingMetadata;
|
||||
import org.elasticsearch.common.collect.ImmutableOpenMap;
|
||||
|
@ -29,6 +29,8 @@ import org.elasticsearch.common.settings.Settings;
|
|||
import org.elasticsearch.common.xcontent.XContentType;
|
||||
import org.elasticsearch.index.IndexNotFoundException;
|
||||
import org.elasticsearch.test.ESIntegTestCase;
|
||||
import org.opensearch.action.admin.indices.get.GetIndexRequestBuilder;
|
||||
import org.opensearch.action.admin.indices.get.GetIndexResponse;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
|
|
|
@ -25,6 +25,7 @@ import org.elasticsearch.index.Index;
|
|||
import org.elasticsearch.plugins.ActionPlugin;
|
||||
import org.elasticsearch.plugins.Plugin;
|
||||
import org.elasticsearch.test.ESSingleNodeTestCase;
|
||||
import org.opensearch.action.admin.indices.mapping.put.PutMappingRequest;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
|
|
|
@ -22,6 +22,7 @@ package org.elasticsearch.action.admin.indices.refresh;
|
|||
|
||||
import org.elasticsearch.test.ESIntegTestCase;
|
||||
import org.elasticsearch.test.ESIntegTestCase.ClusterScope;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshResponse;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
|
|
|
@ -23,9 +23,9 @@ import org.apache.logging.log4j.Level;
|
|||
import org.apache.logging.log4j.LogManager;
|
||||
import org.apache.logging.log4j.Logger;
|
||||
import org.elasticsearch.ResourceAlreadyExistsException;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.elasticsearch.action.admin.indices.template.put.PutIndexTemplateRequestBuilder;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.opensearch.action.admin.indices.template.put.PutIndexTemplateRequestBuilder;
|
||||
import org.elasticsearch.cluster.ClusterState;
|
||||
import org.elasticsearch.cluster.metadata.AutoExpandReplicas;
|
||||
import org.elasticsearch.cluster.metadata.IndexMetadata;
|
||||
|
@ -40,6 +40,10 @@ import org.elasticsearch.plugins.Plugin;
|
|||
import org.elasticsearch.test.ESIntegTestCase;
|
||||
import org.elasticsearch.test.InternalSettingsPlugin;
|
||||
import org.elasticsearch.test.MockLogAppender;
|
||||
import org.opensearch.action.admin.indices.rollover.Condition;
|
||||
import org.opensearch.action.admin.indices.rollover.MaxAgeCondition;
|
||||
import org.opensearch.action.admin.indices.rollover.MaxSizeCondition;
|
||||
import org.opensearch.action.admin.indices.rollover.RolloverResponse;
|
||||
|
||||
import java.time.ZoneOffset;
|
||||
import java.time.ZonedDateTime;
|
||||
|
|
|
@ -21,6 +21,7 @@ package org.elasticsearch.action.admin.indices.segments;
|
|||
|
||||
import org.elasticsearch.test.ESIntegTestCase;
|
||||
import org.elasticsearch.test.ESIntegTestCase.ClusterScope;
|
||||
import org.opensearch.action.admin.indices.segments.IndicesSegmentResponse;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
|
|
|
@ -39,6 +39,7 @@ import org.elasticsearch.indices.IndicesService;
|
|||
import org.elasticsearch.plugins.Plugin;
|
||||
import org.elasticsearch.test.ESIntegTestCase;
|
||||
import org.elasticsearch.test.store.MockFSIndexStore;
|
||||
import org.opensearch.action.admin.indices.shards.IndicesShardStoresResponse;
|
||||
|
||||
import java.util.Arrays;
|
||||
import java.util.Collection;
|
||||
|
|
|
@ -23,6 +23,7 @@ import org.elasticsearch.cluster.block.ClusterBlockException;
|
|||
import org.elasticsearch.cluster.metadata.IndexMetadata;
|
||||
import org.elasticsearch.test.ESIntegTestCase;
|
||||
import org.elasticsearch.test.ESIntegTestCase.ClusterScope;
|
||||
import org.opensearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
|
||||
import java.util.Arrays;
|
||||
|
||||
|
|
|
@ -23,8 +23,8 @@ package org.elasticsearch.action.bulk;
|
|||
import org.elasticsearch.OpenSearchException;
|
||||
import org.elasticsearch.Version;
|
||||
import org.elasticsearch.action.ActionRequestValidationException;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.elasticsearch.action.index.IndexRequest;
|
||||
import org.elasticsearch.action.index.IndexResponse;
|
||||
import org.elasticsearch.action.ingest.PutPipelineRequest;
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
package org.elasticsearch.action.bulk;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshRequest;
|
||||
import org.elasticsearch.action.search.SearchResponse;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
import org.elasticsearch.common.unit.TimeValue;
|
||||
|
|
|
@ -21,7 +21,7 @@ package org.elasticsearch.action.bulk;
|
|||
|
||||
import org.elasticsearch.action.DocWriteRequest.OpType;
|
||||
import org.elasticsearch.action.DocWriteResponse;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.delete.DeleteRequest;
|
||||
import org.elasticsearch.action.get.GetResponse;
|
||||
import org.elasticsearch.action.index.IndexRequest;
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
package org.elasticsearch.action.support;
|
||||
|
||||
import org.elasticsearch.action.ActionFuture;
|
||||
import org.elasticsearch.action.admin.indices.create.CreateIndexResponse;
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexResponse;
|
||||
import org.elasticsearch.common.Priority;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
import org.elasticsearch.test.ESIntegTestCase;
|
||||
|
|
|
@ -21,7 +21,7 @@ package org.elasticsearch.action.support;
|
|||
|
||||
import org.elasticsearch.action.UnavailableShardsException;
|
||||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthResponse;
|
||||
import org.elasticsearch.action.admin.indices.create.CreateIndexResponse;
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexResponse;
|
||||
import org.elasticsearch.cluster.health.ClusterHealthStatus;
|
||||
import org.elasticsearch.common.Priority;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
|
|
|
@ -28,7 +28,7 @@ import org.apache.lucene.index.TermsEnum;
|
|||
import org.apache.lucene.util.BytesRef;
|
||||
import org.elasticsearch.action.ActionFuture;
|
||||
import org.elasticsearch.action.admin.cluster.shards.ClusterSearchShardsResponse;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.index.IndexRequestBuilder;
|
||||
import org.elasticsearch.common.Strings;
|
||||
import org.elasticsearch.common.lucene.uid.Versions;
|
||||
|
|
|
@ -24,7 +24,7 @@ import org.apache.lucene.index.Fields;
|
|||
import org.apache.lucene.index.Terms;
|
||||
import org.apache.lucene.index.TermsEnum;
|
||||
import org.elasticsearch.OpenSearchException;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.common.lucene.uid.Versions;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
import org.elasticsearch.index.IndexNotFoundException;
|
||||
|
|
|
@ -20,11 +20,11 @@
|
|||
package org.elasticsearch.aliases;
|
||||
|
||||
import com.carrotsearch.hppc.cursors.ObjectObjectCursor;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequest.AliasActions;
|
||||
import org.elasticsearch.action.admin.indices.alias.exists.AliasesExistResponse;
|
||||
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesResponse;
|
||||
import org.elasticsearch.action.admin.indices.create.CreateIndexRequestBuilder;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.IndicesAliasesRequest.AliasActions;
|
||||
import org.opensearch.action.admin.indices.alias.exists.AliasesExistResponse;
|
||||
import org.opensearch.action.admin.indices.alias.get.GetAliasesResponse;
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexRequestBuilder;
|
||||
import org.elasticsearch.action.delete.DeleteResponse;
|
||||
import org.elasticsearch.action.index.IndexResponse;
|
||||
import org.elasticsearch.action.search.SearchResponse;
|
||||
|
|
|
@ -21,10 +21,10 @@ package org.elasticsearch.blocks;
|
|||
|
||||
import org.elasticsearch.ExceptionsHelper;
|
||||
import org.elasticsearch.action.ActionRequestValidationException;
|
||||
import org.elasticsearch.action.admin.indices.create.CreateIndexResponse;
|
||||
import org.elasticsearch.action.admin.indices.exists.indices.IndicesExistsResponse;
|
||||
import org.elasticsearch.action.admin.indices.readonly.AddIndexBlockRequestBuilder;
|
||||
import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsRequestBuilder;
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexResponse;
|
||||
import org.opensearch.action.admin.indices.exists.indices.IndicesExistsResponse;
|
||||
import org.opensearch.action.admin.indices.readonly.AddIndexBlockRequestBuilder;
|
||||
import org.opensearch.action.admin.indices.settings.put.UpdateSettingsRequestBuilder;
|
||||
import org.elasticsearch.action.index.IndexRequestBuilder;
|
||||
import org.elasticsearch.action.index.IndexResponse;
|
||||
import org.elasticsearch.action.support.ActiveShardCount;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
package org.elasticsearch.client.documentation;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.elasticsearch.client.Client;
|
||||
import org.elasticsearch.cluster.metadata.MappingMetadata;
|
||||
import org.elasticsearch.common.collect.ImmutableOpenMap;
|
||||
|
|
|
@ -21,7 +21,7 @@ package org.elasticsearch.cluster;
|
|||
|
||||
import org.elasticsearch.action.ActionFuture;
|
||||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthResponse;
|
||||
import org.elasticsearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
||||
import org.opensearch.action.admin.indices.settings.put.UpdateSettingsRequest;
|
||||
import org.elasticsearch.action.support.IndicesOptions;
|
||||
import org.elasticsearch.action.support.PlainActionFuture;
|
||||
import org.elasticsearch.cluster.health.ClusterHealthStatus;
|
||||
|
|
|
@ -24,7 +24,7 @@ import org.elasticsearch.OpenSearchException;
|
|||
import org.elasticsearch.action.ActionListener;
|
||||
import org.elasticsearch.action.ActionRequest;
|
||||
import org.elasticsearch.action.admin.cluster.node.stats.NodesStatsAction;
|
||||
import org.elasticsearch.action.admin.indices.stats.IndicesStatsAction;
|
||||
import org.opensearch.action.admin.indices.stats.IndicesStatsAction;
|
||||
import org.elasticsearch.action.support.ActionFilter;
|
||||
import org.elasticsearch.action.support.ActionFilters;
|
||||
import org.elasticsearch.cluster.metadata.IndexMetadata;
|
||||
|
|
|
@ -21,7 +21,7 @@ package org.elasticsearch.cluster;
|
|||
|
||||
import org.elasticsearch.Version;
|
||||
import org.elasticsearch.action.admin.cluster.state.ClusterStateResponse;
|
||||
import org.elasticsearch.action.admin.indices.template.get.GetIndexTemplatesResponse;
|
||||
import org.opensearch.action.admin.indices.template.get.GetIndexTemplatesResponse;
|
||||
import org.elasticsearch.action.support.IndicesOptions;
|
||||
import org.elasticsearch.client.Client;
|
||||
import org.elasticsearch.client.Requests;
|
||||
|
|
|
@ -25,7 +25,7 @@ import org.elasticsearch.action.admin.cluster.configuration.ClearVotingConfigExc
|
|||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthRequest;
|
||||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthRequestBuilder;
|
||||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthResponse;
|
||||
import org.elasticsearch.action.admin.indices.create.CreateIndexRequest;
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexRequest;
|
||||
import org.elasticsearch.client.Client;
|
||||
import org.elasticsearch.client.Requests;
|
||||
import org.elasticsearch.cluster.ClusterState;
|
||||
|
|
|
@ -22,7 +22,7 @@ package org.elasticsearch.cluster.coordination;
|
|||
import org.elasticsearch.Version;
|
||||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthResponse;
|
||||
import org.elasticsearch.action.admin.cluster.node.stats.NodesStatsResponse;
|
||||
import org.elasticsearch.action.admin.indices.recovery.RecoveryResponse;
|
||||
import org.opensearch.action.admin.indices.recovery.RecoveryResponse;
|
||||
import org.elasticsearch.cluster.ClusterState;
|
||||
import org.elasticsearch.cluster.metadata.Metadata;
|
||||
import org.elasticsearch.cluster.node.DiscoveryNode;
|
||||
|
|
|
@ -21,7 +21,7 @@ package org.elasticsearch.cluster.routing;
|
|||
|
||||
import org.apache.lucene.store.SimpleFSDirectory;
|
||||
import org.elasticsearch.action.admin.cluster.allocation.ClusterAllocationExplanation;
|
||||
import org.elasticsearch.action.admin.indices.stats.ShardStats;
|
||||
import org.opensearch.action.admin.indices.stats.ShardStats;
|
||||
import org.elasticsearch.action.index.IndexRequestBuilder;
|
||||
import org.elasticsearch.client.Requests;
|
||||
import org.elasticsearch.cluster.ClusterState;
|
||||
|
|
|
@ -22,8 +22,8 @@ package org.elasticsearch.cluster.routing;
|
|||
import com.carrotsearch.hppc.cursors.IntObjectCursor;
|
||||
import org.elasticsearch.action.DocWriteResponse;
|
||||
import org.elasticsearch.action.admin.cluster.reroute.ClusterRerouteRequestBuilder;
|
||||
import org.elasticsearch.action.admin.indices.shards.IndicesShardStoresResponse;
|
||||
import org.elasticsearch.action.admin.indices.stats.ShardStats;
|
||||
import org.opensearch.action.admin.indices.shards.IndicesShardStoresResponse;
|
||||
import org.opensearch.action.admin.indices.stats.ShardStats;
|
||||
import org.elasticsearch.action.bulk.BulkResponse;
|
||||
import org.elasticsearch.action.index.IndexResponse;
|
||||
import org.elasticsearch.action.support.ActiveShardCount;
|
||||
|
|
|
@ -25,7 +25,7 @@ import org.apache.lucene.mockfile.FilterPath;
|
|||
import org.apache.lucene.util.Constants;
|
||||
import org.elasticsearch.action.admin.cluster.snapshots.create.CreateSnapshotResponse;
|
||||
import org.elasticsearch.action.admin.cluster.snapshots.restore.RestoreSnapshotResponse;
|
||||
import org.elasticsearch.action.admin.indices.stats.ShardStats;
|
||||
import org.opensearch.action.admin.indices.stats.ShardStats;
|
||||
import org.elasticsearch.action.index.IndexRequestBuilder;
|
||||
import org.elasticsearch.cluster.ClusterInfoService;
|
||||
import org.elasticsearch.cluster.InternalClusterInfoService;
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
package org.elasticsearch.cluster.routing.allocation.decider;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.stats.ShardStats;
|
||||
import org.opensearch.action.admin.indices.stats.ShardStats;
|
||||
import org.elasticsearch.action.support.WriteRequest;
|
||||
import org.elasticsearch.cluster.ClusterInfoService;
|
||||
import org.elasticsearch.cluster.ClusterState;
|
||||
|
|
|
@ -21,7 +21,7 @@ package org.elasticsearch.cluster.settings;
|
|||
|
||||
import org.elasticsearch.action.admin.cluster.node.info.NodeInfo;
|
||||
import org.elasticsearch.action.admin.cluster.node.info.NodesInfoResponse;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.elasticsearch.common.settings.Setting;
|
||||
import org.elasticsearch.common.settings.Setting.Property;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
|
|
|
@ -20,7 +20,7 @@ package org.elasticsearch.cluster.shards;
|
|||
|
||||
import org.elasticsearch.action.admin.cluster.shards.ClusterSearchShardsGroup;
|
||||
import org.elasticsearch.action.admin.cluster.shards.ClusterSearchShardsResponse;
|
||||
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequest.AliasActions;
|
||||
import org.opensearch.action.admin.indices.alias.IndicesAliasesRequest.AliasActions;
|
||||
import org.elasticsearch.common.Priority;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
import org.elasticsearch.test.ESIntegTestCase;
|
||||
|
|
|
@ -20,7 +20,7 @@ package org.elasticsearch.discovery;
|
|||
|
||||
import com.carrotsearch.randomizedtesting.RandomizedTest;
|
||||
import org.apache.lucene.mockfile.FilterFileSystemProvider;
|
||||
import org.elasticsearch.action.admin.indices.stats.ShardStats;
|
||||
import org.opensearch.action.admin.indices.stats.ShardStats;
|
||||
import org.elasticsearch.cluster.metadata.IndexMetadata;
|
||||
import org.elasticsearch.common.io.PathUtils;
|
||||
import org.elasticsearch.common.io.PathUtilsForTesting;
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
|
||||
package org.elasticsearch.discovery;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.elasticsearch.action.admin.indices.stats.ShardStats;
|
||||
import org.opensearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.opensearch.action.admin.indices.stats.ShardStats;
|
||||
import org.elasticsearch.action.bulk.BulkRequestBuilder;
|
||||
import org.elasticsearch.action.bulk.BulkResponse;
|
||||
import org.elasticsearch.cluster.ClusterState;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
package org.elasticsearch.document;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
|
||||
import static org.elasticsearch.client.Requests.createIndexRequest;
|
||||
|
||||
|
|
|
@ -19,10 +19,10 @@
|
|||
|
||||
package org.elasticsearch.document;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.cache.clear.ClearIndicesCacheResponse;
|
||||
import org.elasticsearch.action.admin.indices.flush.FlushResponse;
|
||||
import org.elasticsearch.action.admin.indices.forcemerge.ForceMergeResponse;
|
||||
import org.elasticsearch.action.admin.indices.refresh.RefreshResponse;
|
||||
import org.opensearch.action.admin.indices.cache.clear.ClearIndicesCacheResponse;
|
||||
import org.opensearch.action.admin.indices.flush.FlushResponse;
|
||||
import org.opensearch.action.admin.indices.forcemerge.ForceMergeResponse;
|
||||
import org.opensearch.action.admin.indices.refresh.RefreshResponse;
|
||||
import org.elasticsearch.action.bulk.BulkResponse;
|
||||
import org.elasticsearch.action.delete.DeleteResponse;
|
||||
import org.elasticsearch.action.get.GetResponse;
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
package org.elasticsearch.document;
|
||||
|
||||
import org.elasticsearch.action.admin.cluster.health.ClusterHealthResponse;
|
||||
import org.elasticsearch.action.admin.indices.recovery.RecoveryResponse;
|
||||
import org.opensearch.action.admin.indices.recovery.RecoveryResponse;
|
||||
import org.elasticsearch.action.bulk.BulkItemResponse;
|
||||
import org.elasticsearch.action.bulk.BulkRequestBuilder;
|
||||
import org.elasticsearch.action.bulk.BulkResponse;
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
package org.elasticsearch.explain;
|
||||
|
||||
import org.apache.lucene.search.Explanation;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.explain.ExplainResponse;
|
||||
import org.elasticsearch.common.io.stream.InputStreamStreamInput;
|
||||
import org.elasticsearch.common.io.stream.OutputStreamStreamOutput;
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
package org.elasticsearch.gateway;
|
||||
|
||||
import org.elasticsearch.action.admin.cluster.state.ClusterStateResponse;
|
||||
import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.elasticsearch.cluster.coordination.Coordinator;
|
||||
import org.elasticsearch.cluster.metadata.IndexMetadata;
|
||||
import org.elasticsearch.common.collect.ImmutableOpenMap;
|
||||
|
|
|
@ -24,9 +24,9 @@ import org.elasticsearch.action.admin.cluster.configuration.AddVotingConfigExclu
|
|||
import org.elasticsearch.action.admin.cluster.configuration.AddVotingConfigExclusionsRequest;
|
||||
import org.elasticsearch.action.admin.cluster.configuration.ClearVotingConfigExclusionsAction;
|
||||
import org.elasticsearch.action.admin.cluster.configuration.ClearVotingConfigExclusionsRequest;
|
||||
import org.elasticsearch.action.admin.indices.recovery.RecoveryResponse;
|
||||
import org.elasticsearch.action.admin.indices.stats.IndexStats;
|
||||
import org.elasticsearch.action.admin.indices.stats.ShardStats;
|
||||
import org.opensearch.action.admin.indices.recovery.RecoveryResponse;
|
||||
import org.opensearch.action.admin.indices.stats.IndexStats;
|
||||
import org.opensearch.action.admin.indices.stats.ShardStats;
|
||||
import org.elasticsearch.action.support.ActionTestUtils;
|
||||
import org.elasticsearch.cluster.ClusterState;
|
||||
import org.elasticsearch.cluster.coordination.ElectionSchedulerFactory;
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
|
||||
package org.elasticsearch.gateway;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.flush.SyncedFlushResponse;
|
||||
import org.elasticsearch.action.admin.indices.stats.ShardStats;
|
||||
import org.opensearch.action.admin.indices.flush.SyncedFlushResponse;
|
||||
import org.opensearch.action.admin.indices.stats.ShardStats;
|
||||
import org.elasticsearch.cluster.metadata.IndexMetadata;
|
||||
import org.elasticsearch.cluster.node.DiscoveryNode;
|
||||
import org.elasticsearch.cluster.routing.UnassignedInfo;
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
package org.elasticsearch.get;
|
||||
|
||||
import org.elasticsearch.action.DocWriteResponse;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.admin.indices.flush.FlushResponse;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.flush.FlushResponse;
|
||||
import org.elasticsearch.action.delete.DeleteResponse;
|
||||
import org.elasticsearch.action.get.GetRequestBuilder;
|
||||
import org.elasticsearch.action.get.GetResponse;
|
||||
|
|
|
@ -20,7 +20,7 @@
|
|||
package org.elasticsearch.get;
|
||||
|
||||
import org.elasticsearch.Version;
|
||||
import org.elasticsearch.action.admin.indices.alias.Alias;
|
||||
import org.opensearch.action.admin.indices.alias.Alias;
|
||||
import org.elasticsearch.action.get.GetResponse;
|
||||
import org.elasticsearch.cluster.metadata.IndexMetadata;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
|
|
|
@ -19,11 +19,11 @@
|
|||
|
||||
package org.elasticsearch.index;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.alias.IndicesAliasesRequest;
|
||||
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesRequestBuilder;
|
||||
import org.elasticsearch.action.admin.indices.alias.get.GetAliasesResponse;
|
||||
import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.opensearch.action.admin.indices.alias.IndicesAliasesRequest;
|
||||
import org.opensearch.action.admin.indices.alias.get.GetAliasesRequestBuilder;
|
||||
import org.opensearch.action.admin.indices.alias.get.GetAliasesResponse;
|
||||
import org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.elasticsearch.action.search.SearchResponse;
|
||||
import org.elasticsearch.action.support.IndicesOptions;
|
||||
import org.elasticsearch.action.support.WriteRequest.RefreshPolicy;
|
||||
|
|
|
@ -19,8 +19,8 @@
|
|||
package org.elasticsearch.index;
|
||||
|
||||
import org.elasticsearch.action.ActionFuture;
|
||||
import org.elasticsearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.elasticsearch.action.admin.indices.stats.ShardStats;
|
||||
import org.opensearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.opensearch.action.admin.indices.stats.ShardStats;
|
||||
import org.elasticsearch.action.bulk.BulkRequest;
|
||||
import org.elasticsearch.action.bulk.BulkResponse;
|
||||
import org.elasticsearch.action.bulk.TransportShardBulkAction;
|
||||
|
|
|
@ -18,7 +18,7 @@
|
|||
*/
|
||||
package org.elasticsearch.index.engine;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.opensearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.elasticsearch.action.bulk.BulkRequestBuilder;
|
||||
import org.elasticsearch.action.bulk.BulkResponse;
|
||||
import org.elasticsearch.client.Requests;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
package org.elasticsearch.index.mapper;
|
||||
|
||||
import org.elasticsearch.action.DocWriteResponse;
|
||||
import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.elasticsearch.action.bulk.BulkResponse;
|
||||
import org.elasticsearch.action.index.IndexRequestBuilder;
|
||||
import org.elasticsearch.cluster.ClusterState;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
package org.elasticsearch.index.mapper;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.opensearch.action.admin.indices.mapping.get.GetMappingsResponse;
|
||||
import org.elasticsearch.action.search.SearchResponse;
|
||||
import org.elasticsearch.cluster.metadata.MappingMetadata;
|
||||
import org.elasticsearch.common.geo.GeoPoint;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
|
||||
package org.elasticsearch.index.search;
|
||||
|
||||
import org.elasticsearch.action.admin.indices.create.CreateIndexRequestBuilder;
|
||||
import org.opensearch.action.admin.indices.create.CreateIndexRequestBuilder;
|
||||
import org.elasticsearch.action.index.IndexRequestBuilder;
|
||||
import org.elasticsearch.action.search.SearchResponse;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
|
|
|
@ -25,7 +25,7 @@ import org.elasticsearch.Version;
|
|||
import org.elasticsearch.action.ActionListener;
|
||||
import org.elasticsearch.action.admin.cluster.node.stats.NodeStats;
|
||||
import org.elasticsearch.action.admin.cluster.node.stats.NodesStatsResponse;
|
||||
import org.elasticsearch.action.admin.indices.stats.IndexStats;
|
||||
import org.opensearch.action.admin.indices.stats.IndexStats;
|
||||
import org.elasticsearch.action.index.IndexRequest;
|
||||
import org.elasticsearch.action.search.SearchRequest;
|
||||
import org.elasticsearch.action.search.SearchResponse;
|
||||
|
|
|
@ -31,9 +31,9 @@ import org.apache.lucene.store.NativeFSLockFactory;
|
|||
import org.elasticsearch.ExceptionsHelper;
|
||||
import org.elasticsearch.action.admin.cluster.allocation.ClusterAllocationExplanation;
|
||||
import org.elasticsearch.action.admin.cluster.node.stats.NodesStatsResponse;
|
||||
import org.elasticsearch.action.admin.indices.flush.FlushRequest;
|
||||
import org.elasticsearch.action.admin.indices.recovery.RecoveryResponse;
|
||||
import org.elasticsearch.action.admin.indices.stats.ShardStats;
|
||||
import org.opensearch.action.admin.indices.flush.FlushRequest;
|
||||
import org.opensearch.action.admin.indices.recovery.RecoveryResponse;
|
||||
import org.opensearch.action.admin.indices.stats.ShardStats;
|
||||
import org.elasticsearch.action.index.IndexRequestBuilder;
|
||||
import org.elasticsearch.action.search.SearchRequestBuilder;
|
||||
import org.elasticsearch.cli.MockTerminal;
|
||||
|
|
|
@ -31,7 +31,7 @@ import org.elasticsearch.action.admin.cluster.node.stats.NodeStats;
|
|||
import org.elasticsearch.action.admin.cluster.node.stats.NodesStatsResponse;
|
||||
import org.elasticsearch.action.admin.cluster.snapshots.create.CreateSnapshotResponse;
|
||||
import org.elasticsearch.action.admin.cluster.state.ClusterStateResponse;
|
||||
import org.elasticsearch.action.admin.indices.shards.IndicesShardStoresResponse;
|
||||
import org.opensearch.action.admin.indices.shards.IndicesShardStoresResponse;
|
||||
import org.elasticsearch.action.index.IndexRequestBuilder;
|
||||
import org.elasticsearch.action.search.SearchResponse;
|
||||
import org.elasticsearch.client.Requests;
|
||||
|
|
|
@ -20,10 +20,10 @@ package org.elasticsearch.index.store;
|
|||
|
||||
import org.elasticsearch.action.admin.cluster.node.stats.NodeStats;
|
||||
import org.elasticsearch.action.admin.cluster.node.stats.NodesStatsResponse;
|
||||
import org.elasticsearch.action.admin.indices.stats.IndexShardStats;
|
||||
import org.elasticsearch.action.admin.indices.stats.IndexStats;
|
||||
import org.elasticsearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.elasticsearch.action.admin.indices.stats.ShardStats;
|
||||
import org.opensearch.action.admin.indices.stats.IndexShardStats;
|
||||
import org.opensearch.action.admin.indices.stats.IndexStats;
|
||||
import org.opensearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.opensearch.action.admin.indices.stats.ShardStats;
|
||||
import org.elasticsearch.action.bulk.BulkItemResponse;
|
||||
import org.elasticsearch.action.bulk.BulkRequestBuilder;
|
||||
import org.elasticsearch.action.bulk.BulkResponse;
|
||||
|
|
|
@ -21,7 +21,7 @@ package org.elasticsearch.index.suggest.stats;
|
|||
|
||||
import org.elasticsearch.action.admin.cluster.node.stats.NodeStats;
|
||||
import org.elasticsearch.action.admin.cluster.node.stats.NodesStatsResponse;
|
||||
import org.elasticsearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.opensearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.elasticsearch.action.search.SearchRequestBuilder;
|
||||
import org.elasticsearch.action.search.SearchResponse;
|
||||
import org.elasticsearch.cluster.ClusterState;
|
||||
|
|
|
@ -20,8 +20,8 @@
|
|||
package org.elasticsearch.indices;
|
||||
|
||||
import org.elasticsearch.action.DocWriteResponse;
|
||||
import org.elasticsearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.elasticsearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.opensearch.action.admin.indices.settings.get.GetSettingsResponse;
|
||||
import org.opensearch.action.admin.indices.stats.IndicesStatsResponse;
|
||||
import org.elasticsearch.action.delete.DeleteResponse;
|
||||
import org.elasticsearch.action.get.GetResponse;
|
||||
import org.elasticsearch.action.get.MultiGetResponse;
|
||||
|
|
|
@ -19,7 +19,7 @@
|
|||
package org.elasticsearch.indices;
|
||||
|
||||
import org.apache.logging.log4j.LogManager;
|
||||
import org.elasticsearch.action.admin.indices.forcemerge.ForceMergeResponse;
|
||||
import org.opensearch.action.admin.indices.forcemerge.ForceMergeResponse;
|
||||
import org.elasticsearch.common.settings.Settings;
|
||||
import org.elasticsearch.index.IndexService;
|
||||
import org.elasticsearch.index.IndexSettings;
|
||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue