UNPKG

@pulumi/azure-native

Version:

[![Slack](http://www.pulumi.com/images/docs/badges/slack.svg)](https://slack.pulumi.com) [![NPM version](https://badge.fury.io/js/%40pulumi%2Fazure-native.svg)](https://npmjs.com/package/@pulumi/azure-native) [![Python version](https://badge.fury.io/py/pu

136 lines (135 loc) 4.97 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * The privateStore offer data structure. * * Uses Azure REST API version 2023-01-01. In version 2.x of the Azure Native provider, it used API version 2023-01-01. * * Other available API versions: 2025-01-01. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native marketplace [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare class PrivateStoreCollectionOffer extends pulumi.CustomResource { /** * Get an existing PrivateStoreCollectionOffer resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): PrivateStoreCollectionOffer; /** * Returns true if the given object is an instance of PrivateStoreCollectionOffer. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is PrivateStoreCollectionOffer; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output<string>; /** * Private store offer creation date */ readonly createdAt: pulumi.Output<string>; /** * Identifier for purposes of race condition */ readonly eTag: pulumi.Output<string | undefined>; /** * Icon File Uris */ readonly iconFileUris: pulumi.Output<{ [key: string]: string; } | undefined>; /** * Private store offer modification date */ readonly modifiedAt: pulumi.Output<string>; /** * The name of the resource. */ readonly name: pulumi.Output<string>; /** * It will be displayed prominently in the marketplace */ readonly offerDisplayName: pulumi.Output<string>; /** * Offer plans */ readonly plans: pulumi.Output<outputs.marketplace.PlanResponse[] | undefined>; /** * Private store unique id */ readonly privateStoreId: pulumi.Output<string>; /** * Publisher name that will be displayed prominently in the marketplace */ readonly publisherDisplayName: pulumi.Output<string>; /** * Plan ids limitation for this offer */ readonly specificPlanIdsLimitation: pulumi.Output<string[] | undefined>; /** * Metadata pertaining to creation and last modification of the resource */ readonly systemData: pulumi.Output<outputs.marketplace.SystemDataResponse>; /** * The type of the resource. */ readonly type: pulumi.Output<string>; /** * Offers unique id */ readonly uniqueOfferId: pulumi.Output<string>; /** * Indicating whether the offer was not updated to db (true = not updated). If the allow list is identical to the existed one in db, the offer would not be updated. */ readonly updateSuppressedDueIdempotence: pulumi.Output<boolean | undefined>; /** * Create a PrivateStoreCollectionOffer resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: PrivateStoreCollectionOfferArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a PrivateStoreCollectionOffer resource. */ export interface PrivateStoreCollectionOfferArgs { /** * The collection ID */ collectionId: pulumi.Input<string>; /** * Identifier for purposes of race condition */ eTag?: pulumi.Input<string>; /** * Icon File Uris */ iconFileUris?: pulumi.Input<{ [key: string]: pulumi.Input<string>; }>; /** * The offer ID to update or delete */ offerId?: pulumi.Input<string>; /** * Offer plans */ plans?: pulumi.Input<pulumi.Input<inputs.marketplace.PlanArgs>[]>; /** * The store ID - must use the tenant ID */ privateStoreId: pulumi.Input<string>; /** * Plan ids limitation for this offer */ specificPlanIdsLimitation?: pulumi.Input<pulumi.Input<string>[]>; /** * Indicating whether the offer was not updated to db (true = not updated). If the allow list is identical to the existed one in db, the offer would not be updated. */ updateSuppressedDueIdempotence?: pulumi.Input<boolean>; }