All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.devtestlab.Lab Maven / Gradle / Ivy

There is a newer version: 2.78.0
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.azurenative.devtestlab;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.devtestlab.LabArgs;
import com.pulumi.azurenative.devtestlab.outputs.LabAnnouncementPropertiesResponse;
import com.pulumi.azurenative.devtestlab.outputs.LabSupportPropertiesResponse;
import com.pulumi.core.Alias;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Export;
import com.pulumi.core.annotations.ResourceType;
import com.pulumi.core.internal.Codegen;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * A lab.
 * Azure REST API version: 2018-09-15. Prior API version in Azure Native 1.x: 2018-09-15.
 * 
 * Other available API versions: 2016-05-15.
 * 
 * ## Example Usage
 * ### Labs_CreateOrUpdate
 * 
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.devtestlab.Lab;
 * import com.pulumi.azurenative.devtestlab.LabArgs;
 * import java.util.List;
 * import java.util.ArrayList;
 * import java.util.Map;
 * import java.io.File;
 * import java.nio.file.Files;
 * import java.nio.file.Paths;
 * 
 * public class App {
 *     public static void main(String[] args) {
 *         Pulumi.run(App::stack);
 *     }
 * 
 *     public static void stack(Context ctx) {
 *         var lab = new Lab("lab", LabArgs.builder()
 *             .labStorageType("{Standard|Premium}")
 *             .location("{location}")
 *             .name("{labName}")
 *             .resourceGroupName("resourceGroupName")
 *             .tags(Map.of("tagName1", "tagValue1"))
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* * ## Import * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:devtestlab:Lab {labName} /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{name} * ``` * */ @ResourceType(type="azure-native:devtestlab:Lab") public class Lab extends com.pulumi.resources.CustomResource { /** * The properties of any lab announcement associated with this lab * */ @Export(name="announcement", refs={LabAnnouncementPropertiesResponse.class}, tree="[0]") private Output announcement; /** * @return The properties of any lab announcement associated with this lab * */ public Output> announcement() { return Codegen.optional(this.announcement); } /** * The lab's artifact storage account. * */ @Export(name="artifactsStorageAccount", refs={String.class}, tree="[0]") private Output artifactsStorageAccount; /** * @return The lab's artifact storage account. * */ public Output artifactsStorageAccount() { return this.artifactsStorageAccount; } /** * The creation date of the lab. * */ @Export(name="createdDate", refs={String.class}, tree="[0]") private Output createdDate; /** * @return The creation date of the lab. * */ public Output createdDate() { return this.createdDate; } /** * The lab's default premium storage account. * */ @Export(name="defaultPremiumStorageAccount", refs={String.class}, tree="[0]") private Output defaultPremiumStorageAccount; /** * @return The lab's default premium storage account. * */ public Output defaultPremiumStorageAccount() { return this.defaultPremiumStorageAccount; } /** * The lab's default storage account. * */ @Export(name="defaultStorageAccount", refs={String.class}, tree="[0]") private Output defaultStorageAccount; /** * @return The lab's default storage account. * */ public Output defaultStorageAccount() { return this.defaultStorageAccount; } /** * The access rights to be granted to the user when provisioning an environment * */ @Export(name="environmentPermission", refs={String.class}, tree="[0]") private Output environmentPermission; /** * @return The access rights to be granted to the user when provisioning an environment * */ public Output> environmentPermission() { return Codegen.optional(this.environmentPermission); } /** * Extended properties of the lab used for experimental features * */ @Export(name="extendedProperties", refs={Map.class,String.class}, tree="[0,1,1]") private Output> extendedProperties; /** * @return Extended properties of the lab used for experimental features * */ public Output>> extendedProperties() { return Codegen.optional(this.extendedProperties); } /** * Type of storage used by the lab. It can be either Premium or Standard. Default is Premium. * */ @Export(name="labStorageType", refs={String.class}, tree="[0]") private Output labStorageType; /** * @return Type of storage used by the lab. It can be either Premium or Standard. Default is Premium. * */ public Output> labStorageType() { return Codegen.optional(this.labStorageType); } /** * The load balancer used to for lab VMs that use shared IP address. * */ @Export(name="loadBalancerId", refs={String.class}, tree="[0]") private Output loadBalancerId; /** * @return The load balancer used to for lab VMs that use shared IP address. * */ public Output loadBalancerId() { return this.loadBalancerId; } /** * The location of the resource. * */ @Export(name="location", refs={String.class}, tree="[0]") private Output location; /** * @return The location of the resource. * */ public Output> location() { return Codegen.optional(this.location); } /** * The ordered list of artifact resource IDs that should be applied on all Linux VM creations by default, prior to the artifacts specified by the user. * */ @Export(name="mandatoryArtifactsResourceIdsLinux", refs={List.class,String.class}, tree="[0,1]") private Output> mandatoryArtifactsResourceIdsLinux; /** * @return The ordered list of artifact resource IDs that should be applied on all Linux VM creations by default, prior to the artifacts specified by the user. * */ public Output>> mandatoryArtifactsResourceIdsLinux() { return Codegen.optional(this.mandatoryArtifactsResourceIdsLinux); } /** * The ordered list of artifact resource IDs that should be applied on all Windows VM creations by default, prior to the artifacts specified by the user. * */ @Export(name="mandatoryArtifactsResourceIdsWindows", refs={List.class,String.class}, tree="[0,1]") private Output> mandatoryArtifactsResourceIdsWindows; /** * @return The ordered list of artifact resource IDs that should be applied on all Windows VM creations by default, prior to the artifacts specified by the user. * */ public Output>> mandatoryArtifactsResourceIdsWindows() { return Codegen.optional(this.mandatoryArtifactsResourceIdsWindows); } /** * The name of the resource. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return The name of the resource. * */ public Output name() { return this.name; } /** * The Network Security Group attached to the lab VMs Network interfaces to restrict open ports. * */ @Export(name="networkSecurityGroupId", refs={String.class}, tree="[0]") private Output networkSecurityGroupId; /** * @return The Network Security Group attached to the lab VMs Network interfaces to restrict open ports. * */ public Output networkSecurityGroupId() { return this.networkSecurityGroupId; } /** * The lab's premium data disk storage account. * */ @Export(name="premiumDataDiskStorageAccount", refs={String.class}, tree="[0]") private Output premiumDataDiskStorageAccount; /** * @return The lab's premium data disk storage account. * */ public Output premiumDataDiskStorageAccount() { return this.premiumDataDiskStorageAccount; } /** * The setting to enable usage of premium data disks. * When its value is 'Enabled', creation of standard or premium data disks is allowed. * When its value is 'Disabled', only creation of standard data disks is allowed. * */ @Export(name="premiumDataDisks", refs={String.class}, tree="[0]") private Output premiumDataDisks; /** * @return The setting to enable usage of premium data disks. * When its value is 'Enabled', creation of standard or premium data disks is allowed. * When its value is 'Disabled', only creation of standard data disks is allowed. * */ public Output> premiumDataDisks() { return Codegen.optional(this.premiumDataDisks); } /** * The provisioning status of the resource. * */ @Export(name="provisioningState", refs={String.class}, tree="[0]") private Output provisioningState; /** * @return The provisioning status of the resource. * */ public Output provisioningState() { return this.provisioningState; } /** * The public IP address for the lab's load balancer. * */ @Export(name="publicIpId", refs={String.class}, tree="[0]") private Output publicIpId; /** * @return The public IP address for the lab's load balancer. * */ public Output publicIpId() { return this.publicIpId; } /** * The properties of any lab support message associated with this lab * */ @Export(name="support", refs={LabSupportPropertiesResponse.class}, tree="[0]") private Output support; /** * @return The properties of any lab support message associated with this lab * */ public Output> support() { return Codegen.optional(this.support); } /** * The tags of the resource. * */ @Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]") private Output> tags; /** * @return The tags of the resource. * */ public Output>> tags() { return Codegen.optional(this.tags); } /** * The type of the resource. * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return The type of the resource. * */ public Output type() { return this.type; } /** * The unique immutable identifier of a resource (Guid). * */ @Export(name="uniqueIdentifier", refs={String.class}, tree="[0]") private Output uniqueIdentifier; /** * @return The unique immutable identifier of a resource (Guid). * */ public Output uniqueIdentifier() { return this.uniqueIdentifier; } /** * The lab's Key vault. * */ @Export(name="vaultName", refs={String.class}, tree="[0]") private Output vaultName; /** * @return The lab's Key vault. * */ public Output vaultName() { return this.vaultName; } /** * The resource group in which all new lab virtual machines will be created. To let DevTest Labs manage resource group creation, set this value to null. * */ @Export(name="vmCreationResourceGroup", refs={String.class}, tree="[0]") private Output vmCreationResourceGroup; /** * @return The resource group in which all new lab virtual machines will be created. To let DevTest Labs manage resource group creation, set this value to null. * */ public Output vmCreationResourceGroup() { return this.vmCreationResourceGroup; } /** * * @param name The _unique_ name of the resulting resource. */ public Lab(java.lang.String name) { this(name, LabArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public Lab(java.lang.String name, LabArgs args) { this(name, args, null); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. * @param options A bag of options that control this resource's behavior. */ public Lab(java.lang.String name, LabArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:devtestlab:Lab", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private Lab(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:devtestlab:Lab", name, null, makeResourceOptions(options, id), false); } private static LabArgs makeArgs(LabArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? LabArgs.Empty : args; } private static com.pulumi.resources.CustomResourceOptions makeResourceOptions(@Nullable com.pulumi.resources.CustomResourceOptions options, @Nullable Output id) { var defaultOptions = com.pulumi.resources.CustomResourceOptions.builder() .version(Utilities.getVersion()) .aliases(List.of( Output.of(Alias.builder().type("azure-native:devtestlab/v20150521preview:Lab").build()), Output.of(Alias.builder().type("azure-native:devtestlab/v20160515:Lab").build()), Output.of(Alias.builder().type("azure-native:devtestlab/v20180915:Lab").build()) )) .build(); return com.pulumi.resources.CustomResourceOptions.merge(defaultOptions, options, id); } /** * Get an existing Host 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 options Optional settings to control the behavior of the CustomResource. */ public static Lab get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new Lab(name, id, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy