DeletedAppRestoreRequest Constructors

Definition

Overloads

DeletedAppRestoreRequest()

Initializes a new instance of the DeletedAppRestoreRequest class.

DeletedAppRestoreRequest(String, String, String, String, String, Nullable<Boolean>, String, Nullable<Boolean>)

Initializes a new instance of the DeletedAppRestoreRequest class.

DeletedAppRestoreRequest()

Initializes a new instance of the DeletedAppRestoreRequest class.

public DeletedAppRestoreRequest ();
Public Sub New ()

Applies to

DeletedAppRestoreRequest(String, String, String, String, String, Nullable<Boolean>, String, Nullable<Boolean>)

Initializes a new instance of the DeletedAppRestoreRequest class.

public DeletedAppRestoreRequest (string id = default, string name = default, string type = default, string kind = default, string deletedSiteId = default, bool? recoverConfiguration = default, string snapshotTime = default, bool? useDRSecondary = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.DeletedAppRestoreRequest : string * string * string * string * string * Nullable<bool> * string * Nullable<bool> -> Microsoft.Azure.Management.AppService.Fluent.Models.DeletedAppRestoreRequest
Public Sub New (Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional kind As String = Nothing, Optional deletedSiteId As String = Nothing, Optional recoverConfiguration As Nullable(Of Boolean) = Nothing, Optional snapshotTime As String = Nothing, Optional useDRSecondary As Nullable(Of Boolean) = Nothing)

Parameters

id
String
name
String
type
String
kind
String

Kind of resource.

deletedSiteId
String

ARM resource ID of the deleted app. Example: /subscriptions/{subId}/providers/Microsoft.Web/deletedSites/{deletedSiteId}

recoverConfiguration
Nullable<Boolean>

If true, deleted site configuration, in addition to content, will be restored.

snapshotTime
String

Point in time to restore the deleted app from, formatted as a DateTime string. If unspecified, default value is the time that the app was deleted.

useDRSecondary
Nullable<Boolean>

If true, the snapshot is retrieved from DRSecondary endpoint.

Applies to