Skip to content
This repository has been archived by the owner on May 5, 2023. It is now read-only.

[AutoPR recoveryservicessiterecovery/resource-manager] [Hub Generated] Review request for Microsoft.RecoveryServices to add version 2018-07-10 #4796

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ class A2ARecoveryPointDetails extends models['ProviderSpecificRecoveryPointDetai
* @property {string} [recoveryPointSyncType] A value indicating whether the
* recovery point is multi VM consistent. Possible values include:
* 'MultiVmSyncRecoveryPoint', 'PerVmRecoveryPoint'
* @property {array} [disks] List of disk ids representing a recovery point.
*/
constructor() {
super();
Expand Down Expand Up @@ -61,6 +62,20 @@ class A2ARecoveryPointDetails extends models['ProviderSpecificRecoveryPointDetai
type: {
name: 'String'
}
},
disks: {
required: false,
serializedName: 'disks',
type: {
name: 'Sequence',
element: {
required: false,
serializedName: 'StringElementType',
type: {
name: 'String'
}
}
}
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -620,6 +620,10 @@ export interface A2ARecoveryPointDetails extends ProviderSpecificRecoveryPointDe
* 'MultiVmSyncRecoveryPoint', 'PerVmRecoveryPoint'
*/
recoveryPointSyncType?: string;
/**
* List of disk ids representing a recovery point.
*/
disks?: string[];
}

/**
Expand Down