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

Commit

Permalink
Generated from de47df0455941b085fde629959a2bc71d0e3101c (#4796)
Browse files Browse the repository at this point in the history
Enhanced A2ARecoveryPointDetails with "disks"
  • Loading branch information
AutorestCI authored Mar 5, 2019
1 parent 5b5d246 commit 60117d9
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 0 deletions.
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

0 comments on commit 60117d9

Please sign in to comment.