Show / Hide Table of Contents

Namespace Pulumi.Azure.Cdn

Classes

Endpoint

A CDN Endpoint is the entity within a CDN Profile containing configuration information regarding caching behaviours and origins. The CDN Endpoint is exposed using the URL format <endpointname>.azureedge.net.

EndpointArgs

EndpointState

GetProfile

GetProfileArgs

GetProfileResult

Profile

Manages a CDN Profile to create a collection of CDN Endpoints.

Example Usage

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
public MyStack()
{
    var exampleResourceGroup = new Azure.Core.ResourceGroup(&quot;exampleResourceGroup&quot;, new Azure.Core.ResourceGroupArgs
    {
        Location = &quot;West US&quot;,
    });
    var exampleProfile = new Azure.Cdn.Profile(&quot;exampleProfile&quot;, new Azure.Cdn.ProfileArgs
    {
        Location = &quot;West US&quot;,
        ResourceGroupName = exampleResourceGroup.Name,
        Sku = &quot;Standard_Verizon&quot;,
        Tags = 
        {
            { &quot;environment&quot;, &quot;Production&quot; },
            { &quot;cost_center&quot;, &quot;MSFT&quot; },
        },
    });
}

}

ProfileArgs

ProfileState

Back to top Copyright 2016-2020, Pulumi Corporation.