oci.GoldenGate.DatabaseRegistration
Explore with Pulumi AI
This resource provides the Database Registration resource in Oracle Cloud Infrastructure Golden Gate service.
Note: Deprecated. Use the /connections API instead. Creates a new DatabaseRegistration.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDatabaseRegistration = new oci.goldengate.DatabaseRegistration("test_database_registration", {
aliasName: databaseRegistrationAliasName,
compartmentId: compartmentId,
displayName: databaseRegistrationDisplayName,
fqdn: databaseRegistrationFqdn,
password: databaseRegistrationPassword,
username: databaseRegistrationUsername,
connectionString: databaseRegistrationConnectionString,
databaseId: testDatabase.id,
definedTags: {
"foo-namespace.bar-key": "value",
},
description: databaseRegistrationDescription,
freeformTags: {
"bar-key": "value",
},
ipAddress: databaseRegistrationIpAddress,
keyId: testKey.id,
secretCompartmentId: testCompartment.id,
sessionMode: databaseRegistrationSessionMode,
subnetId: testSubnet.id,
vaultId: testVault.id,
wallet: databaseRegistrationWallet,
});
import pulumi
import pulumi_oci as oci
test_database_registration = oci.golden_gate.DatabaseRegistration("test_database_registration",
alias_name=database_registration_alias_name,
compartment_id=compartment_id,
display_name=database_registration_display_name,
fqdn=database_registration_fqdn,
password=database_registration_password,
username=database_registration_username,
connection_string=database_registration_connection_string,
database_id=test_database["id"],
defined_tags={
"foo-namespace.bar-key": "value",
},
description=database_registration_description,
freeform_tags={
"bar-key": "value",
},
ip_address=database_registration_ip_address,
key_id=test_key["id"],
secret_compartment_id=test_compartment["id"],
session_mode=database_registration_session_mode,
subnet_id=test_subnet["id"],
vault_id=test_vault["id"],
wallet=database_registration_wallet)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/GoldenGate"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := GoldenGate.NewDatabaseRegistration(ctx, "test_database_registration", &GoldenGate.DatabaseRegistrationArgs{
AliasName: pulumi.Any(databaseRegistrationAliasName),
CompartmentId: pulumi.Any(compartmentId),
DisplayName: pulumi.Any(databaseRegistrationDisplayName),
Fqdn: pulumi.Any(databaseRegistrationFqdn),
Password: pulumi.Any(databaseRegistrationPassword),
Username: pulumi.Any(databaseRegistrationUsername),
ConnectionString: pulumi.Any(databaseRegistrationConnectionString),
DatabaseId: pulumi.Any(testDatabase.Id),
DefinedTags: pulumi.Map{
"foo-namespace.bar-key": pulumi.Any("value"),
},
Description: pulumi.Any(databaseRegistrationDescription),
FreeformTags: pulumi.Map{
"bar-key": pulumi.Any("value"),
},
IpAddress: pulumi.Any(databaseRegistrationIpAddress),
KeyId: pulumi.Any(testKey.Id),
SecretCompartmentId: pulumi.Any(testCompartment.Id),
SessionMode: pulumi.Any(databaseRegistrationSessionMode),
SubnetId: pulumi.Any(testSubnet.Id),
VaultId: pulumi.Any(testVault.Id),
Wallet: pulumi.Any(databaseRegistrationWallet),
})
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 testDatabaseRegistration = new Oci.GoldenGate.DatabaseRegistration("test_database_registration", new()
{
AliasName = databaseRegistrationAliasName,
CompartmentId = compartmentId,
DisplayName = databaseRegistrationDisplayName,
Fqdn = databaseRegistrationFqdn,
Password = databaseRegistrationPassword,
Username = databaseRegistrationUsername,
ConnectionString = databaseRegistrationConnectionString,
DatabaseId = testDatabase.Id,
DefinedTags =
{
{ "foo-namespace.bar-key", "value" },
},
Description = databaseRegistrationDescription,
FreeformTags =
{
{ "bar-key", "value" },
},
IpAddress = databaseRegistrationIpAddress,
KeyId = testKey.Id,
SecretCompartmentId = testCompartment.Id,
SessionMode = databaseRegistrationSessionMode,
SubnetId = testSubnet.Id,
VaultId = testVault.Id,
Wallet = databaseRegistrationWallet,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.GoldenGate.DatabaseRegistration;
import com.pulumi.oci.GoldenGate.DatabaseRegistrationArgs;
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 testDatabaseRegistration = new DatabaseRegistration("testDatabaseRegistration", DatabaseRegistrationArgs.builder()
.aliasName(databaseRegistrationAliasName)
.compartmentId(compartmentId)
.displayName(databaseRegistrationDisplayName)
.fqdn(databaseRegistrationFqdn)
.password(databaseRegistrationPassword)
.username(databaseRegistrationUsername)
.connectionString(databaseRegistrationConnectionString)
.databaseId(testDatabase.id())
.definedTags(Map.of("foo-namespace.bar-key", "value"))
.description(databaseRegistrationDescription)
.freeformTags(Map.of("bar-key", "value"))
.ipAddress(databaseRegistrationIpAddress)
.keyId(testKey.id())
.secretCompartmentId(testCompartment.id())
.sessionMode(databaseRegistrationSessionMode)
.subnetId(testSubnet.id())
.vaultId(testVault.id())
.wallet(databaseRegistrationWallet)
.build());
}
}
resources:
testDatabaseRegistration:
type: oci:GoldenGate:DatabaseRegistration
name: test_database_registration
properties:
aliasName: ${databaseRegistrationAliasName}
compartmentId: ${compartmentId}
displayName: ${databaseRegistrationDisplayName}
fqdn: ${databaseRegistrationFqdn}
password: ${databaseRegistrationPassword}
username: ${databaseRegistrationUsername}
connectionString: ${databaseRegistrationConnectionString}
databaseId: ${testDatabase.id}
definedTags:
foo-namespace.bar-key: value
description: ${databaseRegistrationDescription}
freeformTags:
bar-key: value
ipAddress: ${databaseRegistrationIpAddress}
keyId: ${testKey.id}
secretCompartmentId: ${testCompartment.id}
sessionMode: ${databaseRegistrationSessionMode}
subnetId: ${testSubnet.id}
vaultId: ${testVault.id}
wallet: ${databaseRegistrationWallet}
Create DatabaseRegistration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DatabaseRegistration(name: string, args: DatabaseRegistrationArgs, opts?: CustomResourceOptions);
@overload
def DatabaseRegistration(resource_name: str,
args: DatabaseRegistrationArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DatabaseRegistration(resource_name: str,
opts: Optional[ResourceOptions] = None,
display_name: Optional[str] = None,
compartment_id: Optional[str] = None,
username: Optional[str] = None,
password: Optional[str] = None,
alias_name: Optional[str] = None,
fqdn: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
ip_address: Optional[str] = None,
key_id: Optional[str] = None,
database_id: Optional[str] = None,
secret_compartment_id: Optional[str] = None,
session_mode: Optional[str] = None,
subnet_id: Optional[str] = None,
connection_string: Optional[str] = None,
vault_id: Optional[str] = None,
wallet: Optional[str] = None)
func NewDatabaseRegistration(ctx *Context, name string, args DatabaseRegistrationArgs, opts ...ResourceOption) (*DatabaseRegistration, error)
public DatabaseRegistration(string name, DatabaseRegistrationArgs args, CustomResourceOptions? opts = null)
public DatabaseRegistration(String name, DatabaseRegistrationArgs args)
public DatabaseRegistration(String name, DatabaseRegistrationArgs args, CustomResourceOptions options)
type: oci:GoldenGate:DatabaseRegistration
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 DatabaseRegistrationArgs
- 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 DatabaseRegistrationArgs
- 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 DatabaseRegistrationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DatabaseRegistrationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DatabaseRegistrationArgs
- 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 databaseRegistrationResource = new Oci.GoldenGate.DatabaseRegistration("databaseRegistrationResource", new()
{
DisplayName = "string",
CompartmentId = "string",
Username = "string",
Password = "string",
AliasName = "string",
Fqdn = "string",
FreeformTags =
{
{ "string", "any" },
},
Description = "string",
DefinedTags =
{
{ "string", "any" },
},
IpAddress = "string",
KeyId = "string",
DatabaseId = "string",
SecretCompartmentId = "string",
SessionMode = "string",
SubnetId = "string",
ConnectionString = "string",
VaultId = "string",
Wallet = "string",
});
example, err := GoldenGate.NewDatabaseRegistration(ctx, "databaseRegistrationResource", &GoldenGate.DatabaseRegistrationArgs{
DisplayName: pulumi.String("string"),
CompartmentId: pulumi.String("string"),
Username: pulumi.String("string"),
Password: pulumi.String("string"),
AliasName: pulumi.String("string"),
Fqdn: pulumi.String("string"),
FreeformTags: pulumi.Map{
"string": pulumi.Any("any"),
},
Description: pulumi.String("string"),
DefinedTags: pulumi.Map{
"string": pulumi.Any("any"),
},
IpAddress: pulumi.String("string"),
KeyId: pulumi.String("string"),
DatabaseId: pulumi.String("string"),
SecretCompartmentId: pulumi.String("string"),
SessionMode: pulumi.String("string"),
SubnetId: pulumi.String("string"),
ConnectionString: pulumi.String("string"),
VaultId: pulumi.String("string"),
Wallet: pulumi.String("string"),
})
var databaseRegistrationResource = new DatabaseRegistration("databaseRegistrationResource", DatabaseRegistrationArgs.builder()
.displayName("string")
.compartmentId("string")
.username("string")
.password("string")
.aliasName("string")
.fqdn("string")
.freeformTags(Map.of("string", "any"))
.description("string")
.definedTags(Map.of("string", "any"))
.ipAddress("string")
.keyId("string")
.databaseId("string")
.secretCompartmentId("string")
.sessionMode("string")
.subnetId("string")
.connectionString("string")
.vaultId("string")
.wallet("string")
.build());
database_registration_resource = oci.golden_gate.DatabaseRegistration("databaseRegistrationResource",
display_name="string",
compartment_id="string",
username="string",
password="string",
alias_name="string",
fqdn="string",
freeform_tags={
"string": "any",
},
description="string",
defined_tags={
"string": "any",
},
ip_address="string",
key_id="string",
database_id="string",
secret_compartment_id="string",
session_mode="string",
subnet_id="string",
connection_string="string",
vault_id="string",
wallet="string")
const databaseRegistrationResource = new oci.goldengate.DatabaseRegistration("databaseRegistrationResource", {
displayName: "string",
compartmentId: "string",
username: "string",
password: "string",
aliasName: "string",
fqdn: "string",
freeformTags: {
string: "any",
},
description: "string",
definedTags: {
string: "any",
},
ipAddress: "string",
keyId: "string",
databaseId: "string",
secretCompartmentId: "string",
sessionMode: "string",
subnetId: "string",
connectionString: "string",
vaultId: "string",
wallet: "string",
});
type: oci:GoldenGate:DatabaseRegistration
properties:
aliasName: string
compartmentId: string
connectionString: string
databaseId: string
definedTags:
string: any
description: string
displayName: string
fqdn: string
freeformTags:
string: any
ipAddress: string
keyId: string
password: string
secretCompartmentId: string
sessionMode: string
subnetId: string
username: string
vaultId: string
wallet: string
DatabaseRegistration 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 DatabaseRegistration resource accepts the following input properties:
- Alias
Name string - (Updatable) Credential store alias.
- Compartment
Id string - (Updatable) The OCID of the compartment being referenced.
- Display
Name string - (Updatable) An object's Display Name.
- Fqdn string
- (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
- Password string
- (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
- Username string
- (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
- Connection
String string - (Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.
- Database
Id string - The OCID of the database being referenced.
- Dictionary<string, object>
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Metadata about this specific object.
- Dictionary<string, object>
- (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Ip
Address string - The private IP address in the customer's VCN of the customer's endpoint, typically a database.
- Key
Id string - Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- Secret
Compartment stringId - The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- Session
Mode string - (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
- Subnet
Id string - The OCID of the target subnet of the dedicated connection.
- Vault
Id string - Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
- Wallet string
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** 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
- Alias
Name string - (Updatable) Credential store alias.
- Compartment
Id string - (Updatable) The OCID of the compartment being referenced.
- Display
Name string - (Updatable) An object's Display Name.
- Fqdn string
- (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
- Password string
- (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
- Username string
- (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
- Connection
String string - (Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.
- Database
Id string - The OCID of the database being referenced.
- map[string]interface{}
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Metadata about this specific object.
- map[string]interface{}
- (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Ip
Address string - The private IP address in the customer's VCN of the customer's endpoint, typically a database.
- Key
Id string - Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- Secret
Compartment stringId - The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- Session
Mode string - (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
- Subnet
Id string - The OCID of the target subnet of the dedicated connection.
- Vault
Id string - Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
- Wallet string
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** 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
- alias
Name String - (Updatable) Credential store alias.
- compartment
Id String - (Updatable) The OCID of the compartment being referenced.
- display
Name String - (Updatable) An object's Display Name.
- fqdn String
- (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
- password String
- (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
- username String
- (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
- connection
String String - (Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.
- database
Id String - The OCID of the database being referenced.
- Map<String,Object>
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Metadata about this specific object.
- Map<String,Object>
- (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- ip
Address String - The private IP address in the customer's VCN of the customer's endpoint, typically a database.
- key
Id String - Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- secret
Compartment StringId - The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- session
Mode String - (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
- subnet
Id String - The OCID of the target subnet of the dedicated connection.
- vault
Id String - Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
- wallet String
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** 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
- alias
Name string - (Updatable) Credential store alias.
- compartment
Id string - (Updatable) The OCID of the compartment being referenced.
- display
Name string - (Updatable) An object's Display Name.
- fqdn string
- (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
- password string
- (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
- username string
- (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
- connection
String string - (Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.
- database
Id string - The OCID of the database being referenced.
- {[key: string]: any}
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Metadata about this specific object.
- {[key: string]: any}
- (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- ip
Address string - The private IP address in the customer's VCN of the customer's endpoint, typically a database.
- key
Id string - Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- secret
Compartment stringId - The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- session
Mode string - (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
- subnet
Id string - The OCID of the target subnet of the dedicated connection.
- vault
Id string - Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
- wallet string
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** 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
- alias_
name str - (Updatable) Credential store alias.
- compartment_
id str - (Updatable) The OCID of the compartment being referenced.
- display_
name str - (Updatable) An object's Display Name.
- fqdn str
- (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
- password str
- (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
- username str
- (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
- connection_
string str - (Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.
- database_
id str - The OCID of the database being referenced.
- Mapping[str, Any]
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Metadata about this specific object.
- Mapping[str, Any]
- (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- ip_
address str - The private IP address in the customer's VCN of the customer's endpoint, typically a database.
- key_
id str - Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- secret_
compartment_ strid - The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- session_
mode str - (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
- subnet_
id str - The OCID of the target subnet of the dedicated connection.
- vault_
id str - Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
- wallet str
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** 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
- alias
Name String - (Updatable) Credential store alias.
- compartment
Id String - (Updatable) The OCID of the compartment being referenced.
- display
Name String - (Updatable) An object's Display Name.
- fqdn String
- (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
- password String
- (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
- username String
- (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
- connection
String String - (Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.
- database
Id String - The OCID of the database being referenced.
- Map<Any>
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Metadata about this specific object.
- Map<Any>
- (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- ip
Address String - The private IP address in the customer's VCN of the customer's endpoint, typically a database.
- key
Id String - Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- secret
Compartment StringId - The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- session
Mode String - (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
- subnet
Id String - The OCID of the target subnet of the dedicated connection.
- vault
Id String - Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
- wallet String
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** 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 DatabaseRegistration resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- Rce
Private stringIp - A Private Endpoint IP address created in the customer's subnet. A customer database can expect network traffic initiated by GoldenGate Service from this IP address. It can also send network traffic to this IP address, typically in response to requests from GoldenGate Service. The customer may use this IP address in Security Lists or Network Security Groups (NSG) as needed.
- Secret
Id string - The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.
- State string
- Possible lifecycle states.
- Dictionary<string, object>
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- Time
Created string - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - Time
Updated string - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- Id string
- The provider-assigned unique ID for this managed resource.
- Lifecycle
Details string - Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- Rce
Private stringIp - A Private Endpoint IP address created in the customer's subnet. A customer database can expect network traffic initiated by GoldenGate Service from this IP address. It can also send network traffic to this IP address, typically in response to requests from GoldenGate Service. The customer may use this IP address in Security Lists or Network Security Groups (NSG) as needed.
- Secret
Id string - The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.
- State string
- Possible lifecycle states.
- map[string]interface{}
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- Time
Created string - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - Time
Updated string - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- rce
Private StringIp - A Private Endpoint IP address created in the customer's subnet. A customer database can expect network traffic initiated by GoldenGate Service from this IP address. It can also send network traffic to this IP address, typically in response to requests from GoldenGate Service. The customer may use this IP address in Security Lists or Network Security Groups (NSG) as needed.
- secret
Id String - The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.
- state String
- Possible lifecycle states.
- Map<String,Object>
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Created String - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time
Updated String - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- id string
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details string - Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- rce
Private stringIp - A Private Endpoint IP address created in the customer's subnet. A customer database can expect network traffic initiated by GoldenGate Service from this IP address. It can also send network traffic to this IP address, typically in response to requests from GoldenGate Service. The customer may use this IP address in Security Lists or Network Security Groups (NSG) as needed.
- secret
Id string - The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.
- state string
- Possible lifecycle states.
- {[key: string]: any}
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Created string - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time
Updated string - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- id str
- The provider-assigned unique ID for this managed resource.
- lifecycle_
details str - Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- rce_
private_ strip - A Private Endpoint IP address created in the customer's subnet. A customer database can expect network traffic initiated by GoldenGate Service from this IP address. It can also send network traffic to this IP address, typically in response to requests from GoldenGate Service. The customer may use this IP address in Security Lists or Network Security Groups (NSG) as needed.
- secret_
id str - The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.
- state str
- Possible lifecycle states.
- Mapping[str, Any]
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time_
created str - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time_
updated str - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
- id String
- The provider-assigned unique ID for this managed resource.
- lifecycle
Details String - Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- rce
Private StringIp - A Private Endpoint IP address created in the customer's subnet. A customer database can expect network traffic initiated by GoldenGate Service from this IP address. It can also send network traffic to this IP address, typically in response to requests from GoldenGate Service. The customer may use this IP address in Security Lists or Network Security Groups (NSG) as needed.
- secret
Id String - The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.
- state String
- Possible lifecycle states.
- Map<Any>
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Created String - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time
Updated String - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
.
Look up Existing DatabaseRegistration Resource
Get an existing DatabaseRegistration 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?: DatabaseRegistrationState, opts?: CustomResourceOptions): DatabaseRegistration
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
alias_name: Optional[str] = None,
compartment_id: Optional[str] = None,
connection_string: Optional[str] = None,
database_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, Any]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
fqdn: Optional[str] = None,
freeform_tags: Optional[Mapping[str, Any]] = None,
ip_address: Optional[str] = None,
key_id: Optional[str] = None,
lifecycle_details: Optional[str] = None,
password: Optional[str] = None,
rce_private_ip: Optional[str] = None,
secret_compartment_id: Optional[str] = None,
secret_id: Optional[str] = None,
session_mode: Optional[str] = None,
state: Optional[str] = None,
subnet_id: Optional[str] = None,
system_tags: Optional[Mapping[str, Any]] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None,
username: Optional[str] = None,
vault_id: Optional[str] = None,
wallet: Optional[str] = None) -> DatabaseRegistration
func GetDatabaseRegistration(ctx *Context, name string, id IDInput, state *DatabaseRegistrationState, opts ...ResourceOption) (*DatabaseRegistration, error)
public static DatabaseRegistration Get(string name, Input<string> id, DatabaseRegistrationState? state, CustomResourceOptions? opts = null)
public static DatabaseRegistration get(String name, Output<String> id, DatabaseRegistrationState 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.
- Alias
Name string - (Updatable) Credential store alias.
- Compartment
Id string - (Updatable) The OCID of the compartment being referenced.
- Connection
String string - (Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.
- Database
Id string - The OCID of the database being referenced.
- Dictionary<string, object>
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Metadata about this specific object.
- Display
Name string - (Updatable) An object's Display Name.
- Fqdn string
- (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
- Dictionary<string, object>
- (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Ip
Address string - The private IP address in the customer's VCN of the customer's endpoint, typically a database.
- Key
Id string - Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- Lifecycle
Details string - Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- Password string
- (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
- Rce
Private stringIp - A Private Endpoint IP address created in the customer's subnet. A customer database can expect network traffic initiated by GoldenGate Service from this IP address. It can also send network traffic to this IP address, typically in response to requests from GoldenGate Service. The customer may use this IP address in Security Lists or Network Security Groups (NSG) as needed.
- Secret
Compartment stringId - The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- Secret
Id string - The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.
- Session
Mode string - (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
- State string
- Possible lifecycle states.
- Subnet
Id string - The OCID of the target subnet of the dedicated connection.
- Dictionary<string, object>
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- Time
Created string - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - Time
Updated string - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - Username string
- (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
- Vault
Id string - Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
- Wallet string
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** 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
- Alias
Name string - (Updatable) Credential store alias.
- Compartment
Id string - (Updatable) The OCID of the compartment being referenced.
- Connection
String string - (Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.
- Database
Id string - The OCID of the database being referenced.
- map[string]interface{}
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- (Updatable) Metadata about this specific object.
- Display
Name string - (Updatable) An object's Display Name.
- Fqdn string
- (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
- map[string]interface{}
- (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Ip
Address string - The private IP address in the customer's VCN of the customer's endpoint, typically a database.
- Key
Id string - Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- Lifecycle
Details string - Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- Password string
- (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
- Rce
Private stringIp - A Private Endpoint IP address created in the customer's subnet. A customer database can expect network traffic initiated by GoldenGate Service from this IP address. It can also send network traffic to this IP address, typically in response to requests from GoldenGate Service. The customer may use this IP address in Security Lists or Network Security Groups (NSG) as needed.
- Secret
Compartment stringId - The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- Secret
Id string - The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.
- Session
Mode string - (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
- State string
- Possible lifecycle states.
- Subnet
Id string - The OCID of the target subnet of the dedicated connection.
- map[string]interface{}
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- Time
Created string - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - Time
Updated string - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - Username string
- (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
- Vault
Id string - Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
- Wallet string
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** 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
- alias
Name String - (Updatable) Credential store alias.
- compartment
Id String - (Updatable) The OCID of the compartment being referenced.
- connection
String String - (Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.
- database
Id String - The OCID of the database being referenced.
- Map<String,Object>
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Metadata about this specific object.
- display
Name String - (Updatable) An object's Display Name.
- fqdn String
- (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
- Map<String,Object>
- (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- ip
Address String - The private IP address in the customer's VCN of the customer's endpoint, typically a database.
- key
Id String - Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- lifecycle
Details String - Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- password String
- (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
- rce
Private StringIp - A Private Endpoint IP address created in the customer's subnet. A customer database can expect network traffic initiated by GoldenGate Service from this IP address. It can also send network traffic to this IP address, typically in response to requests from GoldenGate Service. The customer may use this IP address in Security Lists or Network Security Groups (NSG) as needed.
- secret
Compartment StringId - The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- secret
Id String - The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.
- session
Mode String - (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
- state String
- Possible lifecycle states.
- subnet
Id String - The OCID of the target subnet of the dedicated connection.
- Map<String,Object>
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Created String - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time
Updated String - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - username String
- (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
- vault
Id String - Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
- wallet String
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** 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
- alias
Name string - (Updatable) Credential store alias.
- compartment
Id string - (Updatable) The OCID of the compartment being referenced.
- connection
String string - (Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.
- database
Id string - The OCID of the database being referenced.
- {[key: string]: any}
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- (Updatable) Metadata about this specific object.
- display
Name string - (Updatable) An object's Display Name.
- fqdn string
- (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
- {[key: string]: any}
- (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- ip
Address string - The private IP address in the customer's VCN of the customer's endpoint, typically a database.
- key
Id string - Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- lifecycle
Details string - Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- password string
- (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
- rce
Private stringIp - A Private Endpoint IP address created in the customer's subnet. A customer database can expect network traffic initiated by GoldenGate Service from this IP address. It can also send network traffic to this IP address, typically in response to requests from GoldenGate Service. The customer may use this IP address in Security Lists or Network Security Groups (NSG) as needed.
- secret
Compartment stringId - The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- secret
Id string - The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.
- session
Mode string - (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
- state string
- Possible lifecycle states.
- subnet
Id string - The OCID of the target subnet of the dedicated connection.
- {[key: string]: any}
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Created string - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time
Updated string - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - username string
- (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
- vault
Id string - Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
- wallet string
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** 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
- alias_
name str - (Updatable) Credential store alias.
- compartment_
id str - (Updatable) The OCID of the compartment being referenced.
- connection_
string str - (Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.
- database_
id str - The OCID of the database being referenced.
- Mapping[str, Any]
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- (Updatable) Metadata about this specific object.
- display_
name str - (Updatable) An object's Display Name.
- fqdn str
- (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
- Mapping[str, Any]
- (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- ip_
address str - The private IP address in the customer's VCN of the customer's endpoint, typically a database.
- key_
id str - Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- lifecycle_
details str - Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- password str
- (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
- rce_
private_ strip - A Private Endpoint IP address created in the customer's subnet. A customer database can expect network traffic initiated by GoldenGate Service from this IP address. It can also send network traffic to this IP address, typically in response to requests from GoldenGate Service. The customer may use this IP address in Security Lists or Network Security Groups (NSG) as needed.
- secret_
compartment_ strid - The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- secret_
id str - The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.
- session_
mode str - (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
- state str
- Possible lifecycle states.
- subnet_
id str - The OCID of the target subnet of the dedicated connection.
- Mapping[str, Any]
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time_
created str - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time_
updated str - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - username str
- (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
- vault_
id str - Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
- wallet str
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** 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
- alias
Name String - (Updatable) Credential store alias.
- compartment
Id String - (Updatable) The OCID of the compartment being referenced.
- connection
String String - (Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.
- database
Id String - The OCID of the database being referenced.
- Map<Any>
- (Updatable) Tags defined for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- (Updatable) Metadata about this specific object.
- display
Name String - (Updatable) An object's Display Name.
- fqdn String
- (Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.
- Map<Any>
- (Updatable) A simple key-value pair that is applied without any predefined name, type, or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- ip
Address String - The private IP address in the customer's VCN of the customer's endpoint, typically a database.
- key
Id String - Refers to the customer's master key OCID. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- lifecycle
Details String - Describes the object's current state in detail. For example, it can be used to provide actionable information for a resource in a Failed state.
- password String
- (Updatable) The password Oracle GoldenGate uses to connect the associated system of the given technology. It must conform to the specific security requirements including length, case sensitivity, and so on.
- rce
Private StringIp - A Private Endpoint IP address created in the customer's subnet. A customer database can expect network traffic initiated by GoldenGate Service from this IP address. It can also send network traffic to this IP address, typically in response to requests from GoldenGate Service. The customer may use this IP address in Security Lists or Network Security Groups (NSG) as needed.
- secret
Compartment StringId - The OCID of the compartment where the GoldenGate Secret will be created. If provided, it references a key to manage secrets. Customers must add policies to permit GoldenGate to use this key.
- secret
Id String - The OCID of the customer's GoldenGate Service Secret. If provided, it references a key that customers will be required to ensure the policies are established to permit GoldenGate to use this Secret.
- session
Mode String - (Updatable) The mode of the database connection session to be established by the data client. 'REDIRECT' - for a RAC database, 'DIRECT' - for a non-RAC database. Connection to a RAC database involves a redirection received from the SCAN listeners to the database node to connect to. By default the mode would be DIRECT.
- state String
- Possible lifecycle states.
- subnet
Id String - The OCID of the target subnet of the dedicated connection.
- Map<Any>
- The system tags associated with this resource, if any. The system tags are set by Oracle Cloud Infrastructure services. Each key is predefined and scoped to namespaces. For more information, see Resource Tags. Example:
{orcl-cloud: {free-tier-retain: true}}
- time
Created String - The time the resource was created. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - time
Updated String - The time the resource was last updated. The format is defined by RFC3339, such as
2016-08-25T21:10:29.600Z
. - username String
- (Updatable) The username Oracle GoldenGate uses to connect the associated system of the given technology. This username must already exist and be available by the system/application to be connected to and must conform to the case sensitivty requirments defined in it.
- vault
Id String - Refers to the customer's vault OCID. If provided, it references a vault where GoldenGate can manage secrets. Customers must add policies to permit GoldenGate to manage secrets contained within this vault.
- wallet String
(Updatable) The wallet contents Oracle GoldenGate uses to make connections to a database. This attribute is expected to be base64 encoded.
** 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
Import
DatabaseRegistrations can be imported using the id
, e.g.
$ pulumi import oci:GoldenGate/databaseRegistration:DatabaseRegistration test_database_registration "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.