/// <summary>
 /// Delete a security assessment on your resource. An assessment metadata that
 /// describes this assessment must be predefined with the same name before
 /// inserting the assessment result
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceId'>
 /// The identifier of the resource.
 /// </param>
 /// <param name='assessmentName'>
 /// The Assessment Key - Unique key for the assessment type
 /// </param>
 public static void Delete(this IAssessmentsOperations operations, string resourceId, string assessmentName)
 {
     operations.DeleteAsync(resourceId, assessmentName).GetAwaiter().GetResult();
 }