UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

95 lines (94 loc) 3.23 kB
import * as pulumi from "@pulumi/pulumi"; /** * Get a single favorite by its FavoriteId, defined within an Application Insights component. * * Uses Azure REST API version 2015-05-01. */ export declare function getFavorite(args: GetFavoriteArgs, opts?: pulumi.InvokeOptions): Promise<GetFavoriteResult>; export interface GetFavoriteArgs { /** * The Id of a specific favorite defined in the Application Insights component */ favoriteId: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; /** * The name of the Application Insights component resource. */ resourceName: string; } /** * Properties that define a favorite that is associated to an Application Insights component. */ export interface GetFavoriteResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Favorite category, as defined by the user at creation time. */ readonly category?: string; /** * Configuration of this particular favorite, which are driven by the Azure portal UX. Configuration data is a string containing valid JSON */ readonly config?: string; /** * Internally assigned unique id of the favorite definition. */ readonly favoriteId: string; /** * Enum indicating if this favorite definition is owned by a specific user or is shared between all users with access to the Application Insights component. */ readonly favoriteType?: string; /** * Flag denoting wether or not this favorite was generated from a template. */ readonly isGeneratedFromTemplate?: boolean; /** * The user-defined name of the favorite. */ readonly name?: string; /** * The source of the favorite definition. */ readonly sourceType?: string; /** * A list of 0 or more tags that are associated with this favorite definition */ readonly tags?: string[]; /** * Date and time in UTC of the last modification that was made to this favorite definition. */ readonly timeModified: string; /** * Unique user id of the specific user that owns this favorite. */ readonly userId: string; /** * This instance's version of the data model. This can change as new features are added that can be marked favorite. Current examples include MetricsExplorer (ME) and Search. */ readonly version?: string; } /** * Get a single favorite by its FavoriteId, defined within an Application Insights component. * * Uses Azure REST API version 2015-05-01. */ export declare function getFavoriteOutput(args: GetFavoriteOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetFavoriteResult>; export interface GetFavoriteOutputArgs { /** * The Id of a specific favorite defined in the Application Insights component */ favoriteId: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; /** * The name of the Application Insights component resource. */ resourceName: pulumi.Input<string>; }