com.azure.resourcemanager.applicationinsights.models.Favorites Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-resourcemanager-applicationinsights Show documentation
Show all versions of azure-resourcemanager-applicationinsights Show documentation
This package contains Microsoft Azure SDK for ApplicationInsights Management SDK. For documentation on how to use this package, please see https://aka.ms/azsdk/java/mgmt. Composite Swagger for Application Insights Management Client. Package tag package-2022-04-01.
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.applicationinsights.models;
import com.azure.core.http.rest.Response;
import com.azure.core.util.Context;
import com.azure.resourcemanager.applicationinsights.fluent.models.ApplicationInsightsComponentFavoriteInner;
import java.util.List;
/** Resource collection API of Favorites. */
public interface Favorites {
/**
* Gets a list of favorites defined within an Application Insights component.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the Application Insights component resource.
* @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 list of favorites defined within an Application Insights component.
*/
List list(String resourceGroupName, String resourceName);
/**
* Gets a list of favorites defined within an Application Insights component.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the Application Insights component resource.
* @param favoriteType The type of favorite. Value can be either shared or user.
* @param sourceType Source type of favorite to return. When left out, the source type defaults to 'other' (not
* present in this enum).
* @param canFetchContent Flag indicating whether or not to return the full content for each applicable favorite. If
* false, only return summary content for favorites.
* @param tags Tags that must be present on each favorite returned.
* @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 list of favorites defined within an Application Insights component along with {@link Response}.
*/
Response> listWithResponse(
String resourceGroupName,
String resourceName,
FavoriteType favoriteType,
FavoriteSourceType sourceType,
Boolean canFetchContent,
List tags,
Context context);
/**
* Get a single favorite by its FavoriteId, defined within an Application Insights component.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the Application Insights component resource.
* @param favoriteId The Id of a specific favorite defined in the Application Insights component.
* @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 single favorite by its FavoriteId, defined within an Application Insights component.
*/
ApplicationInsightsComponentFavorite get(String resourceGroupName, String resourceName, String favoriteId);
/**
* Get a single favorite by its FavoriteId, defined within an Application Insights component.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the Application Insights component resource.
* @param favoriteId The Id of a specific favorite defined in the Application Insights component.
* @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 single favorite by its FavoriteId, defined within an Application Insights component along with {@link
* Response}.
*/
Response getWithResponse(
String resourceGroupName, String resourceName, String favoriteId, Context context);
/**
* Adds a new favorites to an Application Insights component.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the Application Insights component resource.
* @param favoriteId The Id of a specific favorite defined in the Application Insights component.
* @param favoriteProperties Properties that need to be specified to create a new favorite and add it to an
* Application Insights component.
* @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 properties that define a favorite that is associated to an Application Insights component.
*/
ApplicationInsightsComponentFavorite add(
String resourceGroupName,
String resourceName,
String favoriteId,
ApplicationInsightsComponentFavoriteInner favoriteProperties);
/**
* Adds a new favorites to an Application Insights component.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the Application Insights component resource.
* @param favoriteId The Id of a specific favorite defined in the Application Insights component.
* @param favoriteProperties Properties that need to be specified to create a new favorite and add it to an
* Application Insights component.
* @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 properties that define a favorite that is associated to an Application Insights component along with
* {@link Response}.
*/
Response addWithResponse(
String resourceGroupName,
String resourceName,
String favoriteId,
ApplicationInsightsComponentFavoriteInner favoriteProperties,
Context context);
/**
* Updates a favorite that has already been added to an Application Insights component.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the Application Insights component resource.
* @param favoriteId The Id of a specific favorite defined in the Application Insights component.
* @param favoriteProperties Properties that need to be specified to update the existing favorite.
* @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 properties that define a favorite that is associated to an Application Insights component.
*/
ApplicationInsightsComponentFavorite update(
String resourceGroupName,
String resourceName,
String favoriteId,
ApplicationInsightsComponentFavoriteInner favoriteProperties);
/**
* Updates a favorite that has already been added to an Application Insights component.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the Application Insights component resource.
* @param favoriteId The Id of a specific favorite defined in the Application Insights component.
* @param favoriteProperties Properties that need to be specified to update the existing favorite.
* @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 properties that define a favorite that is associated to an Application Insights component along with
* {@link Response}.
*/
Response updateWithResponse(
String resourceGroupName,
String resourceName,
String favoriteId,
ApplicationInsightsComponentFavoriteInner favoriteProperties,
Context context);
/**
* Remove a favorite that is associated to an Application Insights component.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the Application Insights component resource.
* @param favoriteId The Id of a specific favorite defined in the Application Insights component.
* @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 resourceName, String favoriteId);
/**
* Remove a favorite that is associated to an Application Insights component.
*
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the Application Insights component resource.
* @param favoriteId The Id of a specific favorite defined in the Application Insights component.
* @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 resourceName, String favoriteId, Context context);
}