CreateMode Struct

Definition

Specifies the mode of sql pool creation.

Default: regular sql pool creation.

PointInTimeRestore: Creates a sql pool by restoring a point in time backup of an existing sql pool. sourceDatabaseId must be specified as the resource ID of the existing sql pool, and restorePointInTime must be specified.

Recovery: Creates a sql pool by a geo-replicated backup. sourceDatabaseId must be specified as the recoverableDatabaseId to restore.

Restore: Creates a sql pool by restoring a backup of a deleted sql pool. SourceDatabaseId should be the sql pool's original resource ID. SourceDatabaseId and sourceDatabaseDeletionDate must be specified.

public readonly struct CreateMode : IEquatable<Azure.Analytics.Synapse.Artifacts.Models.CreateMode>
type CreateMode = struct
Public Structure CreateMode
Implements IEquatable(Of CreateMode)
Inheritance
CreateMode
Implements

Constructors

CreateMode(String)

Initializes a new instance of CreateMode.

Properties

Default

Default.

PointInTimeRestore

PointInTimeRestore.

Recovery

Recovery.

Restore

Restore.

Methods

Equals(CreateMode)

Indicates whether the current object is equal to another object of the same type.

ToString()

Returns the fully qualified type name of this instance.

Operators

Equality(CreateMode, CreateMode)

Determines if two CreateMode values are the same.

Implicit(String to CreateMode)

Converts a string to a CreateMode.

Inequality(CreateMode, CreateMode)

Determines if two CreateMode values are not the same.

Applies to