1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Core
  5. getVolumeGroups
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Core.getVolumeGroups

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This data source provides the list of Volume Groups in Oracle Cloud Infrastructure Core service.

    Lists the volume groups in the specified compartment and availability domain. For more information, see Volume Groups.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testVolumeGroups = oci.Core.getVolumeGroups({
        compartmentId: _var.compartment_id,
        availabilityDomain: _var.volume_group_availability_domain,
        displayName: _var.volume_group_display_name,
        state: _var.volume_group_state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_volume_groups = oci.Core.get_volume_groups(compartment_id=var["compartment_id"],
        availability_domain=var["volume_group_availability_domain"],
        display_name=var["volume_group_display_name"],
        state=var["volume_group_state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Core.GetVolumeGroups(ctx, &core.GetVolumeGroupsArgs{
    			CompartmentId:      _var.Compartment_id,
    			AvailabilityDomain: pulumi.StringRef(_var.Volume_group_availability_domain),
    			DisplayName:        pulumi.StringRef(_var.Volume_group_display_name),
    			State:              pulumi.StringRef(_var.Volume_group_state),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testVolumeGroups = Oci.Core.GetVolumeGroups.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            AvailabilityDomain = @var.Volume_group_availability_domain,
            DisplayName = @var.Volume_group_display_name,
            State = @var.Volume_group_state,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Core.CoreFunctions;
    import com.pulumi.oci.Core.inputs.GetVolumeGroupsArgs;
    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) {
            final var testVolumeGroups = CoreFunctions.getVolumeGroups(GetVolumeGroupsArgs.builder()
                .compartmentId(var_.compartment_id())
                .availabilityDomain(var_.volume_group_availability_domain())
                .displayName(var_.volume_group_display_name())
                .state(var_.volume_group_state())
                .build());
    
        }
    }
    
    variables:
      testVolumeGroups:
        fn::invoke:
          Function: oci:Core:getVolumeGroups
          Arguments:
            compartmentId: ${var.compartment_id}
            availabilityDomain: ${var.volume_group_availability_domain}
            displayName: ${var.volume_group_display_name}
            state: ${var.volume_group_state}
    

    Using getVolumeGroups

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getVolumeGroups(args: GetVolumeGroupsArgs, opts?: InvokeOptions): Promise<GetVolumeGroupsResult>
    function getVolumeGroupsOutput(args: GetVolumeGroupsOutputArgs, opts?: InvokeOptions): Output<GetVolumeGroupsResult>
    def get_volume_groups(availability_domain: Optional[str] = None,
                          compartment_id: Optional[str] = None,
                          display_name: Optional[str] = None,
                          filters: Optional[Sequence[_core.GetVolumeGroupsFilter]] = None,
                          state: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetVolumeGroupsResult
    def get_volume_groups_output(availability_domain: Optional[pulumi.Input[str]] = None,
                          compartment_id: Optional[pulumi.Input[str]] = None,
                          display_name: Optional[pulumi.Input[str]] = None,
                          filters: Optional[pulumi.Input[Sequence[pulumi.Input[_core.GetVolumeGroupsFilterArgs]]]] = None,
                          state: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetVolumeGroupsResult]
    func GetVolumeGroups(ctx *Context, args *GetVolumeGroupsArgs, opts ...InvokeOption) (*GetVolumeGroupsResult, error)
    func GetVolumeGroupsOutput(ctx *Context, args *GetVolumeGroupsOutputArgs, opts ...InvokeOption) GetVolumeGroupsResultOutput

    > Note: This function is named GetVolumeGroups in the Go SDK.

    public static class GetVolumeGroups 
    {
        public static Task<GetVolumeGroupsResult> InvokeAsync(GetVolumeGroupsArgs args, InvokeOptions? opts = null)
        public static Output<GetVolumeGroupsResult> Invoke(GetVolumeGroupsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetVolumeGroupsResult> getVolumeGroups(GetVolumeGroupsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Core/getVolumeGroups:getVolumeGroups
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment.
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters List<GetVolumeGroupsFilter>
    State string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    CompartmentId string
    The OCID of the compartment.
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters []GetVolumeGroupsFilter
    State string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The OCID of the compartment.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<GetVolumeGroupsFilter>
    state String
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId string
    The OCID of the compartment.
    availabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    displayName string
    A filter to return only resources that match the given display name exactly.
    filters GetVolumeGroupsFilter[]
    state string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    compartment_id str
    The OCID of the compartment.
    availability_domain str
    The name of the availability domain. Example: Uocm:PHX-AD-1
    display_name str
    A filter to return only resources that match the given display name exactly.
    filters Sequence[core.GetVolumeGroupsFilter]
    state str
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    compartmentId String
    The OCID of the compartment.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<Property Map>
    state String
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.

    getVolumeGroups Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment that contains the volume group.
    Id string
    The provider-assigned unique ID for this managed resource.
    VolumeGroups List<GetVolumeGroupsVolumeGroup>
    The list of volume_groups.
    AvailabilityDomain string
    The availability domain of the boot volume replica replica. Example: Uocm:PHX-AD-1
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters List<GetVolumeGroupsFilter>
    State string
    The current state of a volume group.
    CompartmentId string
    The OCID of the compartment that contains the volume group.
    Id string
    The provider-assigned unique ID for this managed resource.
    VolumeGroups []GetVolumeGroupsVolumeGroup
    The list of volume_groups.
    AvailabilityDomain string
    The availability domain of the boot volume replica replica. Example: Uocm:PHX-AD-1
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters []GetVolumeGroupsFilter
    State string
    The current state of a volume group.
    compartmentId String
    The OCID of the compartment that contains the volume group.
    id String
    The provider-assigned unique ID for this managed resource.
    volumeGroups List<GetVolumeGroupsVolumeGroup>
    The list of volume_groups.
    availabilityDomain String
    The availability domain of the boot volume replica replica. Example: Uocm:PHX-AD-1
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<GetVolumeGroupsFilter>
    state String
    The current state of a volume group.
    compartmentId string
    The OCID of the compartment that contains the volume group.
    id string
    The provider-assigned unique ID for this managed resource.
    volumeGroups GetVolumeGroupsVolumeGroup[]
    The list of volume_groups.
    availabilityDomain string
    The availability domain of the boot volume replica replica. Example: Uocm:PHX-AD-1
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters GetVolumeGroupsFilter[]
    state string
    The current state of a volume group.
    compartment_id str
    The OCID of the compartment that contains the volume group.
    id str
    The provider-assigned unique ID for this managed resource.
    volume_groups Sequence[core.GetVolumeGroupsVolumeGroup]
    The list of volume_groups.
    availability_domain str
    The availability domain of the boot volume replica replica. Example: Uocm:PHX-AD-1
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters Sequence[core.GetVolumeGroupsFilter]
    state str
    The current state of a volume group.
    compartmentId String
    The OCID of the compartment that contains the volume group.
    id String
    The provider-assigned unique ID for this managed resource.
    volumeGroups List<Property Map>
    The list of volume_groups.
    availabilityDomain String
    The availability domain of the boot volume replica replica. Example: Uocm:PHX-AD-1
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<Property Map>
    state String
    The current state of a volume group.

    Supporting Types

    GetVolumeGroupsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetVolumeGroupsVolumeGroup

    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    BackupPolicyId string

    Deprecated: The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

    CompartmentId string
    The OCID of the compartment.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    FreeformTags Dictionary<string, object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID for the volume group.
    IsHydrated bool
    Specifies whether the newly created cloned volume group's data has finished copying from the source volume group or backup.
    PreserveVolumeReplica bool
    SizeInGbs string
    The aggregate size of the volume group in GBs.
    SizeInMbs string
    The aggregate size of the volume group in MBs.
    SourceDetails List<GetVolumeGroupsVolumeGroupSourceDetail>
    Specifies the source for a volume group.
    State string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    TimeCreated string
    The date and time the volume group was created. Format defined by RFC3339.
    VolumeGroupReplicas List<GetVolumeGroupsVolumeGroupVolumeGroupReplica>
    The list of volume group replicas of this volume group.
    VolumeGroupReplicasDeletion bool
    VolumeIds List<string>
    OCIDs for the volumes in this volume group.
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    BackupPolicyId string

    Deprecated: The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

    CompartmentId string
    The OCID of the compartment.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    FreeformTags map[string]interface{}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID for the volume group.
    IsHydrated bool
    Specifies whether the newly created cloned volume group's data has finished copying from the source volume group or backup.
    PreserveVolumeReplica bool
    SizeInGbs string
    The aggregate size of the volume group in GBs.
    SizeInMbs string
    The aggregate size of the volume group in MBs.
    SourceDetails []GetVolumeGroupsVolumeGroupSourceDetail
    Specifies the source for a volume group.
    State string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    TimeCreated string
    The date and time the volume group was created. Format defined by RFC3339.
    VolumeGroupReplicas []GetVolumeGroupsVolumeGroupVolumeGroupReplica
    The list of volume group replicas of this volume group.
    VolumeGroupReplicasDeletion bool
    VolumeIds []string
    OCIDs for the volumes in this volume group.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    backupPolicyId String

    Deprecated: The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

    compartmentId String
    The OCID of the compartment.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    freeformTags Map<String,Object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID for the volume group.
    isHydrated Boolean
    Specifies whether the newly created cloned volume group's data has finished copying from the source volume group or backup.
    preserveVolumeReplica Boolean
    sizeInGbs String
    The aggregate size of the volume group in GBs.
    sizeInMbs String
    The aggregate size of the volume group in MBs.
    sourceDetails List<GetVolumeGroupsVolumeGroupSourceDetail>
    Specifies the source for a volume group.
    state String
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    timeCreated String
    The date and time the volume group was created. Format defined by RFC3339.
    volumeGroupReplicas List<GetVolumeGroupsVolumeGroupVolumeGroupReplica>
    The list of volume group replicas of this volume group.
    volumeGroupReplicasDeletion Boolean
    volumeIds List<String>
    OCIDs for the volumes in this volume group.
    availabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    backupPolicyId string

    Deprecated: The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

    compartmentId string
    The OCID of the compartment.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    A filter to return only resources that match the given display name exactly.
    freeformTags {[key: string]: any}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    The OCID for the volume group.
    isHydrated boolean
    Specifies whether the newly created cloned volume group's data has finished copying from the source volume group or backup.
    preserveVolumeReplica boolean
    sizeInGbs string
    The aggregate size of the volume group in GBs.
    sizeInMbs string
    The aggregate size of the volume group in MBs.
    sourceDetails GetVolumeGroupsVolumeGroupSourceDetail[]
    Specifies the source for a volume group.
    state string
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    timeCreated string
    The date and time the volume group was created. Format defined by RFC3339.
    volumeGroupReplicas GetVolumeGroupsVolumeGroupVolumeGroupReplica[]
    The list of volume group replicas of this volume group.
    volumeGroupReplicasDeletion boolean
    volumeIds string[]
    OCIDs for the volumes in this volume group.
    availability_domain str
    The name of the availability domain. Example: Uocm:PHX-AD-1
    backup_policy_id str

    Deprecated: The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

    compartment_id str
    The OCID of the compartment.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    A filter to return only resources that match the given display name exactly.
    freeform_tags Mapping[str, Any]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    The OCID for the volume group.
    is_hydrated bool
    Specifies whether the newly created cloned volume group's data has finished copying from the source volume group or backup.
    preserve_volume_replica bool
    size_in_gbs str
    The aggregate size of the volume group in GBs.
    size_in_mbs str
    The aggregate size of the volume group in MBs.
    source_details Sequence[core.GetVolumeGroupsVolumeGroupSourceDetail]
    Specifies the source for a volume group.
    state str
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    time_created str
    The date and time the volume group was created. Format defined by RFC3339.
    volume_group_replicas Sequence[core.GetVolumeGroupsVolumeGroupVolumeGroupReplica]
    The list of volume group replicas of this volume group.
    volume_group_replicas_deletion bool
    volume_ids Sequence[str]
    OCIDs for the volumes in this volume group.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    backupPolicyId String

    Deprecated: The 'backup_policy_id' field has been deprecated. Please use the 'oci_core_volume_backup_policy_assignment' resource instead.

    compartmentId String
    The OCID of the compartment.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    freeformTags Map<Any>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID for the volume group.
    isHydrated Boolean
    Specifies whether the newly created cloned volume group's data has finished copying from the source volume group or backup.
    preserveVolumeReplica Boolean
    sizeInGbs String
    The aggregate size of the volume group in GBs.
    sizeInMbs String
    The aggregate size of the volume group in MBs.
    sourceDetails List<Property Map>
    Specifies the source for a volume group.
    state String
    A filter to only return resources that match the given lifecycle state. The state value is case-insensitive.
    timeCreated String
    The date and time the volume group was created. Format defined by RFC3339.
    volumeGroupReplicas List<Property Map>
    The list of volume group replicas of this volume group.
    volumeGroupReplicasDeletion Boolean
    volumeIds List<String>
    OCIDs for the volumes in this volume group.

    GetVolumeGroupsVolumeGroupSourceDetail

    Type string
    The type can be one of these values: volumeGroupBackupId, volumeGroupId, volumeIds
    VolumeGroupBackupId string
    The OCID of the volume group backup to restore from, if the type is volumeGroupBackup
    VolumeGroupId string
    The OCID of the volume group to clone from, if the type is volumeGroup
    VolumeGroupReplicaId string
    The volume group replica's Oracle ID (OCID).
    VolumeIds List<string>
    OCIDs for the volumes in this volume group.
    Type string
    The type can be one of these values: volumeGroupBackupId, volumeGroupId, volumeIds
    VolumeGroupBackupId string
    The OCID of the volume group backup to restore from, if the type is volumeGroupBackup
    VolumeGroupId string
    The OCID of the volume group to clone from, if the type is volumeGroup
    VolumeGroupReplicaId string
    The volume group replica's Oracle ID (OCID).
    VolumeIds []string
    OCIDs for the volumes in this volume group.
    type String
    The type can be one of these values: volumeGroupBackupId, volumeGroupId, volumeIds
    volumeGroupBackupId String
    The OCID of the volume group backup to restore from, if the type is volumeGroupBackup
    volumeGroupId String
    The OCID of the volume group to clone from, if the type is volumeGroup
    volumeGroupReplicaId String
    The volume group replica's Oracle ID (OCID).
    volumeIds List<String>
    OCIDs for the volumes in this volume group.
    type string
    The type can be one of these values: volumeGroupBackupId, volumeGroupId, volumeIds
    volumeGroupBackupId string
    The OCID of the volume group backup to restore from, if the type is volumeGroupBackup
    volumeGroupId string
    The OCID of the volume group to clone from, if the type is volumeGroup
    volumeGroupReplicaId string
    The volume group replica's Oracle ID (OCID).
    volumeIds string[]
    OCIDs for the volumes in this volume group.
    type str
    The type can be one of these values: volumeGroupBackupId, volumeGroupId, volumeIds
    volume_group_backup_id str
    The OCID of the volume group backup to restore from, if the type is volumeGroupBackup
    volume_group_id str
    The OCID of the volume group to clone from, if the type is volumeGroup
    volume_group_replica_id str
    The volume group replica's Oracle ID (OCID).
    volume_ids Sequence[str]
    OCIDs for the volumes in this volume group.
    type String
    The type can be one of these values: volumeGroupBackupId, volumeGroupId, volumeIds
    volumeGroupBackupId String
    The OCID of the volume group backup to restore from, if the type is volumeGroupBackup
    volumeGroupId String
    The OCID of the volume group to clone from, if the type is volumeGroup
    volumeGroupReplicaId String
    The volume group replica's Oracle ID (OCID).
    volumeIds List<String>
    OCIDs for the volumes in this volume group.

    GetVolumeGroupsVolumeGroupVolumeGroupReplica

    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    VolumeGroupReplicaId string
    The volume group replica's Oracle ID (OCID).
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    VolumeGroupReplicaId string
    The volume group replica's Oracle ID (OCID).
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    displayName String
    A filter to return only resources that match the given display name exactly.
    volumeGroupReplicaId String
    The volume group replica's Oracle ID (OCID).
    availabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    displayName string
    A filter to return only resources that match the given display name exactly.
    volumeGroupReplicaId string
    The volume group replica's Oracle ID (OCID).
    availability_domain str
    The name of the availability domain. Example: Uocm:PHX-AD-1
    display_name str
    A filter to return only resources that match the given display name exactly.
    volume_group_replica_id str
    The volume group replica's Oracle ID (OCID).
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    displayName String
    A filter to return only resources that match the given display name exactly.
    volumeGroupReplicaId String
    The volume group replica's Oracle ID (OCID).

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi