ServerUpdateParameters Class

Parameters allowed to update for a server.

Inheritance
ServerUpdateParameters

Constructor

ServerUpdateParameters(*, identity: Optional[azure.mgmt.rdbms.mysql.models._models_py3.ResourceIdentity] = None, sku: Optional[azure.mgmt.rdbms.mysql.models._models_py3.Sku] = None, tags: Optional[Dict[str, str]] = None, storage_profile: Optional[azure.mgmt.rdbms.mysql.models._models_py3.StorageProfile] = None, administrator_login_password: Optional[str] = None, version: Optional[Union[str, azure.mgmt.rdbms.mysql.models._my_sql_management_client_enums.ServerVersion]] = None, ssl_enforcement: Optional[Union[str, azure.mgmt.rdbms.mysql.models._my_sql_management_client_enums.SslEnforcementEnum]] = None, minimal_tls_version: Optional[Union[str, azure.mgmt.rdbms.mysql.models._my_sql_management_client_enums.MinimalTlsVersionEnum]] = None, public_network_access: Optional[Union[str, azure.mgmt.rdbms.mysql.models._my_sql_management_client_enums.PublicNetworkAccessEnum]] = None, replication_role: Optional[str] = None, **kwargs)

Variables

identity
ResourceIdentity

The Azure Active Directory identity of the server.

sku
Sku

The SKU (pricing tier) of the server.

tags
dict[str, str]

A set of tags. Application-specific metadata in the form of key-value pairs.

storage_profile
StorageProfile

Storage profile of a server.

administrator_login_password
str

The password of the administrator login.

version
str or ServerVersion

The version of a server. Possible values include: "5.6", "5.7", "8.0".

ssl_enforcement
str or SslEnforcementEnum

Enable ssl enforcement or not when connect to server. Possible values include: "Enabled", "Disabled".

minimal_tls_version
str or MinimalTlsVersionEnum

Enforce a minimal Tls version for the server. Possible values include: "TLS1_0", "TLS1_1", "TLS1_2", "TLSEnforcementDisabled".

public_network_access
str or PublicNetworkAccessEnum

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

replication_role
str

The replication role of the server.