Constant Field Values

Contents

org.opensearch.*

  • org.opensearch.ml.common.transport.agent.MLAgentDeleteAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/agents/delete"
  • org.opensearch.ml.common.transport.agent.MLAgentGetAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/agents/get"
  • org.opensearch.ml.common.transport.agent.MLRegisterAgentAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/agents/register"
  • org.opensearch.ml.common.transport.agent.MLRegisterAgentResponse
    Modifier and Type
    Constant Field
    Value
    public static final String
    "agent_id"
  • org.opensearch.ml.common.transport.agent.MLSearchAgentAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/agents/search"
  • org.opensearch.ml.common.transport.config.MLConfigGetAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/config/get"
  • org.opensearch.ml.common.transport.controller.MLControllerDeleteAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/controllers/delete"
  • org.opensearch.ml.common.transport.controller.MLControllerGetAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/controllers/get"
  • org.opensearch.ml.common.transport.controller.MLCreateControllerAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/controllers/create"
  • org.opensearch.ml.common.transport.controller.MLCreateControllerResponse
    Modifier and Type
    Constant Field
    Value
    public static final String
    "model_id"
    public static final String
    "status"
  • org.opensearch.ml.common.transport.controller.MLDeployControllerAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/controllers/deploy"
  • org.opensearch.ml.common.transport.controller.MLUndeployControllerAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/controllers/undeploy"
  • org.opensearch.ml.common.transport.controller.MLUpdateControllerAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/controllers/update"
  • org.opensearch.ml.common.transport.execute.MLExecuteTaskAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/execute"
  • org.opensearch.ml.common.transport.forward.MLForwardAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/mlinternal/forward"
  • org.opensearch.ml.common.transport.prediction.MLPredictionTaskAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/predict"
  • org.opensearch.ml.common.transport.sync.MLSyncUpAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/mlinternal/syncup"
  • org.opensearch.ml.common.transport.sync.MLSyncUpResponse
    Modifier and Type
    Constant Field
    Value
    public static final String
    "status"
  • org.opensearch.ml.common.transport.task.MLTaskDeleteAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/tasks/delete"
  • org.opensearch.ml.common.transport.task.MLTaskGetAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/tasks/get"
  • org.opensearch.ml.common.transport.task.MLTaskSearchAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/tasks/search"
  • org.opensearch.ml.common.transport.tools.MLGetToolAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/tools/get"
  • org.opensearch.ml.common.transport.tools.MLListToolsAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/tools/list"
  • org.opensearch.ml.common.transport.training.MLTrainingTaskAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/train"
  • org.opensearch.ml.common.transport.trainpredict.MLTrainAndPredictionTaskAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/trainAndPredict"
  • org.opensearch.ml.common.transport.undeploy.MLUndeployModelAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/undeploy_model"
  • org.opensearch.ml.common.transport.undeploy.MLUndeployModelsAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/undeploy_models"
  • org.opensearch.ml.common.transport.update_cache.MLUpdateModelCacheAction
    Modifier and Type
    Constant Field
    Value
    public static final String
    "cluster:admin/opensearch/ml/models/update_cache"
  • org.opensearch.ml.common.utils.StringUtils
    Modifier and Type
    Constant Field
    Value
    public static final String
    "\n String escape(def input) { \n if (input.contains(\"\\\\\")) {\n input = input.replace(\"\\\\\", \"\\\\\\\\\");\n }\n if (input.contains(\"\\\"\")) {\n input = input.replace(\"\\\"\", \"\\\\\\\"\");\n }\n if (input.contains(\'\r\')) {\n input = input = input.replace(\'\r\', \'\\\\r\');\n }\n if (input.contains(\"\\\\t\")) {\n input = input.replace(\"\\\\t\", \"\\\\\\\\\\\\t\");\n }\n if (input.contains(\'\n\')) {\n input = input.replace(\'\n\', \'\\\\n\');\n }\n if (input.contains(\'\b\')) {\n input = input.replace(\'\b\', \'\\\\b\');\n }\n if (input.contains(\'\f\')) {\n input = input.replace(\'\f\', \'\\\\f\');\n }\n return input;\n }\n"