From 26985083c7c4e81145380f900adb969193bc6bb0 Mon Sep 17 00:00:00 2001 From: Nir Moshe Date: Thu, 9 Jan 2025 14:21:01 +0200 Subject: [PATCH] Fix type case issues in "KeyRotationPolicyActionType" for "armkeyvault" package. --- sdk/resourcemanager/keyvault/armkeyvault/constants.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sdk/resourcemanager/keyvault/armkeyvault/constants.go b/sdk/resourcemanager/keyvault/armkeyvault/constants.go index 0d763ddfb848..83de4e194a31 100644 --- a/sdk/resourcemanager/keyvault/armkeyvault/constants.go +++ b/sdk/resourcemanager/keyvault/armkeyvault/constants.go @@ -320,8 +320,8 @@ func PossibleKeyPermissionsValues() []KeyPermissions { type KeyRotationPolicyActionType string const ( - KeyRotationPolicyActionTypeNotify KeyRotationPolicyActionType = "notify" - KeyRotationPolicyActionTypeRotate KeyRotationPolicyActionType = "rotate" + KeyRotationPolicyActionTypeNotify KeyRotationPolicyActionType = "Notify" + KeyRotationPolicyActionTypeRotate KeyRotationPolicyActionType = "Rotate" ) // PossibleKeyRotationPolicyActionTypeValues returns the possible values for the KeyRotationPolicyActionType const type.