blob: 203c9f075dc03e8fc099f679cf243eb44eb7744a [file] [log] [blame]
/*
* 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.cassandra.sidecar.utils;
/**
* Stores keys used to retrieve information from sidecar.yaml file.
*/
public class YAMLKeyConstants
{
public static final String HOST = "sidecar.host";
public static final String PORT = "sidecar.port";
public static final String HEALTH_CHECK_FREQ = "healthcheck.poll_freq_millis";
public static final String KEYSTORE_PATH = "sidecar.ssl.keystore.path";
public static final String KEYSTORE_PASSWORD = "sidecar.ssl.keystore.password";
public static final String TRUSTSTORE_PATH = "sidecar.ssl.truststore.path";
public static final String TRUSTSTORE_PASSWORD = "sidecar.ssl.truststore.password";
public static final String SSL_ENABLED = "sidecar.ssl.enabled";
public static final String STREAM_REQUESTS_PER_SEC = "sidecar.throttle.stream_requests_per_sec";
public static final String THROTTLE_TIMEOUT_SEC = "sidecar.throttle.timeout_sec";
public static final String THROTTLE_DELAY_SEC = "sidecar.throttle.delay_sec";
// v1 cassandra instance key constants
public static final String CASSANDRA_INSTANCE = "cassandra";
// v2 cassandra instances key constants
public static final String CASSANDRA_INSTANCES = "cassandra_instances";
public static final String CASSANDRA_INSTANCE_ID = "id";
public static final String CASSANDRA_INSTANCE_HOST = "host";
public static final String CASSANDRA_INSTANCE_PORT = "port";
public static final String CASSANDRA_INSTANCE_DATA_DIRS = "data_dirs";
public static final String CASSANDRA_JMX_HOST = "jmx_host";
public static final String CASSANDRA_JMX_PORT = "jmx_port";
public static final String CASSANDRA_JMX_ROLE = "jmx_role";
public static final String CASSANDRA_JMX_ROLE_PASSWORD = "jmx_role_password";
public static final String CASSANDRA_JMX_SSL_ENABLED = "jmx_ssl_enabled";
// validation for cassandra inputs
public static final String CASSANDRA_INPUT_VALIDATION = "cassandra_input_validation";
public static final String CASSANDRA_FORBIDDEN_KEYSPACES = "forbidden_keyspaces";
public static final String CASSANDRA_ALLOWED_CHARS_FOR_DIRECTORY = "allowed_chars_for_directory";
public static final String CASSANDRA_ALLOWED_CHARS_FOR_COMPONENT_NAME = "allowed_chars_for_component_name";
public static final String CASSANDRA_ALLOWED_CHARS_FOR_RESTRICTED_COMPONENT_NAME =
"allowed_chars_for_restricted_component_name";
}