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",
});
}
}