Agreement

class Agreement : KotlinCustomResource

Allows accepting the Legal Terms for a Marketplace Image.

Example Usage

package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azure.marketplace.Agreement;
import com.pulumi.azure.marketplace.AgreementArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
var barracuda = new Agreement("barracuda", AgreementArgs.builder()
.offer("waf")
.plan("hourly")
.publisher("barracudanetworks")
.build());
}
}

Import

Marketplace Agreement can be imported using the resource id, e.g.

$ pulumi import azure:marketplace/agreement:Agreement example /subscriptions/00000000-0000-0000-0000-000000000000/providers/Microsoft.MarketplaceOrdering/agreements/publisher1/offers/offer1/plans/plan1

Properties

Link copied to clipboard
val id: Output<String>
Link copied to clipboard
val licenseTextLink: Output<String>
Link copied to clipboard
val offer: Output<String>

The Offer of the Marketplace Image. Changing this forces a new resource to be created.

Link copied to clipboard
val plan: Output<String>

The Plan of the Marketplace Image. Changing this forces a new resource to be created.

Link copied to clipboard
Link copied to clipboard
val publisher: Output<String>

The Publisher of the Marketplace Image. Changing this forces a new resource to be created.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val urn: Output<String>