RedisCache.Update Interface
Implementações
public static interface RedisCache.Update
extends Appliable<RedisCache>, UpdateWithTags<Update>, WithSku, WithNonSslPort, WithRedisConfiguration
O modelo para uma operação de atualização do Cache Redis, que contém todas as configurações que podem ser modificadas.
Resumo do método
Modificador e tipo | Método e descrição |
---|---|
abstract Update |
withFirewallRule(RedisFirewallRule rule)
Cria ou atualiza a regra de firewall do cache Redis com intervalo de endereços IP com permissão para se conectar ao cache. |
abstract Update |
withFirewallRule(String name, String lowestIp, String highestIp)
Cria ou atualiza a regra de firewall do cache Redis com intervalo de endereços IP com permissão para se conectar ao cache. |
abstract Update |
withMinimumTlsVersion(TlsVersion tlsVersion)
Exige que os clientes usem uma versão do TLS especificada (ou superior) para se conectar (por exemplo, '1.0', '1.1', '1.2'). |
abstract Update |
withPatchSchedule(DayOfWeek dayOfWeek, int startHourUtc)
Adiciona o agendamento de patch ao Cache de Cluster Premium atual. |
abstract Update |
withPatchSchedule(DayOfWeek dayOfWeek, int startHourUtc, Period maintenanceWindow)
Adiciona o agendamento de patch ao Cache de Cluster Premium atual. |
abstract Update |
withPatchSchedule(ScheduleEntry scheduleEntry)
Adiciona o agendamento de patch ao Cache de Cluster Premium atual. |
abstract Update |
withPatchSchedule(List<ScheduleEntry> scheduleEntry)
Adiciona o agendamento de patch ao Cache de Cluster Premium atual. |
abstract Update |
withShardCount(int shardCount)
O número de fragmentos a serem criados em um Cache de Cluster Premium. |
abstract Update |
withoutFirewallRule(String name)
Exclui uma única regra de firewall na instância atual do cache Redis. |
abstract Update |
withoutMinimumTlsVersion()
Remove o requisito para a versão mínima do TLS dos clientes. |
abstract Update |
withoutPatchSchedule()
Remove todos os agendamentos de patch do Cache de Cluster Premium atual. |
Detalhes do método
withFirewallRule
public abstract RedisCache.Update withFirewallRule(RedisFirewallRule rule)
Cria ou atualiza a regra de firewall do cache Redis com intervalo de endereços IP com permissão para se conectar ao cache.
Parameters:
Returns:
withFirewallRule
public abstract RedisCache.Update withFirewallRule(String name, String lowestIp, String highestIp)
Cria ou atualiza a regra de firewall do cache Redis com intervalo de endereços IP com permissão para se conectar ao cache.
Parameters:
Returns:
withMinimumTlsVersion
public abstract RedisCache.Update withMinimumTlsVersion(TlsVersion tlsVersion)
Exige que os clientes usem uma versão do TLS especificada (ou superior) para se conectar (por exemplo, '1.0', '1.1', '1.2').
Parameters:
Returns:
withPatchSchedule
public abstract RedisCache.Update withPatchSchedule(DayOfWeek dayOfWeek, int startHourUtc)
Adiciona o agendamento de patch ao Cache de Cluster Premium atual.
Parameters:
Returns:
withPatchSchedule
public abstract RedisCache.Update withPatchSchedule(DayOfWeek dayOfWeek, int startHourUtc, Period maintenanceWindow)
Adiciona o agendamento de patch ao Cache de Cluster Premium atual.
Parameters:
Returns:
withPatchSchedule
public abstract RedisCache.Update withPatchSchedule(ScheduleEntry scheduleEntry)
Adiciona o agendamento de patch ao Cache de Cluster Premium atual.
Parameters:
Returns:
withPatchSchedule
public abstract RedisCache.Update withPatchSchedule(List
Adiciona o agendamento de patch ao Cache de Cluster Premium atual.
Parameters:
Returns:
withShardCount
public abstract RedisCache.Update withShardCount(int shardCount)
O número de fragmentos a serem criados em um Cache de Cluster Premium.
Parameters:
Returns:
withoutFirewallRule
public abstract RedisCache.Update withoutFirewallRule(String name)
Exclui uma única regra de firewall na instância atual do cache Redis.
Parameters:
Returns:
withoutMinimumTlsVersion
public abstract RedisCache.Update withoutMinimumTlsVersion()
Remove o requisito para a versão mínima do TLS dos clientes.
Returns:
withoutPatchSchedule
public abstract RedisCache.Update withoutPatchSchedule()
Remove todos os agendamentos de patch do Cache de Cluster Premium atual.
Returns:
Aplica-se a
Azure SDK for Java