Skip to content
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 @@ -2743,6 +2743,10 @@ export interface BackupStatusResponse {
* 'NotProtected', 'Protecting', 'Protected', 'ProtectionFailed'
*/
protectionStatus?: ProtectionStatus;
/**
* @member {string} [vaultId] Specifies the arm resource id of the vault
*/
vaultId?: string;
/**
* @member {FabricName} [fabricName] Specifies the fabric name - Azure or AD.
* Possible values include: 'Invalid', 'Azure'
Expand Down Expand Up @@ -4113,6 +4117,10 @@ export interface PreValidateEnableBackupRequest {
* @member {string} [resourceId] ARM Virtual Machine Id
*/
resourceId?: string;
/**
* @member {string} [vaultId] Specifies the arm resource id of the vault
*/
vaultId?: string;
/**
* @member {string} [properties] Configuration of VM if any needs to be
* validated like OS type etc
Expand Down
12 changes: 12 additions & 0 deletions packages/@azure/arm-recoveryservicesbackup/lib/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2104,6 +2104,12 @@ export const BackupStatusResponse: msRest.CompositeMapper = {
name: "String"
}
},
vaultId: {
serializedName: "vaultId",
type: {
name: "String"
}
},
fabricName: {
serializedName: "fabricName",
type: {
Expand Down Expand Up @@ -3703,6 +3709,12 @@ export const PreValidateEnableBackupRequest: msRest.CompositeMapper = {
name: "String"
}
},
vaultId: {
serializedName: "vaultId",
type: {
name: "String"
}
},
properties: {
serializedName: "properties",
type: {
Expand Down