Skip to content
This repository was archived by the owner on May 5, 2023. It is now read-only.
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 @@ -20,6 +20,7 @@ class BackupStatusResponse {
* @property {string} [protectionStatus] Specifies whether the container is
* registered or not. Possible values include: 'Invalid', 'NotProtected',
* 'Protecting', 'Protected', 'ProtectionFailed'
* @property {string} [vaultId] Specifies the arm resource id of the vault
* @property {string} [fabricName] Specifies the fabric name - Azure or AD.
* Possible values include: 'Invalid', 'Azure'
* @property {string} [containerName] Specifies the product specific
Expand Down Expand Up @@ -56,6 +57,13 @@ class BackupStatusResponse {
name: 'String'
}
},
vaultId: {
required: false,
serializedName: 'vaultId',
type: {
name: 'String'
}
},
fabricName: {
required: false,
serializedName: 'fabricName',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1212,6 +1212,10 @@ export interface BackupStatusResponse {
* 'NotProtected', 'Protecting', 'Protected', 'ProtectionFailed'
*/
protectionStatus?: string;
/**
* Specifies the arm resource id of the vault
*/
vaultId?: string;
/**
* Specifies the fabric name - Azure or AD. Possible values include: 'Invalid', 'Azure'
*/
Expand Down Expand Up @@ -2098,6 +2102,10 @@ export interface PreValidateEnableBackupRequest {
* ARM Virtual Machine Id
*/
resourceId?: string;
/**
* Specifies the arm resource id of the vault
*/
vaultId?: string;
/**
* Configuration of VM if any needs to be validated like OS type etc
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class PreValidateEnableBackupRequest {
* 'SystemState', 'Client', 'GenericDataSource', 'SQLDataBase',
* 'AzureFileShare', 'SAPHanaDatabase', 'SAPAseDatabase'
* @property {string} [resourceId] ARM Virtual Machine Id
* @property {string} [vaultId] Specifies the arm resource id of the vault
* @property {string} [properties] Configuration of VM if any needs to be
* validated like OS type etc
*/
Expand Down Expand Up @@ -62,6 +63,13 @@ class PreValidateEnableBackupRequest {
name: 'String'
}
},
vaultId: {
required: false,
serializedName: 'vaultId',
type: {
name: 'String'
}
},
properties: {
required: false,
serializedName: 'properties',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,9 @@ export interface ProtectionIntentOperations {
*
* @param {string} [parameters.resourceId] ARM Virtual Machine Id
*
* @param {string} [parameters.vaultId] Specifies the arm resource id of the
* vault
*
* @param {string} [parameters.properties] Configuration of VM if any needs to
* be validated like OS type etc
*
Expand Down Expand Up @@ -75,6 +78,9 @@ export interface ProtectionIntentOperations {
*
* @param {string} [parameters.resourceId] ARM Virtual Machine Id
*
* @param {string} [parameters.vaultId] Specifies the arm resource id of the
* vault
*
* @param {string} [parameters.properties] Configuration of VM if any needs to
* be validated like OS type etc
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ const WebResource = msRest.WebResource;
*
* @param {string} [parameters.resourceId] ARM Virtual Machine Id
*
* @param {string} [parameters.vaultId] Specifies the arm resource id of the
* vault
*
* @param {string} [parameters.properties] Configuration of VM if any needs to
* be validated like OS type etc
*
Expand Down Expand Up @@ -723,6 +726,9 @@ class ProtectionIntentOperations {
*
* @param {string} [parameters.resourceId] ARM Virtual Machine Id
*
* @param {string} [parameters.vaultId] Specifies the arm resource id of the
* vault
*
* @param {string} [parameters.properties] Configuration of VM if any needs to
* be validated like OS type etc
*
Expand Down Expand Up @@ -770,6 +776,9 @@ class ProtectionIntentOperations {
*
* @param {string} [parameters.resourceId] ARM Virtual Machine Id
*
* @param {string} [parameters.vaultId] Specifies the arm resource id of the
* vault
*
* @param {string} [parameters.properties] Configuration of VM if any needs to
* be validated like OS type etc
*
Expand Down