Show / Hide Table of Contents

Namespace Pulumi.Azure.Marketplace

Classes

Agreement

Allows accepting the Legal Terms for a Marketplace Image.

Example Usage

using Pulumi;
using Azure = Pulumi.Azure;

class MyStack : Stack
{
public MyStack()
{
    var barracuda = new Azure.Marketplace.Agreement("barracuda", new Azure.Marketplace.AgreementArgs
    {
        Offer = "waf",
        Plan = "hourly",
        Publisher = "barracudanetworks",
    });
}

}

AgreementArgs

AgreementState

Back to top Copyright 2016-2020, Pulumi Corporation.