Sdílet prostřednictvím


RedisRebootParameters Constructors

Definition

Overloads

RedisRebootParameters()

Initializes a new instance of the RedisRebootParameters class.

RedisRebootParameters(String, Nullable<Int32>, IList<Nullable<Int32>>)

Initializes a new instance of the RedisRebootParameters class.

RedisRebootParameters()

Initializes a new instance of the RedisRebootParameters class.

public RedisRebootParameters ();
Public Sub New ()

Applies to

RedisRebootParameters(String, Nullable<Int32>, IList<Nullable<Int32>>)

Initializes a new instance of the RedisRebootParameters class.

public RedisRebootParameters (string rebootType = default, int? shardId = default, System.Collections.Generic.IList<int?> ports = default);
new Microsoft.Azure.Management.RedisCache.Models.RedisRebootParameters : string * Nullable<int> * System.Collections.Generic.IList<Nullable<int>> -> Microsoft.Azure.Management.RedisCache.Models.RedisRebootParameters
Public Sub New (Optional rebootType As String = Nothing, Optional shardId As Nullable(Of Integer) = Nothing, Optional ports As IList(Of Nullable(Of Integer)) = Nothing)

Parameters

rebootType
String

Which Redis node(s) to reboot. Depending on this value data loss is possible. Possible values include: 'PrimaryNode', 'SecondaryNode', 'AllNodes'

shardId
Nullable<Int32>

If clustering is enabled, the ID of the shard to be rebooted.

ports
IList<Nullable<Int32>>

A list of redis instances to reboot, specified by per-instance SSL ports or non-SSL ports.

Applies to