1. Packages
  2. Ibm Provider
  3. API Docs
  4. PiVolumeGroupAction
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.PiVolumeGroupAction

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Perfoms action on a volume group. For more information, about managing volume, see getting started with IBM Power Systems Virtual Servers.

    Example Usage

    The following example attaches volume to a power systems virtual server instance.

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const testaccVolumeGroupAction = new ibm.PiVolumeGroupAction("testaccVolumeGroupAction", {
        piCloudInstanceId: "<value of the cloud_instance_id>",
        piVolumeGroupAction: {
            stop: {
                access: true,
            },
        },
        piVolumeGroupId: "<id of the volume group>",
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    testacc_volume_group_action = ibm.PiVolumeGroupAction("testaccVolumeGroupAction",
        pi_cloud_instance_id="<value of the cloud_instance_id>",
        pi_volume_group_action={
            "stop": {
                "access": True,
            },
        },
        pi_volume_group_id="<id of the volume group>")
    
    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.NewPiVolumeGroupAction(ctx, "testaccVolumeGroupAction", &ibm.PiVolumeGroupActionArgs{
    			PiCloudInstanceId: pulumi.String("<value of the cloud_instance_id>"),
    			PiVolumeGroupAction: &ibm.PiVolumeGroupActionPiVolumeGroupActionArgs{
    				Stop: &ibm.PiVolumeGroupActionPiVolumeGroupActionStopArgs{
    					Access: pulumi.Bool(true),
    				},
    			},
    			PiVolumeGroupId: pulumi.String("<id of the volume group>"),
    		})
    		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 testaccVolumeGroupAction = new Ibm.PiVolumeGroupAction("testaccVolumeGroupAction", new()
        {
            PiCloudInstanceId = "<value of the cloud_instance_id>",
            PiVolumeGroupAction = new Ibm.Inputs.PiVolumeGroupActionPiVolumeGroupActionArgs
            {
                Stop = new Ibm.Inputs.PiVolumeGroupActionPiVolumeGroupActionStopArgs
                {
                    Access = true,
                },
            },
            PiVolumeGroupId = "<id of the volume group>",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.PiVolumeGroupAction;
    import com.pulumi.ibm.PiVolumeGroupActionArgs;
    import com.pulumi.ibm.inputs.PiVolumeGroupActionPiVolumeGroupActionArgs;
    import com.pulumi.ibm.inputs.PiVolumeGroupActionPiVolumeGroupActionStopArgs;
    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 testaccVolumeGroupAction = new PiVolumeGroupAction("testaccVolumeGroupAction", PiVolumeGroupActionArgs.builder()
                .piCloudInstanceId("<value of the cloud_instance_id>")
                .piVolumeGroupAction(PiVolumeGroupActionPiVolumeGroupActionArgs.builder()
                    .stop(PiVolumeGroupActionPiVolumeGroupActionStopArgs.builder()
                        .access(true)
                        .build())
                    .build())
                .piVolumeGroupId("<id of the volume group>")
                .build());
    
        }
    }
    
    resources:
      testaccVolumeGroupAction:
        type: ibm:PiVolumeGroupAction
        properties:
          piCloudInstanceId: <value of the cloud_instance_id>
          piVolumeGroupAction:
            stop:
              access: true
          piVolumeGroupId: <id of the volume group>
    

    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 PiVolumeGroupAction Resource

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

    Constructor syntax

    new PiVolumeGroupAction(name: string, args: PiVolumeGroupActionArgs, opts?: CustomResourceOptions);
    @overload
    def PiVolumeGroupAction(resource_name: str,
                            args: PiVolumeGroupActionArgs,
                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def PiVolumeGroupAction(resource_name: str,
                            opts: Optional[ResourceOptions] = None,
                            pi_cloud_instance_id: Optional[str] = None,
                            pi_volume_group_action: Optional[PiVolumeGroupActionPiVolumeGroupActionArgs] = None,
                            pi_volume_group_id: Optional[str] = None,
                            pi_volume_group_action_id: Optional[str] = None,
                            timeouts: Optional[PiVolumeGroupActionTimeoutsArgs] = None)
    func NewPiVolumeGroupAction(ctx *Context, name string, args PiVolumeGroupActionArgs, opts ...ResourceOption) (*PiVolumeGroupAction, error)
    public PiVolumeGroupAction(string name, PiVolumeGroupActionArgs args, CustomResourceOptions? opts = null)
    public PiVolumeGroupAction(String name, PiVolumeGroupActionArgs args)
    public PiVolumeGroupAction(String name, PiVolumeGroupActionArgs args, CustomResourceOptions options)
    
    type: ibm:PiVolumeGroupAction
    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 PiVolumeGroupActionArgs
    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 PiVolumeGroupActionArgs
    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 PiVolumeGroupActionArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PiVolumeGroupActionArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PiVolumeGroupActionArgs
    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 piVolumeGroupActionResource = new Ibm.PiVolumeGroupAction("piVolumeGroupActionResource", new()
    {
        PiCloudInstanceId = "string",
        PiVolumeGroupAction = new Ibm.Inputs.PiVolumeGroupActionPiVolumeGroupActionArgs
        {
            Reset = new Ibm.Inputs.PiVolumeGroupActionPiVolumeGroupActionResetArgs
            {
                Status = "string",
            },
            Start = new Ibm.Inputs.PiVolumeGroupActionPiVolumeGroupActionStartArgs
            {
                Source = "string",
            },
            Stop = new Ibm.Inputs.PiVolumeGroupActionPiVolumeGroupActionStopArgs
            {
                Access = false,
            },
        },
        PiVolumeGroupId = "string",
        PiVolumeGroupActionId = "string",
        Timeouts = new Ibm.Inputs.PiVolumeGroupActionTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
        },
    });
    
    example, err := ibm.NewPiVolumeGroupAction(ctx, "piVolumeGroupActionResource", &ibm.PiVolumeGroupActionArgs{
    	PiCloudInstanceId: pulumi.String("string"),
    	PiVolumeGroupAction: &ibm.PiVolumeGroupActionPiVolumeGroupActionArgs{
    		Reset: &ibm.PiVolumeGroupActionPiVolumeGroupActionResetArgs{
    			Status: pulumi.String("string"),
    		},
    		Start: &ibm.PiVolumeGroupActionPiVolumeGroupActionStartArgs{
    			Source: pulumi.String("string"),
    		},
    		Stop: &ibm.PiVolumeGroupActionPiVolumeGroupActionStopArgs{
    			Access: pulumi.Bool(false),
    		},
    	},
    	PiVolumeGroupId:       pulumi.String("string"),
    	PiVolumeGroupActionId: pulumi.String("string"),
    	Timeouts: &ibm.PiVolumeGroupActionTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    	},
    })
    
    var piVolumeGroupActionResource = new PiVolumeGroupAction("piVolumeGroupActionResource", PiVolumeGroupActionArgs.builder()
        .piCloudInstanceId("string")
        .piVolumeGroupAction(PiVolumeGroupActionPiVolumeGroupActionArgs.builder()
            .reset(PiVolumeGroupActionPiVolumeGroupActionResetArgs.builder()
                .status("string")
                .build())
            .start(PiVolumeGroupActionPiVolumeGroupActionStartArgs.builder()
                .source("string")
                .build())
            .stop(PiVolumeGroupActionPiVolumeGroupActionStopArgs.builder()
                .access(false)
                .build())
            .build())
        .piVolumeGroupId("string")
        .piVolumeGroupActionId("string")
        .timeouts(PiVolumeGroupActionTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .build())
        .build());
    
    pi_volume_group_action_resource = ibm.PiVolumeGroupAction("piVolumeGroupActionResource",
        pi_cloud_instance_id="string",
        pi_volume_group_action={
            "reset": {
                "status": "string",
            },
            "start": {
                "source": "string",
            },
            "stop": {
                "access": False,
            },
        },
        pi_volume_group_id="string",
        pi_volume_group_action_id="string",
        timeouts={
            "create": "string",
            "delete": "string",
        })
    
    const piVolumeGroupActionResource = new ibm.PiVolumeGroupAction("piVolumeGroupActionResource", {
        piCloudInstanceId: "string",
        piVolumeGroupAction: {
            reset: {
                status: "string",
            },
            start: {
                source: "string",
            },
            stop: {
                access: false,
            },
        },
        piVolumeGroupId: "string",
        piVolumeGroupActionId: "string",
        timeouts: {
            create: "string",
            "delete": "string",
        },
    });
    
    type: ibm:PiVolumeGroupAction
    properties:
        piCloudInstanceId: string
        piVolumeGroupAction:
            reset:
                status: string
            start:
                source: string
            stop:
                access: false
        piVolumeGroupActionId: string
        piVolumeGroupId: string
        timeouts:
            create: string
            delete: string
    

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

    PiCloudInstanceId string
    The GUID of the service instance associated with an account.
    PiVolumeGroupAction PiVolumeGroupActionPiVolumeGroupAction
    Performs an action (start / stop / reset) on a volume group(one at a time).

    • Constraints: The maximum length is 1 items. The minimum length is 1 items. Nested scheme for pi_volume_group_action:
    PiVolumeGroupId string
    The ID of volume group on which action is to performed.
    PiVolumeGroupActionId string
    (String) The unique identifier of the volume group action. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
    Timeouts PiVolumeGroupActionTimeouts
    PiCloudInstanceId string
    The GUID of the service instance associated with an account.
    PiVolumeGroupAction PiVolumeGroupActionPiVolumeGroupActionArgs
    Performs an action (start / stop / reset) on a volume group(one at a time).

    • Constraints: The maximum length is 1 items. The minimum length is 1 items. Nested scheme for pi_volume_group_action:
    PiVolumeGroupId string
    The ID of volume group on which action is to performed.
    PiVolumeGroupActionId string
    (String) The unique identifier of the volume group action. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
    Timeouts PiVolumeGroupActionTimeoutsArgs
    piCloudInstanceId String
    The GUID of the service instance associated with an account.
    piVolumeGroupAction PiVolumeGroupActionPiVolumeGroupAction
    Performs an action (start / stop / reset) on a volume group(one at a time).

    • Constraints: The maximum length is 1 items. The minimum length is 1 items. Nested scheme for pi_volume_group_action:
    piVolumeGroupId String
    The ID of volume group on which action is to performed.
    piVolumeGroupActionId String
    (String) The unique identifier of the volume group action. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
    timeouts PiVolumeGroupActionTimeouts
    piCloudInstanceId string
    The GUID of the service instance associated with an account.
    piVolumeGroupAction PiVolumeGroupActionPiVolumeGroupAction
    Performs an action (start / stop / reset) on a volume group(one at a time).

    • Constraints: The maximum length is 1 items. The minimum length is 1 items. Nested scheme for pi_volume_group_action:
    piVolumeGroupId string
    The ID of volume group on which action is to performed.
    piVolumeGroupActionId string
    (String) The unique identifier of the volume group action. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
    timeouts PiVolumeGroupActionTimeouts
    pi_cloud_instance_id str
    The GUID of the service instance associated with an account.
    pi_volume_group_action PiVolumeGroupActionPiVolumeGroupActionArgs
    Performs an action (start / stop / reset) on a volume group(one at a time).

    • Constraints: The maximum length is 1 items. The minimum length is 1 items. Nested scheme for pi_volume_group_action:
    pi_volume_group_id str
    The ID of volume group on which action is to performed.
    pi_volume_group_action_id str
    (String) The unique identifier of the volume group action. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
    timeouts PiVolumeGroupActionTimeoutsArgs
    piCloudInstanceId String
    The GUID of the service instance associated with an account.
    piVolumeGroupAction Property Map
    Performs an action (start / stop / reset) on a volume group(one at a time).

    • Constraints: The maximum length is 1 items. The minimum length is 1 items. Nested scheme for pi_volume_group_action:
    piVolumeGroupId String
    The ID of volume group on which action is to performed.
    piVolumeGroupActionId String
    (String) The unique identifier of the volume group action. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
    timeouts Property Map

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    ReplicationStatus string
    (String) The replication status of volume group.
    VolumeGroupName string
    (String) The name of the volume group.
    VolumeGroupStatus string
    (String) The status of the volume group.
    Id string
    The provider-assigned unique ID for this managed resource.
    ReplicationStatus string
    (String) The replication status of volume group.
    VolumeGroupName string
    (String) The name of the volume group.
    VolumeGroupStatus string
    (String) The status of the volume group.
    id String
    The provider-assigned unique ID for this managed resource.
    replicationStatus String
    (String) The replication status of volume group.
    volumeGroupName String
    (String) The name of the volume group.
    volumeGroupStatus String
    (String) The status of the volume group.
    id string
    The provider-assigned unique ID for this managed resource.
    replicationStatus string
    (String) The replication status of volume group.
    volumeGroupName string
    (String) The name of the volume group.
    volumeGroupStatus string
    (String) The status of the volume group.
    id str
    The provider-assigned unique ID for this managed resource.
    replication_status str
    (String) The replication status of volume group.
    volume_group_name str
    (String) The name of the volume group.
    volume_group_status str
    (String) The status of the volume group.
    id String
    The provider-assigned unique ID for this managed resource.
    replicationStatus String
    (String) The replication status of volume group.
    volumeGroupName String
    (String) The name of the volume group.
    volumeGroupStatus String
    (String) The status of the volume group.

    Look up Existing PiVolumeGroupAction Resource

    Get an existing PiVolumeGroupAction 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?: PiVolumeGroupActionState, opts?: CustomResourceOptions): PiVolumeGroupAction
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            pi_cloud_instance_id: Optional[str] = None,
            pi_volume_group_action: Optional[PiVolumeGroupActionPiVolumeGroupActionArgs] = None,
            pi_volume_group_action_id: Optional[str] = None,
            pi_volume_group_id: Optional[str] = None,
            replication_status: Optional[str] = None,
            timeouts: Optional[PiVolumeGroupActionTimeoutsArgs] = None,
            volume_group_name: Optional[str] = None,
            volume_group_status: Optional[str] = None) -> PiVolumeGroupAction
    func GetPiVolumeGroupAction(ctx *Context, name string, id IDInput, state *PiVolumeGroupActionState, opts ...ResourceOption) (*PiVolumeGroupAction, error)
    public static PiVolumeGroupAction Get(string name, Input<string> id, PiVolumeGroupActionState? state, CustomResourceOptions? opts = null)
    public static PiVolumeGroupAction get(String name, Output<String> id, PiVolumeGroupActionState state, CustomResourceOptions options)
    resources:  _:    type: ibm:PiVolumeGroupAction    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
    The GUID of the service instance associated with an account.
    PiVolumeGroupAction PiVolumeGroupActionPiVolumeGroupAction
    Performs an action (start / stop / reset) on a volume group(one at a time).

    • Constraints: The maximum length is 1 items. The minimum length is 1 items. Nested scheme for pi_volume_group_action:
    PiVolumeGroupActionId string
    (String) The unique identifier of the volume group action. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
    PiVolumeGroupId string
    The ID of volume group on which action is to performed.
    ReplicationStatus string
    (String) The replication status of volume group.
    Timeouts PiVolumeGroupActionTimeouts
    VolumeGroupName string
    (String) The name of the volume group.
    VolumeGroupStatus string
    (String) The status of the volume group.
    PiCloudInstanceId string
    The GUID of the service instance associated with an account.
    PiVolumeGroupAction PiVolumeGroupActionPiVolumeGroupActionArgs
    Performs an action (start / stop / reset) on a volume group(one at a time).

    • Constraints: The maximum length is 1 items. The minimum length is 1 items. Nested scheme for pi_volume_group_action:
    PiVolumeGroupActionId string
    (String) The unique identifier of the volume group action. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
    PiVolumeGroupId string
    The ID of volume group on which action is to performed.
    ReplicationStatus string
    (String) The replication status of volume group.
    Timeouts PiVolumeGroupActionTimeoutsArgs
    VolumeGroupName string
    (String) The name of the volume group.
    VolumeGroupStatus string
    (String) The status of the volume group.
    piCloudInstanceId String
    The GUID of the service instance associated with an account.
    piVolumeGroupAction PiVolumeGroupActionPiVolumeGroupAction
    Performs an action (start / stop / reset) on a volume group(one at a time).

    • Constraints: The maximum length is 1 items. The minimum length is 1 items. Nested scheme for pi_volume_group_action:
    piVolumeGroupActionId String
    (String) The unique identifier of the volume group action. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
    piVolumeGroupId String
    The ID of volume group on which action is to performed.
    replicationStatus String
    (String) The replication status of volume group.
    timeouts PiVolumeGroupActionTimeouts
    volumeGroupName String
    (String) The name of the volume group.
    volumeGroupStatus String
    (String) The status of the volume group.
    piCloudInstanceId string
    The GUID of the service instance associated with an account.
    piVolumeGroupAction PiVolumeGroupActionPiVolumeGroupAction
    Performs an action (start / stop / reset) on a volume group(one at a time).

    • Constraints: The maximum length is 1 items. The minimum length is 1 items. Nested scheme for pi_volume_group_action:
    piVolumeGroupActionId string
    (String) The unique identifier of the volume group action. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
    piVolumeGroupId string
    The ID of volume group on which action is to performed.
    replicationStatus string
    (String) The replication status of volume group.
    timeouts PiVolumeGroupActionTimeouts
    volumeGroupName string
    (String) The name of the volume group.
    volumeGroupStatus string
    (String) The status of the volume group.
    pi_cloud_instance_id str
    The GUID of the service instance associated with an account.
    pi_volume_group_action PiVolumeGroupActionPiVolumeGroupActionArgs
    Performs an action (start / stop / reset) on a volume group(one at a time).

    • Constraints: The maximum length is 1 items. The minimum length is 1 items. Nested scheme for pi_volume_group_action:
    pi_volume_group_action_id str
    (String) The unique identifier of the volume group action. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
    pi_volume_group_id str
    The ID of volume group on which action is to performed.
    replication_status str
    (String) The replication status of volume group.
    timeouts PiVolumeGroupActionTimeoutsArgs
    volume_group_name str
    (String) The name of the volume group.
    volume_group_status str
    (String) The status of the volume group.
    piCloudInstanceId String
    The GUID of the service instance associated with an account.
    piVolumeGroupAction Property Map
    Performs an action (start / stop / reset) on a volume group(one at a time).

    • Constraints: The maximum length is 1 items. The minimum length is 1 items. Nested scheme for pi_volume_group_action:
    piVolumeGroupActionId String
    (String) The unique identifier of the volume group action. The ID is composed of <pi_cloud_instance_id>/<volume_group_id>.
    piVolumeGroupId String
    The ID of volume group on which action is to performed.
    replicationStatus String
    (String) The replication status of volume group.
    timeouts Property Map
    volumeGroupName String
    (String) The name of the volume group.
    volumeGroupStatus String
    (String) The status of the volume group.

    Supporting Types

    PiVolumeGroupActionPiVolumeGroupAction, PiVolumeGroupActionPiVolumeGroupActionArgs

    Reset PiVolumeGroupActionPiVolumeGroupActionReset
    Performs reset action on the volume group to update its status value.

    • Constraints: The maximum length is 1 items. Nested scheme for reset:
    Start PiVolumeGroupActionPiVolumeGroupActionStart
    Performs start action on a volume group.

    • Constraints: The maximum length is 1 items. Nested scheme for start:
    Stop PiVolumeGroupActionPiVolumeGroupActionStop
    Performs stop action on a volume group.

    • Constraints: The maximum length is 1 items. Nested scheme for reset:
    Reset PiVolumeGroupActionPiVolumeGroupActionReset
    Performs reset action on the volume group to update its status value.

    • Constraints: The maximum length is 1 items. Nested scheme for reset:
    Start PiVolumeGroupActionPiVolumeGroupActionStart
    Performs start action on a volume group.

    • Constraints: The maximum length is 1 items. Nested scheme for start:
    Stop PiVolumeGroupActionPiVolumeGroupActionStop
    Performs stop action on a volume group.

    • Constraints: The maximum length is 1 items. Nested scheme for reset:
    reset PiVolumeGroupActionPiVolumeGroupActionReset
    Performs reset action on the volume group to update its status value.

    • Constraints: The maximum length is 1 items. Nested scheme for reset:
    start PiVolumeGroupActionPiVolumeGroupActionStart
    Performs start action on a volume group.

    • Constraints: The maximum length is 1 items. Nested scheme for start:
    stop PiVolumeGroupActionPiVolumeGroupActionStop
    Performs stop action on a volume group.

    • Constraints: The maximum length is 1 items. Nested scheme for reset:
    reset PiVolumeGroupActionPiVolumeGroupActionReset
    Performs reset action on the volume group to update its status value.

    • Constraints: The maximum length is 1 items. Nested scheme for reset:
    start PiVolumeGroupActionPiVolumeGroupActionStart
    Performs start action on a volume group.

    • Constraints: The maximum length is 1 items. Nested scheme for start:
    stop PiVolumeGroupActionPiVolumeGroupActionStop
    Performs stop action on a volume group.

    • Constraints: The maximum length is 1 items. Nested scheme for reset:
    reset PiVolumeGroupActionPiVolumeGroupActionReset
    Performs reset action on the volume group to update its status value.

    • Constraints: The maximum length is 1 items. Nested scheme for reset:
    start PiVolumeGroupActionPiVolumeGroupActionStart
    Performs start action on a volume group.

    • Constraints: The maximum length is 1 items. Nested scheme for start:
    stop PiVolumeGroupActionPiVolumeGroupActionStop
    Performs stop action on a volume group.

    • Constraints: The maximum length is 1 items. Nested scheme for reset:
    reset Property Map
    Performs reset action on the volume group to update its status value.

    • Constraints: The maximum length is 1 items. Nested scheme for reset:
    start Property Map
    Performs start action on a volume group.

    • Constraints: The maximum length is 1 items. Nested scheme for start:
    stop Property Map
    Performs stop action on a volume group.

    • Constraints: The maximum length is 1 items. Nested scheme for reset:

    PiVolumeGroupActionPiVolumeGroupActionReset, PiVolumeGroupActionPiVolumeGroupActionResetArgs

    Status string
    New status to be set for a volume group.
    Status string
    New status to be set for a volume group.
    status String
    New status to be set for a volume group.
    status string
    New status to be set for a volume group.
    status str
    New status to be set for a volume group.
    status String
    New status to be set for a volume group.

    PiVolumeGroupActionPiVolumeGroupActionStart, PiVolumeGroupActionPiVolumeGroupActionStartArgs

    Source string
    Indicates the source of the action master or aux.
    Source string
    Indicates the source of the action master or aux.
    source String
    Indicates the source of the action master or aux.
    source string
    Indicates the source of the action master or aux.
    source str
    Indicates the source of the action master or aux.
    source String
    Indicates the source of the action master or aux.

    PiVolumeGroupActionPiVolumeGroupActionStop, PiVolumeGroupActionPiVolumeGroupActionStopArgs

    Access bool
    Indicates the access mode of aux volumes.
    Access bool
    Indicates the access mode of aux volumes.
    access Boolean
    Indicates the access mode of aux volumes.
    access boolean
    Indicates the access mode of aux volumes.
    access bool
    Indicates the access mode of aux volumes.
    access Boolean
    Indicates the access mode of aux volumes.

    PiVolumeGroupActionTimeouts, PiVolumeGroupActionTimeoutsArgs

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

    Import

    Example

    bash

    $ pulumi import ibm:index/piVolumeGroupAction:PiVolumeGroupAction example d7bec597-4726-451f-8a63-e62e6f19c32c/49fba6c9-23f8-40bc-9899-aca322ee7d5b
    

    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.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud