Beispiel #1
0
 /// <summary>
 /// Deletes a linked service.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The resource group name.
 /// </param>
 /// <param name='factoryName'>
 /// The factory name.
 /// </param>
 /// <param name='linkedServiceName'>
 /// The linked service name.
 /// </param>
 public static void Delete(this ILinkedServicesOperations operations, string resourceGroupName, string factoryName, string linkedServiceName)
 {
     operations.DeleteAsync(resourceGroupName, factoryName, linkedServiceName).GetAwaiter().GetResult();
 }
 /// <summary>
 /// Deletes a linked service instance.
 /// </summary>
 /// <param name='operations'>
 /// The operations group for this extension method.
 /// </param>
 /// <param name='resourceGroupName'>
 /// The name of the resource group. The name is case insensitive.
 /// </param>
 /// <param name='workspaceName'>
 /// The name of the workspace.
 /// </param>
 /// <param name='linkedServiceName'>
 /// Name of the linked service.
 /// </param>
 public static LinkedService Delete(this ILinkedServicesOperations operations, string resourceGroupName, string workspaceName, string linkedServiceName)
 {
     return(operations.DeleteAsync(resourceGroupName, workspaceName, linkedServiceName).GetAwaiter().GetResult());
 }