@pulumi/azure-native
Version:
[](https://slack.pulumi.com) [](https://npmjs.com/package/@pulumi/azure-native) [ • 1.75 kB
TypeScript
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>;
}