1. Packages
  2. Ibm Provider
  3. API Docs
  4. PiVolumeGroup
ibm 1.77.1 published on Monday, Apr 14, 2025 by ibm-cloud

ibm.PiVolumeGroup

Explore with Pulumi AI

Create, update, or delete a volume group. For more information, about managing volume groups, see getting started with IBM Power Systems Virtual Servers.

Example Usage

The following example creates a volume group.

import * as pulumi from "@pulumi/pulumi";
import * as ibm from "@pulumi/ibm";

const testaccVolumeGroup = new ibm.PiVolumeGroup("testaccVolumeGroup", {
    piCloudInstanceId: "<value of the cloud_instance_id>",
    piVolumeGroupName: "test-volume-group",
    piVolumeIds: ["<Volume ID>"],
});
Copy
import pulumi
import pulumi_ibm as ibm

testacc_volume_group = ibm.PiVolumeGroup("testaccVolumeGroup",
    pi_cloud_instance_id="<value of the cloud_instance_id>",
    pi_volume_group_name="test-volume-group",
    pi_volume_ids=["<Volume ID>"])
Copy
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.NewPiVolumeGroup(ctx, "testaccVolumeGroup", &ibm.PiVolumeGroupArgs{
			PiCloudInstanceId: pulumi.String("<value of the cloud_instance_id>"),
			PiVolumeGroupName: pulumi.String("test-volume-group"),
			PiVolumeIds: pulumi.StringArray{
				pulumi.String("<Volume ID>"),
			},
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Ibm = Pulumi.Ibm;

return await Deployment.RunAsync(() => 
{
    var testaccVolumeGroup = new Ibm.PiVolumeGroup("testaccVolumeGroup", new()
    {
        PiCloudInstanceId = "<value of the cloud_instance_id>",
        PiVolumeGroupName = "test-volume-group",
        PiVolumeIds = new[]
        {
            "<Volume ID>",
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.ibm.PiVolumeGroup;
import com.pulumi.ibm.PiVolumeGroupArgs;
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 testaccVolumeGroup = new PiVolumeGroup("testaccVolumeGroup", PiVolumeGroupArgs.builder()
            .piCloudInstanceId("<value of the cloud_instance_id>")
            .piVolumeGroupName("test-volume-group")
            .piVolumeIds("<Volume ID>")
            .build());

    }
}
Copy
resources:
  testaccVolumeGroup:
    type: ibm:PiVolumeGroup
    properties:
      piCloudInstanceId: <value of the cloud_instance_id>
      piVolumeGroupName: test-volume-group
      piVolumeIds:
        - <Volume ID>
Copy

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";
Copy
import pulumi
Copy
package main

import (
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;

return await Deployment.RunAsync(() => 
{
});
Copy
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) {
    }
}
Copy
{}
Copy

Create PiVolumeGroup Resource

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

Constructor syntax

new PiVolumeGroup(name: string, args: PiVolumeGroupArgs, opts?: CustomResourceOptions);
@overload
def PiVolumeGroup(resource_name: str,
                  args: PiVolumeGroupArgs,
                  opts: Optional[ResourceOptions] = None)

@overload
def PiVolumeGroup(resource_name: str,
                  opts: Optional[ResourceOptions] = None,
                  pi_cloud_instance_id: Optional[str] = None,
                  pi_volume_ids: Optional[Sequence[str]] = None,
                  pi_consistency_group_name: Optional[str] = None,
                  pi_volume_group_id: Optional[str] = None,
                  pi_volume_group_name: Optional[str] = None,
                  timeouts: Optional[PiVolumeGroupTimeoutsArgs] = None)
func NewPiVolumeGroup(ctx *Context, name string, args PiVolumeGroupArgs, opts ...ResourceOption) (*PiVolumeGroup, error)
public PiVolumeGroup(string name, PiVolumeGroupArgs args, CustomResourceOptions? opts = null)
public PiVolumeGroup(String name, PiVolumeGroupArgs args)
public PiVolumeGroup(String name, PiVolumeGroupArgs args, CustomResourceOptions options)
type: ibm:PiVolumeGroup
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. PiVolumeGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. PiVolumeGroupArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. PiVolumeGroupArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. PiVolumeGroupArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. PiVolumeGroupArgs
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 piVolumeGroupResource = new Ibm.PiVolumeGroup("piVolumeGroupResource", new()
{
    PiCloudInstanceId = "string",
    PiVolumeIds = new[]
    {
        "string",
    },
    PiConsistencyGroupName = "string",
    PiVolumeGroupId = "string",
    PiVolumeGroupName = "string",
    Timeouts = new Ibm.Inputs.PiVolumeGroupTimeoutsArgs
    {
        Create = "string",
        Delete = "string",
        Update = "string",
    },
});
Copy
example, err := ibm.NewPiVolumeGroup(ctx, "piVolumeGroupResource", &ibm.PiVolumeGroupArgs{
	PiCloudInstanceId: pulumi.String("string"),
	PiVolumeIds: pulumi.StringArray{
		pulumi.String("string"),
	},
	PiConsistencyGroupName: pulumi.String("string"),
	PiVolumeGroupId:        pulumi.String("string"),
	PiVolumeGroupName:      pulumi.String("string"),
	Timeouts: &ibm.PiVolumeGroupTimeoutsArgs{
		Create: pulumi.String("string"),
		Delete: pulumi.String("string"),
		Update: pulumi.String("string"),
	},
})
Copy
var piVolumeGroupResource = new PiVolumeGroup("piVolumeGroupResource", PiVolumeGroupArgs.builder()
    .piCloudInstanceId("string")
    .piVolumeIds("string")
    .piConsistencyGroupName("string")
    .piVolumeGroupId("string")
    .piVolumeGroupName("string")
    .timeouts(PiVolumeGroupTimeoutsArgs.builder()
        .create("string")
        .delete("string")
        .update("string")
        .build())
    .build());
Copy
pi_volume_group_resource = ibm.PiVolumeGroup("piVolumeGroupResource",
    pi_cloud_instance_id="string",
    pi_volume_ids=["string"],
    pi_consistency_group_name="string",
    pi_volume_group_id="string",
    pi_volume_group_name="string",
    timeouts={
        "create": "string",
        "delete": "string",
        "update": "string",
    })
Copy
const piVolumeGroupResource = new ibm.PiVolumeGroup("piVolumeGroupResource", {
    piCloudInstanceId: "string",
    piVolumeIds: ["string"],
    piConsistencyGroupName: "string",
    piVolumeGroupId: "string",
    piVolumeGroupName: "string",
    timeouts: {
        create: "string",
        "delete": "string",
        update: "string",
    },
});
Copy
type: ibm:PiVolumeGroup
properties:
    piCloudInstanceId: string
    piConsistencyGroupName: string
    piVolumeGroupId: string
    piVolumeGroupName: string
    piVolumeIds:
        - string
    timeouts:
        create: string
        delete: string
        update: string
Copy

PiVolumeGroup 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 PiVolumeGroup resource accepts the following input properties:

PiCloudInstanceId This property is required. string
The GUID of the service instance associated with an account.
PiVolumeIds This property is required. List<string>
List of volume IDs to add in volume group.
PiConsistencyGroupName string
The name of consistency group at storage controller level, required if pi_volume_group_name is not provided.
PiVolumeGroupId string
(String) The unique identifier of the volume group. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
PiVolumeGroupName string
The name of the volume group, required if pi_consistency_group_name is not provided.
Timeouts PiVolumeGroupTimeouts
PiCloudInstanceId This property is required. string
The GUID of the service instance associated with an account.
PiVolumeIds This property is required. []string
List of volume IDs to add in volume group.
PiConsistencyGroupName string
The name of consistency group at storage controller level, required if pi_volume_group_name is not provided.
PiVolumeGroupId string
(String) The unique identifier of the volume group. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
PiVolumeGroupName string
The name of the volume group, required if pi_consistency_group_name is not provided.
Timeouts PiVolumeGroupTimeoutsArgs
piCloudInstanceId This property is required. String
The GUID of the service instance associated with an account.
piVolumeIds This property is required. List<String>
List of volume IDs to add in volume group.
piConsistencyGroupName String
The name of consistency group at storage controller level, required if pi_volume_group_name is not provided.
piVolumeGroupId String
(String) The unique identifier of the volume group. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
piVolumeGroupName String
The name of the volume group, required if pi_consistency_group_name is not provided.
timeouts PiVolumeGroupTimeouts
piCloudInstanceId This property is required. string
The GUID of the service instance associated with an account.
piVolumeIds This property is required. string[]
List of volume IDs to add in volume group.
piConsistencyGroupName string
The name of consistency group at storage controller level, required if pi_volume_group_name is not provided.
piVolumeGroupId string
(String) The unique identifier of the volume group. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
piVolumeGroupName string
The name of the volume group, required if pi_consistency_group_name is not provided.
timeouts PiVolumeGroupTimeouts
pi_cloud_instance_id This property is required. str
The GUID of the service instance associated with an account.
pi_volume_ids This property is required. Sequence[str]
List of volume IDs to add in volume group.
pi_consistency_group_name str
The name of consistency group at storage controller level, required if pi_volume_group_name is not provided.
pi_volume_group_id str
(String) The unique identifier of the volume group. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
pi_volume_group_name str
The name of the volume group, required if pi_consistency_group_name is not provided.
timeouts PiVolumeGroupTimeoutsArgs
piCloudInstanceId This property is required. String
The GUID of the service instance associated with an account.
piVolumeIds This property is required. List<String>
List of volume IDs to add in volume group.
piConsistencyGroupName String
The name of consistency group at storage controller level, required if pi_volume_group_name is not provided.
piVolumeGroupId String
(String) The unique identifier of the volume group. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
piVolumeGroupName String
The name of the volume group, required if pi_consistency_group_name is not provided.
timeouts Property Map

Outputs

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

ConsistencyGroupName string
(String) The consistency Group Name if volume is a part of volume group.
Id string
The provider-assigned unique ID for this managed resource.
ReplicationSites List<string>
(List) Indicates the replication sites of the volume group.
ReplicationStatus string
(String) The replication status of volume group.
StatusDescriptionErrors List<PiVolumeGroupStatusDescriptionError>
(Set) The status details of the volume group.
VolumeGroupId string
(String) The unique identifier of the volume group.
VolumeGroupStatus string
(String) The status of the volume group.
ConsistencyGroupName string
(String) The consistency Group Name if volume is a part of volume group.
Id string
The provider-assigned unique ID for this managed resource.
ReplicationSites []string
(List) Indicates the replication sites of the volume group.
ReplicationStatus string
(String) The replication status of volume group.
StatusDescriptionErrors []PiVolumeGroupStatusDescriptionError
(Set) The status details of the volume group.
VolumeGroupId string
(String) The unique identifier of the volume group.
VolumeGroupStatus string
(String) The status of the volume group.
consistencyGroupName String
(String) The consistency Group Name if volume is a part of volume group.
id String
The provider-assigned unique ID for this managed resource.
replicationSites List<String>
(List) Indicates the replication sites of the volume group.
replicationStatus String
(String) The replication status of volume group.
statusDescriptionErrors List<PiVolumeGroupStatusDescriptionError>
(Set) The status details of the volume group.
volumeGroupId String
(String) The unique identifier of the volume group.
volumeGroupStatus String
(String) The status of the volume group.
consistencyGroupName string
(String) The consistency Group Name if volume is a part of volume group.
id string
The provider-assigned unique ID for this managed resource.
replicationSites string[]
(List) Indicates the replication sites of the volume group.
replicationStatus string
(String) The replication status of volume group.
statusDescriptionErrors PiVolumeGroupStatusDescriptionError[]
(Set) The status details of the volume group.
volumeGroupId string
(String) The unique identifier of the volume group.
volumeGroupStatus string
(String) The status of the volume group.
consistency_group_name str
(String) The consistency Group Name if volume is a part of volume group.
id str
The provider-assigned unique ID for this managed resource.
replication_sites Sequence[str]
(List) Indicates the replication sites of the volume group.
replication_status str
(String) The replication status of volume group.
status_description_errors Sequence[PiVolumeGroupStatusDescriptionError]
(Set) The status details of the volume group.
volume_group_id str
(String) The unique identifier of the volume group.
volume_group_status str
(String) The status of the volume group.
consistencyGroupName String
(String) The consistency Group Name if volume is a part of volume group.
id String
The provider-assigned unique ID for this managed resource.
replicationSites List<String>
(List) Indicates the replication sites of the volume group.
replicationStatus String
(String) The replication status of volume group.
statusDescriptionErrors List<Property Map>
(Set) The status details of the volume group.
volumeGroupId String
(String) The unique identifier of the volume group.
volumeGroupStatus String
(String) The status of the volume group.

Look up Existing PiVolumeGroup Resource

Get an existing PiVolumeGroup 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?: PiVolumeGroupState, opts?: CustomResourceOptions): PiVolumeGroup
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        consistency_group_name: Optional[str] = None,
        pi_cloud_instance_id: Optional[str] = None,
        pi_consistency_group_name: Optional[str] = None,
        pi_volume_group_id: Optional[str] = None,
        pi_volume_group_name: Optional[str] = None,
        pi_volume_ids: Optional[Sequence[str]] = None,
        replication_sites: Optional[Sequence[str]] = None,
        replication_status: Optional[str] = None,
        status_description_errors: Optional[Sequence[PiVolumeGroupStatusDescriptionErrorArgs]] = None,
        timeouts: Optional[PiVolumeGroupTimeoutsArgs] = None,
        volume_group_id: Optional[str] = None,
        volume_group_status: Optional[str] = None) -> PiVolumeGroup
func GetPiVolumeGroup(ctx *Context, name string, id IDInput, state *PiVolumeGroupState, opts ...ResourceOption) (*PiVolumeGroup, error)
public static PiVolumeGroup Get(string name, Input<string> id, PiVolumeGroupState? state, CustomResourceOptions? opts = null)
public static PiVolumeGroup get(String name, Output<String> id, PiVolumeGroupState state, CustomResourceOptions options)
resources:  _:    type: ibm:PiVolumeGroup    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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:
ConsistencyGroupName string
(String) The consistency Group Name if volume is a part of volume group.
PiCloudInstanceId string
The GUID of the service instance associated with an account.
PiConsistencyGroupName string
The name of consistency group at storage controller level, required if pi_volume_group_name is not provided.
PiVolumeGroupId string
(String) The unique identifier of the volume group. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
PiVolumeGroupName string
The name of the volume group, required if pi_consistency_group_name is not provided.
PiVolumeIds List<string>
List of volume IDs to add in volume group.
ReplicationSites List<string>
(List) Indicates the replication sites of the volume group.
ReplicationStatus string
(String) The replication status of volume group.
StatusDescriptionErrors List<PiVolumeGroupStatusDescriptionError>
(Set) The status details of the volume group.
Timeouts PiVolumeGroupTimeouts
VolumeGroupId string
(String) The unique identifier of the volume group.
VolumeGroupStatus string
(String) The status of the volume group.
ConsistencyGroupName string
(String) The consistency Group Name if volume is a part of volume group.
PiCloudInstanceId string
The GUID of the service instance associated with an account.
PiConsistencyGroupName string
The name of consistency group at storage controller level, required if pi_volume_group_name is not provided.
PiVolumeGroupId string
(String) The unique identifier of the volume group. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
PiVolumeGroupName string
The name of the volume group, required if pi_consistency_group_name is not provided.
PiVolumeIds []string
List of volume IDs to add in volume group.
ReplicationSites []string
(List) Indicates the replication sites of the volume group.
ReplicationStatus string
(String) The replication status of volume group.
StatusDescriptionErrors []PiVolumeGroupStatusDescriptionErrorArgs
(Set) The status details of the volume group.
Timeouts PiVolumeGroupTimeoutsArgs
VolumeGroupId string
(String) The unique identifier of the volume group.
VolumeGroupStatus string
(String) The status of the volume group.
consistencyGroupName String
(String) The consistency Group Name if volume is a part of volume group.
piCloudInstanceId String
The GUID of the service instance associated with an account.
piConsistencyGroupName String
The name of consistency group at storage controller level, required if pi_volume_group_name is not provided.
piVolumeGroupId String
(String) The unique identifier of the volume group. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
piVolumeGroupName String
The name of the volume group, required if pi_consistency_group_name is not provided.
piVolumeIds List<String>
List of volume IDs to add in volume group.
replicationSites List<String>
(List) Indicates the replication sites of the volume group.
replicationStatus String
(String) The replication status of volume group.
statusDescriptionErrors List<PiVolumeGroupStatusDescriptionError>
(Set) The status details of the volume group.
timeouts PiVolumeGroupTimeouts
volumeGroupId String
(String) The unique identifier of the volume group.
volumeGroupStatus String
(String) The status of the volume group.
consistencyGroupName string
(String) The consistency Group Name if volume is a part of volume group.
piCloudInstanceId string
The GUID of the service instance associated with an account.
piConsistencyGroupName string
The name of consistency group at storage controller level, required if pi_volume_group_name is not provided.
piVolumeGroupId string
(String) The unique identifier of the volume group. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
piVolumeGroupName string
The name of the volume group, required if pi_consistency_group_name is not provided.
piVolumeIds string[]
List of volume IDs to add in volume group.
replicationSites string[]
(List) Indicates the replication sites of the volume group.
replicationStatus string
(String) The replication status of volume group.
statusDescriptionErrors PiVolumeGroupStatusDescriptionError[]
(Set) The status details of the volume group.
timeouts PiVolumeGroupTimeouts
volumeGroupId string
(String) The unique identifier of the volume group.
volumeGroupStatus string
(String) The status of the volume group.
consistency_group_name str
(String) The consistency Group Name if volume is a part of volume group.
pi_cloud_instance_id str
The GUID of the service instance associated with an account.
pi_consistency_group_name str
The name of consistency group at storage controller level, required if pi_volume_group_name is not provided.
pi_volume_group_id str
(String) The unique identifier of the volume group. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
pi_volume_group_name str
The name of the volume group, required if pi_consistency_group_name is not provided.
pi_volume_ids Sequence[str]
List of volume IDs to add in volume group.
replication_sites Sequence[str]
(List) Indicates the replication sites of the volume group.
replication_status str
(String) The replication status of volume group.
status_description_errors Sequence[PiVolumeGroupStatusDescriptionErrorArgs]
(Set) The status details of the volume group.
timeouts PiVolumeGroupTimeoutsArgs
volume_group_id str
(String) The unique identifier of the volume group.
volume_group_status str
(String) The status of the volume group.
consistencyGroupName String
(String) The consistency Group Name if volume is a part of volume group.
piCloudInstanceId String
The GUID of the service instance associated with an account.
piConsistencyGroupName String
The name of consistency group at storage controller level, required if pi_volume_group_name is not provided.
piVolumeGroupId String
(String) The unique identifier of the volume group. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
piVolumeGroupName String
The name of the volume group, required if pi_consistency_group_name is not provided.
piVolumeIds List<String>
List of volume IDs to add in volume group.
replicationSites List<String>
(List) Indicates the replication sites of the volume group.
replicationStatus String
(String) The replication status of volume group.
statusDescriptionErrors List<Property Map>
(Set) The status details of the volume group.
timeouts Property Map
volumeGroupId String
(String) The unique identifier of the volume group.
volumeGroupStatus String
(String) The status of the volume group.

Supporting Types

PiVolumeGroupStatusDescriptionError
, PiVolumeGroupStatusDescriptionErrorArgs

Key This property is required. string
(String) The volume group error key.
Message This property is required. string
(String) The failure message providing more details about the error key.
VolumeIds This property is required. List<string>
(List of String) List of volume IDs, which failed to be added to or removed from the volume group, with the given error.
Key This property is required. string
(String) The volume group error key.
Message This property is required. string
(String) The failure message providing more details about the error key.
VolumeIds This property is required. []string
(List of String) List of volume IDs, which failed to be added to or removed from the volume group, with the given error.
key This property is required. String
(String) The volume group error key.
message This property is required. String
(String) The failure message providing more details about the error key.
volumeIds This property is required. List<String>
(List of String) List of volume IDs, which failed to be added to or removed from the volume group, with the given error.
key This property is required. string
(String) The volume group error key.
message This property is required. string
(String) The failure message providing more details about the error key.
volumeIds This property is required. string[]
(List of String) List of volume IDs, which failed to be added to or removed from the volume group, with the given error.
key This property is required. str
(String) The volume group error key.
message This property is required. str
(String) The failure message providing more details about the error key.
volume_ids This property is required. Sequence[str]
(List of String) List of volume IDs, which failed to be added to or removed from the volume group, with the given error.
key This property is required. String
(String) The volume group error key.
message This property is required. String
(String) The failure message providing more details about the error key.
volumeIds This property is required. List<String>
(List of String) List of volume IDs, which failed to be added to or removed from the volume group, with the given error.

PiVolumeGroupTimeouts
, PiVolumeGroupTimeoutsArgs

Create string
Delete string
Update string
Create string
Delete string
Update string
create String
delete String
update String
create string
delete string
update string
create str
delete str
update str
create String
delete String
update String

Import

Example

bash

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

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.