com.azure.resourcemanager.datalakestore.models.VirtualNetworkRules Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-datalakestore Show documentation
Show all versions of azure-resourcemanager-datalakestore Show documentation
This package contains Microsoft Azure SDK for DataLakeStore Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Creates an Azure Data Lake Store account management client. Package tag package-2016-11.
The newest version!
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.datalakestore.models;
import com.azure.core.http.rest.PagedIterable;
import com.azure.core.http.rest.Response;
import com.azure.core.util.Context;
/** Resource collection API of VirtualNetworkRules. */
public interface VirtualNetworkRules {
/**
* Lists the Data Lake Store virtual network rules within the specified Data Lake Store account.
*
* @param resourceGroupName The name of the Azure resource group.
* @param accountName The name of the Data Lake Store account.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return data Lake Store virtual network rule list information as paginated response with {@link PagedIterable}.
*/
PagedIterable listByAccount(String resourceGroupName, String accountName);
/**
* Lists the Data Lake Store virtual network rules within the specified Data Lake Store account.
*
* @param resourceGroupName The name of the Azure resource group.
* @param accountName The name of the Data Lake Store account.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return data Lake Store virtual network rule list information as paginated response with {@link PagedIterable}.
*/
PagedIterable listByAccount(String resourceGroupName, String accountName, Context context);
/**
* Gets the specified Data Lake Store virtual network rule.
*
* @param resourceGroupName The name of the Azure resource group.
* @param accountName The name of the Data Lake Store account.
* @param virtualNetworkRuleName The name of the virtual network rule to retrieve.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the specified Data Lake Store virtual network rule along with {@link Response}.
*/
Response getWithResponse(
String resourceGroupName, String accountName, String virtualNetworkRuleName, Context context);
/**
* Gets the specified Data Lake Store virtual network rule.
*
* @param resourceGroupName The name of the Azure resource group.
* @param accountName The name of the Data Lake Store account.
* @param virtualNetworkRuleName The name of the virtual network rule to retrieve.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the specified Data Lake Store virtual network rule.
*/
VirtualNetworkRule get(String resourceGroupName, String accountName, String virtualNetworkRuleName);
/**
* Deletes the specified virtual network rule from the specified Data Lake Store account.
*
* @param resourceGroupName The name of the Azure resource group.
* @param accountName The name of the Data Lake Store account.
* @param virtualNetworkRuleName The name of the virtual network rule to delete.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response}.
*/
Response deleteWithResponse(
String resourceGroupName, String accountName, String virtualNetworkRuleName, Context context);
/**
* Deletes the specified virtual network rule from the specified Data Lake Store account.
*
* @param resourceGroupName The name of the Azure resource group.
* @param accountName The name of the Data Lake Store account.
* @param virtualNetworkRuleName The name of the virtual network rule to delete.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
void delete(String resourceGroupName, String accountName, String virtualNetworkRuleName);
/**
* Gets the specified Data Lake Store virtual network rule.
*
* @param id the resource ID.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the specified Data Lake Store virtual network rule along with {@link Response}.
*/
VirtualNetworkRule getById(String id);
/**
* Gets the specified Data Lake Store virtual network rule.
*
* @param id the resource ID.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the specified Data Lake Store virtual network rule along with {@link Response}.
*/
Response getByIdWithResponse(String id, Context context);
/**
* Deletes the specified virtual network rule from the specified Data Lake Store account.
*
* @param id the resource ID.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
*/
void deleteById(String id);
/**
* Deletes the specified virtual network rule from the specified Data Lake Store account.
*
* @param id the resource ID.
* @param context The context to associate with this operation.
* @throws IllegalArgumentException thrown if parameters fail the validation.
* @throws com.azure.core.management.exception.ManagementException thrown if the request is rejected by server.
* @throws RuntimeException all other wrapped checked exceptions if the request fails to be sent.
* @return the {@link Response}.
*/
Response deleteByIdWithResponse(String id, Context context);
/**
* Begins definition for a new VirtualNetworkRule resource.
*
* @param name resource name.
* @return the first stage of the new VirtualNetworkRule definition.
*/
VirtualNetworkRule.DefinitionStages.Blank define(String name);
}