You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if(!string.IsNullOrEmpty(StorageKeyType))// the user enter a key type - we use it (and running over the previously defined key type)
127
+
if(MyInvocation.BoundParameters.ContainsKey(SecurityConstants.StorageKeyType))// the user enter a key type - we use it (and running over the previously defined key type)
@@ -173,17 +173,17 @@ private void ApplyUserInputToBlobAuditingModel(ServerBlobAuditingPolicyModel mod
173
173
model.StorageAccountName=StorageAccountName;
174
174
}
175
175
176
-
if(!string.IsNullOrEmpty(StorageKeyType))// the user enter a key type - we use it (and running over the previously defined key type)
176
+
if(MyInvocation.BoundParameters.ContainsKey(SecurityConstants.StorageKeyType))// the user enter a key type - we use it (and running over the previously defined key type)
0 commit comments