/// <summary>
 /// Creates a new HealthProbeSettings with the specified Rule name within the
 /// specified Front Door.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// Name of the Resource group within the Azure subscription.
 /// </param>
 /// <param name='frontDoorName'>
 /// Name of the Front Door which is globally unique.
 /// </param>
 /// <param name='healthProbeSettingsName'>
 /// Name of the health probe settings which is unique within the Front Door.
 /// </param>
 /// <param name='healthProbeSettingsParameters'>
 /// HealthProbeSettings properties needed to create a new Front Door.
 /// </param>
 public static HealthProbeSettingsModel CreateOrUpdate(this IHealthProbeSettingsOperations operations, string resourceGroupName, string frontDoorName, string healthProbeSettingsName, HealthProbeSettingsModel healthProbeSettingsParameters)
 {
     return(operations.CreateOrUpdateAsync(resourceGroupName, frontDoorName, healthProbeSettingsName, healthProbeSettingsParameters).GetAwaiter().GetResult());
 }