org.apache.seatunnel.datasource.plugin.elasticsearch.ElasticSearchOptionRule Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF 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 org.apache.seatunnel.datasource.plugin.elasticsearch;
import org.apache.seatunnel.api.configuration.Option;
import org.apache.seatunnel.api.configuration.Options;
import org.apache.seatunnel.api.configuration.util.OptionRule;
import java.util.List;
public class ElasticSearchOptionRule {
public static final Option> HOSTS =
Options.key("hosts")
.listType()
.noDefaultValue()
.withDescription(
"Elasticsearch cluster http address, the format is host:port, allowing multiple hosts to be specified. Such as [\"host1:9200\", \"host2:9200\"]");
public static final Option INDEX =
Options.key("index")
.stringType()
.noDefaultValue()
.withDescription("Elasticsearch index name, support * fuzzy matching");
public static final Option USERNAME =
Options.key("username")
.stringType()
.noDefaultValue()
.withDescription("x-pack username");
public static final Option PASSWORD =
Options.key("password")
.stringType()
.noDefaultValue()
.withDescription("x-pack password");
public static final Option TLS_VERIFY_CERTIFICATE =
Options.key("tls_verify_certificate")
.booleanType()
.defaultValue(true)
.withDescription("Enable certificates validation for HTTPS endpoints");
public static final Option TLS_VERIFY_HOSTNAME =
Options.key("tls_verify_hostname")
.booleanType()
.defaultValue(true)
.withDescription("Enable hostname validation for HTTPS endpoints");
public static final Option TLS_KEY_STORE_PATH =
Options.key("tls_keystore_path")
.stringType()
.noDefaultValue()
.withDescription(
"The path to the PEM or JKS key store. This file must be readable by the operating system user running SeaTunnel.");
public static final Option TLS_KEY_STORE_PASSWORD =
Options.key("tls_keystore_password")
.stringType()
.noDefaultValue()
.withDescription("The key password for the key store specified");
public static final Option TLS_TRUST_STORE_PATH =
Options.key("tls_truststore_path")
.stringType()
.noDefaultValue()
.withDescription(
"The path to PEM or JKS trust store. This file must be readable by the operating system user running SeaTunnel.");
public static final Option TLS_TRUST_STORE_PASSWORD =
Options.key("tls_truststore_password")
.stringType()
.noDefaultValue()
.withDescription("The key password for the trust store specified");
public static OptionRule optionRule() {
return OptionRule.builder()
.required(HOSTS)
.optional(
USERNAME,
PASSWORD,
TLS_VERIFY_CERTIFICATE,
TLS_VERIFY_HOSTNAME,
TLS_KEY_STORE_PATH,
TLS_KEY_STORE_PASSWORD,
TLS_TRUST_STORE_PATH,
TLS_TRUST_STORE_PASSWORD)
.build();
}
public static OptionRule metadataRule() {
return OptionRule.builder().required(INDEX).build();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy