Class ExportRDBParameters
- java.lang.Object
-
- com.microsoft.azure.management.redis.ExportRDBParameters
-
public class ExportRDBParameters extends Object
Parameters for Redis export operation.
-
-
Constructor Summary
Constructors Constructor Description ExportRDBParameters()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Stringcontainer()Get the container value.Stringformat()Get the format value.Stringprefix()Get the prefix value.ExportRDBParameterswithContainer(String container)Set the container value.ExportRDBParameterswithFormat(String format)Set the format value.ExportRDBParameterswithPrefix(String prefix)Set the prefix value.
-
-
-
Method Detail
-
format
public String format()
Get the format value.- Returns:
- the format value
-
withFormat
public ExportRDBParameters withFormat(String format)
Set the format value.- Parameters:
format- the format value to set- Returns:
- the ExportRDBParameters object itself.
-
prefix
public String prefix()
Get the prefix value.- Returns:
- the prefix value
-
withPrefix
public ExportRDBParameters withPrefix(String prefix)
Set the prefix value.- Parameters:
prefix- the prefix value to set- Returns:
- the ExportRDBParameters object itself.
-
container
public String container()
Get the container value.- Returns:
- the container value
-
withContainer
public ExportRDBParameters withContainer(String container)
Set the container value.- Parameters:
container- the container value to set- Returns:
- the ExportRDBParameters object itself.
-
-