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

52 lines (51 loc) 2.19 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Lists SKUs available to the project * * Uses Azure REST API version 2024-10-01-preview. * * Other available API versions: 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2025-02-01, 2025-04-01-preview, 2025-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listSkusByProject(args: ListSkusByProjectArgs, opts?: pulumi.InvokeOptions): Promise<ListSkusByProjectResult>; export interface ListSkusByProjectArgs { /** * The name of the project. */ projectName: string; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: string; } /** * Results of the Microsoft.DevCenter SKU list operation. */ export interface ListSkusByProjectResult { /** * URL to get the next set of results if there are any. */ readonly nextLink: string; /** * Current page of results. */ readonly value: outputs.devcenter.DevCenterSkuResponse[]; } /** * Lists SKUs available to the project * * Uses Azure REST API version 2024-10-01-preview. * * Other available API versions: 2024-06-01-preview, 2024-07-01-preview, 2024-08-01-preview, 2025-02-01, 2025-04-01-preview, 2025-07-01-preview. These can be accessed by generating a local SDK package using the CLI command `pulumi package add azure-native devcenter [ApiVersion]`. See the [version guide](../../../version-guide/#accessing-any-api-version-via-local-packages) for details. */ export declare function listSkusByProjectOutput(args: ListSkusByProjectOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<ListSkusByProjectResult>; export interface ListSkusByProjectOutputArgs { /** * The name of the project. */ projectName: pulumi.Input<string>; /** * The name of the resource group. The name is case insensitive. */ resourceGroupName: pulumi.Input<string>; }