1. Packages
  2. Azure Classic
  3. API Docs
  4. netapp
  5. getVolumeGroupOracle

We recommend using Azure Native.

Azure v6.21.0 published on Friday, Mar 7, 2025 by Pulumi

azure.netapp.getVolumeGroupOracle

Explore with Pulumi AI

azure logo

We recommend using Azure Native.

Azure v6.21.0 published on Friday, Mar 7, 2025 by Pulumi

    Use this data source to access information about an existing Application Volume Group for Oracle application.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as azure from "@pulumi/azure";
    
    const example = azure.netapp.getVolumeGroupOracle({
        name: "existing application volume group name",
        resourceGroupName: "resource group name where the account and volume group belong to",
        accountName: "existing account where the application volume group belong to",
    });
    export const id = example.then(example => example.id);
    
    import pulumi
    import pulumi_azure as azure
    
    example = azure.netapp.get_volume_group_oracle(name="existing application volume group name",
        resource_group_name="resource group name where the account and volume group belong to",
        account_name="existing account where the application volume group belong to")
    pulumi.export("id", example.id)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-azure/sdk/v6/go/azure/netapp"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		example, err := netapp.LookupVolumeGroupOracle(ctx, &netapp.LookupVolumeGroupOracleArgs{
    			Name:              "existing application volume group name",
    			ResourceGroupName: "resource group name where the account and volume group belong to",
    			AccountName:       "existing account where the application volume group belong to",
    		}, nil)
    		if err != nil {
    			return err
    		}
    		ctx.Export("id", example.Id)
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Azure = Pulumi.Azure;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Azure.NetApp.GetVolumeGroupOracle.Invoke(new()
        {
            Name = "existing application volume group name",
            ResourceGroupName = "resource group name where the account and volume group belong to",
            AccountName = "existing account where the application volume group belong to",
        });
    
        return new Dictionary<string, object?>
        {
            ["id"] = example.Apply(getVolumeGroupOracleResult => getVolumeGroupOracleResult.Id),
        };
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.azure.netapp.NetappFunctions;
    import com.pulumi.azure.netapp.inputs.GetVolumeGroupOracleArgs;
    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 example = NetappFunctions.getVolumeGroupOracle(GetVolumeGroupOracleArgs.builder()
                .name("existing application volume group name")
                .resourceGroupName("resource group name where the account and volume group belong to")
                .accountName("existing account where the application volume group belong to")
                .build());
    
            ctx.export("id", example.applyValue(getVolumeGroupOracleResult -> getVolumeGroupOracleResult.id()));
        }
    }
    
    variables:
      example:
        fn::invoke:
          function: azure:netapp:getVolumeGroupOracle
          arguments:
            name: existing application volume group name
            resourceGroupName: resource group name where the account and volume group belong to
            accountName: existing account where the application volume group belong to
    outputs:
      id: ${example.id}
    

    Using getVolumeGroupOracle

    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 getVolumeGroupOracle(args: GetVolumeGroupOracleArgs, opts?: InvokeOptions): Promise<GetVolumeGroupOracleResult>
    function getVolumeGroupOracleOutput(args: GetVolumeGroupOracleOutputArgs, opts?: InvokeOptions): Output<GetVolumeGroupOracleResult>
    def get_volume_group_oracle(account_name: Optional[str] = None,
                                name: Optional[str] = None,
                                resource_group_name: Optional[str] = None,
                                opts: Optional[InvokeOptions] = None) -> GetVolumeGroupOracleResult
    def get_volume_group_oracle_output(account_name: Optional[pulumi.Input[str]] = None,
                                name: Optional[pulumi.Input[str]] = None,
                                resource_group_name: Optional[pulumi.Input[str]] = None,
                                opts: Optional[InvokeOptions] = None) -> Output[GetVolumeGroupOracleResult]
    func LookupVolumeGroupOracle(ctx *Context, args *LookupVolumeGroupOracleArgs, opts ...InvokeOption) (*LookupVolumeGroupOracleResult, error)
    func LookupVolumeGroupOracleOutput(ctx *Context, args *LookupVolumeGroupOracleOutputArgs, opts ...InvokeOption) LookupVolumeGroupOracleResultOutput

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

    public static class GetVolumeGroupOracle 
    {
        public static Task<GetVolumeGroupOracleResult> InvokeAsync(GetVolumeGroupOracleArgs args, InvokeOptions? opts = null)
        public static Output<GetVolumeGroupOracleResult> Invoke(GetVolumeGroupOracleInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetVolumeGroupOracleResult> getVolumeGroupOracle(GetVolumeGroupOracleArgs args, InvokeOptions options)
    public static Output<GetVolumeGroupOracleResult> getVolumeGroupOracle(GetVolumeGroupOracleArgs args, InvokeOptions options)
    
    fn::invoke:
      function: azure:netapp/getVolumeGroupOracle:getVolumeGroupOracle
      arguments:
        # arguments dictionary

    The following arguments are supported:

    AccountName string
    Name of the account where the application volume group belong to.
    Name string
    The name of this Application Volume Group for Oracle application.
    ResourceGroupName string
    The name of the Resource Group where the Application Volume Group exists.
    AccountName string
    Name of the account where the application volume group belong to.
    Name string
    The name of this Application Volume Group for Oracle application.
    ResourceGroupName string
    The name of the Resource Group where the Application Volume Group exists.
    accountName String
    Name of the account where the application volume group belong to.
    name String
    The name of this Application Volume Group for Oracle application.
    resourceGroupName String
    The name of the Resource Group where the Application Volume Group exists.
    accountName string
    Name of the account where the application volume group belong to.
    name string
    The name of this Application Volume Group for Oracle application.
    resourceGroupName string
    The name of the Resource Group where the Application Volume Group exists.
    account_name str
    Name of the account where the application volume group belong to.
    name str
    The name of this Application Volume Group for Oracle application.
    resource_group_name str
    The name of the Resource Group where the Application Volume Group exists.
    accountName String
    Name of the account where the application volume group belong to.
    name String
    The name of this Application Volume Group for Oracle application.
    resourceGroupName String
    The name of the Resource Group where the Application Volume Group exists.

    getVolumeGroupOracle Result

    The following output properties are available:

    AccountName string
    ApplicationIdentifier string
    The application identifier.
    GroupDescription string
    Volume group description.
    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    The Azure Region where the Application Volume Group exists.
    Name string
    The name of this volume.
    ResourceGroupName string
    Volumes List<GetVolumeGroupOracleVolume>
    A volume block as defined below.
    AccountName string
    ApplicationIdentifier string
    The application identifier.
    GroupDescription string
    Volume group description.
    Id string
    The provider-assigned unique ID for this managed resource.
    Location string
    The Azure Region where the Application Volume Group exists.
    Name string
    The name of this volume.
    ResourceGroupName string
    Volumes []GetVolumeGroupOracleVolume
    A volume block as defined below.
    accountName String
    applicationIdentifier String
    The application identifier.
    groupDescription String
    Volume group description.
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    The Azure Region where the Application Volume Group exists.
    name String
    The name of this volume.
    resourceGroupName String
    volumes List<GetVolumeGroupOracleVolume>
    A volume block as defined below.
    accountName string
    applicationIdentifier string
    The application identifier.
    groupDescription string
    Volume group description.
    id string
    The provider-assigned unique ID for this managed resource.
    location string
    The Azure Region where the Application Volume Group exists.
    name string
    The name of this volume.
    resourceGroupName string
    volumes GetVolumeGroupOracleVolume[]
    A volume block as defined below.
    account_name str
    application_identifier str
    The application identifier.
    group_description str
    Volume group description.
    id str
    The provider-assigned unique ID for this managed resource.
    location str
    The Azure Region where the Application Volume Group exists.
    name str
    The name of this volume.
    resource_group_name str
    volumes Sequence[GetVolumeGroupOracleVolume]
    A volume block as defined below.
    accountName String
    applicationIdentifier String
    The application identifier.
    groupDescription String
    Volume group description.
    id String
    The provider-assigned unique ID for this managed resource.
    location String
    The Azure Region where the Application Volume Group exists.
    name String
    The name of this volume.
    resourceGroupName String
    volumes List<Property Map>
    A volume block as defined below.

    Supporting Types

    GetVolumeGroupOracleVolume

    CapacityPoolId string
    The ID of the Capacity Pool.
    DataProtectionReplications List<GetVolumeGroupOracleVolumeDataProtectionReplication>
    DataProtectionSnapshotPolicies List<GetVolumeGroupOracleVolumeDataProtectionSnapshotPolicy>
    A data_protection_snapshot_policy block as defined below.
    EncryptionKeySource string
    The encryption key source.
    ExportPolicyRules List<GetVolumeGroupOracleVolumeExportPolicyRule>
    A export_policy_rule block as defined below.
    Id string
    Volume ID.
    KeyVaultPrivateEndpointId string
    The Private Endpoint ID for Key Vault when using customer managed keys.
    MountIpAddresses List<string>
    A mount_ip_addresses block as defined below.
    Name string
    The name of this Application Volume Group for Oracle application.
    NetworkFeatures string
    Network feature in use at the time of volume creation.
    Protocols List<string>
    A protocols block as defined below.
    ProximityPlacementGroupId string
    The ID of the proximity placement group.
    SecurityStyle string
    Volume security style.
    ServiceLevel string
    The target performance of the file system.
    SnapshotDirectoryVisible bool
    Is the .snapshot (NFS clients) path of a volume visible?
    StorageQuotaInGb int
    The maximum Storage Quota allowed for a file system in Gigabytes.
    SubnetId string
    The ID of the Subnet the NetApp Volume resides in.
    Tags Dictionary<string, string>
    A mapping of tags assigned to the Application Volume Group.
    ThroughputInMibps double
    Throughput of this volume in Mibps.
    VolumePath string
    A unique file path for the volume.
    VolumeSpecName string
    Volume spec name.
    Zone string
    CapacityPoolId string
    The ID of the Capacity Pool.
    DataProtectionReplications []GetVolumeGroupOracleVolumeDataProtectionReplication
    DataProtectionSnapshotPolicies []GetVolumeGroupOracleVolumeDataProtectionSnapshotPolicy
    A data_protection_snapshot_policy block as defined below.
    EncryptionKeySource string
    The encryption key source.
    ExportPolicyRules []GetVolumeGroupOracleVolumeExportPolicyRule
    A export_policy_rule block as defined below.
    Id string
    Volume ID.
    KeyVaultPrivateEndpointId string
    The Private Endpoint ID for Key Vault when using customer managed keys.
    MountIpAddresses []string
    A mount_ip_addresses block as defined below.
    Name string
    The name of this Application Volume Group for Oracle application.
    NetworkFeatures string
    Network feature in use at the time of volume creation.
    Protocols []string
    A protocols block as defined below.
    ProximityPlacementGroupId string
    The ID of the proximity placement group.
    SecurityStyle string
    Volume security style.
    ServiceLevel string
    The target performance of the file system.
    SnapshotDirectoryVisible bool
    Is the .snapshot (NFS clients) path of a volume visible?
    StorageQuotaInGb int
    The maximum Storage Quota allowed for a file system in Gigabytes.
    SubnetId string
    The ID of the Subnet the NetApp Volume resides in.
    Tags map[string]string
    A mapping of tags assigned to the Application Volume Group.
    ThroughputInMibps float64
    Throughput of this volume in Mibps.
    VolumePath string
    A unique file path for the volume.
    VolumeSpecName string
    Volume spec name.
    Zone string
    capacityPoolId String
    The ID of the Capacity Pool.
    dataProtectionReplications List<GetVolumeGroupOracleVolumeDataProtectionReplication>
    dataProtectionSnapshotPolicies List<GetVolumeGroupOracleVolumeDataProtectionSnapshotPolicy>
    A data_protection_snapshot_policy block as defined below.
    encryptionKeySource String
    The encryption key source.
    exportPolicyRules List<GetVolumeGroupOracleVolumeExportPolicyRule>
    A export_policy_rule block as defined below.
    id String
    Volume ID.
    keyVaultPrivateEndpointId String
    The Private Endpoint ID for Key Vault when using customer managed keys.
    mountIpAddresses List<String>
    A mount_ip_addresses block as defined below.
    name String
    The name of this Application Volume Group for Oracle application.
    networkFeatures String
    Network feature in use at the time of volume creation.
    protocols List<String>
    A protocols block as defined below.
    proximityPlacementGroupId String
    The ID of the proximity placement group.
    securityStyle String
    Volume security style.
    serviceLevel String
    The target performance of the file system.
    snapshotDirectoryVisible Boolean
    Is the .snapshot (NFS clients) path of a volume visible?
    storageQuotaInGb Integer
    The maximum Storage Quota allowed for a file system in Gigabytes.
    subnetId String
    The ID of the Subnet the NetApp Volume resides in.
    tags Map<String,String>
    A mapping of tags assigned to the Application Volume Group.
    throughputInMibps Double
    Throughput of this volume in Mibps.
    volumePath String
    A unique file path for the volume.
    volumeSpecName String
    Volume spec name.
    zone String
    capacityPoolId string
    The ID of the Capacity Pool.
    dataProtectionReplications GetVolumeGroupOracleVolumeDataProtectionReplication[]
    dataProtectionSnapshotPolicies GetVolumeGroupOracleVolumeDataProtectionSnapshotPolicy[]
    A data_protection_snapshot_policy block as defined below.
    encryptionKeySource string
    The encryption key source.
    exportPolicyRules GetVolumeGroupOracleVolumeExportPolicyRule[]
    A export_policy_rule block as defined below.
    id string
    Volume ID.
    keyVaultPrivateEndpointId string
    The Private Endpoint ID for Key Vault when using customer managed keys.
    mountIpAddresses string[]
    A mount_ip_addresses block as defined below.
    name string
    The name of this Application Volume Group for Oracle application.
    networkFeatures string
    Network feature in use at the time of volume creation.
    protocols string[]
    A protocols block as defined below.
    proximityPlacementGroupId string
    The ID of the proximity placement group.
    securityStyle string
    Volume security style.
    serviceLevel string
    The target performance of the file system.
    snapshotDirectoryVisible boolean
    Is the .snapshot (NFS clients) path of a volume visible?
    storageQuotaInGb number
    The maximum Storage Quota allowed for a file system in Gigabytes.
    subnetId string
    The ID of the Subnet the NetApp Volume resides in.
    tags {[key: string]: string}
    A mapping of tags assigned to the Application Volume Group.
    throughputInMibps number
    Throughput of this volume in Mibps.
    volumePath string
    A unique file path for the volume.
    volumeSpecName string
    Volume spec name.
    zone string
    capacity_pool_id str
    The ID of the Capacity Pool.
    data_protection_replications Sequence[GetVolumeGroupOracleVolumeDataProtectionReplication]
    data_protection_snapshot_policies Sequence[GetVolumeGroupOracleVolumeDataProtectionSnapshotPolicy]
    A data_protection_snapshot_policy block as defined below.
    encryption_key_source str
    The encryption key source.
    export_policy_rules Sequence[GetVolumeGroupOracleVolumeExportPolicyRule]
    A export_policy_rule block as defined below.
    id str
    Volume ID.
    key_vault_private_endpoint_id str
    The Private Endpoint ID for Key Vault when using customer managed keys.
    mount_ip_addresses Sequence[str]
    A mount_ip_addresses block as defined below.
    name str
    The name of this Application Volume Group for Oracle application.
    network_features str
    Network feature in use at the time of volume creation.
    protocols Sequence[str]
    A protocols block as defined below.
    proximity_placement_group_id str
    The ID of the proximity placement group.
    security_style str
    Volume security style.
    service_level str
    The target performance of the file system.
    snapshot_directory_visible bool
    Is the .snapshot (NFS clients) path of a volume visible?
    storage_quota_in_gb int
    The maximum Storage Quota allowed for a file system in Gigabytes.
    subnet_id str
    The ID of the Subnet the NetApp Volume resides in.
    tags Mapping[str, str]
    A mapping of tags assigned to the Application Volume Group.
    throughput_in_mibps float
    Throughput of this volume in Mibps.
    volume_path str
    A unique file path for the volume.
    volume_spec_name str
    Volume spec name.
    zone str
    capacityPoolId String
    The ID of the Capacity Pool.
    dataProtectionReplications List<Property Map>
    dataProtectionSnapshotPolicies List<Property Map>
    A data_protection_snapshot_policy block as defined below.
    encryptionKeySource String
    The encryption key source.
    exportPolicyRules List<Property Map>
    A export_policy_rule block as defined below.
    id String
    Volume ID.
    keyVaultPrivateEndpointId String
    The Private Endpoint ID for Key Vault when using customer managed keys.
    mountIpAddresses List<String>
    A mount_ip_addresses block as defined below.
    name String
    The name of this Application Volume Group for Oracle application.
    networkFeatures String
    Network feature in use at the time of volume creation.
    protocols List<String>
    A protocols block as defined below.
    proximityPlacementGroupId String
    The ID of the proximity placement group.
    securityStyle String
    Volume security style.
    serviceLevel String
    The target performance of the file system.
    snapshotDirectoryVisible Boolean
    Is the .snapshot (NFS clients) path of a volume visible?
    storageQuotaInGb Number
    The maximum Storage Quota allowed for a file system in Gigabytes.
    subnetId String
    The ID of the Subnet the NetApp Volume resides in.
    tags Map<String>
    A mapping of tags assigned to the Application Volume Group.
    throughputInMibps Number
    Throughput of this volume in Mibps.
    volumePath String
    A unique file path for the volume.
    volumeSpecName String
    Volume spec name.
    zone String

    GetVolumeGroupOracleVolumeDataProtectionReplication

    EndpointType string
    The endpoint type.
    RemoteVolumeLocation string
    Location of the primary volume.
    RemoteVolumeResourceId string
    Resource ID of the primary volume.
    ReplicationFrequency string
    Replication frequency.
    EndpointType string
    The endpoint type.
    RemoteVolumeLocation string
    Location of the primary volume.
    RemoteVolumeResourceId string
    Resource ID of the primary volume.
    ReplicationFrequency string
    Replication frequency.
    endpointType String
    The endpoint type.
    remoteVolumeLocation String
    Location of the primary volume.
    remoteVolumeResourceId String
    Resource ID of the primary volume.
    replicationFrequency String
    Replication frequency.
    endpointType string
    The endpoint type.
    remoteVolumeLocation string
    Location of the primary volume.
    remoteVolumeResourceId string
    Resource ID of the primary volume.
    replicationFrequency string
    Replication frequency.
    endpoint_type str
    The endpoint type.
    remote_volume_location str
    Location of the primary volume.
    remote_volume_resource_id str
    Resource ID of the primary volume.
    replication_frequency str
    Replication frequency.
    endpointType String
    The endpoint type.
    remoteVolumeLocation String
    Location of the primary volume.
    remoteVolumeResourceId String
    Resource ID of the primary volume.
    replicationFrequency String
    Replication frequency.

    GetVolumeGroupOracleVolumeDataProtectionSnapshotPolicy

    SnapshotPolicyId string
    Resource ID of the snapshot policy to apply to the volume.
    SnapshotPolicyId string
    Resource ID of the snapshot policy to apply to the volume.
    snapshotPolicyId String
    Resource ID of the snapshot policy to apply to the volume.
    snapshotPolicyId string
    Resource ID of the snapshot policy to apply to the volume.
    snapshot_policy_id str
    Resource ID of the snapshot policy to apply to the volume.
    snapshotPolicyId String
    Resource ID of the snapshot policy to apply to the volume.

    GetVolumeGroupOracleVolumeExportPolicyRule

    AllowedClients string
    A list of allowed clients IPv4 addresses.
    Nfsv3Enabled bool
    Is the NFSv3 protocol enabled?
    Nfsv41Enabled bool
    Is the NFSv4.1 enabled?
    RootAccessEnabled bool
    Is root access permitted to this volume?
    RuleIndex int
    The index number of the rule.
    UnixReadOnly bool
    Is the file system on unix read only?.
    UnixReadWrite bool
    Is the file system on unix read and write?.
    AllowedClients string
    A list of allowed clients IPv4 addresses.
    Nfsv3Enabled bool
    Is the NFSv3 protocol enabled?
    Nfsv41Enabled bool
    Is the NFSv4.1 enabled?
    RootAccessEnabled bool
    Is root access permitted to this volume?
    RuleIndex int
    The index number of the rule.
    UnixReadOnly bool
    Is the file system on unix read only?.
    UnixReadWrite bool
    Is the file system on unix read and write?.
    allowedClients String
    A list of allowed clients IPv4 addresses.
    nfsv3Enabled Boolean
    Is the NFSv3 protocol enabled?
    nfsv41Enabled Boolean
    Is the NFSv4.1 enabled?
    rootAccessEnabled Boolean
    Is root access permitted to this volume?
    ruleIndex Integer
    The index number of the rule.
    unixReadOnly Boolean
    Is the file system on unix read only?.
    unixReadWrite Boolean
    Is the file system on unix read and write?.
    allowedClients string
    A list of allowed clients IPv4 addresses.
    nfsv3Enabled boolean
    Is the NFSv3 protocol enabled?
    nfsv41Enabled boolean
    Is the NFSv4.1 enabled?
    rootAccessEnabled boolean
    Is root access permitted to this volume?
    ruleIndex number
    The index number of the rule.
    unixReadOnly boolean
    Is the file system on unix read only?.
    unixReadWrite boolean
    Is the file system on unix read and write?.
    allowed_clients str
    A list of allowed clients IPv4 addresses.
    nfsv3_enabled bool
    Is the NFSv3 protocol enabled?
    nfsv41_enabled bool
    Is the NFSv4.1 enabled?
    root_access_enabled bool
    Is root access permitted to this volume?
    rule_index int
    The index number of the rule.
    unix_read_only bool
    Is the file system on unix read only?.
    unix_read_write bool
    Is the file system on unix read and write?.
    allowedClients String
    A list of allowed clients IPv4 addresses.
    nfsv3Enabled Boolean
    Is the NFSv3 protocol enabled?
    nfsv41Enabled Boolean
    Is the NFSv4.1 enabled?
    rootAccessEnabled Boolean
    Is root access permitted to this volume?
    ruleIndex Number
    The index number of the rule.
    unixReadOnly Boolean
    Is the file system on unix read only?.
    unixReadWrite Boolean
    Is the file system on unix read and write?.

    Package Details

    Repository
    Azure Classic pulumi/pulumi-azure
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the azurerm Terraform Provider.
    azure logo

    We recommend using Azure Native.

    Azure v6.21.0 published on Friday, Mar 7, 2025 by Pulumi