UndeleteBlobContainerOptions Class
- java.
lang. Object - com.
azure. storage. blob. options. UndeleteBlobContainerOptions
- com.
public class UndeleteBlobContainerOptions
Extended options that may be passed when restoring a blob container.
Constructor Summary
Constructor | Description |
---|---|
UndeleteBlobContainerOptions(String deletedContainerName, String deletedContainerVersion) |
Constructs a UndeleteBlobContainerOptions. |
Method Summary
Modifier and Type | Method and Description |
---|---|
String |
getDeletedContainerName()
Gets the deleted blob container name. |
String |
getDeletedContainerVersion()
Gets the deleted blob container version. |
String |
getDestinationContainerName()
Deprecated
Destination container name must match deleted container name
Gets the destination blob container name. |
Undelete |
setDestinationContainerName(String destinationContainerName)
Deprecated
Destination container name must match deleted container name
Sets the destination blob container name. |
Methods inherited from java.lang.Object
Constructor Details
UndeleteBlobContainerOptions
public UndeleteBlobContainerOptions(String deletedContainerName, String deletedContainerVersion)
Constructs a UndeleteBlobContainerOptions.
Parameters:
Method Details
getDeletedContainerName
public String getDeletedContainerName()
Gets the deleted blob container name.
Returns:
getDeletedContainerVersion
public String getDeletedContainerVersion()
Gets the deleted blob container version.
Returns:
getDestinationContainerName
@Deprecated
public String getDestinationContainerName()
Deprecated
Gets the destination blob container name. The restored container will be renamed to the destinationContainerName
. If the container associated with provided destinationContainerName
already exists, the undelete operation will result in a 409 (conflict).
Returns:
setDestinationContainerName
@Deprecated
public UndeleteBlobContainerOptions setDestinationContainerName(String destinationContainerName)
Deprecated
Sets the destination blob container name. The restored container will be renamed to the destinationContainerName
. If the container associated with provided destinationContainerName
already exists, the undelete operation will result in a 409 (conflict).
Parameters:
Returns:
Applies to
Azure SDK for Java