oci.DatabaseManagement.ExternalExadataStorageConnector
Explore with Pulumi AI
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
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testExternalExadataStorageConnector = new oci.databasemanagement.ExternalExadataStorageConnector("test_external_exadata_storage_connector", {
agentId: testAgent.id,
connectionUri: externalExadataStorageConnectorConnectionUri,
connectorName: externalExadataStorageConnectorConnectorName,
credentialInfo: {
password: externalExadataStorageConnectorCredentialInfoPassword,
username: externalExadataStorageConnectorCredentialInfoUsername,
sslTrustStoreLocation: externalExadataStorageConnectorCredentialInfoSslTrustStoreLocation,
sslTrustStorePassword: externalExadataStorageConnectorCredentialInfoSslTrustStorePassword,
sslTrustStoreType: externalExadataStorageConnectorCredentialInfoSslTrustStoreType,
},
storageServerId: testStorageServer.id,
definedTags: {
"Operations.CostCenter": "42",
},
freeformTags: {
Department: "Finance",
},
});
import pulumi
import pulumi_oci as oci
test_external_exadata_storage_connector = oci.database_management.ExternalExadataStorageConnector("test_external_exadata_storage_connector",
agent_id=test_agent["id"],
connection_uri=external_exadata_storage_connector_connection_uri,
connector_name=external_exadata_storage_connector_connector_name,
credential_info=oci.database_management.ExternalExadataStorageConnectorCredentialInfoArgs(
password=external_exadata_storage_connector_credential_info_password,
username=external_exadata_storage_connector_credential_info_username,
ssl_trust_store_location=external_exadata_storage_connector_credential_info_ssl_trust_store_location,
ssl_trust_store_password=external_exadata_storage_connector_credential_info_ssl_trust_store_password,
ssl_trust_store_type=external_exadata_storage_connector_credential_info_ssl_trust_store_type,
),
storage_server_id=test_storage_server["id"],
defined_tags={
"Operations.CostCenter": "42",
},
freeform_tags={
"Department": "Finance",
})
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, "test_external_exadata_storage_connector", &DatabaseManagement.ExternalExadataStorageConnectorArgs{
AgentId: pulumi.Any(testAgent.Id),
ConnectionUri: pulumi.Any(externalExadataStorageConnectorConnectionUri),
ConnectorName: pulumi.Any(externalExadataStorageConnectorConnectorName),
CredentialInfo: &databasemanagement.ExternalExadataStorageConnectorCredentialInfoArgs{
Password: pulumi.Any(externalExadataStorageConnectorCredentialInfoPassword),
Username: pulumi.Any(externalExadataStorageConnectorCredentialInfoUsername),
SslTrustStoreLocation: pulumi.Any(externalExadataStorageConnectorCredentialInfoSslTrustStoreLocation),
SslTrustStorePassword: pulumi.Any(externalExadataStorageConnectorCredentialInfoSslTrustStorePassword),
SslTrustStoreType: pulumi.Any(externalExadataStorageConnectorCredentialInfoSslTrustStoreType),
},
StorageServerId: pulumi.Any(testStorageServer.Id),
DefinedTags: pulumi.Map{
"Operations.CostCenter": pulumi.Any("42"),
},
FreeformTags: pulumi.Map{
"Department": pulumi.Any("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 testExternalExadataStorageConnector = new Oci.DatabaseManagement.ExternalExadataStorageConnector("test_external_exadata_storage_connector", new()
{
AgentId = testAgent.Id,
ConnectionUri = externalExadataStorageConnectorConnectionUri,
ConnectorName = externalExadataStorageConnectorConnectorName,
CredentialInfo = new Oci.DatabaseManagement.Inputs.ExternalExadataStorageConnectorCredentialInfoArgs
{
Password = externalExadataStorageConnectorCredentialInfoPassword,
Username = externalExadataStorageConnectorCredentialInfoUsername,
SslTrustStoreLocation = externalExadataStorageConnectorCredentialInfoSslTrustStoreLocation,
SslTrustStorePassword = externalExadataStorageConnectorCredentialInfoSslTrustStorePassword,
SslTrustStoreType = externalExadataStorageConnectorCredentialInfoSslTrustStoreType,
},
StorageServerId = testStorageServer.Id,
DefinedTags =
{
{ "Operations.CostCenter", "42" },
},
FreeformTags =
{
{ "Department", "Finance" },
},
});
});
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(testAgent.id())
.connectionUri(externalExadataStorageConnectorConnectionUri)
.connectorName(externalExadataStorageConnectorConnectorName)
.credentialInfo(ExternalExadataStorageConnectorCredentialInfoArgs.builder()
.password(externalExadataStorageConnectorCredentialInfoPassword)
.username(externalExadataStorageConnectorCredentialInfoUsername)
.sslTrustStoreLocation(externalExadataStorageConnectorCredentialInfoSslTrustStoreLocation)
.sslTrustStorePassword(externalExadataStorageConnectorCredentialInfoSslTrustStorePassword)
.sslTrustStoreType(externalExadataStorageConnectorCredentialInfoSslTrustStoreType)
.build())
.storageServerId(testStorageServer.id())
.definedTags(Map.of("Operations.CostCenter", "42"))
.freeformTags(Map.of("Department", "Finance"))
.build());
}
}
resources:
testExternalExadataStorageConnector:
type: oci:DatabaseManagement:ExternalExadataStorageConnector
name: test_external_exadata_storage_connector
properties:
agentId: ${testAgent.id}
connectionUri: ${externalExadataStorageConnectorConnectionUri}
connectorName: ${externalExadataStorageConnectorConnectorName}
credentialInfo:
password: ${externalExadataStorageConnectorCredentialInfoPassword}
username: ${externalExadataStorageConnectorCredentialInfoUsername}
sslTrustStoreLocation: ${externalExadataStorageConnectorCredentialInfoSslTrustStoreLocation}
sslTrustStorePassword: ${externalExadataStorageConnectorCredentialInfoSslTrustStorePassword}
sslTrustStoreType: ${externalExadataStorageConnectorCredentialInfoSslTrustStoreType}
storageServerId: ${testStorageServer.id}
definedTags:
Operations.CostCenter: '42'
freeformTags:
Department: Finance
Create ExternalExadataStorageConnector Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ExternalExadataStorageConnector(name: string, args: ExternalExadataStorageConnectorArgs, opts?: CustomResourceOptions);
@overload
def ExternalExadataStorageConnector(resource_name: str,
args: ExternalExadataStorageConnectorArgs,
opts: Optional[ResourceOptions] = None)
@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,
defined_tags: Optional[Mapping[str, Any]] = None,
freeform_tags: Optional[Mapping[str, Any]] = 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.
Parameters
- 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.
Constructor example
The following reference example uses placeholder values for all input properties.
var externalExadataStorageConnectorResource = new Oci.DatabaseManagement.ExternalExadataStorageConnector("externalExadataStorageConnectorResource", new()
{
AgentId = "string",
ConnectionUri = "string",
ConnectorName = "string",
CredentialInfo = new Oci.DatabaseManagement.Inputs.ExternalExadataStorageConnectorCredentialInfoArgs
{
Password = "string",
Username = "string",
SslTrustStoreLocation = "string",
SslTrustStorePassword = "string",
SslTrustStoreType = "string",
},
StorageServerId = "string",
DefinedTags =
{
{ "string", "any" },
},
FreeformTags =
{
{ "string", "any" },
},
});
example, err := DatabaseManagement.NewExternalExadataStorageConnector(ctx, "externalExadataStorageConnectorResource", &DatabaseManagement.ExternalExadataStorageConnectorArgs{
AgentId: pulumi.String("string"),
ConnectionUri: pulumi.String("string"),
ConnectorName: pulumi.String("string"),
CredentialInfo: &databasemanagement.ExternalExadataStorageConnectorCredentialInfoArgs{
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.Map{
"string": pulumi.Any("any"),
},
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
})
var externalExadataStorageConnectorResource = new ExternalExadataStorageConnector("externalExadataStorageConnectorResource", ExternalExadataStorageConnectorArgs.builder()
.agentId("string")
.connectionUri("string")
.connectorName("string")
.credentialInfo(ExternalExadataStorageConnectorCredentialInfoArgs.builder()
.password("string")
.username("string")
.sslTrustStoreLocation("string")
.sslTrustStorePassword("string")
.sslTrustStoreType("string")
.build())
.storageServerId("string")
.definedTags(Map.of("string", "any"))
.freeformTags(Map.of("string", "any"))
.build());
external_exadata_storage_connector_resource = oci.database_management.ExternalExadataStorageConnector("externalExadataStorageConnectorResource",
agent_id="string",
connection_uri="string",
connector_name="string",
credential_info=oci.database_management.ExternalExadataStorageConnectorCredentialInfoArgs(
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": "any",
},
freeform_tags={
"string": "any",
})
const externalExadataStorageConnectorResource = new oci.databasemanagement.ExternalExadataStorageConnector("externalExadataStorageConnectorResource", {
agentId: "string",
connectionUri: "string",
connectorName: "string",
credentialInfo: {
password: "string",
username: "string",
sslTrustStoreLocation: "string",
sslTrustStorePassword: "string",
sslTrustStoreType: "string",
},
storageServerId: "string",
definedTags: {
string: "any",
},
freeformTags: {
string: "any",
},
});
type: oci:DatabaseManagement:ExternalExadataStorageConnector
properties:
agentId: string
connectionUri: string
connectorName: string
credentialInfo:
password: string
sslTrustStoreLocation: string
sslTrustStorePassword: string
sslTrustStoreType: string
username: string
definedTags:
string: any
freeformTags:
string: any
storageServerId: string
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:
- Agent
Id string - The OCID of the agent for the Exadata storage server.
- Connection
Uri string - (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
- Connector
Name string - (Updatable) The name of the Exadata storage server connector.
- Credential
Info ExternalExadata Storage Connector Credential Info - (Updatable) The user credential information.
- Storage
Server stringId 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
- Dictionary<string, object>
- (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"}
- Dictionary<string, object>
- (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 string - The OCID of the agent for the Exadata storage server.
- Connection
Uri string - (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
- Connector
Name string - (Updatable) The name of the Exadata storage server connector.
- Credential
Info ExternalExadata Storage Connector Credential Info Args - (Updatable) The user credential information.
- Storage
Server stringId 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
- map[string]interface{}
- (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"}
- map[string]interface{}
- (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 String - The OCID of the agent for the Exadata storage server.
- connection
Uri String - (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
- connector
Name String - (Updatable) The name of the Exadata storage server connector.
- credential
Info ExternalExadata Storage Connector Credential Info - (Updatable) The user credential information.
- storage
Server StringId 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
- Map<String,Object>
- (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"}
- Map<String,Object>
- (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 string - The OCID of the agent for the Exadata storage server.
- connection
Uri string - (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
- connector
Name string - (Updatable) The name of the Exadata storage server connector.
- credential
Info ExternalExadata Storage Connector Credential Info - (Updatable) The user credential information.
- storage
Server stringId 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
- {[key: string]: any}
- (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"}
- {[key: string]: any}
- (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/".
- connector_
name str - (Updatable) The name of the Exadata storage server connector.
- credential_
info databasemanagement.External Exadata Storage Connector Credential Info Args - (Updatable) The user credential information.
- storage_
server_ strid 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
- Mapping[str, Any]
- (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"}
- Mapping[str, Any]
- (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 String - The OCID of the agent for the Exadata storage server.
- connection
Uri String - (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
- connector
Name String - (Updatable) The name of the Exadata storage server connector.
- credential
Info Property Map - (Updatable) The user credential information.
- storage
Server StringId 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
- Map<Any>
- (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"}
- Map<Any>
- (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 ExternalExadataStorageConnector resource produces the following output properties:
- Additional
Details Dictionary<string, object> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- Display
Name string - The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- Id string
- The provider-assigned unique ID for this managed resource.
- Internal
Id string - The internal ID of the Exadata resource.
- Lifecycle
Details 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.
- Dictionary<string, object>
- 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 string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- Additional
Details map[string]interface{} - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- Display
Name string - The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- Id string
- The provider-assigned unique ID for this managed resource.
- Internal
Id string - The internal ID of the Exadata resource.
- Lifecycle
Details 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.
- map[string]interface{}
- 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 string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- additional
Details Map<String,Object> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- display
Name String - The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- id String
- The provider-assigned unique ID for this managed resource.
- internal
Id String - The internal ID of the Exadata resource.
- lifecycle
Details 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.
- Map<String,Object>
- 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 String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
- additional
Details {[key: string]: any} - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- display
Name string - The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
- exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- id string
- The provider-assigned unique ID for this managed resource.
- internal
Id string - The internal ID of the Exadata resource.
- lifecycle
Details 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.
- {[key: string]: any}
- 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 string - The timestamp of the creation of the Exadata resource.
- time
Updated 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_ strid - 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.
- Mapping[str, Any]
- 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.
- additional
Details Map<Any> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- display
Name String - The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- id String
- The provider-assigned unique ID for this managed resource.
- internal
Id String - The internal ID of the Exadata resource.
- lifecycle
Details 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.
- Map<Any>
- 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 String - The timestamp of the creation of the Exadata resource.
- time
Updated 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,
defined_tags: Optional[Mapping[str, Any]] = None,
display_name: Optional[str] = None,
exadata_infrastructure_id: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = 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,
system_tags: Optional[Mapping[str, Any]] = 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.
- Additional
Details Dictionary<string, object> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- Agent
Id string - The OCID of the agent for the Exadata storage server.
- Connection
Uri string - (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
- Connector
Name string - (Updatable) The name of the Exadata storage server connector.
- Credential
Info ExternalExadata Storage Connector Credential Info - (Updatable) The user credential information.
- Dictionary<string, object>
- (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 string - The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- Dictionary<string, object>
- (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 string - The internal ID of the Exadata resource.
- Lifecycle
Details 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.
- Storage
Server stringId 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
- Dictionary<string, object>
- 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 string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- Additional
Details map[string]interface{} - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- Agent
Id string - The OCID of the agent for the Exadata storage server.
- Connection
Uri string - (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
- Connector
Name string - (Updatable) The name of the Exadata storage server connector.
- Credential
Info ExternalExadata Storage Connector Credential Info Args - (Updatable) The user credential information.
- map[string]interface{}
- (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 string - The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
- Exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- map[string]interface{}
- (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 string - The internal ID of the Exadata resource.
- Lifecycle
Details 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.
- Storage
Server stringId 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
- map[string]interface{}
- 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 string - The timestamp of the creation of the Exadata resource.
- Time
Updated string - The timestamp of the last update of the Exadata resource.
- Version string
- The version of the Exadata resource.
- additional
Details Map<String,Object> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- agent
Id String - The OCID of the agent for the Exadata storage server.
- connection
Uri String - (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
- connector
Name String - (Updatable) The name of the Exadata storage server connector.
- credential
Info ExternalExadata Storage Connector Credential Info - (Updatable) The user credential information.
- Map<String,Object>
- (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 String - The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- Map<String,Object>
- (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 String - The internal ID of the Exadata resource.
- lifecycle
Details 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.
- storage
Server StringId 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
- Map<String,Object>
- 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 String - The timestamp of the creation of the Exadata resource.
- time
Updated String - The timestamp of the last update of the Exadata resource.
- version String
- The version of the Exadata resource.
- additional
Details {[key: string]: any} - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- agent
Id string - The OCID of the agent for the Exadata storage server.
- connection
Uri string - (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
- connector
Name string - (Updatable) The name of the Exadata storage server connector.
- credential
Info ExternalExadata Storage Connector Credential Info - (Updatable) The user credential information.
- {[key: string]: any}
- (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 string - The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
- exadata
Infrastructure stringId - The OCID of the Exadata infrastructure.
- {[key: string]: any}
- (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 string - The internal ID of the Exadata resource.
- lifecycle
Details 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.
- storage
Server stringId 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
- {[key: string]: any}
- 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 string - The timestamp of the creation of the Exadata resource.
- time
Updated 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 databasemanagement.External Exadata Storage Connector Credential Info Args - (Updatable) The user credential information.
- Mapping[str, Any]
- (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 - The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
- exadata_
infrastructure_ strid - The OCID of the Exadata infrastructure.
- Mapping[str, Any]
- (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.
- state str
- The current lifecycle state of the database resource.
- status str
- The status of the Exadata resource.
- storage_
server_ strid 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
- Mapping[str, Any]
- 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.
- additional
Details Map<Any> - The additional details of the resource defined in
{"key": "value"}
format. Example:{"bar-key": "value"}
- agent
Id String - The OCID of the agent for the Exadata storage server.
- connection
Uri String - (Updatable) The unique string of the connection. For example, "https:///MS/RESTService/".
- connector
Name String - (Updatable) The name of the Exadata storage server connector.
- credential
Info Property Map - (Updatable) The user credential information.
- Map<Any>
- (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 String - The name of the Exadata resource. English letters, numbers, "-", "_" and "." only.
- exadata
Infrastructure StringId - The OCID of the Exadata infrastructure.
- Map<Any>
- (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 String - The internal ID of the Exadata resource.
- lifecycle
Details 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.
- storage
Server StringId 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
- Map<Any>
- 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 String - The timestamp of the creation of the Exadata resource.
- time
Updated 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.
- Ssl
Trust stringStore Location - (Updatable) The full path of the SSL truststore location in the agent.
- Ssl
Trust stringStore Password - (Updatable) The password of the SSL truststore location in the agent.
- Ssl
Trust stringStore Type - (Updatable) The SSL truststore type.
- Password string
- (Updatable) The password of the user.
- Username string
- (Updatable) The name of the user.
- Ssl
Trust stringStore Location - (Updatable) The full path of the SSL truststore location in the agent.
- Ssl
Trust stringStore Password - (Updatable) The password of the SSL truststore location in the agent.
- Ssl
Trust stringStore Type - (Updatable) The SSL truststore type.
- password String
- (Updatable) The password of the user.
- username String
- (Updatable) The name of the user.
- ssl
Trust StringStore Location - (Updatable) The full path of the SSL truststore location in the agent.
- ssl
Trust StringStore Password - (Updatable) The password of the SSL truststore location in the agent.
- ssl
Trust StringStore Type - (Updatable) The SSL truststore type.
- password string
- (Updatable) The password of the user.
- username string
- (Updatable) The name of the user.
- ssl
Trust stringStore Location - (Updatable) The full path of the SSL truststore location in the agent.
- ssl
Trust stringStore Password - (Updatable) The password of the SSL truststore location in the agent.
- ssl
Trust stringStore Type - (Updatable) The SSL truststore type.
- password str
- (Updatable) The password of the user.
- username str
- (Updatable) The name of the user.
- ssl_
trust_ strstore_ location - (Updatable) The full path of the SSL truststore location in the agent.
- ssl_
trust_ strstore_ password - (Updatable) The password of the SSL truststore location in the agent.
- ssl_
trust_ strstore_ type - (Updatable) The SSL truststore type.
- password String
- (Updatable) The password of the user.
- username String
- (Updatable) The name of the user.
- ssl
Trust StringStore Location - (Updatable) The full path of the SSL truststore location in the agent.
- ssl
Trust StringStore Password - (Updatable) The password of the SSL truststore location in the agent.
- ssl
Trust StringStore Type - (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"
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.