com.pulumi.azurenative.signalrservice.enums.FeatureFlags Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***
package com.pulumi.azurenative.signalrservice.enums;
import com.pulumi.core.annotations.EnumType;
import java.lang.String;
import java.util.Objects;
import java.util.StringJoiner;
/**
* 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.
*
*/
@EnumType
public enum FeatureFlags {
ServiceMode("ServiceMode"),
EnableConnectivityLogs("EnableConnectivityLogs"),
EnableMessagingLogs("EnableMessagingLogs"),
EnableLiveTrace("EnableLiveTrace");
private final String value;
FeatureFlags(String value) {
this.value = Objects.requireNonNull(value);
}
@EnumType.Converter
public String getValue() {
return this.value;
}
@Override
public java.lang.String toString() {
return new StringJoiner(", ", "FeatureFlags[", "]")
.add("value='" + this.value + "'")
.toString();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy