ManagedInstanceInner Constructors

Definition

Overloads

ManagedInstanceInner()

Initializes a new instance of the ManagedInstanceInner class.

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

Initializes a new instance of the ManagedInstanceInner class.

ManagedInstanceInner()

Initializes a new instance of the ManagedInstanceInner class.

public ManagedInstanceInner ();
Public Sub New ()

Applies to

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

Initializes a new instance of the ManagedInstanceInner class.

public ManagedInstanceInner (string location, string id = default, string name = default, string type = default, System.Collections.Generic.IDictionary<string,string> tags = default, Microsoft.Azure.Management.Sql.Fluent.Models.ResourceIdentity identity = default, Microsoft.Azure.Management.Sql.Fluent.Models.Sku sku = default, Microsoft.Azure.Management.Sql.Fluent.Models.ManagedServerCreateMode managedInstanceCreateMode = default, string fullyQualifiedDomainName = default, string administratorLogin = default, string administratorLoginPassword = default, string subnetId = default, string state = default, Microsoft.Azure.Management.Sql.Fluent.Models.ManagedInstanceLicenseType licenseType = default, int? vCores = default, int? storageSizeInGB = default, string collation = default, string dnsZone = default, string dnsZonePartner = default, bool? publicDataEndpointEnabled = default, string sourceManagedInstanceId = default, DateTime? restorePointInTime = default, Microsoft.Azure.Management.Sql.Fluent.Models.ManagedInstanceProxyOverride proxyOverride = default, string timezoneId = default, string instancePoolId = default);
new Microsoft.Azure.Management.Sql.Fluent.Models.ManagedInstanceInner : string * string * string * string * System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Management.Sql.Fluent.Models.ResourceIdentity * Microsoft.Azure.Management.Sql.Fluent.Models.Sku * Microsoft.Azure.Management.Sql.Fluent.Models.ManagedServerCreateMode * string * string * string * string * string * Microsoft.Azure.Management.Sql.Fluent.Models.ManagedInstanceLicenseType * Nullable<int> * Nullable<int> * string * string * string * Nullable<bool> * string * Nullable<DateTime> * Microsoft.Azure.Management.Sql.Fluent.Models.ManagedInstanceProxyOverride * string * string -> Microsoft.Azure.Management.Sql.Fluent.Models.ManagedInstanceInner
Public Sub New (location As String, Optional id As String = Nothing, Optional name As String = Nothing, Optional type As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional identity As ResourceIdentity = Nothing, Optional sku As Sku = Nothing, Optional managedInstanceCreateMode As ManagedServerCreateMode = Nothing, Optional fullyQualifiedDomainName As String = Nothing, Optional administratorLogin As String = Nothing, Optional administratorLoginPassword As String = Nothing, Optional subnetId As String = Nothing, Optional state As String = Nothing, Optional licenseType As ManagedInstanceLicenseType = Nothing, Optional vCores As Nullable(Of Integer) = Nothing, Optional storageSizeInGB As Nullable(Of Integer) = Nothing, Optional collation As String = Nothing, Optional dnsZone As String = Nothing, Optional dnsZonePartner As String = Nothing, Optional publicDataEndpointEnabled As Nullable(Of Boolean) = Nothing, Optional sourceManagedInstanceId As String = Nothing, Optional restorePointInTime As Nullable(Of DateTime) = Nothing, Optional proxyOverride As ManagedInstanceProxyOverride = Nothing, Optional timezoneId As String = Nothing, Optional instancePoolId As String = Nothing)

Parameters

location
String

Resource location.

id
String
name
String
type
String
tags
IDictionary<String,String>

Resource tags.

identity
ResourceIdentity

The Azure Active Directory identity of the managed instance.

sku
Sku

Managed instance SKU. Allowed values for sku.name: GP_Gen4, GP_Gen5, BC_Gen4, BC_Gen5

managedInstanceCreateMode
ManagedServerCreateMode

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'
fullyQualifiedDomainName
String

The fully qualified domain name of the managed instance.

administratorLogin
String

Administrator username for the managed instance. Can only be specified when the managed instance is being created (and is required for creation).

administratorLoginPassword
String

The administrator login password (required for managed instance creation).

subnetId
String

Subnet resource ID for the managed instance.

state
String

The state of the managed instance.

licenseType
ManagedInstanceLicenseType

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'

vCores
Nullable<Int32>

The number of vCores. Allowed values: 8, 16, 24, 32, 40, 64, 80.

storageSizeInGB
Nullable<Int32>

Storage size in GB. Minimum value: 32. Maximum value: 8192. Increments of 32 GB allowed only.

collation
String

Collation of the managed instance.

dnsZone
String

The Dns Zone that the managed instance is in.

dnsZonePartner
String

The resource id of another managed instance whose DNS zone this managed instance will share after creation.

publicDataEndpointEnabled
Nullable<Boolean>

Whether or not the public data endpoint is enabled.

sourceManagedInstanceId
String

The resource identifier of the source managed instance associated with create operation of this instance.

restorePointInTime
Nullable<DateTime>

Specifies the point in time (ISO8601 format) of the source database that will be restored to create the new database.

proxyOverride
ManagedInstanceProxyOverride

Connection type used for connecting to the instance. Possible values include: 'Proxy', 'Redirect', 'Default'

timezoneId
String

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".

instancePoolId
String

The Id of the instance pool this managed server belongs to.

Applies to