1. Packages
  2. Ibm Provider
  3. API Docs
  4. PiInstanceVpmemVolumes
ibm 1.88.0 published on Friday, Feb 6, 2026 by ibm-cloud
ibm logo
ibm 1.88.0 published on Friday, Feb 6, 2026 by ibm-cloud

    Create, update, and delete pi_instance_vpmem_volumes with this resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const instanceVpmemVolumes = new ibm.PiInstanceVpmemVolumes("instance_vpmem_volumes", {
        piCloudInstanceId: "cloud_instance_id",
        piPvmInstanceId: "pvm_instance_id",
        piVpmemVolumes: [{
            name: "name",
            size: 1,
        }],
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    instance_vpmem_volumes = ibm.PiInstanceVpmemVolumes("instance_vpmem_volumes",
        pi_cloud_instance_id="cloud_instance_id",
        pi_pvm_instance_id="pvm_instance_id",
        pi_vpmem_volumes=[{
            "name": "name",
            "size": 1,
        }])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.NewPiInstanceVpmemVolumes(ctx, "instance_vpmem_volumes", &ibm.PiInstanceVpmemVolumesArgs{
    			PiCloudInstanceId: pulumi.String("cloud_instance_id"),
    			PiPvmInstanceId:   pulumi.String("pvm_instance_id"),
    			PiVpmemVolumes: ibm.PiInstanceVpmemVolumesPiVpmemVolumeArray{
    				&ibm.PiInstanceVpmemVolumesPiVpmemVolumeArgs{
    					Name: pulumi.String("name"),
    					Size: pulumi.Float64(1),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var instanceVpmemVolumes = new Ibm.PiInstanceVpmemVolumes("instance_vpmem_volumes", new()
        {
            PiCloudInstanceId = "cloud_instance_id",
            PiPvmInstanceId = "pvm_instance_id",
            PiVpmemVolumes = new[]
            {
                new Ibm.Inputs.PiInstanceVpmemVolumesPiVpmemVolumeArgs
                {
                    Name = "name",
                    Size = 1,
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.PiInstanceVpmemVolumes;
    import com.pulumi.ibm.PiInstanceVpmemVolumesArgs;
    import com.pulumi.ibm.inputs.PiInstanceVpmemVolumesPiVpmemVolumeArgs;
    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 instanceVpmemVolumes = new PiInstanceVpmemVolumes("instanceVpmemVolumes", PiInstanceVpmemVolumesArgs.builder()
                .piCloudInstanceId("cloud_instance_id")
                .piPvmInstanceId("pvm_instance_id")
                .piVpmemVolumes(PiInstanceVpmemVolumesPiVpmemVolumeArgs.builder()
                    .name("name")
                    .size(1.0)
                    .build())
                .build());
    
        }
    }
    
    resources:
      instanceVpmemVolumes:
        type: ibm:PiInstanceVpmemVolumes
        name: instance_vpmem_volumes
        properties:
          piCloudInstanceId: cloud_instance_id
          piPvmInstanceId: pvm_instance_id
          piVpmemVolumes:
            - name: name
              size: 1
    

    Notes

    • Please find supported Regions for endpoints.
    • If a Power cloud instance is provisioned at lon04, The provider level attributes should be as follows:
      • region - lon
      • zone - lon04

    Example usage:

    import * as pulumi from "@pulumi/pulumi";
    
    import pulumi
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    
    return await Deployment.RunAsync(() => 
    {
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    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) {
        }
    }
    
    {}
    

    Create PiInstanceVpmemVolumes Resource

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

    Constructor syntax

    new PiInstanceVpmemVolumes(name: string, args: PiInstanceVpmemVolumesArgs, opts?: CustomResourceOptions);
    @overload
    def PiInstanceVpmemVolumes(resource_name: str,
                               args: PiInstanceVpmemVolumesArgs,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def PiInstanceVpmemVolumes(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               pi_cloud_instance_id: Optional[str] = None,
                               pi_pvm_instance_id: Optional[str] = None,
                               pi_vpmem_volumes: Optional[Sequence[PiInstanceVpmemVolumesPiVpmemVolumeArgs]] = None,
                               pi_instance_vpmem_volumes_id: Optional[str] = None,
                               pi_user_tags: Optional[Sequence[str]] = None,
                               timeouts: Optional[PiInstanceVpmemVolumesTimeoutsArgs] = None)
    func NewPiInstanceVpmemVolumes(ctx *Context, name string, args PiInstanceVpmemVolumesArgs, opts ...ResourceOption) (*PiInstanceVpmemVolumes, error)
    public PiInstanceVpmemVolumes(string name, PiInstanceVpmemVolumesArgs args, CustomResourceOptions? opts = null)
    public PiInstanceVpmemVolumes(String name, PiInstanceVpmemVolumesArgs args)
    public PiInstanceVpmemVolumes(String name, PiInstanceVpmemVolumesArgs args, CustomResourceOptions options)
    
    type: ibm:PiInstanceVpmemVolumes
    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 PiInstanceVpmemVolumesArgs
    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 PiInstanceVpmemVolumesArgs
    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 PiInstanceVpmemVolumesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PiInstanceVpmemVolumesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PiInstanceVpmemVolumesArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

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

    var piInstanceVpmemVolumesResource = new Ibm.PiInstanceVpmemVolumes("piInstanceVpmemVolumesResource", new()
    {
        PiCloudInstanceId = "string",
        PiPvmInstanceId = "string",
        PiVpmemVolumes = new[]
        {
            new Ibm.Inputs.PiInstanceVpmemVolumesPiVpmemVolumeArgs
            {
                Name = "string",
                Size = 0,
            },
        },
        PiInstanceVpmemVolumesId = "string",
        PiUserTags = new[]
        {
            "string",
        },
        Timeouts = new Ibm.Inputs.PiInstanceVpmemVolumesTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
        },
    });
    
    example, err := ibm.NewPiInstanceVpmemVolumes(ctx, "piInstanceVpmemVolumesResource", &ibm.PiInstanceVpmemVolumesArgs{
    	PiCloudInstanceId: pulumi.String("string"),
    	PiPvmInstanceId:   pulumi.String("string"),
    	PiVpmemVolumes: ibm.PiInstanceVpmemVolumesPiVpmemVolumeArray{
    		&ibm.PiInstanceVpmemVolumesPiVpmemVolumeArgs{
    			Name: pulumi.String("string"),
    			Size: pulumi.Float64(0),
    		},
    	},
    	PiInstanceVpmemVolumesId: pulumi.String("string"),
    	PiUserTags: pulumi.StringArray{
    		pulumi.String("string"),
    	},
    	Timeouts: &ibm.PiInstanceVpmemVolumesTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    	},
    })
    
    var piInstanceVpmemVolumesResource = new PiInstanceVpmemVolumes("piInstanceVpmemVolumesResource", PiInstanceVpmemVolumesArgs.builder()
        .piCloudInstanceId("string")
        .piPvmInstanceId("string")
        .piVpmemVolumes(PiInstanceVpmemVolumesPiVpmemVolumeArgs.builder()
            .name("string")
            .size(0.0)
            .build())
        .piInstanceVpmemVolumesId("string")
        .piUserTags("string")
        .timeouts(PiInstanceVpmemVolumesTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .build())
        .build());
    
    pi_instance_vpmem_volumes_resource = ibm.PiInstanceVpmemVolumes("piInstanceVpmemVolumesResource",
        pi_cloud_instance_id="string",
        pi_pvm_instance_id="string",
        pi_vpmem_volumes=[{
            "name": "string",
            "size": 0,
        }],
        pi_instance_vpmem_volumes_id="string",
        pi_user_tags=["string"],
        timeouts={
            "create": "string",
            "delete": "string",
        })
    
    const piInstanceVpmemVolumesResource = new ibm.PiInstanceVpmemVolumes("piInstanceVpmemVolumesResource", {
        piCloudInstanceId: "string",
        piPvmInstanceId: "string",
        piVpmemVolumes: [{
            name: "string",
            size: 0,
        }],
        piInstanceVpmemVolumesId: "string",
        piUserTags: ["string"],
        timeouts: {
            create: "string",
            "delete": "string",
        },
    });
    
    type: ibm:PiInstanceVpmemVolumes
    properties:
        piCloudInstanceId: string
        piInstanceVpmemVolumesId: string
        piPvmInstanceId: string
        piUserTags:
            - string
        piVpmemVolumes:
            - name: string
              size: 0
        timeouts:
            create: string
            delete: string
    

    PiInstanceVpmemVolumes Resource Properties

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

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The PiInstanceVpmemVolumes resource accepts the following input properties:

    PiCloudInstanceId string
    Cloud Instance ID of a PCloud Instance.
    PiPvmInstanceId string
    PCloud PVM Instance ID.
    PiVpmemVolumes List<PiInstanceVpmemVolumesPiVpmemVolume>
    Nested schema for pi_vpmem_volumes:
    PiInstanceVpmemVolumesId string
    (String) The unique identifier of the pi_instance_vpmem_volumes.
    PiUserTags List<string>
    List of user tags.
    Timeouts PiInstanceVpmemVolumesTimeouts
    PiCloudInstanceId string
    Cloud Instance ID of a PCloud Instance.
    PiPvmInstanceId string
    PCloud PVM Instance ID.
    PiVpmemVolumes []PiInstanceVpmemVolumesPiVpmemVolumeArgs
    Nested schema for pi_vpmem_volumes:
    PiInstanceVpmemVolumesId string
    (String) The unique identifier of the pi_instance_vpmem_volumes.
    PiUserTags []string
    List of user tags.
    Timeouts PiInstanceVpmemVolumesTimeoutsArgs
    piCloudInstanceId String
    Cloud Instance ID of a PCloud Instance.
    piPvmInstanceId String
    PCloud PVM Instance ID.
    piVpmemVolumes List<PiInstanceVpmemVolumesPiVpmemVolume>
    Nested schema for pi_vpmem_volumes:
    piInstanceVpmemVolumesId String
    (String) The unique identifier of the pi_instance_vpmem_volumes.
    piUserTags List<String>
    List of user tags.
    timeouts PiInstanceVpmemVolumesTimeouts
    piCloudInstanceId string
    Cloud Instance ID of a PCloud Instance.
    piPvmInstanceId string
    PCloud PVM Instance ID.
    piVpmemVolumes PiInstanceVpmemVolumesPiVpmemVolume[]
    Nested schema for pi_vpmem_volumes:
    piInstanceVpmemVolumesId string
    (String) The unique identifier of the pi_instance_vpmem_volumes.
    piUserTags string[]
    List of user tags.
    timeouts PiInstanceVpmemVolumesTimeouts
    pi_cloud_instance_id str
    Cloud Instance ID of a PCloud Instance.
    pi_pvm_instance_id str
    PCloud PVM Instance ID.
    pi_vpmem_volumes Sequence[PiInstanceVpmemVolumesPiVpmemVolumeArgs]
    Nested schema for pi_vpmem_volumes:
    pi_instance_vpmem_volumes_id str
    (String) The unique identifier of the pi_instance_vpmem_volumes.
    pi_user_tags Sequence[str]
    List of user tags.
    timeouts PiInstanceVpmemVolumesTimeoutsArgs
    piCloudInstanceId String
    Cloud Instance ID of a PCloud Instance.
    piPvmInstanceId String
    PCloud PVM Instance ID.
    piVpmemVolumes List<Property Map>
    Nested schema for pi_vpmem_volumes:
    piInstanceVpmemVolumesId String
    (String) The unique identifier of the pi_instance_vpmem_volumes.
    piUserTags List<String>
    List of user tags.
    timeouts Property Map

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Volumes List<PiInstanceVpmemVolumesVolume>
    (List) List of vPMEM volumes. Nested schema for volumes:
    Id string
    The provider-assigned unique ID for this managed resource.
    Volumes []PiInstanceVpmemVolumesVolume
    (List) List of vPMEM volumes. Nested schema for volumes:
    id String
    The provider-assigned unique ID for this managed resource.
    volumes List<PiInstanceVpmemVolumesVolume>
    (List) List of vPMEM volumes. Nested schema for volumes:
    id string
    The provider-assigned unique ID for this managed resource.
    volumes PiInstanceVpmemVolumesVolume[]
    (List) List of vPMEM volumes. Nested schema for volumes:
    id str
    The provider-assigned unique ID for this managed resource.
    volumes Sequence[PiInstanceVpmemVolumesVolume]
    (List) List of vPMEM volumes. Nested schema for volumes:
    id String
    The provider-assigned unique ID for this managed resource.
    volumes List<Property Map>
    (List) List of vPMEM volumes. Nested schema for volumes:

    Look up Existing PiInstanceVpmemVolumes Resource

    Get an existing PiInstanceVpmemVolumes 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?: PiInstanceVpmemVolumesState, opts?: CustomResourceOptions): PiInstanceVpmemVolumes
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            pi_cloud_instance_id: Optional[str] = None,
            pi_instance_vpmem_volumes_id: Optional[str] = None,
            pi_pvm_instance_id: Optional[str] = None,
            pi_user_tags: Optional[Sequence[str]] = None,
            pi_vpmem_volumes: Optional[Sequence[PiInstanceVpmemVolumesPiVpmemVolumeArgs]] = None,
            timeouts: Optional[PiInstanceVpmemVolumesTimeoutsArgs] = None,
            volumes: Optional[Sequence[PiInstanceVpmemVolumesVolumeArgs]] = None) -> PiInstanceVpmemVolumes
    func GetPiInstanceVpmemVolumes(ctx *Context, name string, id IDInput, state *PiInstanceVpmemVolumesState, opts ...ResourceOption) (*PiInstanceVpmemVolumes, error)
    public static PiInstanceVpmemVolumes Get(string name, Input<string> id, PiInstanceVpmemVolumesState? state, CustomResourceOptions? opts = null)
    public static PiInstanceVpmemVolumes get(String name, Output<String> id, PiInstanceVpmemVolumesState state, CustomResourceOptions options)
    resources:  _:    type: ibm:PiInstanceVpmemVolumes    get:      id: ${id}
    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:
    PiCloudInstanceId string
    Cloud Instance ID of a PCloud Instance.
    PiInstanceVpmemVolumesId string
    (String) The unique identifier of the pi_instance_vpmem_volumes.
    PiPvmInstanceId string
    PCloud PVM Instance ID.
    PiUserTags List<string>
    List of user tags.
    PiVpmemVolumes List<PiInstanceVpmemVolumesPiVpmemVolume>
    Nested schema for pi_vpmem_volumes:
    Timeouts PiInstanceVpmemVolumesTimeouts
    Volumes List<PiInstanceVpmemVolumesVolume>
    (List) List of vPMEM volumes. Nested schema for volumes:
    PiCloudInstanceId string
    Cloud Instance ID of a PCloud Instance.
    PiInstanceVpmemVolumesId string
    (String) The unique identifier of the pi_instance_vpmem_volumes.
    PiPvmInstanceId string
    PCloud PVM Instance ID.
    PiUserTags []string
    List of user tags.
    PiVpmemVolumes []PiInstanceVpmemVolumesPiVpmemVolumeArgs
    Nested schema for pi_vpmem_volumes:
    Timeouts PiInstanceVpmemVolumesTimeoutsArgs
    Volumes []PiInstanceVpmemVolumesVolumeArgs
    (List) List of vPMEM volumes. Nested schema for volumes:
    piCloudInstanceId String
    Cloud Instance ID of a PCloud Instance.
    piInstanceVpmemVolumesId String
    (String) The unique identifier of the pi_instance_vpmem_volumes.
    piPvmInstanceId String
    PCloud PVM Instance ID.
    piUserTags List<String>
    List of user tags.
    piVpmemVolumes List<PiInstanceVpmemVolumesPiVpmemVolume>
    Nested schema for pi_vpmem_volumes:
    timeouts PiInstanceVpmemVolumesTimeouts
    volumes List<PiInstanceVpmemVolumesVolume>
    (List) List of vPMEM volumes. Nested schema for volumes:
    piCloudInstanceId string
    Cloud Instance ID of a PCloud Instance.
    piInstanceVpmemVolumesId string
    (String) The unique identifier of the pi_instance_vpmem_volumes.
    piPvmInstanceId string
    PCloud PVM Instance ID.
    piUserTags string[]
    List of user tags.
    piVpmemVolumes PiInstanceVpmemVolumesPiVpmemVolume[]
    Nested schema for pi_vpmem_volumes:
    timeouts PiInstanceVpmemVolumesTimeouts
    volumes PiInstanceVpmemVolumesVolume[]
    (List) List of vPMEM volumes. Nested schema for volumes:
    pi_cloud_instance_id str
    Cloud Instance ID of a PCloud Instance.
    pi_instance_vpmem_volumes_id str
    (String) The unique identifier of the pi_instance_vpmem_volumes.
    pi_pvm_instance_id str
    PCloud PVM Instance ID.
    pi_user_tags Sequence[str]
    List of user tags.
    pi_vpmem_volumes Sequence[PiInstanceVpmemVolumesPiVpmemVolumeArgs]
    Nested schema for pi_vpmem_volumes:
    timeouts PiInstanceVpmemVolumesTimeoutsArgs
    volumes Sequence[PiInstanceVpmemVolumesVolumeArgs]
    (List) List of vPMEM volumes. Nested schema for volumes:
    piCloudInstanceId String
    Cloud Instance ID of a PCloud Instance.
    piInstanceVpmemVolumesId String
    (String) The unique identifier of the pi_instance_vpmem_volumes.
    piPvmInstanceId String
    PCloud PVM Instance ID.
    piUserTags List<String>
    List of user tags.
    piVpmemVolumes List<Property Map>
    Nested schema for pi_vpmem_volumes:
    timeouts Property Map
    volumes List<Property Map>
    (List) List of vPMEM volumes. Nested schema for volumes:

    Supporting Types

    PiInstanceVpmemVolumesPiVpmemVolume, PiInstanceVpmemVolumesPiVpmemVolumeArgs

    Name string
    Volume base name.
    Size double
    Volume size (GB).
    Name string
    Volume base name.
    Size float64
    Volume size (GB).
    name String
    Volume base name.
    size Double
    Volume size (GB).
    name string
    Volume base name.
    size number
    Volume size (GB).
    name str
    Volume base name.
    size float
    Volume size (GB).
    name String
    Volume base name.
    size Number
    Volume size (GB).

    PiInstanceVpmemVolumesTimeouts, PiInstanceVpmemVolumesTimeoutsArgs

    Create string
    Delete string
    Create string
    Delete string
    create String
    delete String
    create string
    delete string
    create str
    delete str
    create String
    delete String

    PiInstanceVpmemVolumesVolume, PiInstanceVpmemVolumesVolumeArgs

    CreationDate string
    (String) The date and time when the volume was created.
    Crn string
    (String) The CRN for this resource.
    ErrorCode string
    (String) Error code for the vPMEM volume.
    Href string
    (String) Link to vPMEM volume resource.
    Name string
    (String) Volume Name.
    PvmInstanceId string
    (String) PVM Instance ID which the volume is attached to.
    Reason string
    (String) Reason for error.
    Size double
    (Float) Volume Size (GB).
    Status string
    (String) Status of the volume.
    UpdatedDate string
    (String) The date and time when the volume was updated.
    UserTags List<string>
    (List) List of user tags.
    VolumeId string
    (String) Volume ID.
    CreationDate string
    (String) The date and time when the volume was created.
    Crn string
    (String) The CRN for this resource.
    ErrorCode string
    (String) Error code for the vPMEM volume.
    Href string
    (String) Link to vPMEM volume resource.
    Name string
    (String) Volume Name.
    PvmInstanceId string
    (String) PVM Instance ID which the volume is attached to.
    Reason string
    (String) Reason for error.
    Size float64
    (Float) Volume Size (GB).
    Status string
    (String) Status of the volume.
    UpdatedDate string
    (String) The date and time when the volume was updated.
    UserTags []string
    (List) List of user tags.
    VolumeId string
    (String) Volume ID.
    creationDate String
    (String) The date and time when the volume was created.
    crn String
    (String) The CRN for this resource.
    errorCode String
    (String) Error code for the vPMEM volume.
    href String
    (String) Link to vPMEM volume resource.
    name String
    (String) Volume Name.
    pvmInstanceId String
    (String) PVM Instance ID which the volume is attached to.
    reason String
    (String) Reason for error.
    size Double
    (Float) Volume Size (GB).
    status String
    (String) Status of the volume.
    updatedDate String
    (String) The date and time when the volume was updated.
    userTags List<String>
    (List) List of user tags.
    volumeId String
    (String) Volume ID.
    creationDate string
    (String) The date and time when the volume was created.
    crn string
    (String) The CRN for this resource.
    errorCode string
    (String) Error code for the vPMEM volume.
    href string
    (String) Link to vPMEM volume resource.
    name string
    (String) Volume Name.
    pvmInstanceId string
    (String) PVM Instance ID which the volume is attached to.
    reason string
    (String) Reason for error.
    size number
    (Float) Volume Size (GB).
    status string
    (String) Status of the volume.
    updatedDate string
    (String) The date and time when the volume was updated.
    userTags string[]
    (List) List of user tags.
    volumeId string
    (String) Volume ID.
    creation_date str
    (String) The date and time when the volume was created.
    crn str
    (String) The CRN for this resource.
    error_code str
    (String) Error code for the vPMEM volume.
    href str
    (String) Link to vPMEM volume resource.
    name str
    (String) Volume Name.
    pvm_instance_id str
    (String) PVM Instance ID which the volume is attached to.
    reason str
    (String) Reason for error.
    size float
    (Float) Volume Size (GB).
    status str
    (String) Status of the volume.
    updated_date str
    (String) The date and time when the volume was updated.
    user_tags Sequence[str]
    (List) List of user tags.
    volume_id str
    (String) Volume ID.
    creationDate String
    (String) The date and time when the volume was created.
    crn String
    (String) The CRN for this resource.
    errorCode String
    (String) Error code for the vPMEM volume.
    href String
    (String) Link to vPMEM volume resource.
    name String
    (String) Volume Name.
    pvmInstanceId String
    (String) PVM Instance ID which the volume is attached to.
    reason String
    (String) Reason for error.
    size Number
    (Float) Volume Size (GB).
    status String
    (String) Status of the volume.
    updatedDate String
    (String) The date and time when the volume was updated.
    userTags List<String>
    (List) List of user tags.
    volumeId String
    (String) Volume ID.

    Import

    Example

    bash

    $ pulumi import ibm:index/piInstanceVpmemVolumes:PiInstanceVpmemVolumes example d7bec597-4726-451f-8a63-e62e6f19c32c/cea6651a-bc0a-4438-9f8a-a0770bbf3ebb/cea6651a-4726-451f-8a63--e62e6f19c32c
    

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

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.88.0 published on Friday, Feb 6, 2026 by ibm-cloud
      Meet Neo: Your AI Platform Teammate