@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 2.1 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* List stop sell notifications for both stop sell offers and stop sell plans
*
* 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 listPrivateStoreStopSellOffersPlansNotifications(args: ListPrivateStoreStopSellOffersPlansNotificationsArgs, opts?: pulumi.InvokeOptions): Promise<ListPrivateStoreStopSellOffersPlansNotificationsResult>;
export interface ListPrivateStoreStopSellOffersPlansNotificationsArgs {
/**
* The store ID - must use the tenant ID
*/
privateStoreId: string;
subscriptions?: string[];
}
/**
* List of stop sell offers and plans notifications.
*/
export interface ListPrivateStoreStopSellOffersPlansNotificationsResult {
readonly stopSellNotifications?: outputs.marketplace.StopSellOffersPlansNotificationsListPropertiesResponse[];
}
/**
* List stop sell notifications for both stop sell offers and stop sell plans
*
* 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 listPrivateStoreStopSellOffersPlansNotificationsOutput(args: ListPrivateStoreStopSellOffersPlansNotificationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListPrivateStoreStopSellOffersPlansNotificationsResult>;
export interface ListPrivateStoreStopSellOffersPlansNotificationsOutputArgs {
/**
* The store ID - must use the tenant ID
*/
privateStoreId: pulumi.Input<string>;
subscriptions?: pulumi.Input<pulumi.Input<string>[]>;
}