Module Constructors

Definition

Overloads

Module()

Initializes a new instance of the Module class.

Module(String, String, String)

Initializes a new instance of the Module class.

Module()

Initializes a new instance of the Module class.

public Module ();
Public Sub New ()

Applies to

Module(String, String, String)

Initializes a new instance of the Module class.

public Module (string name, string args = default, string version = default);
new Microsoft.Azure.Management.RedisEnterprise.Models.Module : string * string * string -> Microsoft.Azure.Management.RedisEnterprise.Models.Module
Public Sub New (name As String, Optional args As String = Nothing, Optional version As String = Nothing)

Parameters

name
String

The name of the module, e.g. 'RedisBloom', 'RediSearch', 'RedisTimeSeries'

args
String

Configuration options for the module, e.g. 'ERROR_RATE 0.01 INITIAL_SIZE 400'.

version
String

The version of the module, e.g. '1.0'.

Applies to