Module marketplace

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.

Resources

Others

Resources

Resource Agreement

class Agreement extends CustomResource

Allows accepting the Legal Terms for a Marketplace Image.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";

const barracuda = new azure.marketplace.Agreement("barracuda", {
    offer: "waf",
    plan: "hourly",
    publisher: "barracudanetworks",
});

constructor

new Agreement(name: string, args: AgreementArgs, opts?: pulumi.CustomResourceOptions)

Create a Agreement resource with the given unique name, arguments, and options.

  • name The unique name of the resource.
  • args The arguments to use to populate this resource's properties.
  • opts A bag of options that control this resource's behavior.

method get

public static get(name: string, id: pulumi.Input<pulumi.ID>, state?: AgreementState, opts?: pulumi.CustomResourceOptions): Agreement

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

method getProvider

getProvider(moduleMember: string): ProviderResource | undefined

method isInstance

public static isInstance(obj: any): obj is Agreement

Returns true if the given object is an instance of Agreement. This is designed to work even when multiple copies of the Pulumi SDK have been loaded into the same process.

property id

id: Output<ID>;

id is the provider-assigned unique ID for this managed resource. It is set during deployments and may be missing (undefined) during planning phases.

public licenseTextLink: pulumi.Output<string>;

property offer

public offer: pulumi.Output<string>;

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

property plan

public plan: pulumi.Output<string>;

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

public privacyPolicyLink: pulumi.Output<string>;

property publisher

public publisher: pulumi.Output<string>;

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

property urn

urn: Output<URN>;

urn is the stable logical URN used to distinctly address a resource, both before and after deployments.

Others

interface AgreementArgs

interface AgreementArgs

The set of arguments for constructing a Agreement resource.

property offer

offer: pulumi.Input<string>;

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

property plan

plan: pulumi.Input<string>;

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

property publisher

publisher: pulumi.Input<string>;

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

interface AgreementState

interface AgreementState

Input properties used for looking up and filtering Agreement resources.

licenseTextLink?: pulumi.Input<string>;

property offer

offer?: pulumi.Input<string>;

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

property plan

plan?: pulumi.Input<string>;

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

privacyPolicyLink?: pulumi.Input<string>;

property publisher

publisher?: pulumi.Input<string>;

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