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

118 lines (117 loc) 3.68 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets information about a specific offer. * * Uses Azure REST 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 function getPrivateStoreCollectionOffer(args: GetPrivateStoreCollectionOfferArgs, opts?: pulumi.InvokeOptions): Promise<GetPrivateStoreCollectionOfferResult>; export interface GetPrivateStoreCollectionOfferArgs { /** * The collection ID */ collectionId: string; /** * The offer ID to update or delete */ offerId: string; /** * The store ID - must use the tenant ID */ privateStoreId: string; } /** * The privateStore offer data structure. */ export interface GetPrivateStoreCollectionOfferResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * Private store offer creation date */ readonly createdAt: string; /** * Identifier for purposes of race condition */ readonly eTag?: string; /** * Icon File Uris */ readonly iconFileUris?: { [key: string]: string; }; /** * The resource ID. */ readonly id: string; /** * Private store offer modification date */ readonly modifiedAt: string; /** * The name of the resource. */ readonly name: string; /** * It will be displayed prominently in the marketplace */ readonly offerDisplayName: string; /** * Offer plans */ readonly plans?: outputs.marketplace.PlanResponse[]; /** * Private store unique id */ readonly privateStoreId: string; /** * Publisher name that will be displayed prominently in the marketplace */ readonly publisherDisplayName: string; /** * Plan ids limitation for this offer */ readonly specificPlanIdsLimitation?: string[]; /** * Metadata pertaining to creation and last modification of the resource */ readonly systemData: outputs.marketplace.SystemDataResponse; /** * The type of the resource. */ readonly type: string; /** * Offers unique id */ readonly uniqueOfferId: 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?: boolean; } /** * Gets information about a specific offer. * * Uses Azure REST 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 function getPrivateStoreCollectionOfferOutput(args: GetPrivateStoreCollectionOfferOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetPrivateStoreCollectionOfferResult>; export interface GetPrivateStoreCollectionOfferOutputArgs { /** * The collection ID */ collectionId: pulumi.Input<string>; /** * The offer ID to update or delete */ offerId: pulumi.Input<string>; /** * The store ID - must use the tenant ID */ privateStoreId: pulumi.Input<string>; }