Class SingleCategoryClassifyAction

java.lang.Object
com.azure.ai.textanalytics.models.SingleCategoryClassifyAction

public final class SingleCategoryClassifyAction extends Object
Configurations that allow callers to specify details about how to execute a single-label classification action in a set of documents. See the service documentation for regional support of custom single classification: https://aka.ms/azsdk/textanalytics/customfunctionalities
  • Constructor Details

    • SingleCategoryClassifyAction

      public SingleCategoryClassifyAction(String projectName, String deploymentName)
      Configurations that allow callers to specify details about how to execute a single-label classification action in a set of documents.
      Parameters:
      projectName - The name of the project which owns the model being consumed.
      deploymentName - The name of the deployment being consumed.
  • Method Details

    • getActionName

      public String getActionName()
      Get the name of action.
      Returns:
      the name of action.
    • setActionName

      public SingleCategoryClassifyAction setActionName(String actionName)
      Set the custom name for the action.
      Parameters:
      actionName - the custom name for the action.
      Returns:
      The SingleCategoryClassifyAction object itself.
    • getProjectName

      public String getProjectName()
      Gets the name of the project which owns the model being consumed.
      Returns:
      The name of the project which owns the model being consumed.
    • getDeploymentName

      public String getDeploymentName()
      Gets the name of the deployment being consumed.
      Returns:
      The name of the deployment being consumed.
    • isServiceLogsDisabled

      public boolean isServiceLogsDisabled()
      Gets the value of disableServiceLogs.
      Returns:
      The value of disableServiceLogs. The default value of this property is 'false'. This means, Text Analytics service logs your input text for 48 hours, solely to allow for troubleshooting issues. Setting this property to true, disables input logging and may limit our ability to investigate issues that occur.
    • setServiceLogsDisabled

      public SingleCategoryClassifyAction setServiceLogsDisabled(boolean disableServiceLogs)
      Sets the value of disableServiceLogs.
      Parameters:
      disableServiceLogs - The default value of this property is 'false'. This means, Text Analytics service logs your input text for 48 hours, solely to allow for troubleshooting issues. Setting this property to true, disables input logging and may limit our ability to investigate issues that occur.
      Returns:
      The SingleCategoryClassifyAction object itself.