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

com.pulumi.azurenative.kubernetesruntime.StorageClass 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.kubernetesruntime;

import com.pulumi.azurenative.Utilities;
import com.pulumi.azurenative.kubernetesruntime.StorageClassArgs;
import com.pulumi.azurenative.kubernetesruntime.outputs.BlobStorageClassTypePropertiesResponse;
import com.pulumi.azurenative.kubernetesruntime.outputs.NativeStorageClassTypePropertiesResponse;
import com.pulumi.azurenative.kubernetesruntime.outputs.NfsStorageClassTypePropertiesResponse;
import com.pulumi.azurenative.kubernetesruntime.outputs.RwxStorageClassTypePropertiesResponse;
import com.pulumi.azurenative.kubernetesruntime.outputs.SmbStorageClassTypePropertiesResponse;
import com.pulumi.azurenative.kubernetesruntime.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.Object;
import java.lang.String;
import java.util.List;
import java.util.Optional;
import javax.annotation.Nullable;

/**
 * A StorageClass resource for an Arc connected cluster (Microsoft.Kubernetes/connectedClusters)
 * Azure REST API version: 2024-03-01.
 * 
 * Other available API versions: 2023-10-01-preview.
 * 
 * ## Example Usage
 * ### StorageClass_CreateOrUpdate_0
 * 
 * 
 * {@code
 * package generated_program;
 * 
 * import com.pulumi.Context;
 * import com.pulumi.Pulumi;
 * import com.pulumi.core.Output;
 * import com.pulumi.azurenative.kubernetesruntime.StorageClass;
 * import com.pulumi.azurenative.kubernetesruntime.StorageClassArgs;
 * 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 storageClass = new StorageClass("storageClass", StorageClassArgs.builder()
 *             .resourceUri("subscriptions/00000000-1111-2222-3333-444444444444/resourceGroups/example/providers/Microsoft.Kubernetes/connectedClusters/cluster1")
 *             .storageClassName("testrwx")
 *             .typeProperties(BlobStorageClassTypePropertiesArgs.builder()
 *                 .backingStorageClassName("default")
 *                 .type("RWX")
 *                 .build())
 *             .build());
 * 
 *     }
 * }
 * 
 * }
 * 
* * ## Import * * An existing resource can be imported using its type token, name, and identifier, e.g. * * ```sh * $ pulumi import azure-native:kubernetesruntime:StorageClass testrwx /{resourceUri}/providers/Microsoft.KubernetesRuntime/storageClasses/{storageClassName} * ``` * */ @ResourceType(type="azure-native:kubernetesruntime:StorageClass") public class StorageClass extends com.pulumi.resources.CustomResource { /** * The access mode: [ReadWriteOnce, ReadWriteMany] or [ReadWriteOnce] * */ @Export(name="accessModes", refs={List.class,String.class}, tree="[0,1]") private Output> accessModes; /** * @return The access mode: [ReadWriteOnce, ReadWriteMany] or [ReadWriteOnce] * */ public Output>> accessModes() { return Codegen.optional(this.accessModes); } /** * Volume can be expanded or not * */ @Export(name="allowVolumeExpansion", refs={String.class}, tree="[0]") private Output allowVolumeExpansion; /** * @return Volume can be expanded or not * */ public Output> allowVolumeExpansion() { return Codegen.optional(this.allowVolumeExpansion); } /** * Allow single data node failure * */ @Export(name="dataResilience", refs={String.class}, tree="[0]") private Output dataResilience; /** * @return Allow single data node failure * */ public Output> dataResilience() { return Codegen.optional(this.dataResilience); } /** * Failover speed: NA, Slow, Fast * */ @Export(name="failoverSpeed", refs={String.class}, tree="[0]") private Output failoverSpeed; /** * @return Failover speed: NA, Slow, Fast * */ public Output> failoverSpeed() { return Codegen.optional(this.failoverSpeed); } /** * Limitations of the storage class * */ @Export(name="limitations", refs={List.class,String.class}, tree="[0,1]") private Output> limitations; /** * @return Limitations of the storage class * */ public Output>> limitations() { return Codegen.optional(this.limitations); } /** * Additional mount options * */ @Export(name="mountOptions", refs={List.class,String.class}, tree="[0,1]") private Output> mountOptions; /** * @return Additional mount options * */ public Output>> mountOptions() { return Codegen.optional(this.mountOptions); } /** * 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; } /** * Performance tier * */ @Export(name="performance", refs={String.class}, tree="[0]") private Output performance; /** * @return Performance tier * */ public Output> performance() { return Codegen.optional(this.performance); } /** * Selection priority when multiple storage classes meet the criteria. 0: Highest, -1: Never use * */ @Export(name="priority", refs={Double.class}, tree="[0]") private Output priority; /** * @return Selection priority when multiple storage classes meet the criteria. 0: Highest, -1: Never use * */ public Output> priority() { return Codegen.optional(this.priority); } /** * Provisioner name * */ @Export(name="provisioner", refs={String.class}, tree="[0]") private Output provisioner; /** * @return Provisioner name * */ public Output> provisioner() { return Codegen.optional(this.provisioner); } /** * Resource provision state * */ @Export(name="provisioningState", refs={String.class}, tree="[0]") private Output provisioningState; /** * @return Resource provision state * */ public Output provisioningState() { return this.provisioningState; } /** * Azure Resource Manager metadata containing createdBy and modifiedBy information. * */ @Export(name="systemData", refs={SystemDataResponse.class}, tree="[0]") private Output systemData; /** * @return Azure Resource Manager metadata containing createdBy and modifiedBy information. * */ public Output systemData() { return this.systemData; } /** * The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" * */ @Export(name="type", refs={String.class}, tree="[0]") private Output type; /** * @return The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts" * */ public Output type() { return this.type; } /** * Properties of the StorageClass * */ @Export(name="typeProperties", refs={Object.class}, tree="[0]") private Output typeProperties; /** * @return Properties of the StorageClass * */ public Output typeProperties() { return this.typeProperties; } /** * Binding mode of volumes: Immediate, WaitForFirstConsumer * */ @Export(name="volumeBindingMode", refs={String.class}, tree="[0]") private Output volumeBindingMode; /** * @return Binding mode of volumes: Immediate, WaitForFirstConsumer * */ public Output> volumeBindingMode() { return Codegen.optional(this.volumeBindingMode); } /** * * @param name The _unique_ name of the resulting resource. */ public StorageClass(java.lang.String name) { this(name, StorageClassArgs.Empty); } /** * * @param name The _unique_ name of the resulting resource. * @param args The arguments to use to populate this resource's properties. */ public StorageClass(java.lang.String name, StorageClassArgs 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 StorageClass(java.lang.String name, StorageClassArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:kubernetesruntime:StorageClass", name, makeArgs(args, options), makeResourceOptions(options, Codegen.empty()), false); } private StorageClass(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { super("azure-native:kubernetesruntime:StorageClass", name, null, makeResourceOptions(options, id), false); } private static StorageClassArgs makeArgs(StorageClassArgs args, @Nullable com.pulumi.resources.CustomResourceOptions options) { if (options != null && options.getUrn().isPresent()) { return null; } return args == null ? StorageClassArgs.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:kubernetesruntime/v20231001preview:StorageClass").build()), Output.of(Alias.builder().type("azure-native:kubernetesruntime/v20240301:StorageClass").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 StorageClass get(java.lang.String name, Output id, @Nullable com.pulumi.resources.CustomResourceOptions options) { return new StorageClass(name, id, options); } }