import * as pulumi from "@pulumi/pulumi"; /** * Use this data source to access information about an existing CDN Profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.cdn.getProfile({ * name: "myfirstcdnprofile", * resourceGroupName: "example-resources", * }); * export const cdnProfileId = example.then(example => example.id); * ``` */ export declare function getProfile(args: GetProfileArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProfile. */ export interface GetProfileArgs { /** * The name of the CDN Profile. */ name: string; /** * The name of the resource group in which the CDN Profile exists. */ resourceGroupName: string; } /** * A collection of values returned by getProfile. */ export interface GetProfileResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The Azure Region where the resource exists. */ readonly location: string; readonly name: string; readonly resourceGroupName: string; /** * The pricing related information of current CDN profile. */ readonly sku: string; /** * A mapping of tags assigned to the resource. */ readonly tags: { [key: string]: string; }; } /** * Use this data source to access information about an existing CDN Profile. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as azure from "@pulumi/azure"; * * const example = azure.cdn.getProfile({ * name: "myfirstcdnprofile", * resourceGroupName: "example-resources", * }); * export const cdnProfileId = example.then(example => example.id); * ``` */ export declare function getProfileOutput(args: GetProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProfile. */ export interface GetProfileOutputArgs { /** * The name of the CDN Profile. */ name: pulumi.Input; /** * The name of the resource group in which the CDN Profile exists. */ resourceGroupName: pulumi.Input; }