This page documents the language specification for the azure package. If you're looking for help working with the inputs, outputs, or functions of azure resources in a Pulumi program, please see the resource documentation for examples and API reference.

marketplace

This provider is a derived work of the Terraform Provider distributed under MPL 2.0. If you encounter a bug or missing feature, first check the pulumi/pulumi-azure repo; however, if that doesn’t turn up anything, please consult the source terraform-providers/terraform-provider-azurerm repo.

class pulumi_azure.marketplace.Agreement(resource_name, opts=None, offer=None, plan=None, publisher=None, __props__=None, __name__=None, __opts__=None)

Allows accepting the Legal Terms for a Marketplace Image.

import pulumi
import pulumi_azure as azure

barracuda = azure.marketplace.Agreement("barracuda",
    offer="waf",
    plan="hourly",
    publisher="barracudanetworks")
Parameters
  • resource_name (str) – The name of the resource.

  • opts (pulumi.ResourceOptions) – Options for the resource.

  • offer (pulumi.Input[str]) – The Offer of the Marketplace Image. Changing this forces a new resource to be created.

  • plan (pulumi.Input[str]) – The Plan of the Marketplace Image. Changing this forces a new resource to be created.

  • publisher (pulumi.Input[str]) – The Publisher of the Marketplace Image. Changing this forces a new resource to be created.

offer: pulumi.Output[str] = None

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

plan: pulumi.Output[str] = None

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

publisher: pulumi.Output[str] = None

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

static get(resource_name, id, opts=None, license_text_link=None, offer=None, plan=None, privacy_policy_link=None, publisher=None)

Get an existing Agreement resource’s state with the given name, id, and optional extra properties used to qualify the lookup.

Parameters
  • resource_name (str) – The unique name of the resulting resource.

  • id (str) – The unique provider ID of the resource to lookup.

  • opts (pulumi.ResourceOptions) – Options for the resource.

  • offer (pulumi.Input[str]) – The Offer of the Marketplace Image. Changing this forces a new resource to be created.

  • plan (pulumi.Input[str]) – The Plan of the Marketplace Image. Changing this forces a new resource to be created.

  • publisher (pulumi.Input[str]) – The Publisher of the Marketplace Image. Changing this forces a new resource to be created.

translate_output_property(prop)

Provides subclasses of Resource an opportunity to translate names of output properties into a format of their choosing before writing those properties to the resource object.

Parameters

prop (str) – A property name.

Returns

A potentially transformed property name.

Return type

str

translate_input_property(prop)

Provides subclasses of Resource an opportunity to translate names of input properties into a format of their choosing before sending those properties to the Pulumi engine.

Parameters

prop (str) – A property name.

Returns

A potentially transformed property name.

Return type

str