@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";
/**
* Gets information about the specified vendor.
*
* Uses Azure REST API version 2022-01-01-preview.
*/
export declare function getVendor(args: GetVendorArgs, opts?: pulumi.InvokeOptions): Promise<GetVendorResult>;
export interface GetVendorArgs {
/**
* The name of the vendor.
*/
vendorName: string;
}
/**
* Vendor resource.
*/
export interface GetVendorResult {
/**
* The Azure API version of the resource.
*/
readonly azureApiVersion: string;
/**
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
*/
readonly id: string;
/**
* The name of the resource
*/
readonly name: string;
/**
* The provisioning state of the vendor resource.
*/
readonly provisioningState: string;
/**
* A list of IDs of the vendor skus offered by the vendor.
*/
readonly skus: outputs.hybridnetwork.SubResourceResponse[];
/**
* The system meta data relating to this resource.
*/
readonly systemData: outputs.hybridnetwork.SystemDataResponse;
/**
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
*/
readonly type: string;
}
/**
* Gets information about the specified vendor.
*
* Uses Azure REST API version 2022-01-01-preview.
*/
export declare function getVendorOutput(args: GetVendorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetVendorResult>;
export interface GetVendorOutputArgs {
/**
* The name of the vendor.
*/
vendorName: pulumi.Input<string>;
}