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
LookupProfilein 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.
- Resource
Group stringName The name of the resource group in which the CDN Profile exists.
- Name string
The name of the CDN Profile.
- Resource
Group stringName The name of the resource group in which the CDN Profile exists.
- name string
The name of the CDN Profile.
- resource
Group stringName The name of the resource group in which the CDN Profile exists.
- name str
The name of the CDN Profile.
- resource_
group_ strname The name of the resource group in which the CDN Profile exists.
GetProfile Result
The following output properties are available:
Package Details
- Repository
- https://github.com/pulumi/pulumi-azure
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
azurermTerraform Provider.