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

com.pulumi.azurenative.elasticsan.ElasticSan 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.elasticsan;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.elasticsan.ElasticSanArgs;
import com.pulumi.azurenative.elasticsan.outputs.SkuResponse;
import com.pulumi.azurenative.elasticsan.outputs.SystemDataResponse;
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.Double;
import java.lang.String;
import java.util.List;
import java.util.Map;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * Response for ElasticSan request.
 * Azure REST API version: 2021-11-20-preview. Prior API version in Azure Native 1.x: 2021-11-20-preview.
 * 
 * Other available API versions: 2022-12-01-preview, 2023-01-01, 2024-05-01, 2024-06-01-preview.
 * 
 * ## Example Usage
 * ### ElasticSans_Create_MaximumSet_Gen
 * 
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.elasticsan.ElasticSan;
 * import com.pulumi.azurenative.elasticsan.ElasticSanArgs;
 * import com.pulumi.azurenative.elasticsan.inputs.SkuArgs;
 * 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 elasticSan = new ElasticSan("elasticSan", ElasticSanArgs.builder()
 *             .availabilityZones("aaaaaaaaaaaaaaaaa")
 *             .baseSizeTiB(26)
 *             .elasticSanName("ti7q-k952-1qB3J_5")
 *             .extendedCapacitySizeTiB(7)
 *             .location("aaaaaaaaaaaaaaaaaaaaaaaaaaa")
 *             .resourceGroupName("rgelasticsan")
 *             .sku(SkuArgs.builder()
 *                 .name("Premium_LRS")
 *                 .tier("Premium")
 *                 .build())
 *             .tags(Map.of("key896", "aaaaaaaaaaaaaaaaaa"))
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* ### ElasticSans_Create_MinimumSet_Gen * *
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.elasticsan.ElasticSan;
 * import com.pulumi.azurenative.elasticsan.ElasticSanArgs;
 * import com.pulumi.azurenative.elasticsan.inputs.SkuArgs;
 * 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 elasticSan = new ElasticSan("elasticSan", ElasticSanArgs.builder()
 *             .baseSizeTiB(26)
 *             .elasticSanName("ti7q-k952-1qB3J_5")
 *             .extendedCapacitySizeTiB(7)
 *             .resourceGroupName("rgelasticsan")
 *             .sku(SkuArgs.builder()
 *                 .name("Premium_LRS")
 *                 .build())
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* * ## Import * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:elasticsan:ElasticSan aaaaaaaaaaa /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName} * ``` * */ @ResourceType(type="azure-native:elasticsan:ElasticSan") public class ElasticSan extends com.pulumi.resources.CustomResource { /** * Logical zone for Elastic San resource; example: ["1"]. * */ @Export(name="availabilityZones", refs={List.class,String.class}, tree="[0,1]") private Output> availabilityZones; /** * @return Logical zone for Elastic San resource; example: ["1"]. * */ public Output>> availabilityZones() { return Codegen.optional(this.availabilityZones); } /** * Base size of the Elastic San appliance in TiB. * */ @Export(name="baseSizeTiB", refs={Double.class}, tree="[0]") private Output baseSizeTiB; /** * @return Base size of the Elastic San appliance in TiB. * */ public Output baseSizeTiB() { return this.baseSizeTiB; } /** * Extended size of the Elastic San appliance in TiB. * */ @Export(name="extendedCapacitySizeTiB", refs={Double.class}, tree="[0]") private Output extendedCapacitySizeTiB; /** * @return Extended size of the Elastic San appliance in TiB. * */ public Output extendedCapacitySizeTiB() { return this.extendedCapacitySizeTiB; } /** * The geo-location where the resource lives. * */ @Export(name="location", refs={String.class}, tree="[0]") private Output location; /** * @return The geo-location where the resource lives. * */ public Output> location() { return Codegen.optional(this.location); } /** * Azure resource name. * */ @Export(name="name", refs={String.class}, tree="[0]") private Output name; /** * @return Azure resource name. * */ public Output name() { return this.name; } /** * State of the operation on the resource. * */ @Export(name="provisioningState", refs={String.class}, tree="[0]") private Output provisioningState; /** * @return State of the operation on the resource. * */ public Output provisioningState() { return this.provisioningState; } /** * resource sku * */ @Export(name="sku", refs={SkuResponse.class}, tree="[0]") private Output sku; /** * @return resource sku * */ public Output sku() { return this.sku; } /** * Resource metadata required by ARM RPC * */ @Export(name="systemData", refs={SystemDataResponse.class}, tree="[0]") private Output systemData; /** * @return Resource metadata required by ARM RPC * */ public Output systemData() { return this.systemData; } /** * Azure resource tags. * */ @Export(name="tags", refs={Map.class,String.class}, tree="[0,1,1]") private Output> tags; /** * @return Azure resource tags. * */ public Output>> tags() { return Codegen.optional(this.tags); } /** * Total Provisioned IOPS of the Elastic San appliance. * */ @Export(name="totalIops", refs={Double.class}, tree="[0]") private Output totalIops; /** * @return Total Provisioned IOPS of the Elastic San appliance. * */ public Output totalIops() { return this.totalIops; } /** * Total Provisioned MBps Elastic San appliance. * */ @Export(name="totalMBps", refs={Double.class}, tree="[0]") private Output totalMBps; /** * @return Total Provisioned MBps Elastic San appliance. * */ public Output totalMBps() { return this.totalMBps; } /** * Total size of the Elastic San appliance in TB. * */ @Export(name="totalSizeTiB", refs={Double.class}, tree="[0]") private Output totalSizeTiB; /** * @return Total size of the Elastic San appliance in TB. * */ public Output totalSizeTiB() { return this.totalSizeTiB; } /** * Total size of the provisioned Volumes in GiB. * */ @Export(name="totalVolumeSizeGiB", refs={Double.class}, tree="[0]") private Output totalVolumeSizeGiB; /** * @return Total size of the provisioned Volumes in GiB. * */ public Output totalVolumeSizeGiB() { return this.totalVolumeSizeGiB; } /** * Azure resource type. * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return Azure resource type. * */ public Output type() { return this.type; } /** * Total number of volume groups in this Elastic San appliance. * */ @Export(name="volumeGroupCount", refs={Double.class}, tree="[0]") private Output volumeGroupCount; /** * @return Total number of volume groups in this Elastic San appliance. * */ public Output volumeGroupCount() { return this.volumeGroupCount; } /** * * @param name The _unique_ name of the resulting resource. */ public ElasticSan(java.lang.String name) { this(name, ElasticSanArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public ElasticSan(java.lang.String name, ElasticSanArgs 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 ElasticSan(java.lang.String name, ElasticSanArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:elasticsan:ElasticSan", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private ElasticSan(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:elasticsan:ElasticSan", name, null, makeResourceOptions(options, id), false); } private static ElasticSanArgs makeArgs(ElasticSanArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? ElasticSanArgs.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:elasticsan/v20211120preview:ElasticSan").build()), Output.of(Alias.builder().type("azure-native:elasticsan/v20221201preview:ElasticSan").build()), Output.of(Alias.builder().type("azure-native:elasticsan/v20230101:ElasticSan").build()), Output.of(Alias.builder().type("azure-native:elasticsan/v20240501:ElasticSan").build()), Output.of(Alias.builder().type("azure-native:elasticsan/v20240601preview:ElasticSan").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 ElasticSan get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new ElasticSan(name, id, options); } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy