BackupRequest Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
BackupRequest() |
Initializes a new instance of the BackupRequest class. |
BackupRequest(String, String, String, String, String, String, Nullable<Boolean>, BackupSchedule, IList<DatabaseBackupSetting>) |
Initializes a new instance of the BackupRequest class. |
BackupRequest()
Initializes a new instance of the BackupRequest class.
public BackupRequest ();
Public Sub New ()
Applies to
BackupRequest(String, String, String, String, String, String, Nullable<Boolean>, BackupSchedule, IList<DatabaseBackupSetting>)
Initializes a new instance of the BackupRequest class.
public BackupRequest (string storageAccountUrl, string id = default, string name = default, string kind = default, string type = default, string backupName = default, bool? enabled = default, Microsoft.Azure.Management.WebSites.Models.BackupSchedule backupSchedule = default, System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting> databases = default);
new Microsoft.Azure.Management.WebSites.Models.BackupRequest : string * string * string * string * string * string * Nullable<bool> * Microsoft.Azure.Management.WebSites.Models.BackupSchedule * System.Collections.Generic.IList<Microsoft.Azure.Management.WebSites.Models.DatabaseBackupSetting> -> Microsoft.Azure.Management.WebSites.Models.BackupRequest
Public Sub New (storageAccountUrl As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional kind As String = Nothing, Optional type As String = Nothing, Optional backupName As String = Nothing, Optional enabled As Nullable(Of Boolean) = Nothing, Optional backupSchedule As BackupSchedule = Nothing, Optional databases As IList(Of DatabaseBackupSetting) = Nothing)
Parameters
- storageAccountUrl
- String
SAS URL to the container.
- id
- String
Resource Id.
- name
- String
Resource Name.
- kind
- String
Kind of resource.
- type
- String
Resource type.
- backupName
- String
Name of the backup.
True if the backup schedule is enabled (must be included in that case), false if the backup schedule should be disabled.
- backupSchedule
- BackupSchedule
Schedule for the backup if it is executed periodically.
- databases
- IList<DatabaseBackupSetting>
Databases included in the backup.
Applies to
Azure SDK for .NET