ManagedInstanceUpdate Class

Definition

An update request for an Azure SQL Database managed instance.

[Microsoft.Rest.Serialization.JsonTransformation]
public class ManagedInstanceUpdate
[<Microsoft.Rest.Serialization.JsonTransformation>]
type ManagedInstanceUpdate = class
Public Class ManagedInstanceUpdate
Inheritance
ManagedInstanceUpdate
Attributes

Constructors

ManagedInstanceUpdate()

Initializes a new instance of the ManagedInstanceUpdate class.

ManagedInstanceUpdate(Sku, ManagedServerCreateMode, String, String, String, String, String, ManagedInstanceLicenseType, Nullable<Int32>, Nullable<Int32>, String, String, String, Nullable<Boolean>, String, Nullable<DateTime>, ManagedInstanceProxyOverride, String, String, IDictionary<String,String>)

Initializes a new instance of the ManagedInstanceUpdate class.

Properties

AdministratorLogin

Gets or sets administrator username for the managed instance. Can only be specified when the managed instance is being created (and is required for creation).

AdministratorLoginPassword

Gets or sets the administrator login password (required for managed instance creation).

Collation

Gets or sets collation of the managed instance.

DnsZone

Gets the Dns Zone that the managed instance is in.

DnsZonePartner

Gets or sets the resource id of another managed instance whose DNS zone this managed instance will share after creation.

FullyQualifiedDomainName

Gets the fully qualified domain name of the managed instance.

InstancePoolId

Gets or sets the Id of the instance pool this managed server belongs to.

LicenseType

Gets or sets the license type. Possible values are 'LicenseIncluded' (regular price inclusive of a new SQL license) and 'BasePrice' (discounted AHB price for bringing your own SQL licenses). Possible values include: 'LicenseIncluded', 'BasePrice'

ManagedInstanceCreateMode

Gets or sets specifies the mode of database creation.

Default: Regular instance creation.

Restore: Creates an instance by restoring a set of backups to specific point in time. RestorePointInTime and SourceManagedInstanceId must be specified. Possible values include: 'Default', 'PointInTimeRestore'

ProxyOverride

Gets or sets connection type used for connecting to the instance. Possible values include: 'Proxy', 'Redirect', 'Default'

PublicDataEndpointEnabled

Gets or sets whether or not the public data endpoint is enabled.

RestorePointInTime

Gets or sets specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database.

Sku

Gets or sets managed instance sku

SourceManagedInstanceId

Gets or sets the resource identifier of the source managed instance associated with create operation of this instance.

State

Gets the state of the managed instance.

StorageSizeInGB

Gets or sets storage size in GB. Minimum value: 32. Maximum value: 8192. Increments of 32 GB allowed only.

SubnetId

Gets or sets subnet resource ID for the managed instance.

Tags

Gets or sets resource tags.

TimezoneId

Gets or sets id of the timezone. Allowed values are timezones supported by Windows. Windows keeps details on supported timezones, including the id, in registry under KEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows NT\CurrentVersion\Time Zones. You can get those registry values via SQL Server by querying SELECT name AS timezone_id FROM sys.time_zone_info. List of Ids can also be obtained by executing [System.TimeZoneInfo]::GetSystemTimeZones() in PowerShell. An example of valid timezone id is "Pacific Standard Time" or "W. Europe Standard Time".

VCores

Gets or sets the number of vCores. Allowed values: 8, 16, 24, 32, 40, 64, 80.

Methods

Validate()

Validate the object.

Applies to