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

72 lines (71 loc) 1.89 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Gets the preview information of a vendor sku. * * Uses Azure REST API version 2022-01-01-preview. */ export declare function getVendorSkuPreview(args: GetVendorSkuPreviewArgs, opts?: pulumi.InvokeOptions): Promise<GetVendorSkuPreviewResult>; export interface GetVendorSkuPreviewArgs { /** * Preview subscription ID. */ previewSubscription: string; /** * The name of the vendor sku. */ skuName: string; /** * The name of the vendor. */ vendorName: string; } /** * Customer subscription which can use a sku. */ export interface GetVendorSkuPreviewResult { /** * The Azure API version of the resource. */ readonly azureApiVersion: string; /** * The ARM ID of the resource. */ readonly id: string; /** * The preview subscription ID. */ readonly name: string; /** * The provisioning state of the PreviewSubscription resource. */ readonly provisioningState: string; /** * The system meta data relating to this resource. */ readonly systemData: outputs.hybridnetwork.SystemDataResponse; /** * The type of the resource. */ readonly type: string; } /** * Gets the preview information of a vendor sku. * * Uses Azure REST API version 2022-01-01-preview. */ export declare function getVendorSkuPreviewOutput(args: GetVendorSkuPreviewOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVendorSkuPreviewResult>; export interface GetVendorSkuPreviewOutputArgs { /** * Preview subscription ID. */ previewSubscription: pulumi.Input<string>; /** * The name of the vendor sku. */ skuName: pulumi.Input<string>; /** * The name of the vendor. */ vendorName: pulumi.Input<string>; }