RedisUpdateParameters Constructors

Definition

Overloads

RedisUpdateParameters()

Initializes a new instance of the RedisUpdateParameters class.

RedisUpdateParameters(RedisCommonPropertiesRedisConfiguration, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, IDictionary<String,String>, Nullable<Int32>, String, String, Sku, IDictionary<String,String>, ManagedServiceIdentity)

Initializes a new instance of the RedisUpdateParameters class.

RedisUpdateParameters()

Initializes a new instance of the RedisUpdateParameters class.

public RedisUpdateParameters ();
Public Sub New ()

Applies to

RedisUpdateParameters(RedisCommonPropertiesRedisConfiguration, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, IDictionary<String,String>, Nullable<Int32>, String, String, Sku, IDictionary<String,String>, ManagedServiceIdentity)

Initializes a new instance of the RedisUpdateParameters class.

public RedisUpdateParameters (Microsoft.Azure.Management.Redis.Models.RedisCommonPropertiesRedisConfiguration redisConfiguration = default, string redisVersion = default, bool? enableNonSslPort = default, int? replicasPerMaster = default, int? replicasPerPrimary = default, System.Collections.Generic.IDictionary<string,string> tenantSettings = default, int? shardCount = default, string minimumTlsVersion = default, string publicNetworkAccess = default, Microsoft.Azure.Management.Redis.Models.Sku sku = default, System.Collections.Generic.IDictionary<string,string> tags = default, Microsoft.Azure.Management.Redis.Models.ManagedServiceIdentity identity = default);
new Microsoft.Azure.Management.Redis.Models.RedisUpdateParameters : Microsoft.Azure.Management.Redis.Models.RedisCommonPropertiesRedisConfiguration * string * Nullable<bool> * Nullable<int> * Nullable<int> * System.Collections.Generic.IDictionary<string, string> * Nullable<int> * string * string * Microsoft.Azure.Management.Redis.Models.Sku * System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Management.Redis.Models.ManagedServiceIdentity -> Microsoft.Azure.Management.Redis.Models.RedisUpdateParameters
Public Sub New (Optional redisConfiguration As RedisCommonPropertiesRedisConfiguration = Nothing, Optional redisVersion As String = Nothing, Optional enableNonSslPort As Nullable(Of Boolean) = Nothing, Optional replicasPerMaster As Nullable(Of Integer) = Nothing, Optional replicasPerPrimary As Nullable(Of Integer) = Nothing, Optional tenantSettings As IDictionary(Of String, String) = Nothing, Optional shardCount As Nullable(Of Integer) = Nothing, Optional minimumTlsVersion As String = Nothing, Optional publicNetworkAccess As String = Nothing, Optional sku As Sku = Nothing, Optional tags As IDictionary(Of String, String) = Nothing, Optional identity As ManagedServiceIdentity = Nothing)

Parameters

redisConfiguration
RedisCommonPropertiesRedisConfiguration

All Redis Settings. Few possible keys: rdb-backup-enabled,rdb-storage-connection-string,rdb-backup-frequency,maxmemory-delta,maxmemory-policy,notify-keyspace-events,maxmemory-samples,slowlog-log-slower-than,slowlog-max-len,list-max-ziplist-entries,list-max-ziplist-value,hash-max-ziplist-entries,hash-max-ziplist-value,set-max-intset-entries,zset-max-ziplist-entries,zset-max-ziplist-value etc.

redisVersion
String

Redis version. Only major version will be used in PUT/PATCH request with current valid values: (4, 6)

enableNonSslPort
Nullable<Boolean>

Specifies whether the non-ssl Redis server port (6379) is enabled.

replicasPerMaster
Nullable<Int32>

The number of replicas to be created per primary.

replicasPerPrimary
Nullable<Int32>

The number of replicas to be created per primary.

tenantSettings
IDictionary<String,String>

A dictionary of tenant settings

shardCount
Nullable<Int32>

The number of shards to be created on a Premium Cluster Cache.

minimumTlsVersion
String

Optional: requires clients to use a specified TLS version (or higher) to connect (e,g, '1.0', '1.1', '1.2'). Possible values include: '1.0', '1.1', '1.2'

publicNetworkAccess
String

Whether or not public endpoint access is allowed for this cache. Value is optional but if passed in, must be 'Enabled' or 'Disabled'. If 'Disabled', private endpoints are the exclusive access method. Default value is 'Enabled'. Possible values include: 'Enabled', 'Disabled'

sku
Sku

The SKU of the Redis cache to deploy.

tags
IDictionary<String,String>

Resource tags.

identity
ManagedServiceIdentity

The identity of the resource.

Applies to