BlobRestoreStatus Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
BlobRestoreStatus() |
Initializes a new instance of the BlobRestoreStatus class. |
BlobRestoreStatus(String, String, String, BlobRestoreParameters) |
Initializes a new instance of the BlobRestoreStatus class. |
BlobRestoreStatus()
Initializes a new instance of the BlobRestoreStatus class.
public BlobRestoreStatus ();
Public Sub New ()
Applies to
BlobRestoreStatus(String, String, String, BlobRestoreParameters)
Initializes a new instance of the BlobRestoreStatus class.
public BlobRestoreStatus (string status = default, string failureReason = default, string restoreId = default, Microsoft.Azure.Management.Storage.Models.BlobRestoreParameters parameters = default);
new Microsoft.Azure.Management.Storage.Models.BlobRestoreStatus : string * string * string * Microsoft.Azure.Management.Storage.Models.BlobRestoreParameters -> Microsoft.Azure.Management.Storage.Models.BlobRestoreStatus
Public Sub New (Optional status As String = Nothing, Optional failureReason As String = Nothing, Optional restoreId As String = Nothing, Optional parameters As BlobRestoreParameters = Nothing)
Parameters
- status
- String
The status of blob restore progress. Possible values are: - InProgress: Indicates that blob restore is ongoing. - Complete: Indicates that blob restore has been completed successfully. - Failed: Indicates that blob restore is failed. Possible values include: 'InProgress', 'Complete', 'Failed'
- failureReason
- String
Failure reason when blob restore is failed.
- restoreId
- String
Id for tracking blob restore request.
- parameters
- BlobRestoreParameters
Blob restore request parameters.
Applies to
Azure SDK for .NET