共用方式為


RestoreParameters Constructors

Definition

Overloads

RestoreParameters()

Initializes a new instance of the RestoreParameters class.

RestoreParameters(String, String, Nullable<DateTime>, IList<DatabaseRestoreResource>)

Initializes a new instance of the RestoreParameters class.

RestoreParameters()

Initializes a new instance of the RestoreParameters class.

public RestoreParameters ();
Public Sub New ()

Applies to

RestoreParameters(String, String, Nullable<DateTime>, IList<DatabaseRestoreResource>)

Initializes a new instance of the RestoreParameters class.

public RestoreParameters (string restoreMode = default, string restoreSource = default, DateTime? restoreTimestampInUtc = default, System.Collections.Generic.IList<Microsoft.Azure.Management.CosmosDB.Models.DatabaseRestoreResource> databasesToRestore = default);
new Microsoft.Azure.Management.CosmosDB.Models.RestoreParameters : string * string * Nullable<DateTime> * System.Collections.Generic.IList<Microsoft.Azure.Management.CosmosDB.Models.DatabaseRestoreResource> -> Microsoft.Azure.Management.CosmosDB.Models.RestoreParameters
Public Sub New (Optional restoreMode As String = Nothing, Optional restoreSource As String = Nothing, Optional restoreTimestampInUtc As Nullable(Of DateTime) = Nothing, Optional databasesToRestore As IList(Of DatabaseRestoreResource) = Nothing)

Parameters

restoreMode
String

Describes the mode of the restore. Possible values include: 'PointInTime'

restoreSource
String

The id of the restorable database account from which the restore has to be initiated. For example: /subscriptions/{subscriptionId}/providers/Microsoft.DocumentDB/locations/{location}/restorableDatabaseAccounts/{restorableDatabaseAccountName}

restoreTimestampInUtc
Nullable<DateTime>

Time to which the account has to be restored (ISO-8601 format).

databasesToRestore
IList<DatabaseRestoreResource>

List of specific databases available for restore.

Applies to