RedisRebootParameters 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
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.Redis.Models.RedisRebootParameters : string * Nullable<int> * System.Collections.Generic.IList<Nullable<int>> -> Microsoft.Azure.Management.Redis.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'
A list of redis instances to reboot, specified by per-instance SSL ports or non-SSL ports.
Applies to
Azure SDK for .NET