co.elastic.clients.elasticsearch.security.ClearCachedRealmsRequest Maven / Gradle / Ivy
Show all versions of elasticsearch-java Show documentation
/*
* Licensed to Elasticsearch B.V. under one or more contributor
* license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright
* ownership. Elasticsearch B.V. licenses this file to you under
* the Apache License, Version 2.0 (the "License"); you may
* not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package co.elastic.clients.elasticsearch.security;
import co.elastic.clients.elasticsearch._types.ErrorResponse;
import co.elastic.clients.elasticsearch._types.RequestBase;
import co.elastic.clients.json.JsonpDeserializable;
import co.elastic.clients.json.JsonpDeserializer;
import co.elastic.clients.json.ObjectBuilderDeserializer;
import co.elastic.clients.json.ObjectDeserializer;
import co.elastic.clients.transport.Endpoint;
import co.elastic.clients.transport.endpoints.SimpleEndpoint;
import co.elastic.clients.util.ApiTypeHelper;
import co.elastic.clients.util.ObjectBuilder;
import jakarta.json.stream.JsonGenerator;
import java.lang.String;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.function.Function;
import java.util.stream.Collectors;
import javax.annotation.Nullable;
//----------------------------------------------------------------
// THIS CODE IS GENERATED. MANUAL EDITS WILL BE LOST.
//----------------------------------------------------------------
//
// This code is generated from the Elasticsearch API specification
// at https://github.com/elastic/elasticsearch-specification
//
// Manual updates to this file will be lost when the code is
// re-generated.
//
// If you find a property that is missing or wrongly typed, please
// open an issue or a PR on the API specification repository.
//
//----------------------------------------------------------------
// typedef: security.clear_cached_realms.Request
/**
* Evicts users from the user cache. Can completely clear the cache or evict
* specific users.
*
* @see API
* specification
*/
public class ClearCachedRealmsRequest extends RequestBase {
private final List realms;
private final List usernames;
// ---------------------------------------------------------------------------------------------
private ClearCachedRealmsRequest(Builder builder) {
this.realms = ApiTypeHelper.unmodifiableRequired(builder.realms, this, "realms");
this.usernames = ApiTypeHelper.unmodifiable(builder.usernames);
}
public static ClearCachedRealmsRequest of(Function> fn) {
return fn.apply(new Builder()).build();
}
/**
* Required - Comma-separated list of realms to clear
*
* API name: {@code realms}
*/
public final List realms() {
return this.realms;
}
/**
* Comma-separated list of usernames to clear from the cache
*
* API name: {@code usernames}
*/
public final List usernames() {
return this.usernames;
}
// ---------------------------------------------------------------------------------------------
/**
* Builder for {@link ClearCachedRealmsRequest}.
*/
public static class Builder extends RequestBase.AbstractBuilder
implements
ObjectBuilder {
private List realms;
@Nullable
private List usernames;
/**
* Required - Comma-separated list of realms to clear
*
* API name: {@code realms}
*
* Adds all elements of list
to realms
.
*/
public final Builder realms(List list) {
this.realms = _listAddAll(this.realms, list);
return this;
}
/**
* Required - Comma-separated list of realms to clear
*
* API name: {@code realms}
*
* Adds one or more values to realms
.
*/
public final Builder realms(String value, String... values) {
this.realms = _listAdd(this.realms, value, values);
return this;
}
/**
* Comma-separated list of usernames to clear from the cache
*
* API name: {@code usernames}
*
* Adds all elements of list
to usernames
.
*/
public final Builder usernames(List list) {
this.usernames = _listAddAll(this.usernames, list);
return this;
}
/**
* Comma-separated list of usernames to clear from the cache
*
* API name: {@code usernames}
*
* Adds one or more values to usernames
.
*/
public final Builder usernames(String value, String... values) {
this.usernames = _listAdd(this.usernames, value, values);
return this;
}
@Override
protected Builder self() {
return this;
}
/**
* Builds a {@link ClearCachedRealmsRequest}.
*
* @throws NullPointerException
* if some of the required fields are null.
*/
public ClearCachedRealmsRequest build() {
_checkSingleUse();
return new ClearCachedRealmsRequest(this);
}
}
// ---------------------------------------------------------------------------------------------
/**
* Endpoint "{@code security.clear_cached_realms}".
*/
public static final Endpoint _ENDPOINT = new SimpleEndpoint<>(
"es/security.clear_cached_realms",
// Request method
request -> {
return "POST";
},
// Request path
request -> {
final int _realms = 1 << 0;
int propsSet = 0;
propsSet |= _realms;
if (propsSet == (_realms)) {
StringBuilder buf = new StringBuilder();
buf.append("/_security");
buf.append("/realm");
buf.append("/");
SimpleEndpoint.pathEncode(request.realms.stream().map(v -> v).collect(Collectors.joining(",")),
buf);
buf.append("/_clear_cache");
return buf.toString();
}
throw SimpleEndpoint.noPathTemplateFound("path");
},
// Path parameters
request -> {
Map params = new HashMap<>();
final int _realms = 1 << 0;
int propsSet = 0;
propsSet |= _realms;
if (propsSet == (_realms)) {
params.put("realms", request.realms.stream().map(v -> v).collect(Collectors.joining(",")));
}
return params;
},
// Request parameters
request -> {
Map params = new HashMap<>();
if (ApiTypeHelper.isDefined(request.usernames)) {
params.put("usernames", request.usernames.stream().map(v -> v).collect(Collectors.joining(",")));
}
return params;
}, SimpleEndpoint.emptyMap(), false, ClearCachedRealmsResponse._DESERIALIZER);
}