共用方式為


ServerUpdateParameters Constructors

Definition

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.PostgreSQL.Models.ResourceIdentity identity = default, Microsoft.Azure.Management.PostgreSQL.Models.Sku sku = default, Microsoft.Azure.Management.PostgreSQL.Models.StorageProfile storageProfile = default, string administratorLoginPassword = default, string version = default, Microsoft.Azure.Management.PostgreSQL.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.PostgreSQL.Models.ServerUpdateParameters : Microsoft.Azure.Management.PostgreSQL.Models.ResourceIdentity * Microsoft.Azure.Management.PostgreSQL.Models.Sku * Microsoft.Azure.Management.PostgreSQL.Models.StorageProfile * string * string * Nullable<Microsoft.Azure.Management.PostgreSQL.Models.SslEnforcementEnum> * string * string * string * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.PostgreSQL.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: '9.5', '9.6', '10', '10.0', '10.2', '11'

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