1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. ExternalExadataStorageConnector
Oracle Cloud Infrastructure v1.11.0 published on Wednesday, Sep 27, 2023 by Pulumi

oci.DatabaseManagement.ExternalExadataStorageConnector

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.11.0 published on Wednesday, Sep 27, 2023 by Pulumi

    This resource provides the External Exadata Storage Connector resource in Oracle Cloud Infrastructure Database Management service.

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

    Example Usage

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testExternalExadataStorageConnector = new Oci.DatabaseManagement.ExternalExadataStorageConnector("testExternalExadataStorageConnector", new()
        {
            AgentId = oci_cloud_bridge_agent.Test_agent.Id,
            ConnectionUri = @var.External_exadata_storage_connector_connection_uri,
            ConnectorName = @var.External_exadata_storage_connector_connector_name,
            CredentialInfo = new Oci.DatabaseManagement.Inputs.ExternalExadataStorageConnectorCredentialInfoArgs
            {
                Password = @var.External_exadata_storage_connector_credential_info_password,
                Username = @var.External_exadata_storage_connector_credential_info_username,
                SslTrustStoreLocation = @var.External_exadata_storage_connector_credential_info_ssl_trust_store_location,
                SslTrustStorePassword = @var.External_exadata_storage_connector_credential_info_ssl_trust_store_password,
                SslTrustStoreType = @var.External_exadata_storage_connector_credential_info_ssl_trust_store_type,
            },
            StorageServerId = oci_database_management_storage_server.Test_storage_server.Id,
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DatabaseManagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DatabaseManagement.NewExternalExadataStorageConnector(ctx, "testExternalExadataStorageConnector", &DatabaseManagement.ExternalExadataStorageConnectorArgs{
    			AgentId:       pulumi.Any(oci_cloud_bridge_agent.Test_agent.Id),
    			ConnectionUri: pulumi.Any(_var.External_exadata_storage_connector_connection_uri),
    			ConnectorName: pulumi.Any(_var.External_exadata_storage_connector_connector_name),
    			CredentialInfo: &databasemanagement.ExternalExadataStorageConnectorCredentialInfoArgs{
    				Password:              pulumi.Any(_var.External_exadata_storage_connector_credential_info_password),
    				Username:              pulumi.Any(_var.External_exadata_storage_connector_credential_info_username),
    				SslTrustStoreLocation: pulumi.Any(_var.External_exadata_storage_connector_credential_info_ssl_trust_store_location),
    				SslTrustStorePassword: pulumi.Any(_var.External_exadata_storage_connector_credential_info_ssl_trust_store_password),
    				SslTrustStoreType:     pulumi.Any(_var.External_exadata_storage_connector_credential_info_ssl_trust_store_type),
    			},
    			StorageServerId: pulumi.Any(oci_database_management_storage_server.Test_storage_server.Id),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DatabaseManagement.ExternalExadataStorageConnector;
    import com.pulumi.oci.DatabaseManagement.ExternalExadataStorageConnectorArgs;
    import com.pulumi.oci.DatabaseManagement.inputs.ExternalExadataStorageConnectorCredentialInfoArgs;
    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 testExternalExadataStorageConnector = new ExternalExadataStorageConnector("testExternalExadataStorageConnector", ExternalExadataStorageConnectorArgs.builder()        
                .agentId(oci_cloud_bridge_agent.test_agent().id())
                .connectionUri(var_.external_exadata_storage_connector_connection_uri())
                .connectorName(var_.external_exadata_storage_connector_connector_name())
                .credentialInfo(ExternalExadataStorageConnectorCredentialInfoArgs.builder()
                    .password(var_.external_exadata_storage_connector_credential_info_password())
                    .username(var_.external_exadata_storage_connector_credential_info_username())
                    .sslTrustStoreLocation(var_.external_exadata_storage_connector_credential_info_ssl_trust_store_location())
                    .sslTrustStorePassword(var_.external_exadata_storage_connector_credential_info_ssl_trust_store_password())
                    .sslTrustStoreType(var_.external_exadata_storage_connector_credential_info_ssl_trust_store_type())
                    .build())
                .storageServerId(oci_database_management_storage_server.test_storage_server().id())
                .build());
    
        }
    }
    
    import pulumi
    import pulumi_oci as oci
    
    test_external_exadata_storage_connector = oci.database_management.ExternalExadataStorageConnector("testExternalExadataStorageConnector",
        agent_id=oci_cloud_bridge_agent["test_agent"]["id"],
        connection_uri=var["external_exadata_storage_connector_connection_uri"],
        connector_name=var["external_exadata_storage_connector_connector_name"],
        credential_info=oci.database_management.ExternalExadataStorageConnectorCredentialInfoArgs(
            password=var["external_exadata_storage_connector_credential_info_password"],
            username=var["external_exadata_storage_connector_credential_info_username"],
            ssl_trust_store_location=var["external_exadata_storage_connector_credential_info_ssl_trust_store_location"],
            ssl_trust_store_password=var["external_exadata_storage_connector_credential_info_ssl_trust_store_password"],
            ssl_trust_store_type=var["external_exadata_storage_connector_credential_info_ssl_trust_store_type"],
        ),
        storage_server_id=oci_database_management_storage_server["test_storage_server"]["id"])
    
    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testExternalExadataStorageConnector = new oci.databasemanagement.ExternalExadataStorageConnector("testExternalExadataStorageConnector", {
        agentId: oci_cloud_bridge_agent.test_agent.id,
        connectionUri: _var.external_exadata_storage_connector_connection_uri,
        connectorName: _var.external_exadata_storage_connector_connector_name,
        credentialInfo: {
            password: _var.external_exadata_storage_connector_credential_info_password,
            username: _var.external_exadata_storage_connector_credential_info_username,
            sslTrustStoreLocation: _var.external_exadata_storage_connector_credential_info_ssl_trust_store_location,
            sslTrustStorePassword: _var.external_exadata_storage_connector_credential_info_ssl_trust_store_password,
            sslTrustStoreType: _var.external_exadata_storage_connector_credential_info_ssl_trust_store_type,
        },
        storageServerId: oci_database_management_storage_server.test_storage_server.id,
    });
    
    resources:
      testExternalExadataStorageConnector:
        type: oci:DatabaseManagement:ExternalExadataStorageConnector
        properties:
          #Required
          agentId: ${oci_cloud_bridge_agent.test_agent.id}
          connectionUri: ${var.external_exadata_storage_connector_connection_uri}
          connectorName: ${var.external_exadata_storage_connector_connector_name}
          credentialInfo:
            password: ${var.external_exadata_storage_connector_credential_info_password}
            username: ${var.external_exadata_storage_connector_credential_info_username}
            sslTrustStoreLocation: ${var.external_exadata_storage_connector_credential_info_ssl_trust_store_location}
            sslTrustStorePassword: ${var.external_exadata_storage_connector_credential_info_ssl_trust_store_password}
            sslTrustStoreType: ${var.external_exadata_storage_connector_credential_info_ssl_trust_store_type}
          storageServerId: ${oci_database_management_storage_server.test_storage_server.id}
    

    Create ExternalExadataStorageConnector Resource

    new ExternalExadataStorageConnector(name: string, args: ExternalExadataStorageConnectorArgs, opts?: CustomResourceOptions);
    @overload
    def ExternalExadataStorageConnector(resource_name: str,
                                        opts: Optional[ResourceOptions] = None,
                                        agent_id: Optional[str] = None,
                                        connection_uri: Optional[str] = None,
                                        connector_name: Optional[str] = None,
                                        credential_info: Optional[_databasemanagement.ExternalExadataStorageConnectorCredentialInfoArgs] = None,
                                        storage_server_id: Optional[str] = None)
    @overload
    def ExternalExadataStorageConnector(resource_name: str,
                                        args: ExternalExadataStorageConnectorArgs,
                                        opts: Optional[ResourceOptions] = None)
    func NewExternalExadataStorageConnector(ctx *Context, name string, args ExternalExadataStorageConnectorArgs, opts ...ResourceOption) (*ExternalExadataStorageConnector, error)
    public ExternalExadataStorageConnector(string name, ExternalExadataStorageConnectorArgs args, CustomResourceOptions? opts = null)
    public ExternalExadataStorageConnector(String name, ExternalExadataStorageConnectorArgs args)
    public ExternalExadataStorageConnector(String name, ExternalExadataStorageConnectorArgs args, CustomResourceOptions options)
    
    type: oci:DatabaseManagement:ExternalExadataStorageConnector
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ExternalExadataStorageConnectorArgs
    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 ExternalExadataStorageConnectorArgs
    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 ExternalExadataStorageConnectorArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ExternalExadataStorageConnectorArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ExternalExadataStorageConnectorArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    ExternalExadataStorageConnector Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ExternalExadataStorageConnector 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/".

    ConnectorName string

    (Updatable) The name of the Exadata storage server connector.

    CredentialInfo ExternalExadataStorageConnectorCredentialInfo

    (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

    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/".

    ConnectorName string

    (Updatable) The name of the Exadata storage server connector.

    CredentialInfo ExternalExadataStorageConnectorCredentialInfoArgs

    (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

    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/".

    connectorName String

    (Updatable) The name of the Exadata storage server connector.

    credentialInfo ExternalExadataStorageConnectorCredentialInfo

    (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

    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/".

    connectorName string

    (Updatable) The name of the Exadata storage server connector.

    credentialInfo ExternalExadataStorageConnectorCredentialInfo

    (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

    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/".

    connector_name str

    (Updatable) The name of the Exadata storage server connector.

    credential_info ExternalExadataStorageConnectorCredentialInfoArgs

    (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

    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/".

    connectorName String

    (Updatable) The name of the Exadata storage server connector.

    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

    Outputs

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

    AdditionalDetails Dictionary<string, object>

    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}

    DisplayName string

    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.

    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.

    State string

    The current lifecycle state of the database resource.

    Status string

    The status of the Exadata resource.

    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]interface{}

    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}

    DisplayName string

    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.

    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.

    State string

    The current lifecycle state of the database resource.

    Status string

    The status of the Exadata resource.

    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,Object>

    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}

    displayName String

    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.

    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.

    state String

    The current lifecycle state of the database resource.

    status String

    The status of the Exadata resource.

    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]: any}

    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}

    displayName string

    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.

    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.

    state string

    The current lifecycle state of the database resource.

    status string

    The status of the Exadata resource.

    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, Any]

    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}

    display_name str

    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.

    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.

    state str

    The current lifecycle state of the database resource.

    status str

    The status of the Exadata resource.

    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<Any>

    The additional details of the resource defined in {"key": "value"} format. Example: {"bar-key": "value"}

    displayName String

    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.

    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.

    state String

    The current lifecycle state of the database resource.

    status String

    The status of the Exadata resource.

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

    Get an existing ExternalExadataStorageConnector 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?: ExternalExadataStorageConnectorState, opts?: CustomResourceOptions): ExternalExadataStorageConnector
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            additional_details: Optional[Mapping[str, Any]] = None,
            agent_id: Optional[str] = None,
            connection_uri: Optional[str] = None,
            connector_name: Optional[str] = None,
            credential_info: Optional[_databasemanagement.ExternalExadataStorageConnectorCredentialInfoArgs] = None,
            display_name: Optional[str] = None,
            exadata_infrastructure_id: Optional[str] = None,
            internal_id: Optional[str] = None,
            lifecycle_details: Optional[str] = None,
            state: Optional[str] = None,
            status: Optional[str] = None,
            storage_server_id: Optional[str] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None,
            version: Optional[str] = None) -> ExternalExadataStorageConnector
    func GetExternalExadataStorageConnector(ctx *Context, name string, id IDInput, state *ExternalExadataStorageConnectorState, opts ...ResourceOption) (*ExternalExadataStorageConnector, error)
    public static ExternalExadataStorageConnector Get(string name, Input<string> id, ExternalExadataStorageConnectorState? state, CustomResourceOptions? opts = null)
    public static ExternalExadataStorageConnector get(String name, Output<String> id, ExternalExadataStorageConnectorState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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, object>

    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/".

    ConnectorName string

    (Updatable) The name of the Exadata storage server connector.

    CredentialInfo ExternalExadataStorageConnectorCredentialInfo

    (Updatable) The user credential information.

    DisplayName string

    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.

    ExadataInfrastructureId string

    The OCID of the Exadata infrastructure.

    InternalId string

    The internal ID of the Exadata resource.

    LifecycleDetails string

    The details of the lifecycle state of the 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

    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]interface{}

    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/".

    ConnectorName string

    (Updatable) The name of the Exadata storage server connector.

    CredentialInfo ExternalExadataStorageConnectorCredentialInfoArgs

    (Updatable) The user credential information.

    DisplayName string

    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.

    ExadataInfrastructureId string

    The OCID of the Exadata infrastructure.

    InternalId string

    The internal ID of the Exadata resource.

    LifecycleDetails string

    The details of the lifecycle state of the 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

    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,Object>

    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/".

    connectorName String

    (Updatable) The name of the Exadata storage server connector.

    credentialInfo ExternalExadataStorageConnectorCredentialInfo

    (Updatable) The user credential information.

    displayName String

    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.

    exadataInfrastructureId String

    The OCID of the Exadata infrastructure.

    internalId String

    The internal ID of the Exadata resource.

    lifecycleDetails String

    The details of the lifecycle state of the 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

    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]: any}

    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/".

    connectorName string

    (Updatable) The name of the Exadata storage server connector.

    credentialInfo ExternalExadataStorageConnectorCredentialInfo

    (Updatable) The user credential information.

    displayName string

    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.

    exadataInfrastructureId string

    The OCID of the Exadata infrastructure.

    internalId string

    The internal ID of the Exadata resource.

    lifecycleDetails string

    The details of the lifecycle state of the 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

    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, Any]

    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/".

    connector_name str

    (Updatable) The name of the Exadata storage server connector.

    credential_info ExternalExadataStorageConnectorCredentialInfoArgs

    (Updatable) The user credential information.

    display_name str

    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.

    exadata_infrastructure_id str

    The OCID of the Exadata infrastructure.

    internal_id str

    The internal ID of the Exadata resource.

    lifecycle_details str

    The details of the lifecycle state of the 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

    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<Any>

    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/".

    connectorName String

    (Updatable) The name of the Exadata storage server connector.

    credentialInfo Property Map

    (Updatable) The user credential information.

    displayName String

    The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.

    exadataInfrastructureId String

    The OCID of the Exadata infrastructure.

    internalId String

    The internal ID of the Exadata resource.

    lifecycleDetails String

    The details of the lifecycle state of the 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

    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

    ExternalExadataStorageConnectorCredentialInfo, ExternalExadataStorageConnectorCredentialInfoArgs

    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

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

     $ pulumi import oci:DatabaseManagement/externalExadataStorageConnector:ExternalExadataStorageConnector test_external_exadata_storage_connector "id"
    

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the oci Terraform Provider.

    oci logo
    Oracle Cloud Infrastructure v1.11.0 published on Wednesday, Sep 27, 2023 by Pulumi