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

134 lines (133 loc) 4.32 kB
import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * Lab details. * * Uses Azure REST API version 2021-12-01-preview. In version 2.x of the Azure Native provider, it used API version 2021-12-01-preview. */ export declare class Lab extends pulumi.CustomResource { /** * Get an existing Lab resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input<pulumi.ID>, opts?: pulumi.CustomResourceOptions): Lab; /** * Returns true if the given object is an instance of Lab. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Lab; /** * The Azure API version of the resource. */ readonly azureApiVersion: pulumi.Output<string>; /** * Default monetary cap for each student in this lab */ readonly budgetPerStudent: pulumi.Output<outputs.education.AmountResponse>; /** * The type of currency being used for the value. */ readonly currency: pulumi.Output<string | undefined>; /** * Detail description of this lab */ readonly description: pulumi.Output<string>; /** * Lab Display Name */ readonly displayName: pulumi.Output<string>; /** * Lab creation date */ readonly effectiveDate: pulumi.Output<string>; /** * Default expiration date for each student in this lab */ readonly expirationDate: pulumi.Output<string>; /** * invitation code for redeemable lab */ readonly invitationCode: pulumi.Output<string>; /** * the total number of students that can be accepted to the lab. */ readonly maxStudentCount: pulumi.Output<number>; /** * The name of the resource */ readonly name: pulumi.Output<string>; /** * The status of this lab */ readonly status: pulumi.Output<string>; /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. */ readonly systemData: pulumi.Output<outputs.education.SystemDataResponse>; /** * Total budget */ readonly totalBudget: pulumi.Output<outputs.education.AmountResponse>; /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" */ readonly type: pulumi.Output<string>; /** * Amount value. */ readonly value: pulumi.Output<number | undefined>; /** * Create a Lab resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: LabArgs, opts?: pulumi.CustomResourceOptions); } /** * The set of arguments for constructing a Lab resource. */ export interface LabArgs { /** * The ID that uniquely identifies a billing account. */ billingAccountName: pulumi.Input<string>; /** * The ID that uniquely identifies a billing profile. */ billingProfileName: pulumi.Input<string>; /** * Default monetary cap for each student in this lab */ budgetPerStudent: pulumi.Input<inputs.education.AmountArgs>; /** * The type of currency being used for the value. */ currency?: pulumi.Input<string>; /** * Detail description of this lab */ description: pulumi.Input<string>; /** * Lab Display Name */ displayName: pulumi.Input<string>; /** * Default expiration date for each student in this lab */ expirationDate: pulumi.Input<string>; /** * The ID that uniquely identifies an invoice section. */ invoiceSectionName: pulumi.Input<string>; /** * Amount value. */ value?: pulumi.Input<number>; }