VolumeGroup

class VolumeGroup : KotlinCustomResource

Response for Volume Group request. Uses Azure REST API version 2024-05-01. In version 2.x of the Azure Native provider, it used API version 2021-11-20-preview. Other available API versions: 2021-11-20-preview, 2022-12-01-preview, 2023-01-01, 2024-06-01-preview, 2024-07-01-preview. These can be accessed by generating a local SDK package using the CLI command pulumi package add azure-native elasticsan [ApiVersion]. See the ../../../version-guide/#accessing-any-api-version-via-local-packages for details.

Example Usage

VolumeGroups_Create_MinimumSet_Gen

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using AzureNative = Pulumi.AzureNative;
return await Deployment.RunAsync(() =>
{
var volumeGroup = new AzureNative.ElasticSan.VolumeGroup("volumeGroup", new()
{
ElasticSanName = "elasticsanname",
ResourceGroupName = "resourcegroupname",
VolumeGroupName = "volumegroupname",
});
});
package main
import (
elasticsan "github.com/pulumi/pulumi-azure-native-sdk/elasticsan/v3"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := elasticsan.NewVolumeGroup(ctx, "volumeGroup", &elasticsan.VolumeGroupArgs{
ElasticSanName: pulumi.String("elasticsanname"),
ResourceGroupName: pulumi.String("resourcegroupname"),
VolumeGroupName: pulumi.String("volumegroupname"),
})
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.azurenative.elasticsan.VolumeGroup;
import com.pulumi.azurenative.elasticsan.VolumeGroupArgs;
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 volumeGroup = new VolumeGroup("volumeGroup", VolumeGroupArgs.builder()
.elasticSanName("elasticsanname")
.resourceGroupName("resourcegroupname")
.volumeGroupName("volumegroupname")
.build());
}
}

Import

An existing resource can be imported using its type token, name, and identifier, e.g.

$ pulumi import azure-native:elasticsan:VolumeGroup qymuqyvdlpshrna /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ElasticSan/elasticSans/{elasticSanName}/volumegroups/{volumeGroupName}

Properties

Link copied to clipboard
val azureApiVersion: Output<String>

The Azure API version of the resource.

Link copied to clipboard
val encryption: Output<String>?

Type of encryption

Link copied to clipboard

Encryption Properties describing Key Vault and Identity information

Link copied to clipboard

A boolean indicating whether or not Data Integrity Check is enabled

Link copied to clipboard
val id: Output<String>
Link copied to clipboard

The identity of the resource.

Link copied to clipboard
val name: Output<String>

The name of the resource

Link copied to clipboard

A collection of rules governing the accessibility from specific network locations.

Link copied to clipboard

The list of Private Endpoint Connections.

Link copied to clipboard
val protocolType: Output<String>?

Type of storage target

Link copied to clipboard

State of the operation on the resource.

Link copied to clipboard
val pulumiChildResources: Set<KotlinResource>
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Azure Resource Manager metadata containing createdBy and modifiedBy information.

Link copied to clipboard
val type: Output<String>

The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"

Link copied to clipboard
val urn: Output<String>