Skip to content
This repository was archived by the owner on Jan 11, 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 @@ -21,6 +21,9 @@ class BackupStatusResponse
# 'Protecting', 'Protected', 'ProtectionFailed'
attr_accessor :protection_status

# @return [String] Specifies the arm resource id of the vault
attr_accessor :vault_id

# @return [FabricName] Specifies the fabric name - Azure or AD. Possible
# values include: 'Invalid', 'Azure'
attr_accessor :fabric_name
Expand Down Expand Up @@ -65,6 +68,13 @@ def self.mapper()
name: 'String'
}
},
vault_id: {
required: false,
serialized_name: 'vaultId',
type: {
name: 'String'
}
},
fabric_name: {
required: false,
serialized_name: 'fabricName',
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ class PreValidateEnableBackupRequest
# @return [String] ARM Virtual Machine Id
attr_accessor :resource_id

# @return [String] Specifies the arm resource id of the vault
attr_accessor :vault_id

# @return [String] Configuration of VM if any needs to be validated like
# OS type etc
attr_accessor :properties
Expand Down Expand Up @@ -62,6 +65,13 @@ def self.mapper()
name: 'String'
}
},
vault_id: {
required: false,
serialized_name: 'vaultId',
type: {
name: 'String'
}
},
properties: {
required: false,
serialized_name: 'properties',
Expand Down