/// <summary> /// Deletes the global policy configuration of the Api Management Service. /// </summary> /// <param name='operations'> /// The operations group for this extension method. /// </param> /// <param name='resourceGroupName'> /// The name of the resource group. /// </param> /// <param name='serviceName'> /// The name of the API Management service. /// </param> /// <param name='ifMatch'> /// ETag of the Entity. ETag should match the current entity state from the /// header response of the GET request or it should be * for unconditional /// update. /// </param> public static void Delete(this IPolicyOperations operations, string resourceGroupName, string serviceName, string ifMatch) { operations.DeleteAsync(resourceGroupName, serviceName, ifMatch).GetAwaiter().GetResult(); }
/// <summary> /// Deletes a Policy /// </summary> /// <param name='operations'> /// Reference to the /// Microsoft.Azure.Management.SiteRecovery.IPolicyOperations. /// </param> /// <param name='name'> /// Required. Policy name. /// </param> /// <param name='customRequestHeaders'> /// Optional. Request header parameters. /// </param> /// <returns> /// A standard service response for long running operations. /// </returns> public static Task <LongRunningOperationResponse> DeleteAsync(this IPolicyOperations operations, string name, CustomRequestHeaders customRequestHeaders) { return(operations.DeleteAsync(name, customRequestHeaders, CancellationToken.None)); }