| | 1 | | // Copyright (c) Microsoft Corporation. All rights reserved. |
| | 2 | | // Licensed under the MIT License. |
| | 3 | |
|
| | 4 | | // <auto-generated/> |
| | 5 | |
|
| | 6 | | #nullable disable |
| | 7 | |
|
| | 8 | | using System; |
| | 9 | |
|
| | 10 | | namespace Azure.Security.KeyVault.Administration.Models |
| | 11 | | { |
| | 12 | | /// <summary> Full backup operation. </summary> |
| | 13 | | internal partial class FullBackupDetailsInternal |
| | 14 | | { |
| | 15 | | /// <summary> Initializes a new instance of FullBackupDetailsInternal. </summary> |
| 0 | 16 | | internal FullBackupDetailsInternal() |
| | 17 | | { |
| 0 | 18 | | } |
| | 19 | |
|
| | 20 | | /// <summary> Initializes a new instance of FullBackupDetailsInternal. </summary> |
| | 21 | | /// <param name="status"> Status of the backup operation. </param> |
| | 22 | | /// <param name="statusDetails"> The status details of backup operation. </param> |
| | 23 | | /// <param name="error"> Error encountered, if any, during the full backup operation. </param> |
| | 24 | | /// <param name="startTime"> The start time of the backup operation in UTC. </param> |
| | 25 | | /// <param name="endTime"> The end time of the backup operation in UTC. </param> |
| | 26 | | /// <param name="jobId"> Identifier for the full backup operation. </param> |
| | 27 | | /// <param name="azureStorageBlobContainerUri"> The Azure blob storage container Uri which contains the full bac |
| 10 | 28 | | internal FullBackupDetailsInternal(string status, string statusDetails, KeyVaultServiceError error, DateTimeOffs |
| | 29 | | { |
| 10 | 30 | | Status = status; |
| 10 | 31 | | StatusDetails = statusDetails; |
| 10 | 32 | | Error = error; |
| 10 | 33 | | StartTime = startTime; |
| 10 | 34 | | EndTime = endTime; |
| 10 | 35 | | JobId = jobId; |
| 10 | 36 | | AzureStorageBlobContainerUri = azureStorageBlobContainerUri; |
| 10 | 37 | | } |
| | 38 | |
|
| | 39 | | /// <summary> Status of the backup operation. </summary> |
| 0 | 40 | | public string Status { get; } |
| | 41 | | /// <summary> The status details of backup operation. </summary> |
| 0 | 42 | | public string StatusDetails { get; } |
| | 43 | | /// <summary> Error encountered, if any, during the full backup operation. </summary> |
| 8 | 44 | | public KeyVaultServiceError Error { get; } |
| | 45 | | /// <summary> The start time of the backup operation in UTC. </summary> |
| 0 | 46 | | public DateTimeOffset? StartTime { get; } |
| | 47 | | /// <summary> The end time of the backup operation in UTC. </summary> |
| 28 | 48 | | public DateTimeOffset? EndTime { get; } |
| | 49 | | /// <summary> Identifier for the full backup operation. </summary> |
| 0 | 50 | | public string JobId { get; } |
| | 51 | | /// <summary> The Azure blob storage container Uri which contains the full backup. </summary> |
| 4 | 52 | | public string AzureStorageBlobContainerUri { get; } |
| | 53 | | } |
| | 54 | | } |