1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. CloudExadataStorageConnector
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 resource provides the Cloud Exadata Storage Connector resource in Oracle Cloud Infrastructure Database Management service.

    Creates the Exadata storage server connector after validating the connection information.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCloudExadataStorageConnector = new oci.databasemanagement.CloudExadataStorageConnector("test_cloud_exadata_storage_connector", {
        agentId: testAgent.id,
        connectionUri: cloudExadataStorageConnectorConnectionUri,
        credentialInfo: {
            password: cloudExadataStorageConnectorCredentialInfoPassword,
            username: cloudExadataStorageConnectorCredentialInfoUsername,
            sslTrustStoreLocation: cloudExadataStorageConnectorCredentialInfoSslTrustStoreLocation,
            sslTrustStorePassword: cloudExadataStorageConnectorCredentialInfoSslTrustStorePassword,
            sslTrustStoreType: cloudExadataStorageConnectorCredentialInfoSslTrustStoreType,
        },
        storageServerId: testStorageServer.id,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        displayName: cloudExadataStorageConnectorDisplayName,
        freeformTags: {
            Department: "Finance",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_cloud_exadata_storage_connector = oci.databasemanagement.CloudExadataStorageConnector("test_cloud_exadata_storage_connector",
        agent_id=test_agent["id"],
        connection_uri=cloud_exadata_storage_connector_connection_uri,
        credential_info={
            "password": cloud_exadata_storage_connector_credential_info_password,
            "username": cloud_exadata_storage_connector_credential_info_username,
            "ssl_trust_store_location": cloud_exadata_storage_connector_credential_info_ssl_trust_store_location,
            "ssl_trust_store_password": cloud_exadata_storage_connector_credential_info_ssl_trust_store_password,
            "ssl_trust_store_type": cloud_exadata_storage_connector_credential_info_ssl_trust_store_type,
        },
        storage_server_id=test_storage_server["id"],
        defined_tags={
            "Operations.CostCenter": "42",
        },
        display_name=cloud_exadata_storage_connector_display_name,
        freeform_tags={
            "Department": "Finance",
        })
    
    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.NewCloudExadataStorageConnector(ctx, "test_cloud_exadata_storage_connector", &databasemanagement.CloudExadataStorageConnectorArgs{
    			AgentId:       pulumi.Any(testAgent.Id),
    			ConnectionUri: pulumi.Any(cloudExadataStorageConnectorConnectionUri),
    			CredentialInfo: &databasemanagement.CloudExadataStorageConnectorCredentialInfoArgs{
    				Password:              pulumi.Any(cloudExadataStorageConnectorCredentialInfoPassword),
    				Username:              pulumi.Any(cloudExadataStorageConnectorCredentialInfoUsername),
    				SslTrustStoreLocation: pulumi.Any(cloudExadataStorageConnectorCredentialInfoSslTrustStoreLocation),
    				SslTrustStorePassword: pulumi.Any(cloudExadataStorageConnectorCredentialInfoSslTrustStorePassword),
    				SslTrustStoreType:     pulumi.Any(cloudExadataStorageConnectorCredentialInfoSslTrustStoreType),
    			},
    			StorageServerId: pulumi.Any(testStorageServer.Id),
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			DisplayName: pulumi.Any(cloudExadataStorageConnectorDisplayName),
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    		})
    		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 testCloudExadataStorageConnector = new Oci.DatabaseManagement.CloudExadataStorageConnector("test_cloud_exadata_storage_connector", new()
        {
            AgentId = testAgent.Id,
            ConnectionUri = cloudExadataStorageConnectorConnectionUri,
            CredentialInfo = new Oci.DatabaseManagement.Inputs.CloudExadataStorageConnectorCredentialInfoArgs
            {
                Password = cloudExadataStorageConnectorCredentialInfoPassword,
                Username = cloudExadataStorageConnectorCredentialInfoUsername,
                SslTrustStoreLocation = cloudExadataStorageConnectorCredentialInfoSslTrustStoreLocation,
                SslTrustStorePassword = cloudExadataStorageConnectorCredentialInfoSslTrustStorePassword,
                SslTrustStoreType = cloudExadataStorageConnectorCredentialInfoSslTrustStoreType,
            },
            StorageServerId = testStorageServer.Id,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            DisplayName = cloudExadataStorageConnectorDisplayName,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DatabaseManagement.CloudExadataStorageConnector;
    import com.pulumi.oci.DatabaseManagement.CloudExadataStorageConnectorArgs;
    import com.pulumi.oci.DatabaseManagement.inputs.CloudExadataStorageConnectorCredentialInfoArgs;
    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 testCloudExadataStorageConnector = new CloudExadataStorageConnector("testCloudExadataStorageConnector", CloudExadataStorageConnectorArgs.builder()
                .agentId(testAgent.id())
                .connectionUri(cloudExadataStorageConnectorConnectionUri)
                .credentialInfo(CloudExadataStorageConnectorCredentialInfoArgs.builder()
                    .password(cloudExadataStorageConnectorCredentialInfoPassword)
                    .username(cloudExadataStorageConnectorCredentialInfoUsername)
                    .sslTrustStoreLocation(cloudExadataStorageConnectorCredentialInfoSslTrustStoreLocation)
                    .sslTrustStorePassword(cloudExadataStorageConnectorCredentialInfoSslTrustStorePassword)
                    .sslTrustStoreType(cloudExadataStorageConnectorCredentialInfoSslTrustStoreType)
                    .build())
                .storageServerId(testStorageServer.id())
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .displayName(cloudExadataStorageConnectorDisplayName)
                .freeformTags(Map.of("Department", "Finance"))
                .build());
    
        }
    }
    
    resources:
      testCloudExadataStorageConnector:
        type: oci:DatabaseManagement:CloudExadataStorageConnector
        name: test_cloud_exadata_storage_connector
        properties:
          agentId: ${testAgent.id}
          connectionUri: ${cloudExadataStorageConnectorConnectionUri}
          credentialInfo:
            password: ${cloudExadataStorageConnectorCredentialInfoPassword}
            username: ${cloudExadataStorageConnectorCredentialInfoUsername}
            sslTrustStoreLocation: ${cloudExadataStorageConnectorCredentialInfoSslTrustStoreLocation}
            sslTrustStorePassword: ${cloudExadataStorageConnectorCredentialInfoSslTrustStorePassword}
            sslTrustStoreType: ${cloudExadataStorageConnectorCredentialInfoSslTrustStoreType}
          storageServerId: ${testStorageServer.id}
          definedTags:
            Operations.CostCenter: '42'
          displayName: ${cloudExadataStorageConnectorDisplayName}
          freeformTags:
            Department: Finance
    

    Create CloudExadataStorageConnector Resource

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

    Constructor syntax

    new CloudExadataStorageConnector(name: string, args: CloudExadataStorageConnectorArgs, opts?: CustomResourceOptions);
    @overload
    def CloudExadataStorageConnector(resource_name: str,
                                     args: CloudExadataStorageConnectorArgs,
                                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def CloudExadataStorageConnector(resource_name: str,
                                     opts: Optional[ResourceOptions] = None,
                                     agent_id: Optional[str] = None,
                                     connection_uri: Optional[str] = None,
                                     credential_info: Optional[CloudExadataStorageConnectorCredentialInfoArgs] = None,
                                     storage_server_id: Optional[str] = None,
                                     defined_tags: Optional[Mapping[str, str]] = None,
                                     display_name: Optional[str] = None,
                                     freeform_tags: Optional[Mapping[str, str]] = None)
    func NewCloudExadataStorageConnector(ctx *Context, name string, args CloudExadataStorageConnectorArgs, opts ...ResourceOption) (*CloudExadataStorageConnector, error)
    public CloudExadataStorageConnector(string name, CloudExadataStorageConnectorArgs args, CustomResourceOptions? opts = null)
    public CloudExadataStorageConnector(String name, CloudExadataStorageConnectorArgs args)
    public CloudExadataStorageConnector(String name, CloudExadataStorageConnectorArgs args, CustomResourceOptions options)
    
    type: oci:DatabaseManagement:CloudExadataStorageConnector
    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 CloudExadataStorageConnectorArgs
    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 CloudExadataStorageConnectorArgs
    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 CloudExadataStorageConnectorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args CloudExadataStorageConnectorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args CloudExadataStorageConnectorArgs
    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 cloudExadataStorageConnectorResource = new Oci.DatabaseManagement.CloudExadataStorageConnector("cloudExadataStorageConnectorResource", new()
    {
        AgentId = "string",
        ConnectionUri = "string",
        CredentialInfo = new Oci.DatabaseManagement.Inputs.CloudExadataStorageConnectorCredentialInfoArgs
        {
            Password = "string",
            Username = "string",
            SslTrustStoreLocation = "string",
            SslTrustStorePassword = "string",
            SslTrustStoreType = "string",
        },
        StorageServerId = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "string" },
        },
    });
    
    example, err := databasemanagement.NewCloudExadataStorageConnector(ctx, "cloudExadataStorageConnectorResource", &databasemanagement.CloudExadataStorageConnectorArgs{
    	AgentId:       pulumi.String("string"),
    	ConnectionUri: pulumi.String("string"),
    	CredentialInfo: &databasemanagement.CloudExadataStorageConnectorCredentialInfoArgs{
    		Password:              pulumi.String("string"),
    		Username:              pulumi.String("string"),
    		SslTrustStoreLocation: pulumi.String("string"),
    		SslTrustStorePassword: pulumi.String("string"),
    		SslTrustStoreType:     pulumi.String("string"),
    	},
    	StorageServerId: pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	DisplayName: pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    })
    
    var cloudExadataStorageConnectorResource = new CloudExadataStorageConnector("cloudExadataStorageConnectorResource", CloudExadataStorageConnectorArgs.builder()
        .agentId("string")
        .connectionUri("string")
        .credentialInfo(CloudExadataStorageConnectorCredentialInfoArgs.builder()
            .password("string")
            .username("string")
            .sslTrustStoreLocation("string")
            .sslTrustStorePassword("string")
            .sslTrustStoreType("string")
            .build())
        .storageServerId("string")
        .definedTags(Map.of("string", "string"))
        .displayName("string")
        .freeformTags(Map.of("string", "string"))
        .build());
    
    cloud_exadata_storage_connector_resource = oci.databasemanagement.CloudExadataStorageConnector("cloudExadataStorageConnectorResource",
        agent_id="string",
        connection_uri="string",
        credential_info={
            "password": "string",
            "username": "string",
            "ssl_trust_store_location": "string",
            "ssl_trust_store_password": "string",
            "ssl_trust_store_type": "string",
        },
        storage_server_id="string",
        defined_tags={
            "string": "string",
        },
        display_name="string",
        freeform_tags={
            "string": "string",
        })
    
    const cloudExadataStorageConnectorResource = new oci.databasemanagement.CloudExadataStorageConnector("cloudExadataStorageConnectorResource", {
        agentId: "string",
        connectionUri: "string",
        credentialInfo: {
            password: "string",
            username: "string",
            sslTrustStoreLocation: "string",
            sslTrustStorePassword: "string",
            sslTrustStoreType: "string",
        },
        storageServerId: "string",
        definedTags: {
            string: "string",
        },
        displayName: "string",
        freeformTags: {
            string: "string",
        },
    });
    
    type: oci:DatabaseManagement:CloudExadataStorageConnector
    properties:
        agentId: string
        connectionUri: string
        credentialInfo:
            password: string
            sslTrustStoreLocation: string
            sslTrustStorePassword: string
            sslTrustStoreType: string
            username: string
        definedTags:
            string: string
        displayName: string
        freeformTags:
            string: string
        storageServerId: string
    

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

    AgentId string
    The OCID of the agent for the Exadata storage server.
    ConnectionUri string
    (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
    CredentialInfo CloudExadataStorageConnectorCredentialInfo
    (Updatable) The user credential information.
    StorageServerId string

    The OCID of the Exadata storage server.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    DefinedTags Dictionary<string, string>
    (Updatable) 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
    (Updatable) The name of the Exadata storage server connector.
    FreeformTags Dictionary<string, string>
    (Updatable) 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"}
    AgentId string
    The OCID of the agent for the Exadata storage server.
    ConnectionUri string
    (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
    CredentialInfo CloudExadataStorageConnectorCredentialInfoArgs
    (Updatable) The user credential information.
    StorageServerId string

    The OCID of the Exadata storage server.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    DefinedTags map[string]string
    (Updatable) 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
    (Updatable) The name of the Exadata storage server connector.
    FreeformTags map[string]string
    (Updatable) 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"}
    agentId String
    The OCID of the agent for the Exadata storage server.
    connectionUri String
    (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
    credentialInfo CloudExadataStorageConnectorCredentialInfo
    (Updatable) The user credential information.
    storageServerId String

    The OCID of the Exadata storage server.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags Map<String,String>
    (Updatable) 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
    (Updatable) The name of the Exadata storage server connector.
    freeformTags Map<String,String>
    (Updatable) 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"}
    agentId string
    The OCID of the agent for the Exadata storage server.
    connectionUri string
    (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
    credentialInfo CloudExadataStorageConnectorCredentialInfo
    (Updatable) The user credential information.
    storageServerId string

    The OCID of the Exadata storage server.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags {[key: string]: string}
    (Updatable) 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
    (Updatable) The name of the Exadata storage server connector.
    freeformTags {[key: string]: string}
    (Updatable) 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"}
    agent_id str
    The OCID of the agent for the Exadata storage server.
    connection_uri str
    (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
    credential_info CloudExadataStorageConnectorCredentialInfoArgs
    (Updatable) The user credential information.
    storage_server_id str

    The OCID of the Exadata storage server.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    defined_tags Mapping[str, str]
    (Updatable) 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
    (Updatable) The name of the Exadata storage server connector.
    freeform_tags Mapping[str, str]
    (Updatable) 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"}
    agentId String
    The OCID of the agent for the Exadata storage server.
    connectionUri String
    (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
    credentialInfo Property Map
    (Updatable) The user credential information.
    storageServerId String

    The OCID of the Exadata storage server.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags Map<String>
    (Updatable) 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
    (Updatable) The name of the Exadata storage server connector.
    freeformTags Map<String>
    (Updatable) 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"}

    Outputs

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

    AdditionalDetails Dictionary<string, string>
    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}
    ExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    Id string
    The provider-assigned unique ID for this managed 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.
    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"}
    ExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    Id string
    The provider-assigned unique ID for this managed 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.
    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"}
    exadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    id String
    The provider-assigned unique ID for this managed 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.
    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"}
    exadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    id string
    The provider-assigned unique ID for this managed 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.
    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"}
    exadata_infrastructure_id str
    The OCID of the Exadata infrastructure.
    id str
    The provider-assigned unique ID for this managed 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.
    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"}
    exadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    id String
    The provider-assigned unique ID for this managed 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.
    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.

    Look up Existing CloudExadataStorageConnector Resource

    Get an existing CloudExadataStorageConnector 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?: CloudExadataStorageConnectorState, opts?: CustomResourceOptions): CloudExadataStorageConnector
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            additional_details: Optional[Mapping[str, str]] = None,
            agent_id: Optional[str] = None,
            connection_uri: Optional[str] = None,
            credential_info: Optional[CloudExadataStorageConnectorCredentialInfoArgs] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            display_name: Optional[str] = None,
            exadata_infrastructure_id: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            internal_id: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            resource_type: Optional[str] = None,
            state: Optional[str] = None,
            status: Optional[str] = None,
            storage_server_id: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None,
            version: Optional[str] = None) -> CloudExadataStorageConnector
    func GetCloudExadataStorageConnector(ctx *Context, name string, id IDInput, state *CloudExadataStorageConnectorState, opts ...ResourceOption) (*CloudExadataStorageConnector, error)
    public static CloudExadataStorageConnector Get(string name, Input<string> id, CloudExadataStorageConnectorState? state, CustomResourceOptions? opts = null)
    public static CloudExadataStorageConnector get(String name, Output<String> id, CloudExadataStorageConnectorState state, CustomResourceOptions options)
    resources:  _:    type: oci:DatabaseManagement:CloudExadataStorageConnector    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:
    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
    (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
    CredentialInfo CloudExadataStorageConnectorCredentialInfo
    (Updatable) The user credential information.
    DefinedTags Dictionary<string, string>
    (Updatable) 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
    (Updatable) The name of the Exadata storage server connector.
    ExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    FreeformTags Dictionary<string, string>
    (Updatable) 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"}
    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.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    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
    (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
    CredentialInfo CloudExadataStorageConnectorCredentialInfoArgs
    (Updatable) The user credential information.
    DefinedTags map[string]string
    (Updatable) 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
    (Updatable) The name of the Exadata storage server connector.
    ExadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    FreeformTags map[string]string
    (Updatable) 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"}
    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.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    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
    (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
    credentialInfo CloudExadataStorageConnectorCredentialInfo
    (Updatable) The user credential information.
    definedTags Map<String,String>
    (Updatable) 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
    (Updatable) The name of the Exadata storage server connector.
    exadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    freeformTags Map<String,String>
    (Updatable) 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"}
    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.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    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
    (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
    credentialInfo CloudExadataStorageConnectorCredentialInfo
    (Updatable) The user credential information.
    definedTags {[key: string]: string}
    (Updatable) 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
    (Updatable) The name of the Exadata storage server connector.
    exadataInfrastructureId string
    The OCID of the Exadata infrastructure.
    freeformTags {[key: string]: string}
    (Updatable) 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"}
    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.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    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
    (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
    credential_info CloudExadataStorageConnectorCredentialInfoArgs
    (Updatable) The user credential information.
    defined_tags Mapping[str, str]
    (Updatable) 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
    (Updatable) The name of the Exadata storage server connector.
    exadata_infrastructure_id str
    The OCID of the Exadata infrastructure.
    freeform_tags Mapping[str, str]
    (Updatable) 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"}
    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.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    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
    (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
    credentialInfo Property Map
    (Updatable) The user credential information.
    definedTags Map<String>
    (Updatable) 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
    (Updatable) The name of the Exadata storage server connector.
    exadataInfrastructureId String
    The OCID of the Exadata infrastructure.
    freeformTags Map<String>
    (Updatable) 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"}
    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.

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    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.

    Supporting Types

    CloudExadataStorageConnectorCredentialInfo, CloudExadataStorageConnectorCredentialInfoArgs

    Password string
    (Updatable) The password of the user.
    Username string
    (Updatable) The name of the user.
    SslTrustStoreLocation string
    (Updatable) The full path of the SSL truststore location in the agent.
    SslTrustStorePassword string
    (Updatable) The password of the SSL truststore location in the agent.
    SslTrustStoreType string
    (Updatable) The SSL truststore type.
    Password string
    (Updatable) The password of the user.
    Username string
    (Updatable) The name of the user.
    SslTrustStoreLocation string
    (Updatable) The full path of the SSL truststore location in the agent.
    SslTrustStorePassword string
    (Updatable) The password of the SSL truststore location in the agent.
    SslTrustStoreType string
    (Updatable) The SSL truststore type.
    password String
    (Updatable) The password of the user.
    username String
    (Updatable) The name of the user.
    sslTrustStoreLocation String
    (Updatable) The full path of the SSL truststore location in the agent.
    sslTrustStorePassword String
    (Updatable) The password of the SSL truststore location in the agent.
    sslTrustStoreType String
    (Updatable) The SSL truststore type.
    password string
    (Updatable) The password of the user.
    username string
    (Updatable) The name of the user.
    sslTrustStoreLocation string
    (Updatable) The full path of the SSL truststore location in the agent.
    sslTrustStorePassword string
    (Updatable) The password of the SSL truststore location in the agent.
    sslTrustStoreType string
    (Updatable) The SSL truststore type.
    password str
    (Updatable) The password of the user.
    username str
    (Updatable) The name of the user.
    ssl_trust_store_location str
    (Updatable) The full path of the SSL truststore location in the agent.
    ssl_trust_store_password str
    (Updatable) The password of the SSL truststore location in the agent.
    ssl_trust_store_type str
    (Updatable) The SSL truststore type.
    password String
    (Updatable) The password of the user.
    username String
    (Updatable) The name of the user.
    sslTrustStoreLocation String
    (Updatable) The full path of the SSL truststore location in the agent.
    sslTrustStorePassword String
    (Updatable) The password of the SSL truststore location in the agent.
    sslTrustStoreType String
    (Updatable) The SSL truststore type.

    Import

    CloudExadataStorageConnectors can be imported using the id, e.g.

    $ pulumi import oci:DatabaseManagement/cloudExadataStorageConnector:CloudExadataStorageConnector test_cloud_exadata_storage_connector "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    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.