@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.8 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* List new plans notifications
*
* 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 listPrivateStoreNewPlansNotifications(args: ListPrivateStoreNewPlansNotificationsArgs, opts?: pulumi.InvokeOptions): Promise<ListPrivateStoreNewPlansNotificationsResult>;
export interface ListPrivateStoreNewPlansNotificationsArgs {
/**
* The store ID - must use the tenant ID
*/
privateStoreId: string;
}
/**
* List of all new plans notifications for public offers
*/
export interface ListPrivateStoreNewPlansNotificationsResult {
readonly newPlansNotifications?: outputs.marketplace.NewNotificationsResponse[];
}
/**
* List new plans notifications
*
* 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 listPrivateStoreNewPlansNotificationsOutput(args: ListPrivateStoreNewPlansNotificationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListPrivateStoreNewPlansNotificationsResult>;
export interface ListPrivateStoreNewPlansNotificationsOutputArgs {
/**
* The store ID - must use the tenant ID
*/
privateStoreId: pulumi.Input<string>;
}