Class FeatureFlags

java.lang.Object
com.azure.core.util.ExpandableStringEnum<FeatureFlags>
com.azure.resourcemanager.signalr.models.FeatureFlags

public final class FeatureFlags extends com.azure.core.util.ExpandableStringEnum<FeatureFlags>
FeatureFlags is the supported features of Azure SignalR service. - ServiceMode: Flag for backend server for SignalR service. Values allowed: "Default": have your own backend server; "Serverless": your application doesn't have a backend server; "Classic": for backward compatibility. Support both Default and Serverless mode but not recommended; "PredefinedOnly": for future use. - EnableConnectivityLogs: "true"/"false", to enable/disable the connectivity log category respectively. - EnableMessagingLogs: "true"/"false", to enable/disable the connectivity log category respectively. - EnableLiveTrace: Live Trace allows you to know what's happening inside Azure SignalR service, it will give you live traces in real time, it will be helpful when you developing your own Azure SignalR based web application or self-troubleshooting some issues. Please note that live traces are counted as outbound messages that will be charged. Values allowed: "true"/"false", to enable/disable live trace feature.
  • Field Details

    • SERVICE_MODE

      public static final FeatureFlags SERVICE_MODE
      Static value ServiceMode for FeatureFlags.
    • ENABLE_CONNECTIVITY_LOGS

      public static final FeatureFlags ENABLE_CONNECTIVITY_LOGS
      Static value EnableConnectivityLogs for FeatureFlags.
    • ENABLE_MESSAGING_LOGS

      public static final FeatureFlags ENABLE_MESSAGING_LOGS
      Static value EnableMessagingLogs for FeatureFlags.
    • ENABLE_LIVE_TRACE

      public static final FeatureFlags ENABLE_LIVE_TRACE
      Static value EnableLiveTrace for FeatureFlags.
  • Constructor Details

    • FeatureFlags

      public FeatureFlags()
  • Method Details

    • fromString

      public static FeatureFlags fromString(String name)
      Creates or finds a FeatureFlags from its string representation.
      Parameters:
      name - a name to look for.
      Returns:
      the corresponding FeatureFlags.
    • values

      public static Collection<FeatureFlags> values()
      Gets known FeatureFlags values.
      Returns:
      known FeatureFlags values.