zio.elasticsearch.searchable_snapshots.clear_cache.ClearCacheRequest.scala Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of zio-elasticsearch-searchable-snapshots_2.12 Show documentation
Show all versions of zio-elasticsearch-searchable-snapshots_2.12 Show documentation
Zio Elasticsearch-searchable-snapshots
The newest version!
/*
* Copyright 2019-2023 Alberto Paro
*
* Licensed 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 zio.elasticsearch.searchable_snapshots.clear_cache
import scala.collection.mutable
import zio._
import zio.elasticsearch.common._
import zio.json.ast._
/*
* Clear the cache of searchable snapshots.
* For more info refers to https://www.elastic.co/guide/en/elasticsearch/reference/master/searchable-snapshots-apis.html
*
* @param pretty
* @param human
* @param errorTrace When set to `true` Elasticsearch will include the full stack trace of errors
* when they occur.
* @server_default false
* @param filterPath Comma-separated list of filters in dot notation which reduce the response
* returned by Elasticsearch.
* @param allowNoIndices Whether to ignore if a wildcard indices expression resolves into no concrete indices. (This includes `_all` string or when no indices have been specified)
* @param expandWildcards Whether to expand wildcard expression to concrete indices that are open, closed or both.
* @param ignoreUnavailable Whether specified concrete indices should be ignored when unavailable (missing or closed)
* @param index A comma-separated list of index name to limit the operation
* @param indices A comma-separated list of index names
*/
final case class ClearCacheRequest(
pretty: Boolean = false,
human: Boolean = false,
errorTrace: Boolean = false,
filterPath: Chunk[String] = Chunk.empty[String],
allowNoIndices: Option[Boolean] = None,
expandWildcards: Seq[ExpandWildcards] = Nil,
ignoreUnavailable: Option[Boolean] = None,
index: Chunk[String] = Chunk.empty,
indices: Chunk[String] = Chunk.empty
) extends ActionRequest[Json]
with RequestBase {
def method: Method = Method.POST
def urlPath: String =
this.makeUrl(indices, "_searchable_snapshots", "cache", "clear")
def queryArgs: Map[String, String] = {
// managing parameters
val queryArgs = new mutable.HashMap[String, String]()
allowNoIndices.foreach { v =>
queryArgs += ("allow_no_indices" -> v.toString)
}
if (expandWildcards.nonEmpty) {
if (expandWildcards.toSet != Set(ExpandWildcards.open)) {
queryArgs += ("expand_wildcards" -> expandWildcards.mkString(","))
}
}
ignoreUnavailable.foreach { v =>
queryArgs += ("ignore_unavailable" -> v.toString)
}
if (index.nonEmpty) {
queryArgs += ("index" -> index.toList.mkString(","))
}
// Custom Code On
// Custom Code Off
queryArgs.toMap
}
def body: Json = Json.Null
// Custom Code On
// Custom Code Off
}