com.pulumi.azurenative.kubernetesruntime.StorageClass Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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* @Nullable */ List> 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* @Nullable */ String> 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* @Nullable */ String> 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* @Nullable */ String> 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* @Nullable */ List> 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* @Nullable */ List> 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* @Nullable */ String> 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* @Nullable */ Double> 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* @Nullable */ String> 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
© 2015 - 2024 Weber Informatics LLC | Privacy Policy