次の方法で共有


RedisUpdateParameters Constructors

Definition

Overloads

RedisUpdateParameters()

Initializes a new instance of the RedisUpdateParameters class.

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

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(IDictionary<String,String>, ManagedServiceIdentity, String, Sku, RedisCommonPropertiesRedisConfiguration, String, Nullable<Boolean>, Nullable<Int32>, Nullable<Int32>, IDictionary<String, String>, Nullable<Int32>, String, String, Nullable<Boolean>)

Initializes a new instance of the RedisUpdateParameters class.

public RedisUpdateParameters (System.Collections.Generic.IDictionary<string,string> tags = default, Microsoft.Azure.Management.RedisCache.Models.ManagedServiceIdentity identity = default, string updateChannel = default, Microsoft.Azure.Management.RedisCache.Models.Sku sku = default, Microsoft.Azure.Management.RedisCache.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, bool? disableAccessKeyAuthentication = default);
new Microsoft.Azure.Management.RedisCache.Models.RedisUpdateParameters : System.Collections.Generic.IDictionary<string, string> * Microsoft.Azure.Management.RedisCache.Models.ManagedServiceIdentity * string * Microsoft.Azure.Management.RedisCache.Models.Sku * Microsoft.Azure.Management.RedisCache.Models.RedisCommonPropertiesRedisConfiguration * string * Nullable<bool> * Nullable<int> * Nullable<int> * System.Collections.Generic.IDictionary<string, string> * Nullable<int> * string * string * Nullable<bool> -> Microsoft.Azure.Management.RedisCache.Models.RedisUpdateParameters
Public Sub New (Optional tags As IDictionary(Of String, String) = Nothing, Optional identity As ManagedServiceIdentity = Nothing, Optional updateChannel As String = Nothing, Optional sku As Sku = Nothing, 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 disableAccessKeyAuthentication As Nullable(Of Boolean) = Nothing)

Parameters

tags
IDictionary<String,String>

Resource tags.

identity
ManagedServiceIdentity

The identity of the resource.

updateChannel
String

Optional: Specifies the update channel for the monthly Redis updates your Redis Cache will receive. Caches using 'Preview' update channel get latest Redis updates at least 4 weeks ahead of 'Stable' channel caches. Default value is 'Stable'. Possible values include: 'Stable', 'Preview'

sku
Sku

The SKU of the Redis cache to deploy.

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, aof-backup-enabled, aof-storage-connection-string-0, aof-storage-connection-string-1 etc.

redisVersion
String

Redis version. This should be in the form 'major[.minor]' (only 'major' is required) or the value 'latest' which refers to the latest stable Redis version that is available. Supported versions: 4.0, 6.0 (latest). Default value is 'latest'.

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'

disableAccessKeyAuthentication
Nullable<Boolean>

Authentication to Redis through access keys is disabled when set as true. Default value is false.

Applies to