GetProfile

Use this data source to access information about an existing CDN Profile.

Example Usage

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
    public MyStack()
    {
        var example = Output.Create(Azure.Cdn.GetProfile.InvokeAsync(new Azure.Cdn.GetProfileArgs
        {
            Name = "myfirstcdnprofile",
            ResourceGroupName = "example-resources",
        }));
        this.CdnProfileId = example.Apply(example => example.Id);
    }

    [Output("cdnProfileId")]
    public Output<string> CdnProfileId { get; set; }
}
package main

import (
    "github.com/pulumi/pulumi-azure/sdk/v3/go/azure/cdn"
    "github.com/pulumi/pulumi/sdk/v2/go/pulumi"
)

func main() {
    pulumi.Run(func(ctx *pulumi.Context) error {
        example, err := cdn.LookupProfile(ctx, &cdn.LookupProfileArgs{
            Name:              "myfirstcdnprofile",
            ResourceGroupName: "example-resources",
        }, nil)
        if err != nil {
            return err
        }
        ctx.Export("cdnProfileId", example.Id)
        return nil
    })
}
import pulumi
import pulumi_azure as azure

example = azure.cdn.get_profile(name="myfirstcdnprofile",
    resource_group_name="example-resources")
pulumi.export("cdnProfileId", example.id)
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);

Using GetProfile

function getProfile(args: GetProfileArgs, opts?: InvokeOptions): Promise<GetProfileResult>
function  get_profile(name=None, resource_group_name=None, opts=None)
func LookupProfile(ctx *Context, args *LookupProfileArgs, opts ...InvokeOption) (*LookupProfileResult, error)

Note: This function is named LookupProfile in the Go SDK.

public static class GetProfile {
    public static Task<GetProfileResult> InvokeAsync(GetProfileArgs args, InvokeOptions? opts = null)
}

The following arguments are supported:

Name string

The name of the CDN Profile.

ResourceGroupName string

The name of the resource group in which the CDN Profile exists.

Name string

The name of the CDN Profile.

ResourceGroupName string

The name of the resource group in which the CDN Profile exists.

name string

The name of the CDN Profile.

resourceGroupName string

The name of the resource group in which the CDN Profile exists.

name str

The name of the CDN Profile.

resource_group_name str

The name of the resource group in which the CDN Profile exists.

GetProfile Result

The following output properties are available:

Id string

The provider-assigned unique ID for this managed resource.

Location string

The Azure Region where the resource exists.

Name string
ResourceGroupName string
Sku string

The pricing related information of current CDN profile.

Tags Dictionary<string, string>

A mapping of tags assigned to the resource.

Id string

The provider-assigned unique ID for this managed resource.

Location string

The Azure Region where the resource exists.

Name string
ResourceGroupName string
Sku string

The pricing related information of current CDN profile.

Tags map[string]string

A mapping of tags assigned to the resource.

id string

The provider-assigned unique ID for this managed resource.

location string

The Azure Region where the resource exists.

name string
resourceGroupName string
sku string

The pricing related information of current CDN profile.

tags {[key: string]: string}

A mapping of tags assigned to the resource.

id str

The provider-assigned unique ID for this managed resource.

location str

The Azure Region where the resource exists.

name str
resource_group_name str
sku str

The pricing related information of current CDN profile.

tags Dict[str, str]

A mapping of tags assigned to the resource.

Package Details

Repository
https://github.com/pulumi/pulumi-azure
License
Apache-2.0
Notes
This Pulumi package is based on the azurerm Terraform Provider.