
com.azure.resourcemanager.frontdoor.models.FrontendEndpoints Maven / Gradle / Ivy
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// Code generated by Microsoft (R) AutoRest Code Generator.
package com.azure.resourcemanager.frontdoor.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 FrontendEndpoints.
*/
public interface FrontendEndpoints {
/**
* Lists all of the frontend endpoints within a Front Door.
*
* @param resourceGroupName Name of the Resource group within the Azure subscription.
* @param frontDoorName Name of the Front Door which is globally unique.
* @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 result of the request to list frontend endpoints as paginated response with {@link PagedIterable}.
*/
PagedIterable listByFrontDoor(String resourceGroupName, String frontDoorName);
/**
* Lists all of the frontend endpoints within a Front Door.
*
* @param resourceGroupName Name of the Resource group within the Azure subscription.
* @param frontDoorName Name of the Front Door which is globally unique.
* @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 result of the request to list frontend endpoints as paginated response with {@link PagedIterable}.
*/
PagedIterable listByFrontDoor(String resourceGroupName, String frontDoorName, Context context);
/**
* Gets a Frontend endpoint with the specified name within the specified Front Door.
*
* @param resourceGroupName Name of the Resource group within the Azure subscription.
* @param frontDoorName Name of the Front Door which is globally unique.
* @param frontendEndpointName Name of the Frontend endpoint which is unique within the Front Door.
* @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 a Frontend endpoint with the specified name within the specified Front Door along with {@link Response}.
*/
Response getWithResponse(String resourceGroupName, String frontDoorName,
String frontendEndpointName, Context context);
/**
* Gets a Frontend endpoint with the specified name within the specified Front Door.
*
* @param resourceGroupName Name of the Resource group within the Azure subscription.
* @param frontDoorName Name of the Front Door which is globally unique.
* @param frontendEndpointName Name of the Frontend endpoint which is unique within the Front Door.
* @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 a Frontend endpoint with the specified name within the specified Front Door.
*/
FrontendEndpoint get(String resourceGroupName, String frontDoorName, String frontendEndpointName);
/**
* Enables a frontendEndpoint for HTTPS traffic.
*
* @param resourceGroupName Name of the Resource group within the Azure subscription.
* @param frontDoorName Name of the Front Door which is globally unique.
* @param frontendEndpointName Name of the Frontend endpoint which is unique within the Front Door.
* @param customHttpsConfiguration The configuration specifying how to enable HTTPS.
* @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 enableHttps(String resourceGroupName, String frontDoorName, String frontendEndpointName,
CustomHttpsConfiguration customHttpsConfiguration);
/**
* Enables a frontendEndpoint for HTTPS traffic.
*
* @param resourceGroupName Name of the Resource group within the Azure subscription.
* @param frontDoorName Name of the Front Door which is globally unique.
* @param frontendEndpointName Name of the Frontend endpoint which is unique within the Front Door.
* @param customHttpsConfiguration The configuration specifying how to enable HTTPS.
* @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.
*/
void enableHttps(String resourceGroupName, String frontDoorName, String frontendEndpointName,
CustomHttpsConfiguration customHttpsConfiguration, Context context);
/**
* Disables a frontendEndpoint for HTTPS traffic.
*
* @param resourceGroupName Name of the Resource group within the Azure subscription.
* @param frontDoorName Name of the Front Door which is globally unique.
* @param frontendEndpointName Name of the Frontend endpoint which is unique within the Front Door.
* @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 disableHttps(String resourceGroupName, String frontDoorName, String frontendEndpointName);
/**
* Disables a frontendEndpoint for HTTPS traffic.
*
* @param resourceGroupName Name of the Resource group within the Azure subscription.
* @param frontDoorName Name of the Front Door which is globally unique.
* @param frontendEndpointName Name of the Frontend endpoint which is unique within the Front Door.
* @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.
*/
void disableHttps(String resourceGroupName, String frontDoorName, String frontendEndpointName, Context context);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy