BackupRequestInner Constructors

Definition

Overloads

BackupRequestInner()

Initializes a new instance of the BackupRequestInner class.

BackupRequestInner(String, String, String, String, String, String, Nullable<Boolean>, BackupSchedule, IList<DatabaseBackupSetting>)

Initializes a new instance of the BackupRequestInner class.

BackupRequestInner()

Initializes a new instance of the BackupRequestInner class.

public BackupRequestInner ();
Public Sub New ()

Applies to

BackupRequestInner(String, String, String, String, String, String, Nullable<Boolean>, BackupSchedule, IList<DatabaseBackupSetting>)

Initializes a new instance of the BackupRequestInner class.

public BackupRequestInner (string storageAccountUrl, string id = default, string name = default, string type = default, string kind = default, string backupName = default, bool? enabled = default, Microsoft.Azure.Management.AppService.Fluent.Models.BackupSchedule backupSchedule = default, System.Collections.Generic.IList<Microsoft.Azure.Management.AppService.Fluent.Models.DatabaseBackupSetting> databases = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.BackupRequestInner : string * string * string * string * string * string * Nullable<bool> * Microsoft.Azure.Management.AppService.Fluent.Models.BackupSchedule * System.Collections.Generic.IList<Microsoft.Azure.Management.AppService.Fluent.Models.DatabaseBackupSetting> -> Microsoft.Azure.Management.AppService.Fluent.Models.BackupRequestInner
Public Sub New (storageAccountUrl As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional kind 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
name
String
type
String
kind
String

Kind of resource.

backupName
String

Name of the backup.

enabled
Nullable<Boolean>

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