1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. getCloudExadataStorageConnectors
Viewing docs for Oracle Cloud Infrastructure v4.3.0
published on Thursday, Mar 19, 2026 by Pulumi
oci logo
Viewing docs for Oracle Cloud Infrastructure v4.3.0
published on Thursday, Mar 19, 2026 by Pulumi

    This data source provides the list of Cloud Exadata Storage Connectors in Oracle Cloud Infrastructure Database Management service.

    Lists the Exadata storage server connectors for the specified Exadata infrastructure.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCloudExadataStorageConnectors = oci.DatabaseManagement.getCloudExadataStorageConnectors({
        cloudExadataInfrastructureId: testCloudExadataInfrastructure.id,
        compartmentId: compartmentId,
        displayName: cloudExadataStorageConnectorDisplayName,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_cloud_exadata_storage_connectors = oci.DatabaseManagement.get_cloud_exadata_storage_connectors(cloud_exadata_infrastructure_id=test_cloud_exadata_infrastructure["id"],
        compartment_id=compartment_id,
        display_name=cloud_exadata_storage_connector_display_name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/databasemanagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := databasemanagement.GetCloudExadataStorageConnectors(ctx, &databasemanagement.GetCloudExadataStorageConnectorsArgs{
    			CloudExadataInfrastructureId: testCloudExadataInfrastructure.Id,
    			CompartmentId:                compartmentId,
    			DisplayName:                  pulumi.StringRef(cloudExadataStorageConnectorDisplayName),
    		}, 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 testCloudExadataStorageConnectors = Oci.DatabaseManagement.GetCloudExadataStorageConnectors.Invoke(new()
        {
            CloudExadataInfrastructureId = testCloudExadataInfrastructure.Id,
            CompartmentId = compartmentId,
            DisplayName = cloudExadataStorageConnectorDisplayName,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DatabaseManagement.DatabaseManagementFunctions;
    import com.pulumi.oci.DatabaseManagement.inputs.GetCloudExadataStorageConnectorsArgs;
    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 testCloudExadataStorageConnectors = DatabaseManagementFunctions.getCloudExadataStorageConnectors(GetCloudExadataStorageConnectorsArgs.builder()
                .cloudExadataInfrastructureId(testCloudExadataInfrastructure.id())
                .compartmentId(compartmentId)
                .displayName(cloudExadataStorageConnectorDisplayName)
                .build());
    
        }
    }
    
    variables:
      testCloudExadataStorageConnectors:
        fn::invoke:
          function: oci:DatabaseManagement:getCloudExadataStorageConnectors
          arguments:
            cloudExadataInfrastructureId: ${testCloudExadataInfrastructure.id}
            compartmentId: ${compartmentId}
            displayName: ${cloudExadataStorageConnectorDisplayName}
    

    Using getCloudExadataStorageConnectors

    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 getCloudExadataStorageConnectors(args: GetCloudExadataStorageConnectorsArgs, opts?: InvokeOptions): Promise<GetCloudExadataStorageConnectorsResult>
    function getCloudExadataStorageConnectorsOutput(args: GetCloudExadataStorageConnectorsOutputArgs, opts?: InvokeOptions): Output<GetCloudExadataStorageConnectorsResult>
    def get_cloud_exadata_storage_connectors(cloud_exadata_infrastructure_id: Optional[str] = None,
                                             compartment_id: Optional[str] = None,
                                             display_name: Optional[str] = None,
                                             filters: Optional[Sequence[GetCloudExadataStorageConnectorsFilter]] = None,
                                             opts: Optional[InvokeOptions] = None) -> GetCloudExadataStorageConnectorsResult
    def get_cloud_exadata_storage_connectors_output(cloud_exadata_infrastructure_id: 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[GetCloudExadataStorageConnectorsFilterArgs]]]] = None,
                                             opts: Optional[InvokeOptions] = None) -> Output[GetCloudExadataStorageConnectorsResult]
    func GetCloudExadataStorageConnectors(ctx *Context, args *GetCloudExadataStorageConnectorsArgs, opts ...InvokeOption) (*GetCloudExadataStorageConnectorsResult, error)
    func GetCloudExadataStorageConnectorsOutput(ctx *Context, args *GetCloudExadataStorageConnectorsOutputArgs, opts ...InvokeOption) GetCloudExadataStorageConnectorsResultOutput

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

    public static class GetCloudExadataStorageConnectors 
    {
        public static Task<GetCloudExadataStorageConnectorsResult> InvokeAsync(GetCloudExadataStorageConnectorsArgs args, InvokeOptions? opts = null)
        public static Output<GetCloudExadataStorageConnectorsResult> Invoke(GetCloudExadataStorageConnectorsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCloudExadataStorageConnectorsResult> getCloudExadataStorageConnectors(GetCloudExadataStorageConnectorsArgs args, InvokeOptions options)
    public static Output<GetCloudExadataStorageConnectorsResult> getCloudExadataStorageConnectors(GetCloudExadataStorageConnectorsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DatabaseManagement/getCloudExadataStorageConnectors:getCloudExadataStorageConnectors
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CloudExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    The optional single value query filter parameter on the entity display name.
    Filters List<GetCloudExadataStorageConnectorsFilter>
    CloudExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    The optional single value query filter parameter on the entity display name.
    Filters []GetCloudExadataStorageConnectorsFilter
    cloudExadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    compartmentId String
    The OCID of the compartment.
    displayName String
    The optional single value query filter parameter on the entity display name.
    filters List<GetCloudExadataStorageConnectorsFilter>
    cloudExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    compartmentId string
    The OCID of the compartment.
    displayName string
    The optional single value query filter parameter on the entity display name.
    filters GetCloudExadataStorageConnectorsFilter[]
    cloud_exadata_infrastructure_id str
    The OCID of the Exadata infrastructure.
    compartment_id str
    The OCID of the compartment.
    display_name str
    The optional single value query filter parameter on the entity display name.
    filters Sequence[GetCloudExadataStorageConnectorsFilter]
    cloudExadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    compartmentId String
    The OCID of the compartment.
    displayName String
    The optional single value query filter parameter on the entity display name.
    filters List<Property Map>

    getCloudExadataStorageConnectors Result

    The following output properties are available:

    CloudExadataInfrastructureId string
    CloudExadataStorageConnectorCollections List<GetCloudExadataStorageConnectorsCloudExadataStorageConnectorCollection>
    The list of cloud_exadata_storage_connector_collection.
    CompartmentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    DisplayName string
    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
    Filters List<GetCloudExadataStorageConnectorsFilter>
    CloudExadataInfrastructureId string
    CloudExadataStorageConnectorCollections []GetCloudExadataStorageConnectorsCloudExadataStorageConnectorCollection
    The list of cloud_exadata_storage_connector_collection.
    CompartmentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    DisplayName string
    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
    Filters []GetCloudExadataStorageConnectorsFilter
    cloudExadataInfrastructureId String
    cloudExadataStorageConnectorCollections List<GetCloudExadataStorageConnectorsCloudExadataStorageConnectorCollection>
    The list of cloud_exadata_storage_connector_collection.
    compartmentId String
    id String
    The provider-assigned unique ID for this managed resource.
    displayName String
    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
    filters List<GetCloudExadataStorageConnectorsFilter>
    cloudExadataInfrastructureId string
    cloudExadataStorageConnectorCollections GetCloudExadataStorageConnectorsCloudExadataStorageConnectorCollection[]
    The list of cloud_exadata_storage_connector_collection.
    compartmentId string
    id string
    The provider-assigned unique ID for this managed resource.
    displayName string
    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
    filters GetCloudExadataStorageConnectorsFilter[]
    cloud_exadata_infrastructure_id str
    cloud_exadata_storage_connector_collections Sequence[GetCloudExadataStorageConnectorsCloudExadataStorageConnectorCollection]
    The list of cloud_exadata_storage_connector_collection.
    compartment_id str
    id str
    The provider-assigned unique ID for this managed resource.
    display_name str
    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
    filters Sequence[GetCloudExadataStorageConnectorsFilter]
    cloudExadataInfrastructureId String
    cloudExadataStorageConnectorCollections List<Property Map>
    The list of cloud_exadata_storage_connector_collection.
    compartmentId String
    id String
    The provider-assigned unique ID for this managed resource.
    displayName String
    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
    filters List<Property Map>

    Supporting Types

    GetCloudExadataStorageConnectorsCloudExadataStorageConnectorCollection

    GetCloudExadataStorageConnectorsCloudExadataStorageConnectorCollectionItem

    AdditionalDetails Dictionary<string, string>
    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
    AgentId string
    The OCID of the agent for the Exadata storage server.
    ConnectionUri string
    The unique string of the connection. For example, "https:///MS/RESTService/".
    CredentialInfos List<GetCloudExadataStorageConnectorsCloudExadataStorageConnectorCollectionItemCredentialInfo>
    DefinedTags Dictionary<string, string>
    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
    The optional single value query filter parameter on the entity display name.
    ExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    FreeformTags Dictionary<string, string>
    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 of the Exadata resource.
    InternalId string
    The internal ID of the Exadata resource.
    LifecycleDetails string
    The details of the lifecycle state of the Exadata resource.
    ResourceType string
    The type of Exadata resource.
    State string
    The current lifecycle state of the database resource.
    Status string
    The status of the Exadata resource.
    StorageServerId string
    The OCID of the Exadata storage server.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The timestamp of the creation of the Exadata resource.
    TimeUpdated string
    The timestamp of the last update of the Exadata resource.
    Version string
    The version of the Exadata resource.
    AdditionalDetails map[string]string
    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
    AgentId string
    The OCID of the agent for the Exadata storage server.
    ConnectionUri string
    The unique string of the connection. For example, "https:///MS/RESTService/".
    CredentialInfos []GetCloudExadataStorageConnectorsCloudExadataStorageConnectorCollectionItemCredentialInfo
    DefinedTags map[string]string
    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
    The optional single value query filter parameter on the entity display name.
    ExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    FreeformTags map[string]string
    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 of the Exadata resource.
    InternalId string
    The internal ID of the Exadata resource.
    LifecycleDetails string
    The details of the lifecycle state of the Exadata resource.
    ResourceType string
    The type of Exadata resource.
    State string
    The current lifecycle state of the database resource.
    Status string
    The status of the Exadata resource.
    StorageServerId string
    The OCID of the Exadata storage server.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The timestamp of the creation of the Exadata resource.
    TimeUpdated string
    The timestamp of the last update of the Exadata resource.
    Version string
    The version of the Exadata resource.
    additionalDetails Map<String,String>
    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
    agentId String
    The OCID of the agent for the Exadata storage server.
    connectionUri String
    The unique string of the connection. For example, "https:///MS/RESTService/".
    credentialInfos List<GetCloudExadataStorageConnectorsCloudExadataStorageConnectorCollectionItemCredentialInfo>
    definedTags Map<String,String>
    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
    The optional single value query filter parameter on the entity display name.
    exadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    freeformTags Map<String,String>
    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 of the Exadata resource.
    internalId String
    The internal ID of the Exadata resource.
    lifecycleDetails String
    The details of the lifecycle state of the Exadata resource.
    resourceType String
    The type of Exadata resource.
    state String
    The current lifecycle state of the database resource.
    status String
    The status of the Exadata resource.
    storageServerId String
    The OCID of the Exadata storage server.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The timestamp of the creation of the Exadata resource.
    timeUpdated String
    The timestamp of the last update of the Exadata resource.
    version String
    The version of the Exadata resource.
    additionalDetails {[key: string]: string}
    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
    agentId string
    The OCID of the agent for the Exadata storage server.
    connectionUri string
    The unique string of the connection. For example, "https:///MS/RESTService/".
    credentialInfos GetCloudExadataStorageConnectorsCloudExadataStorageConnectorCollectionItemCredentialInfo[]
    definedTags {[key: string]: string}
    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
    The optional single value query filter parameter on the entity display name.
    exadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    freeformTags {[key: string]: string}
    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 of the Exadata resource.
    internalId string
    The internal ID of the Exadata resource.
    lifecycleDetails string
    The details of the lifecycle state of the Exadata resource.
    resourceType string
    The type of Exadata resource.
    state string
    The current lifecycle state of the database resource.
    status string
    The status of the Exadata resource.
    storageServerId string
    The OCID of the Exadata storage server.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The timestamp of the creation of the Exadata resource.
    timeUpdated string
    The timestamp of the last update of the Exadata resource.
    version string
    The version of the Exadata resource.
    additional_details Mapping[str, str]
    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
    agent_id str
    The OCID of the agent for the Exadata storage server.
    connection_uri str
    The unique string of the connection. For example, "https:///MS/RESTService/".
    credential_infos Sequence[GetCloudExadataStorageConnectorsCloudExadataStorageConnectorCollectionItemCredentialInfo]
    defined_tags Mapping[str, str]
    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
    The optional single value query filter parameter on the entity display name.
    exadata_infrastructure_id str
    The OCID of the Exadata infrastructure.
    freeform_tags Mapping[str, str]
    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 of the Exadata resource.
    internal_id str
    The internal ID of the Exadata resource.
    lifecycle_details str
    The details of the lifecycle state of the Exadata resource.
    resource_type str
    The type of Exadata resource.
    state str
    The current lifecycle state of the database resource.
    status str
    The status of the Exadata resource.
    storage_server_id str
    The OCID of the Exadata storage server.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The timestamp of the creation of the Exadata resource.
    time_updated str
    The timestamp of the last update of the Exadata resource.
    version str
    The version of the Exadata resource.
    additionalDetails Map<String>
    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
    agentId String
    The OCID of the agent for the Exadata storage server.
    connectionUri String
    The unique string of the connection. For example, "https:///MS/RESTService/".
    credentialInfos List<Property Map>
    definedTags Map<String>
    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
    The optional single value query filter parameter on the entity display name.
    exadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    freeformTags Map<String>
    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 of the Exadata resource.
    internalId String
    The internal ID of the Exadata resource.
    lifecycleDetails String
    The details of the lifecycle state of the Exadata resource.
    resourceType String
    The type of Exadata resource.
    state String
    The current lifecycle state of the database resource.
    status String
    The status of the Exadata resource.
    storageServerId String
    The OCID of the Exadata storage server.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The timestamp of the creation of the Exadata resource.
    timeUpdated String
    The timestamp of the last update of the Exadata resource.
    version String
    The version of the Exadata resource.

    GetCloudExadataStorageConnectorsCloudExadataStorageConnectorCollectionItemCredentialInfo

    GetCloudExadataStorageConnectorsFilter

    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

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Viewing docs for Oracle Cloud Infrastructure v4.3.0
    published on Thursday, Mar 19, 2026 by Pulumi
      Try Pulumi Cloud free. Your team will thank you.