共用方式為


ClusterUpdate Constructors

Definition

Overloads

ClusterUpdate()

Initializes a new instance of the ClusterUpdate class.

ClusterUpdate(Sku, String, String, String, String, String, IList<PrivateEndpointConnection>, IDictionary<String,String>)

Initializes a new instance of the ClusterUpdate class.

ClusterUpdate()

Initializes a new instance of the ClusterUpdate class.

public ClusterUpdate ();
Public Sub New ()

Applies to

ClusterUpdate(Sku, String, String, String, String, String, IList<PrivateEndpointConnection>, IDictionary<String,String>)

Initializes a new instance of the ClusterUpdate class.

public ClusterUpdate (Microsoft.Azure.Management.RedisEnterprise.Models.Sku sku = default, string minimumTlsVersion = default, string hostName = default, string provisioningState = default, string resourceState = default, string redisVersion = default, System.Collections.Generic.IList<Microsoft.Azure.Management.RedisEnterprise.Models.PrivateEndpointConnection> privateEndpointConnections = default, System.Collections.Generic.IDictionary<string,string> tags = default);
new Microsoft.Azure.Management.RedisEnterprise.Models.ClusterUpdate : Microsoft.Azure.Management.RedisEnterprise.Models.Sku * string * string * string * string * string * System.Collections.Generic.IList<Microsoft.Azure.Management.RedisEnterprise.Models.PrivateEndpointConnection> * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Azure.Management.RedisEnterprise.Models.ClusterUpdate
Public Sub New (Optional sku As Sku = Nothing, Optional minimumTlsVersion As String = Nothing, Optional hostName As String = Nothing, Optional provisioningState As String = Nothing, Optional resourceState As String = Nothing, Optional redisVersion As String = Nothing, Optional privateEndpointConnections As IList(Of PrivateEndpointConnection) = Nothing, Optional tags As IDictionary(Of String, String) = Nothing)

Parameters

sku
Sku

The SKU to create, which affects price, performance, and features.

minimumTlsVersion
String

The minimum TLS version for the cluster to support, e.g. '1.2'. Possible values include: '1.0', '1.1', '1.2'

hostName
String

DNS name of the cluster endpoint

provisioningState
String

Current provisioning status of the cluster. Possible values include: 'Succeeded', 'Failed', 'Canceled', 'Creating', 'Updating', 'Deleting'

resourceState
String

Current resource status of the cluster. Possible values include: 'Running', 'Creating', 'CreateFailed', 'Updating', 'UpdateFailed', 'Deleting', 'DeleteFailed', 'Enabling', 'EnableFailed', 'Disabling', 'DisableFailed', 'Disabled'

redisVersion
String

Version of redis the cluster supports, e.g. '6'

privateEndpointConnections
IList<PrivateEndpointConnection>

List of private endpoint connections associated with the specified RedisEnterprise cluster

tags
IDictionary<String,String>

Resource tags.

Applies to