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

36 lines (35 loc) 1.75 kB
import * as pulumi from "@pulumi/pulumi"; /** * List all the subscriptions in the private store context * * 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 listPrivateStoreSubscriptionsContext(args: ListPrivateStoreSubscriptionsContextArgs, opts?: pulumi.InvokeOptions): Promise<ListPrivateStoreSubscriptionsContextResult>; export interface ListPrivateStoreSubscriptionsContextArgs { /** * The store ID - must use the tenant ID */ privateStoreId: string; } /** * List of subscription Ids in the private store */ export interface ListPrivateStoreSubscriptionsContextResult { readonly subscriptionsIds?: string[]; } /** * List all the subscriptions in the private store context * * 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 listPrivateStoreSubscriptionsContextOutput(args: ListPrivateStoreSubscriptionsContextOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListPrivateStoreSubscriptionsContextResult>; export interface ListPrivateStoreSubscriptionsContextOutputArgs { /** * The store ID - must use the tenant ID */ privateStoreId: pulumi.Input<string>; }