ReliabilityLevel Class

public final class ReliabilityLevel
extends ExpandableStringEnum<ReliabilityLevel>

The reliability level sets the replica set size of system services. Learn about [ReliabilityLevel](https://docs.microsoft.com/azure/service-fabric/service-fabric-cluster-capacity). - None - Run the System services with a target replica set count of 1. This should only be used for test clusters. - Bronze - Run the System services with a target replica set count of 3. This should only be used for test clusters. - Silver - Run the System services with a target replica set count of 5. - Gold - Run the System services with a target replica set count of 7. - Platinum - Run the System services with a target replica set count of 9.

Field Summary

Modifier and Type Field and Description
static final ReliabilityLevel BRONZE

Static value Bronze for ReliabilityLevel.

static final ReliabilityLevel GOLD

Static value Gold for ReliabilityLevel.

static final ReliabilityLevel NONE

Static value None for ReliabilityLevel.

static final ReliabilityLevel PLATINUM

Static value Platinum for ReliabilityLevel.

static final ReliabilityLevel SILVER

Static value Silver for ReliabilityLevel.

Constructor Summary

Constructor Description
ReliabilityLevel()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ReliabilityLevel value.

Method Summary

Modifier and Type Method and Description
static ReliabilityLevel fromString(String name)

Creates or finds a ReliabilityLevel from its string representation.

static Collection<ReliabilityLevel> values()

Gets known ReliabilityLevel values.

Methods inherited from ExpandableStringEnum

Methods inherited from java.lang.Object

Field Details

BRONZE

public static final ReliabilityLevel BRONZE

Static value Bronze for ReliabilityLevel.

GOLD

public static final ReliabilityLevel GOLD

Static value Gold for ReliabilityLevel.

NONE

public static final ReliabilityLevel NONE

Static value None for ReliabilityLevel.

PLATINUM

public static final ReliabilityLevel PLATINUM

Static value Platinum for ReliabilityLevel.

SILVER

public static final ReliabilityLevel SILVER

Static value Silver for ReliabilityLevel.

Constructor Details

ReliabilityLevel

@Deprecated
public ReliabilityLevel()

Deprecated

Use the fromString(String name) factory method.

Creates a new instance of ReliabilityLevel value.

Method Details

fromString

public static ReliabilityLevel fromString(String name)

Creates or finds a ReliabilityLevel from its string representation.

Parameters:

name - a name to look for.

Returns:

the corresponding ReliabilityLevel.

values

public static Collection values()

Gets known ReliabilityLevel values.

Returns:

known ReliabilityLevel values.

Applies to