ServerUpdateParameters Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ServerUpdateParameters() |
Initializes a new instance of the ServerUpdateParameters class. |
ServerUpdateParameters(ResourceIdentity, Sku, StorageProfile, String, String, Nullable<SslEnforcementEnum>, String, String, String, IDictionary<String,String>) |
Initializes a new instance of the ServerUpdateParameters class. |
ServerUpdateParameters()
Initializes a new instance of the ServerUpdateParameters class.
public ServerUpdateParameters ();
Public Sub New ()
Applies to
ServerUpdateParameters(ResourceIdentity, Sku, StorageProfile, String, String, Nullable<SslEnforcementEnum>, String, String, String, IDictionary<String,String>)
Initializes a new instance of the ServerUpdateParameters class.
public ServerUpdateParameters (Microsoft.Azure.Management.MySQL.Models.ResourceIdentity identity = default, Microsoft.Azure.Management.MySQL.Models.Sku sku = default, Microsoft.Azure.Management.MySQL.Models.StorageProfile storageProfile = default, string administratorLoginPassword = default, string version = default, Microsoft.Azure.Management.MySQL.Models.SslEnforcementEnum? sslEnforcement = default, string minimalTlsVersion = default, string publicNetworkAccess = default, string replicationRole = default, System.Collections.Generic.IDictionary<string,string> tags = default);
new Microsoft.Azure.Management.MySQL.Models.ServerUpdateParameters : Microsoft.Azure.Management.MySQL.Models.ResourceIdentity * Microsoft.Azure.Management.MySQL.Models.Sku * Microsoft.Azure.Management.MySQL.Models.StorageProfile * string * string * Nullable<Microsoft.Azure.Management.MySQL.Models.SslEnforcementEnum> * string * string * string * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.MySQL.Models.ServerUpdateParameters
Public Sub New (Optional identity As ResourceIdentity = Nothing, Optional sku As Sku = Nothing, Optional storageProfile As StorageProfile = Nothing, Optional administratorLoginPassword As String = Nothing, Optional version As String = Nothing, Optional sslEnforcement As Nullable(Of SslEnforcementEnum) = Nothing, Optional minimalTlsVersion As String = Nothing, Optional publicNetworkAccess As String = Nothing, Optional replicationRole As String = Nothing, Optional tags As IDictionary(Of String, String) = Nothing)
Parameters
- identity
- ResourceIdentity
The Azure Active Directory identity of the server.
- sku
- Sku
The SKU (pricing tier) of the server.
- storageProfile
- StorageProfile
Storage profile of a server.
- administratorLoginPassword
- String
The password of the administrator login.
- version
- String
The version of a server. Possible values include: '5.6', '5.7', '8.0'
- sslEnforcement
- Nullable<SslEnforcementEnum>
Enable ssl enforcement or not when connect to server. Possible values include: 'Enabled', 'Disabled'
- minimalTlsVersion
- String
Enforce a minimal Tls version for the server. Possible values include: 'TLS1_0', 'TLS1_1', 'TLS1_2', 'TLSEnforcementDisabled'
- publicNetworkAccess
- String
Whether or not public network access is allowed for this server. Value is optional but if passed in, must be 'Enabled' or 'Disabled'. Possible values include: 'Enabled', 'Disabled'
- replicationRole
- String
The replication role of the server.
- tags
- IDictionary<String,String>
Application-specific metadata in the form of key-value pairs.
Applies to
Azure SDK for .NET