Skip to content

Commit

Permalink
Minor bug fix to recovery services backup (#5202)
Browse files Browse the repository at this point in the history
* Undoing an unintended removal of field

* Incorporating PR feedback

* Updating release notes

* Updating release notes

* Fixing csproj file

* Generating files using generate.ps1 file
  • Loading branch information
AdityaTulasi-xx authored and dsgouda committed Feb 4, 2019
1 parent f04e5e2 commit 3f95313
Show file tree
Hide file tree
Showing 34 changed files with 99 additions and 81 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ public AzureBackupServerEngine()
/// agent upgrade available</param>
/// <param name="isDpmUpgradeAvailable">To check if backup engine
/// upgrade available</param>
/// <param name="extendedInfo">Extended info of the
/// backupengine</param>
/// <param name="extendedInfo">Extended info of the backup
/// engine</param>
public AzureBackupServerEngine(string friendlyName = default(string), string backupManagementType = default(string), string registrationStatus = default(string), string backupEngineState = default(string), string healthStatus = default(string), bool? canReRegister = default(bool?), string backupEngineId = default(string), string dpmVersion = default(string), string azureBackupAgentVersion = default(string), bool? isAzureBackupAgentUpgradeAvailable = default(bool?), bool? isDpmUpgradeAvailable = default(bool?), BackupEngineExtendedInfo extendedInfo = default(BackupEngineExtendedInfo))
: base(friendlyName, backupManagementType, registrationStatus, backupEngineState, healthStatus, canReRegister, backupEngineId, dpmVersion, azureBackupAgentVersion, isAzureBackupAgentUpgradeAvailable, isDpmUpgradeAvailable, extendedInfo)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public AzureIaaSVMJobTaskDetails()
/// <param name="progressPercentage">Progress of the task.</param>
/// <param name="taskExecutionDetails">Details about execution of the
/// task.
/// eg: number of bytes transfered etc</param>
/// eg: number of bytes transferred etc</param>
public AzureIaaSVMJobTaskDetails(string taskId = default(string), System.DateTime? startTime = default(System.DateTime?), System.DateTime? endTime = default(System.DateTime?), string instanceId = default(string), System.TimeSpan? duration = default(System.TimeSpan?), string status = default(string), double? progressPercentage = default(double?), string taskExecutionDetails = default(string))
{
TaskId = taskId;
Expand Down Expand Up @@ -101,7 +101,7 @@ public AzureIaaSVMJobTaskDetails()

/// <summary>
/// Gets or sets details about execution of the task.
/// eg: number of bytes transfered etc
/// eg: number of bytes transferred etc
/// </summary>
[JsonProperty(PropertyName = "taskExecutionDetails")]
public string TaskExecutionDetails { get; set; }
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ public AzureVmWorkloadItem()
/// <param name="isAutoProtectable">Indicates if workload item is
/// auto-protectable</param>
/// <param name="subinquireditemcount">For instance or AG, indicates
/// number of DB's present</param>
/// number of DBs present</param>
/// <param name="subWorkloadItemCount">For instance or AG, indicates
/// number of DB's to be protected</param>
/// number of DBs to be protected</param>
public AzureVmWorkloadItem(string backupManagementType = default(string), string workloadType = default(string), string friendlyName = default(string), string protectionState = default(string), string parentName = default(string), string serverName = default(string), bool? isAutoProtectable = default(bool?), int? subinquireditemcount = default(int?), int? subWorkloadItemCount = default(int?))
: base(backupManagementType, workloadType, friendlyName, protectionState)
{
Expand Down Expand Up @@ -82,13 +82,13 @@ public AzureVmWorkloadItem()
public bool? IsAutoProtectable { get; set; }

/// <summary>
/// Gets or sets for instance or AG, indicates number of DB's present
/// Gets or sets for instance or AG, indicates number of DBs present
/// </summary>
[JsonProperty(PropertyName = "subinquireditemcount")]
public int? Subinquireditemcount { get; set; }

/// <summary>
/// Gets or sets for instance or AG, indicates number of DB's to be
/// Gets or sets for instance or AG, indicates number of DBs to be
/// protected
/// </summary>
[JsonProperty(PropertyName = "subWorkloadItemCount")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ public AzureVmWorkloadProtectableItem()
/// <param name="isAutoProtected">Indicates if protectable item is
/// auto-protected</param>
/// <param name="subinquireditemcount">For instance or AG, indicates
/// number of DB's present</param>
/// number of DBs present</param>
/// <param name="subprotectableitemcount">For instance or AG, indicates
/// number of DB's to be protected</param>
/// number of DBs to be protected</param>
/// <param name="prebackupvalidation">Pre-backup validation for
/// protectable objects</param>
public AzureVmWorkloadProtectableItem(string backupManagementType = default(string), string workloadType = default(string), string friendlyName = default(string), string protectionState = default(string), string parentName = default(string), string parentUniqueName = default(string), string serverName = default(string), bool? isAutoProtectable = default(bool?), bool? isAutoProtected = default(bool?), int? subinquireditemcount = default(int?), int? subprotectableitemcount = default(int?), PreBackupValidation prebackupvalidation = default(PreBackupValidation))
Expand Down Expand Up @@ -110,13 +110,13 @@ public AzureVmWorkloadProtectableItem()
public bool? IsAutoProtected { get; set; }

/// <summary>
/// Gets or sets for instance or AG, indicates number of DB's present
/// Gets or sets for instance or AG, indicates number of DBs present
/// </summary>
[JsonProperty(PropertyName = "subinquireditemcount")]
public int? Subinquireditemcount { get; set; }

/// <summary>
/// Gets or sets for instance or AG, indicates number of DB's to be
/// Gets or sets for instance or AG, indicates number of DBs to be
/// protected
/// </summary>
[JsonProperty(PropertyName = "subprotectableitemcount")]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ public AzureVmWorkloadSAPAseDatabaseProtectableItem()
/// <param name="isAutoProtected">Indicates if protectable item is
/// auto-protected</param>
/// <param name="subinquireditemcount">For instance or AG, indicates
/// number of DB's present</param>
/// number of DBs present</param>
/// <param name="subprotectableitemcount">For instance or AG, indicates
/// number of DB's to be protected</param>
/// number of DBs to be protected</param>
/// <param name="prebackupvalidation">Pre-backup validation for
/// protectable objects</param>
public AzureVmWorkloadSAPAseDatabaseProtectableItem(string backupManagementType = default(string), string workloadType = default(string), string friendlyName = default(string), string protectionState = default(string), string parentName = default(string), string parentUniqueName = default(string), string serverName = default(string), bool? isAutoProtectable = default(bool?), bool? isAutoProtected = default(bool?), int? subinquireditemcount = default(int?), int? subprotectableitemcount = default(int?), PreBackupValidation prebackupvalidation = default(PreBackupValidation))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public AzureVmWorkloadSAPAseDatabaseWorkloadItem()
/// <param name="isAutoProtectable">Indicates if workload item is
/// auto-protectable</param>
/// <param name="subinquireditemcount">For instance or AG, indicates
/// number of DB's present</param>
/// number of DBs present</param>
/// <param name="subWorkloadItemCount">For instance or AG, indicates
/// number of DB's to be protected</param>
/// number of DBs to be protected</param>
public AzureVmWorkloadSAPAseDatabaseWorkloadItem(string backupManagementType = default(string), string workloadType = default(string), string friendlyName = default(string), string protectionState = default(string), string parentName = default(string), string serverName = default(string), bool? isAutoProtectable = default(bool?), int? subinquireditemcount = default(int?), int? subWorkloadItemCount = default(int?))
: base(backupManagementType, workloadType, friendlyName, protectionState, parentName, serverName, isAutoProtectable, subinquireditemcount, subWorkloadItemCount)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ public AzureVmWorkloadSAPAseSystemProtectableItem()
/// <param name="isAutoProtected">Indicates if protectable item is
/// auto-protected</param>
/// <param name="subinquireditemcount">For instance or AG, indicates
/// number of DB's present</param>
/// number of DBs present</param>
/// <param name="subprotectableitemcount">For instance or AG, indicates
/// number of DB's to be protected</param>
/// number of DBs to be protected</param>
/// <param name="prebackupvalidation">Pre-backup validation for
/// protectable objects</param>
public AzureVmWorkloadSAPAseSystemProtectableItem(string backupManagementType = default(string), string workloadType = default(string), string friendlyName = default(string), string protectionState = default(string), string parentName = default(string), string parentUniqueName = default(string), string serverName = default(string), bool? isAutoProtectable = default(bool?), bool? isAutoProtected = default(bool?), int? subinquireditemcount = default(int?), int? subprotectableitemcount = default(int?), PreBackupValidation prebackupvalidation = default(PreBackupValidation))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public AzureVmWorkloadSAPAseSystemWorkloadItem()
/// <param name="isAutoProtectable">Indicates if workload item is
/// auto-protectable</param>
/// <param name="subinquireditemcount">For instance or AG, indicates
/// number of DB's present</param>
/// number of DBs present</param>
/// <param name="subWorkloadItemCount">For instance or AG, indicates
/// number of DB's to be protected</param>
/// number of DBs to be protected</param>
public AzureVmWorkloadSAPAseSystemWorkloadItem(string backupManagementType = default(string), string workloadType = default(string), string friendlyName = default(string), string protectionState = default(string), string parentName = default(string), string serverName = default(string), bool? isAutoProtectable = default(bool?), int? subinquireditemcount = default(int?), int? subWorkloadItemCount = default(int?))
: base(backupManagementType, workloadType, friendlyName, protectionState, parentName, serverName, isAutoProtectable, subinquireditemcount, subWorkloadItemCount)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ public AzureVmWorkloadSAPHanaDatabaseProtectableItem()
/// <param name="isAutoProtected">Indicates if protectable item is
/// auto-protected</param>
/// <param name="subinquireditemcount">For instance or AG, indicates
/// number of DB's present</param>
/// number of DBs present</param>
/// <param name="subprotectableitemcount">For instance or AG, indicates
/// number of DB's to be protected</param>
/// number of DBs to be protected</param>
/// <param name="prebackupvalidation">Pre-backup validation for
/// protectable objects</param>
public AzureVmWorkloadSAPHanaDatabaseProtectableItem(string backupManagementType = default(string), string workloadType = default(string), string friendlyName = default(string), string protectionState = default(string), string parentName = default(string), string parentUniqueName = default(string), string serverName = default(string), bool? isAutoProtectable = default(bool?), bool? isAutoProtected = default(bool?), int? subinquireditemcount = default(int?), int? subprotectableitemcount = default(int?), PreBackupValidation prebackupvalidation = default(PreBackupValidation))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ public AzureVmWorkloadSAPHanaDatabaseWorkloadItem()
/// <param name="isAutoProtectable">Indicates if workload item is
/// auto-protectable</param>
/// <param name="subinquireditemcount">For instance or AG, indicates
/// number of DB's present</param>
/// number of DBs present</param>
/// <param name="subWorkloadItemCount">For instance or AG, indicates
/// number of DB's to be protected</param>
/// number of DBs to be protected</param>
public AzureVmWorkloadSAPHanaDatabaseWorkloadItem(string backupManagementType = default(string), string workloadType = default(string), string friendlyName = default(string), string protectionState = default(string), string parentName = default(string), string serverName = default(string), bool? isAutoProtectable = default(bool?), int? subinquireditemcount = default(int?), int? subWorkloadItemCount = default(int?))
: base(backupManagementType, workloadType, friendlyName, protectionState, parentName, serverName, isAutoProtectable, subinquireditemcount, subWorkloadItemCount)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ public AzureVmWorkloadSAPHanaSystemProtectableItem()
/// <param name="isAutoProtected">Indicates if protectable item is
/// auto-protected</param>
/// <param name="subinquireditemcount">For instance or AG, indicates
/// number of DB's present</param>
/// number of DBs present</param>
/// <param name="subprotectableitemcount">For instance or AG, indicates
/// number of DB's to be protected</param>
/// number of DBs to be protected</param>
/// <param name="prebackupvalidation">Pre-backup validation for
/// protectable objects</param>
public AzureVmWorkloadSAPHanaSystemProtectableItem(string backupManagementType = default(string), string workloadType = default(string), string friendlyName = default(string), string protectionState = default(string), string parentName = default(string), string parentUniqueName = default(string), string serverName = default(string), bool? isAutoProtectable = default(bool?), bool? isAutoProtected = default(bool?), int? subinquireditemcount = default(int?), int? subprotectableitemcount = default(int?), PreBackupValidation prebackupvalidation = default(PreBackupValidation))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public AzureVmWorkloadSAPHanaSystemWorkloadItem()
/// <param name="isAutoProtectable">Indicates if workload item is
/// auto-protectable</param>
/// <param name="subinquireditemcount">For instance or AG, indicates
/// number of DB's present</param>
/// number of DBs present</param>
/// <param name="subWorkloadItemCount">For instance or AG, indicates
/// number of DB's to be protected</param>
/// number of DBs to be protected</param>
public AzureVmWorkloadSAPHanaSystemWorkloadItem(string backupManagementType = default(string), string workloadType = default(string), string friendlyName = default(string), string protectionState = default(string), string parentName = default(string), string serverName = default(string), bool? isAutoProtectable = default(bool?), int? subinquireditemcount = default(int?), int? subWorkloadItemCount = default(int?))
: base(backupManagementType, workloadType, friendlyName, protectionState, parentName, serverName, isAutoProtectable, subinquireditemcount, subWorkloadItemCount)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ public AzureVmWorkloadSQLAvailabilityGroupProtectableItem()
/// <param name="isAutoProtected">Indicates if protectable item is
/// auto-protected</param>
/// <param name="subinquireditemcount">For instance or AG, indicates
/// number of DB's present</param>
/// number of DBs present</param>
/// <param name="subprotectableitemcount">For instance or AG, indicates
/// number of DB's to be protected</param>
/// number of DBs to be protected</param>
/// <param name="prebackupvalidation">Pre-backup validation for
/// protectable objects</param>
public AzureVmWorkloadSQLAvailabilityGroupProtectableItem(string backupManagementType = default(string), string workloadType = default(string), string friendlyName = default(string), string protectionState = default(string), string parentName = default(string), string parentUniqueName = default(string), string serverName = default(string), bool? isAutoProtectable = default(bool?), bool? isAutoProtected = default(bool?), int? subinquireditemcount = default(int?), int? subprotectableitemcount = default(int?), PreBackupValidation prebackupvalidation = default(PreBackupValidation))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ public AzureVmWorkloadSQLDatabaseProtectableItem()
/// <param name="isAutoProtected">Indicates if protectable item is
/// auto-protected</param>
/// <param name="subinquireditemcount">For instance or AG, indicates
/// number of DB's present</param>
/// number of DBs present</param>
/// <param name="subprotectableitemcount">For instance or AG, indicates
/// number of DB's to be protected</param>
/// number of DBs to be protected</param>
/// <param name="prebackupvalidation">Pre-backup validation for
/// protectable objects</param>
public AzureVmWorkloadSQLDatabaseProtectableItem(string backupManagementType = default(string), string workloadType = default(string), string friendlyName = default(string), string protectionState = default(string), string parentName = default(string), string parentUniqueName = default(string), string serverName = default(string), bool? isAutoProtectable = default(bool?), bool? isAutoProtected = default(bool?), int? subinquireditemcount = default(int?), int? subprotectableitemcount = default(int?), PreBackupValidation prebackupvalidation = default(PreBackupValidation))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,9 @@ public AzureVmWorkloadSQLDatabaseWorkloadItem()
/// <param name="isAutoProtectable">Indicates if workload item is
/// auto-protectable</param>
/// <param name="subinquireditemcount">For instance or AG, indicates
/// number of DB's present</param>
/// number of DBs present</param>
/// <param name="subWorkloadItemCount">For instance or AG, indicates
/// number of DB's to be protected</param>
/// number of DBs to be protected</param>
public AzureVmWorkloadSQLDatabaseWorkloadItem(string backupManagementType = default(string), string workloadType = default(string), string friendlyName = default(string), string protectionState = default(string), string parentName = default(string), string serverName = default(string), bool? isAutoProtectable = default(bool?), int? subinquireditemcount = default(int?), int? subWorkloadItemCount = default(int?))
: base(backupManagementType, workloadType, friendlyName, protectionState, parentName, serverName, isAutoProtectable, subinquireditemcount, subWorkloadItemCount)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,9 +53,9 @@ public AzureVmWorkloadSQLInstanceProtectableItem()
/// <param name="isAutoProtected">Indicates if protectable item is
/// auto-protected</param>
/// <param name="subinquireditemcount">For instance or AG, indicates
/// number of DB's present</param>
/// number of DBs present</param>
/// <param name="subprotectableitemcount">For instance or AG, indicates
/// number of DB's to be protected</param>
/// number of DBs to be protected</param>
/// <param name="prebackupvalidation">Pre-backup validation for
/// protectable objects</param>
public AzureVmWorkloadSQLInstanceProtectableItem(string backupManagementType = default(string), string workloadType = default(string), string friendlyName = default(string), string protectionState = default(string), string parentName = default(string), string parentUniqueName = default(string), string serverName = default(string), bool? isAutoProtectable = default(bool?), bool? isAutoProtected = default(bool?), int? subinquireditemcount = default(int?), int? subprotectableitemcount = default(int?), PreBackupValidation prebackupvalidation = default(PreBackupValidation))
Expand Down
Loading

0 comments on commit 3f95313

Please sign in to comment.