1. Packages
  2. OpenStack
  3. API Docs
  4. blockstorage
  5. VolumeV2
OpenStack v3.15.2 published on Friday, Mar 29, 2024 by Pulumi

openstack.blockstorage.VolumeV2

Explore with Pulumi AI

openstack logo
OpenStack v3.15.2 published on Friday, Mar 29, 2024 by Pulumi

    Manages a V2 volume resource within OpenStack.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as openstack from "@pulumi/openstack";
    
    const volume1 = new openstack.blockstorage.VolumeV2("volume1", {
        description: "first test volume",
        region: "RegionOne",
        size: 3,
    });
    
    import pulumi
    import pulumi_openstack as openstack
    
    volume1 = openstack.blockstorage.VolumeV2("volume1",
        description="first test volume",
        region="RegionOne",
        size=3)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-openstack/sdk/v3/go/openstack/blockstorage"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := blockstorage.NewVolumeV2(ctx, "volume1", &blockstorage.VolumeV2Args{
    			Description: pulumi.String("first test volume"),
    			Region:      pulumi.String("RegionOne"),
    			Size:        pulumi.Int(3),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using OpenStack = Pulumi.OpenStack;
    
    return await Deployment.RunAsync(() => 
    {
        var volume1 = new OpenStack.BlockStorage.VolumeV2("volume1", new()
        {
            Description = "first test volume",
            Region = "RegionOne",
            Size = 3,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.openstack.blockstorage.VolumeV2;
    import com.pulumi.openstack.blockstorage.VolumeV2Args;
    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 volume1 = new VolumeV2("volume1", VolumeV2Args.builder()        
                .description("first test volume")
                .region("RegionOne")
                .size(3)
                .build());
    
        }
    }
    
    resources:
      volume1:
        type: openstack:blockstorage:VolumeV2
        properties:
          description: first test volume
          region: RegionOne
          size: 3
    

    Create VolumeV2 Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new VolumeV2(name: string, args: VolumeV2Args, opts?: CustomResourceOptions);
    @overload
    def VolumeV2(resource_name: str,
                 args: VolumeV2Args,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def VolumeV2(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 size: Optional[int] = None,
                 region: Optional[str] = None,
                 description: Optional[str] = None,
                 image_id: Optional[str] = None,
                 metadata: Optional[Mapping[str, Any]] = None,
                 name: Optional[str] = None,
                 availability_zone: Optional[str] = None,
                 scheduler_hints: Optional[Sequence[VolumeV2SchedulerHintArgs]] = None,
                 consistency_group_id: Optional[str] = None,
                 snapshot_id: Optional[str] = None,
                 source_replica: Optional[str] = None,
                 source_vol_id: Optional[str] = None,
                 volume_type: Optional[str] = None)
    func NewVolumeV2(ctx *Context, name string, args VolumeV2Args, opts ...ResourceOption) (*VolumeV2, error)
    public VolumeV2(string name, VolumeV2Args args, CustomResourceOptions? opts = null)
    public VolumeV2(String name, VolumeV2Args args)
    public VolumeV2(String name, VolumeV2Args args, CustomResourceOptions options)
    
    type: openstack:blockstorage:VolumeV2
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args VolumeV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args VolumeV2Args
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args VolumeV2Args
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args VolumeV2Args
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args VolumeV2Args
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var volumeV2Resource = new OpenStack.BlockStorage.VolumeV2("volumeV2Resource", new()
    {
        Size = 0,
        Region = "string",
        Description = "string",
        ImageId = "string",
        Metadata = 
        {
            { "string", "any" },
        },
        Name = "string",
        AvailabilityZone = "string",
        SchedulerHints = new[]
        {
            new OpenStack.BlockStorage.Inputs.VolumeV2SchedulerHintArgs
            {
                AdditionalProperties = 
                {
                    { "string", "any" },
                },
                DifferentHosts = new[]
                {
                    "string",
                },
                LocalToInstance = "string",
                Query = "string",
                SameHosts = new[]
                {
                    "string",
                },
            },
        },
        ConsistencyGroupId = "string",
        SnapshotId = "string",
        SourceReplica = "string",
        SourceVolId = "string",
        VolumeType = "string",
    });
    
    example, err := blockstorage.NewVolumeV2(ctx, "volumeV2Resource", &blockstorage.VolumeV2Args{
    	Size:        pulumi.Int(0),
    	Region:      pulumi.String("string"),
    	Description: pulumi.String("string"),
    	ImageId:     pulumi.String("string"),
    	Metadata: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	Name:             pulumi.String("string"),
    	AvailabilityZone: pulumi.String("string"),
    	SchedulerHints: blockstorage.VolumeV2SchedulerHintArray{
    		&blockstorage.VolumeV2SchedulerHintArgs{
    			AdditionalProperties: pulumi.Map{
    				"string": pulumi.Any("any"),
    			},
    			DifferentHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			LocalToInstance: pulumi.String("string"),
    			Query:           pulumi.String("string"),
    			SameHosts: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    		},
    	},
    	ConsistencyGroupId: pulumi.String("string"),
    	SnapshotId:         pulumi.String("string"),
    	SourceReplica:      pulumi.String("string"),
    	SourceVolId:        pulumi.String("string"),
    	VolumeType:         pulumi.String("string"),
    })
    
    var volumeV2Resource = new VolumeV2("volumeV2Resource", VolumeV2Args.builder()        
        .size(0)
        .region("string")
        .description("string")
        .imageId("string")
        .metadata(Map.of("string", "any"))
        .name("string")
        .availabilityZone("string")
        .schedulerHints(VolumeV2SchedulerHintArgs.builder()
            .additionalProperties(Map.of("string", "any"))
            .differentHosts("string")
            .localToInstance("string")
            .query("string")
            .sameHosts("string")
            .build())
        .consistencyGroupId("string")
        .snapshotId("string")
        .sourceReplica("string")
        .sourceVolId("string")
        .volumeType("string")
        .build());
    
    volume_v2_resource = openstack.blockstorage.VolumeV2("volumeV2Resource",
        size=0,
        region="string",
        description="string",
        image_id="string",
        metadata={
            "string": "any",
        },
        name="string",
        availability_zone="string",
        scheduler_hints=[openstack.blockstorage.VolumeV2SchedulerHintArgs(
            additional_properties={
                "string": "any",
            },
            different_hosts=["string"],
            local_to_instance="string",
            query="string",
            same_hosts=["string"],
        )],
        consistency_group_id="string",
        snapshot_id="string",
        source_replica="string",
        source_vol_id="string",
        volume_type="string")
    
    const volumeV2Resource = new openstack.blockstorage.VolumeV2("volumeV2Resource", {
        size: 0,
        region: "string",
        description: "string",
        imageId: "string",
        metadata: {
            string: "any",
        },
        name: "string",
        availabilityZone: "string",
        schedulerHints: [{
            additionalProperties: {
                string: "any",
            },
            differentHosts: ["string"],
            localToInstance: "string",
            query: "string",
            sameHosts: ["string"],
        }],
        consistencyGroupId: "string",
        snapshotId: "string",
        sourceReplica: "string",
        sourceVolId: "string",
        volumeType: "string",
    });
    
    type: openstack:blockstorage:VolumeV2
    properties:
        availabilityZone: string
        consistencyGroupId: string
        description: string
        imageId: string
        metadata:
            string: any
        name: string
        region: string
        schedulerHints:
            - additionalProperties:
                string: any
              differentHosts:
                - string
              localToInstance: string
              query: string
              sameHosts:
                - string
        size: 0
        snapshotId: string
        sourceReplica: string
        sourceVolId: string
        volumeType: string
    

    VolumeV2 Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The VolumeV2 resource accepts the following input properties:

    Size int
    The size of the volume to create (in gigabytes). Changing this creates a new volume.
    AvailabilityZone string
    The availability zone for the volume. Changing this creates a new volume.
    ConsistencyGroupId string
    The consistency group to place the volume in.
    Description string
    A description of the volume. Changing this updates the volume's description.
    ImageId string
    The image ID from which to create the volume. Changing this creates a new volume.
    Metadata Dictionary<string, object>
    Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
    Name string
    A unique name for the volume. Changing this updates the volume's name.
    Region string
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new volume.
    SchedulerHints List<Pulumi.OpenStack.BlockStorage.Inputs.VolumeV2SchedulerHint>
    Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
    SnapshotId string
    The snapshot ID from which to create the volume. Changing this creates a new volume.
    SourceReplica string
    The volume ID to replicate with.
    SourceVolId string
    The volume ID from which to create the volume. Changing this creates a new volume.
    VolumeType string
    The type of volume to create. Changing this creates a new volume.
    Size int
    The size of the volume to create (in gigabytes). Changing this creates a new volume.
    AvailabilityZone string
    The availability zone for the volume. Changing this creates a new volume.
    ConsistencyGroupId string
    The consistency group to place the volume in.
    Description string
    A description of the volume. Changing this updates the volume's description.
    ImageId string
    The image ID from which to create the volume. Changing this creates a new volume.
    Metadata map[string]interface{}
    Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
    Name string
    A unique name for the volume. Changing this updates the volume's name.
    Region string
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new volume.
    SchedulerHints []VolumeV2SchedulerHintArgs
    Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
    SnapshotId string
    The snapshot ID from which to create the volume. Changing this creates a new volume.
    SourceReplica string
    The volume ID to replicate with.
    SourceVolId string
    The volume ID from which to create the volume. Changing this creates a new volume.
    VolumeType string
    The type of volume to create. Changing this creates a new volume.
    size Integer
    The size of the volume to create (in gigabytes). Changing this creates a new volume.
    availabilityZone String
    The availability zone for the volume. Changing this creates a new volume.
    consistencyGroupId String
    The consistency group to place the volume in.
    description String
    A description of the volume. Changing this updates the volume's description.
    imageId String
    The image ID from which to create the volume. Changing this creates a new volume.
    metadata Map<String,Object>
    Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
    name String
    A unique name for the volume. Changing this updates the volume's name.
    region String
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new volume.
    schedulerHints List<VolumeV2SchedulerHint>
    Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
    snapshotId String
    The snapshot ID from which to create the volume. Changing this creates a new volume.
    sourceReplica String
    The volume ID to replicate with.
    sourceVolId String
    The volume ID from which to create the volume. Changing this creates a new volume.
    volumeType String
    The type of volume to create. Changing this creates a new volume.
    size number
    The size of the volume to create (in gigabytes). Changing this creates a new volume.
    availabilityZone string
    The availability zone for the volume. Changing this creates a new volume.
    consistencyGroupId string
    The consistency group to place the volume in.
    description string
    A description of the volume. Changing this updates the volume's description.
    imageId string
    The image ID from which to create the volume. Changing this creates a new volume.
    metadata {[key: string]: any}
    Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
    name string
    A unique name for the volume. Changing this updates the volume's name.
    region string
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new volume.
    schedulerHints VolumeV2SchedulerHint[]
    Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
    snapshotId string
    The snapshot ID from which to create the volume. Changing this creates a new volume.
    sourceReplica string
    The volume ID to replicate with.
    sourceVolId string
    The volume ID from which to create the volume. Changing this creates a new volume.
    volumeType string
    The type of volume to create. Changing this creates a new volume.
    size int
    The size of the volume to create (in gigabytes). Changing this creates a new volume.
    availability_zone str
    The availability zone for the volume. Changing this creates a new volume.
    consistency_group_id str
    The consistency group to place the volume in.
    description str
    A description of the volume. Changing this updates the volume's description.
    image_id str
    The image ID from which to create the volume. Changing this creates a new volume.
    metadata Mapping[str, Any]
    Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
    name str
    A unique name for the volume. Changing this updates the volume's name.
    region str
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new volume.
    scheduler_hints Sequence[VolumeV2SchedulerHintArgs]
    Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
    snapshot_id str
    The snapshot ID from which to create the volume. Changing this creates a new volume.
    source_replica str
    The volume ID to replicate with.
    source_vol_id str
    The volume ID from which to create the volume. Changing this creates a new volume.
    volume_type str
    The type of volume to create. Changing this creates a new volume.
    size Number
    The size of the volume to create (in gigabytes). Changing this creates a new volume.
    availabilityZone String
    The availability zone for the volume. Changing this creates a new volume.
    consistencyGroupId String
    The consistency group to place the volume in.
    description String
    A description of the volume. Changing this updates the volume's description.
    imageId String
    The image ID from which to create the volume. Changing this creates a new volume.
    metadata Map<Any>
    Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
    name String
    A unique name for the volume. Changing this updates the volume's name.
    region String
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new volume.
    schedulerHints List<Property Map>
    Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
    snapshotId String
    The snapshot ID from which to create the volume. Changing this creates a new volume.
    sourceReplica String
    The volume ID to replicate with.
    sourceVolId String
    The volume ID from which to create the volume. Changing this creates a new volume.
    volumeType String
    The type of volume to create. Changing this creates a new volume.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the VolumeV2 resource produces the following output properties:

    Attachments List<Pulumi.OpenStack.BlockStorage.Outputs.VolumeV2Attachment>
    If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
    Id string
    The provider-assigned unique ID for this managed resource.
    Attachments []VolumeV2Attachment
    If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
    Id string
    The provider-assigned unique ID for this managed resource.
    attachments List<VolumeV2Attachment>
    If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
    id String
    The provider-assigned unique ID for this managed resource.
    attachments VolumeV2Attachment[]
    If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
    id string
    The provider-assigned unique ID for this managed resource.
    attachments Sequence[VolumeV2Attachment]
    If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
    id str
    The provider-assigned unique ID for this managed resource.
    attachments List<Property Map>
    If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
    id String
    The provider-assigned unique ID for this managed resource.

    Look up Existing VolumeV2 Resource

    Get an existing VolumeV2 resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: VolumeV2State, opts?: CustomResourceOptions): VolumeV2
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            attachments: Optional[Sequence[VolumeV2AttachmentArgs]] = None,
            availability_zone: Optional[str] = None,
            consistency_group_id: Optional[str] = None,
            description: Optional[str] = None,
            image_id: Optional[str] = None,
            metadata: Optional[Mapping[str, Any]] = None,
            name: Optional[str] = None,
            region: Optional[str] = None,
            scheduler_hints: Optional[Sequence[VolumeV2SchedulerHintArgs]] = None,
            size: Optional[int] = None,
            snapshot_id: Optional[str] = None,
            source_replica: Optional[str] = None,
            source_vol_id: Optional[str] = None,
            volume_type: Optional[str] = None) -> VolumeV2
    func GetVolumeV2(ctx *Context, name string, id IDInput, state *VolumeV2State, opts ...ResourceOption) (*VolumeV2, error)
    public static VolumeV2 Get(string name, Input<string> id, VolumeV2State? state, CustomResourceOptions? opts = null)
    public static VolumeV2 get(String name, Output<String> id, VolumeV2State state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Attachments List<Pulumi.OpenStack.BlockStorage.Inputs.VolumeV2Attachment>
    If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
    AvailabilityZone string
    The availability zone for the volume. Changing this creates a new volume.
    ConsistencyGroupId string
    The consistency group to place the volume in.
    Description string
    A description of the volume. Changing this updates the volume's description.
    ImageId string
    The image ID from which to create the volume. Changing this creates a new volume.
    Metadata Dictionary<string, object>
    Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
    Name string
    A unique name for the volume. Changing this updates the volume's name.
    Region string
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new volume.
    SchedulerHints List<Pulumi.OpenStack.BlockStorage.Inputs.VolumeV2SchedulerHint>
    Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
    Size int
    The size of the volume to create (in gigabytes). Changing this creates a new volume.
    SnapshotId string
    The snapshot ID from which to create the volume. Changing this creates a new volume.
    SourceReplica string
    The volume ID to replicate with.
    SourceVolId string
    The volume ID from which to create the volume. Changing this creates a new volume.
    VolumeType string
    The type of volume to create. Changing this creates a new volume.
    Attachments []VolumeV2AttachmentArgs
    If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
    AvailabilityZone string
    The availability zone for the volume. Changing this creates a new volume.
    ConsistencyGroupId string
    The consistency group to place the volume in.
    Description string
    A description of the volume. Changing this updates the volume's description.
    ImageId string
    The image ID from which to create the volume. Changing this creates a new volume.
    Metadata map[string]interface{}
    Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
    Name string
    A unique name for the volume. Changing this updates the volume's name.
    Region string
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new volume.
    SchedulerHints []VolumeV2SchedulerHintArgs
    Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
    Size int
    The size of the volume to create (in gigabytes). Changing this creates a new volume.
    SnapshotId string
    The snapshot ID from which to create the volume. Changing this creates a new volume.
    SourceReplica string
    The volume ID to replicate with.
    SourceVolId string
    The volume ID from which to create the volume. Changing this creates a new volume.
    VolumeType string
    The type of volume to create. Changing this creates a new volume.
    attachments List<VolumeV2Attachment>
    If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
    availabilityZone String
    The availability zone for the volume. Changing this creates a new volume.
    consistencyGroupId String
    The consistency group to place the volume in.
    description String
    A description of the volume. Changing this updates the volume's description.
    imageId String
    The image ID from which to create the volume. Changing this creates a new volume.
    metadata Map<String,Object>
    Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
    name String
    A unique name for the volume. Changing this updates the volume's name.
    region String
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new volume.
    schedulerHints List<VolumeV2SchedulerHint>
    Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
    size Integer
    The size of the volume to create (in gigabytes). Changing this creates a new volume.
    snapshotId String
    The snapshot ID from which to create the volume. Changing this creates a new volume.
    sourceReplica String
    The volume ID to replicate with.
    sourceVolId String
    The volume ID from which to create the volume. Changing this creates a new volume.
    volumeType String
    The type of volume to create. Changing this creates a new volume.
    attachments VolumeV2Attachment[]
    If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
    availabilityZone string
    The availability zone for the volume. Changing this creates a new volume.
    consistencyGroupId string
    The consistency group to place the volume in.
    description string
    A description of the volume. Changing this updates the volume's description.
    imageId string
    The image ID from which to create the volume. Changing this creates a new volume.
    metadata {[key: string]: any}
    Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
    name string
    A unique name for the volume. Changing this updates the volume's name.
    region string
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new volume.
    schedulerHints VolumeV2SchedulerHint[]
    Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
    size number
    The size of the volume to create (in gigabytes). Changing this creates a new volume.
    snapshotId string
    The snapshot ID from which to create the volume. Changing this creates a new volume.
    sourceReplica string
    The volume ID to replicate with.
    sourceVolId string
    The volume ID from which to create the volume. Changing this creates a new volume.
    volumeType string
    The type of volume to create. Changing this creates a new volume.
    attachments Sequence[VolumeV2AttachmentArgs]
    If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
    availability_zone str
    The availability zone for the volume. Changing this creates a new volume.
    consistency_group_id str
    The consistency group to place the volume in.
    description str
    A description of the volume. Changing this updates the volume's description.
    image_id str
    The image ID from which to create the volume. Changing this creates a new volume.
    metadata Mapping[str, Any]
    Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
    name str
    A unique name for the volume. Changing this updates the volume's name.
    region str
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new volume.
    scheduler_hints Sequence[VolumeV2SchedulerHintArgs]
    Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
    size int
    The size of the volume to create (in gigabytes). Changing this creates a new volume.
    snapshot_id str
    The snapshot ID from which to create the volume. Changing this creates a new volume.
    source_replica str
    The volume ID to replicate with.
    source_vol_id str
    The volume ID from which to create the volume. Changing this creates a new volume.
    volume_type str
    The type of volume to create. Changing this creates a new volume.
    attachments List<Property Map>
    If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
    availabilityZone String
    The availability zone for the volume. Changing this creates a new volume.
    consistencyGroupId String
    The consistency group to place the volume in.
    description String
    A description of the volume. Changing this updates the volume's description.
    imageId String
    The image ID from which to create the volume. Changing this creates a new volume.
    metadata Map<Any>
    Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
    name String
    A unique name for the volume. Changing this updates the volume's name.
    region String
    The region in which to create the volume. If omitted, the region argument of the provider is used. Changing this creates a new volume.
    schedulerHints List<Property Map>
    Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
    size Number
    The size of the volume to create (in gigabytes). Changing this creates a new volume.
    snapshotId String
    The snapshot ID from which to create the volume. Changing this creates a new volume.
    sourceReplica String
    The volume ID to replicate with.
    sourceVolId String
    The volume ID from which to create the volume. Changing this creates a new volume.
    volumeType String
    The type of volume to create. Changing this creates a new volume.

    Supporting Types

    VolumeV2Attachment, VolumeV2AttachmentArgs

    Device string
    Id string
    InstanceId string
    Device string
    Id string
    InstanceId string
    device String
    id String
    instanceId String
    device string
    id string
    instanceId string
    device String
    id String
    instanceId String

    VolumeV2SchedulerHint, VolumeV2SchedulerHintArgs

    AdditionalProperties Dictionary<string, object>
    Arbitrary key/value pairs of additional properties to pass to the scheduler.
    DifferentHosts List<string>
    The volume should be scheduled on a different host from the set of volumes specified in the list provided.
    LocalToInstance string
    An instance UUID. The volume should be scheduled on the same host as the instance.
    Query string
    A conditional query that a back-end must pass in order to host a volume. The query must use the JsonFilter syntax which is described here. At this time, only simple queries are supported. Compound queries using and, or, or not are not supported. An example of a simple query is:
    SameHosts List<string>
    A list of volume UUIDs. The volume should be scheduled on the same host as another volume specified in the list provided.
    AdditionalProperties map[string]interface{}
    Arbitrary key/value pairs of additional properties to pass to the scheduler.
    DifferentHosts []string
    The volume should be scheduled on a different host from the set of volumes specified in the list provided.
    LocalToInstance string
    An instance UUID. The volume should be scheduled on the same host as the instance.
    Query string
    A conditional query that a back-end must pass in order to host a volume. The query must use the JsonFilter syntax which is described here. At this time, only simple queries are supported. Compound queries using and, or, or not are not supported. An example of a simple query is:
    SameHosts []string
    A list of volume UUIDs. The volume should be scheduled on the same host as another volume specified in the list provided.
    additionalProperties Map<String,Object>
    Arbitrary key/value pairs of additional properties to pass to the scheduler.
    differentHosts List<String>
    The volume should be scheduled on a different host from the set of volumes specified in the list provided.
    localToInstance String
    An instance UUID. The volume should be scheduled on the same host as the instance.
    query String
    A conditional query that a back-end must pass in order to host a volume. The query must use the JsonFilter syntax which is described here. At this time, only simple queries are supported. Compound queries using and, or, or not are not supported. An example of a simple query is:
    sameHosts List<String>
    A list of volume UUIDs. The volume should be scheduled on the same host as another volume specified in the list provided.
    additionalProperties {[key: string]: any}
    Arbitrary key/value pairs of additional properties to pass to the scheduler.
    differentHosts string[]
    The volume should be scheduled on a different host from the set of volumes specified in the list provided.
    localToInstance string
    An instance UUID. The volume should be scheduled on the same host as the instance.
    query string
    A conditional query that a back-end must pass in order to host a volume. The query must use the JsonFilter syntax which is described here. At this time, only simple queries are supported. Compound queries using and, or, or not are not supported. An example of a simple query is:
    sameHosts string[]
    A list of volume UUIDs. The volume should be scheduled on the same host as another volume specified in the list provided.
    additional_properties Mapping[str, Any]
    Arbitrary key/value pairs of additional properties to pass to the scheduler.
    different_hosts Sequence[str]
    The volume should be scheduled on a different host from the set of volumes specified in the list provided.
    local_to_instance str
    An instance UUID. The volume should be scheduled on the same host as the instance.
    query str
    A conditional query that a back-end must pass in order to host a volume. The query must use the JsonFilter syntax which is described here. At this time, only simple queries are supported. Compound queries using and, or, or not are not supported. An example of a simple query is:
    same_hosts Sequence[str]
    A list of volume UUIDs. The volume should be scheduled on the same host as another volume specified in the list provided.
    additionalProperties Map<Any>
    Arbitrary key/value pairs of additional properties to pass to the scheduler.
    differentHosts List<String>
    The volume should be scheduled on a different host from the set of volumes specified in the list provided.
    localToInstance String
    An instance UUID. The volume should be scheduled on the same host as the instance.
    query String
    A conditional query that a back-end must pass in order to host a volume. The query must use the JsonFilter syntax which is described here. At this time, only simple queries are supported. Compound queries using and, or, or not are not supported. An example of a simple query is:
    sameHosts List<String>
    A list of volume UUIDs. The volume should be scheduled on the same host as another volume specified in the list provided.

    Import

    Volumes can be imported using the id, e.g.

    $ pulumi import openstack:blockstorage/volumeV2:VolumeV2 volume_1 ea257959-eeb1-4c10-8d33-26f0409a755d
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    OpenStack pulumi/pulumi-openstack
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the openstack Terraform Provider.
    openstack logo
    OpenStack v3.15.2 published on Friday, Mar 29, 2024 by Pulumi