< Back

New-AzureRmRedisCacheKey

Tue Jan 29, 2019 10:04 pm

NAME New-AzureRmRedisCacheKey



SYNOPSIS

Regenerates the access key of a Redis Cache.





SYNTAX

New-AzureRmRedisCacheKey [-DefaultProfile <IAzureContextContainer>] [-Force] -KeyType {Primary | Secondary} -Name <String> [-ResourceGroupName

<String>] [-Confirm] [-WhatIf] [<CommonParameters>]





DESCRIPTION

The New-AzureRmRedisCacheKey cmdlet regenerates the access key of an Azure Redis Cache.





PARAMETERS

-DefaultProfile <IAzureContextContainer>

The credentials, account, tenant, and subscription used for communication with azure.



Required? false

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Force [<SwitchParameter>]

Forces the command to run without asking for user confirmation.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



-KeyType <String>

Specifies whether to regenerate the primary or secondary access key. Valid values are: Primary, Secondary.



Required? true

Position? named

Default value None

Accept pipeline input? False

Accept wildcard characters? false



-Name <String>

Specifies the name of the Redis Cache.



Required? true

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-ResourceGroupName <String>

Specifies the name of the resource group that contains the Redis Cache.



Required? false

Position? named

Default value None

Accept pipeline input? True (ByPropertyName)

Accept wildcard characters? false



-Confirm [<SwitchParameter>]

Prompts you for confirmation before running the cmdlet.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



-WhatIf [<SwitchParameter>]

Shows what would happen if the cmdlet runs. The cmdlet is not run.



Required? false

Position? named

Default value False

Accept pipeline input? False

Accept wildcard characters? false



<CommonParameters>

This cmdlet supports the common parameters: Verbose, Debug,

ErrorAction, ErrorVariable, WarningAction, WarningVariable,

OutBuffer, PipelineVariable, and OutVariable. For more information, see

about_CommonParameters (http://go.microsoft.com/fwlink/?LinkID=113216).



INPUTS

None

You can pipe input to this cmdlet by name, but not by value.





OUTPUTS

Microsoft.Azure.Management.Redis.Models.RedisAccessKeys

This cmdlet returns the primary and secondary access key of a Redis Cache.





NOTES









Example 1: Regenerate a primary key



PS C:\\>New-AzureRmRedisCacheKey -ResourceGroupName "ResourceGroup03" -Name "myCache" -KeyType "Primary" -Force



PrimaryKey : pJ+jruGKPHDKsEC8kmoybobH3TZx2njBR3ipEsquZFo=



SecondaryKey : sJ+jruGKPHDKsEC8kmoybobH3TZx2njBR3ipEsquZFo=



This command regenerates the primary key of a Redis Cache.





Example 2: Regenerate a secondary key



PS C:\\>New-AzureRmRedisCacheKey -ResourceGroupName "ResourceGroup03" -Name "myCache" -KeyType "Secondary" -Force

PrimaryKey : pJ+jruGKPHDKsEC8kmoybobH3TZx2njBR3ipEsquZFo=



SecondaryKey : sJ+jruGKPHDKsEC8kmoybobH3TZx2njBR3ipEsquZFo=



This command regenerates the secondary key of a Redis Cache.







RELATED LINKS

Online Version: https://docs.microsoft.com/en-us/powers ... iscachekey

Get-AzureRmRedisCacheKey