oci logo
Oracle Cloud Infrastructure v0.13.0, Mar 28 23

oci.GoldenGate.DatabaseRegistration

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

using System.Collections.Generic;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testDatabaseRegistration = new Oci.GoldenGate.DatabaseRegistration("testDatabaseRegistration", new()
    {
        AliasName = @var.Database_registration_alias_name,
        CompartmentId = @var.Compartment_id,
        DisplayName = @var.Database_registration_display_name,
        Fqdn = @var.Database_registration_fqdn,
        Password = @var.Database_registration_password,
        Username = @var.Database_registration_username,
        ConnectionString = @var.Database_registration_connection_string,
        DatabaseId = oci_database_database.Test_database.Id,
        DefinedTags = 
        {
            { "foo-namespace.bar-key", "value" },
        },
        Description = @var.Database_registration_description,
        FreeformTags = 
        {
            { "bar-key", "value" },
        },
        IpAddress = @var.Database_registration_ip_address,
        KeyId = oci_kms_key.Test_key.Id,
        SecretCompartmentId = oci_identity_compartment.Test_compartment.Id,
        SessionMode = @var.Database_registration_session_mode,
        SubnetId = oci_core_subnet.Test_subnet.Id,
        VaultId = oci_kms_vault.Test_vault.Id,
        Wallet = @var.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, "testDatabaseRegistration", &GoldenGate.DatabaseRegistrationArgs{
			AliasName:        pulumi.Any(_var.Database_registration_alias_name),
			CompartmentId:    pulumi.Any(_var.Compartment_id),
			DisplayName:      pulumi.Any(_var.Database_registration_display_name),
			Fqdn:             pulumi.Any(_var.Database_registration_fqdn),
			Password:         pulumi.Any(_var.Database_registration_password),
			Username:         pulumi.Any(_var.Database_registration_username),
			ConnectionString: pulumi.Any(_var.Database_registration_connection_string),
			DatabaseId:       pulumi.Any(oci_database_database.Test_database.Id),
			DefinedTags: pulumi.AnyMap{
				"foo-namespace.bar-key": pulumi.Any("value"),
			},
			Description: pulumi.Any(_var.Database_registration_description),
			FreeformTags: pulumi.AnyMap{
				"bar-key": pulumi.Any("value"),
			},
			IpAddress:           pulumi.Any(_var.Database_registration_ip_address),
			KeyId:               pulumi.Any(oci_kms_key.Test_key.Id),
			SecretCompartmentId: pulumi.Any(oci_identity_compartment.Test_compartment.Id),
			SessionMode:         pulumi.Any(_var.Database_registration_session_mode),
			SubnetId:            pulumi.Any(oci_core_subnet.Test_subnet.Id),
			VaultId:             pulumi.Any(oci_kms_vault.Test_vault.Id),
			Wallet:              pulumi.Any(_var.Database_registration_wallet),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.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(var_.database_registration_alias_name())
            .compartmentId(var_.compartment_id())
            .displayName(var_.database_registration_display_name())
            .fqdn(var_.database_registration_fqdn())
            .password(var_.database_registration_password())
            .username(var_.database_registration_username())
            .connectionString(var_.database_registration_connection_string())
            .databaseId(oci_database_database.test_database().id())
            .definedTags(Map.of("foo-namespace.bar-key", "value"))
            .description(var_.database_registration_description())
            .freeformTags(Map.of("bar-key", "value"))
            .ipAddress(var_.database_registration_ip_address())
            .keyId(oci_kms_key.test_key().id())
            .secretCompartmentId(oci_identity_compartment.test_compartment().id())
            .sessionMode(var_.database_registration_session_mode())
            .subnetId(oci_core_subnet.test_subnet().id())
            .vaultId(oci_kms_vault.test_vault().id())
            .wallet(var_.database_registration_wallet())
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_database_registration = oci.golden_gate.DatabaseRegistration("testDatabaseRegistration",
    alias_name=var["database_registration_alias_name"],
    compartment_id=var["compartment_id"],
    display_name=var["database_registration_display_name"],
    fqdn=var["database_registration_fqdn"],
    password=var["database_registration_password"],
    username=var["database_registration_username"],
    connection_string=var["database_registration_connection_string"],
    database_id=oci_database_database["test_database"]["id"],
    defined_tags={
        "foo-namespace.bar-key": "value",
    },
    description=var["database_registration_description"],
    freeform_tags={
        "bar-key": "value",
    },
    ip_address=var["database_registration_ip_address"],
    key_id=oci_kms_key["test_key"]["id"],
    secret_compartment_id=oci_identity_compartment["test_compartment"]["id"],
    session_mode=var["database_registration_session_mode"],
    subnet_id=oci_core_subnet["test_subnet"]["id"],
    vault_id=oci_kms_vault["test_vault"]["id"],
    wallet=var["database_registration_wallet"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testDatabaseRegistration = new oci.goldengate.DatabaseRegistration("testDatabaseRegistration", {
    aliasName: _var.database_registration_alias_name,
    compartmentId: _var.compartment_id,
    displayName: _var.database_registration_display_name,
    fqdn: _var.database_registration_fqdn,
    password: _var.database_registration_password,
    username: _var.database_registration_username,
    connectionString: _var.database_registration_connection_string,
    databaseId: oci_database_database.test_database.id,
    definedTags: {
        "foo-namespace.bar-key": "value",
    },
    description: _var.database_registration_description,
    freeformTags: {
        "bar-key": "value",
    },
    ipAddress: _var.database_registration_ip_address,
    keyId: oci_kms_key.test_key.id,
    secretCompartmentId: oci_identity_compartment.test_compartment.id,
    sessionMode: _var.database_registration_session_mode,
    subnetId: oci_core_subnet.test_subnet.id,
    vaultId: oci_kms_vault.test_vault.id,
    wallet: _var.database_registration_wallet,
});
resources:
  testDatabaseRegistration:
    type: oci:GoldenGate:DatabaseRegistration
    properties:
      #Required
      aliasName: ${var.database_registration_alias_name}
      compartmentId: ${var.compartment_id}
      displayName: ${var.database_registration_display_name}
      fqdn: ${var.database_registration_fqdn}
      password: ${var.database_registration_password}
      username: ${var.database_registration_username}
      #Optional
      connectionString: ${var.database_registration_connection_string}
      databaseId: ${oci_database_database.test_database.id}
      definedTags:
        foo-namespace.bar-key: value
      description: ${var.database_registration_description}
      freeformTags:
        bar-key: value
      ipAddress: ${var.database_registration_ip_address}
      keyId: ${oci_kms_key.test_key.id}
      secretCompartmentId: ${oci_identity_compartment.test_compartment.id}
      sessionMode: ${var.database_registration_session_mode}
      subnetId: ${oci_core_subnet.test_subnet.id}
      vaultId: ${oci_kms_vault.test_vault.id}
      wallet: ${var.database_registration_wallet}

Create DatabaseRegistration Resource

new DatabaseRegistration(name: string, args: DatabaseRegistrationArgs, opts?: CustomResourceOptions);
@overload
def DatabaseRegistration(resource_name: 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,
                         password: Optional[str] = None,
                         secret_compartment_id: Optional[str] = None,
                         session_mode: Optional[str] = None,
                         subnet_id: Optional[str] = None,
                         username: Optional[str] = None,
                         vault_id: Optional[str] = None,
                         wallet: Optional[str] = None)
@overload
def DatabaseRegistration(resource_name: str,
                         args: DatabaseRegistrationArgs,
                         opts: Optional[ResourceOptions] = 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.

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.

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:

AliasName string

(Updatable) Credential store alias.

CompartmentId string

(Updatable) The OCID of the compartment being referenced.

DisplayName 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.

ConnectionString string

(Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.

DatabaseId string

The OCID of the database being referenced.

DefinedTags 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.

FreeformTags 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"}

IpAddress string

The private IP address in the customer's VCN of the customer's endpoint, typically a database.

KeyId 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.

SecretCompartmentId string

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.

SessionMode 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.

SubnetId string

The OCID of the subnet being referenced.

VaultId 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.

AliasName string

(Updatable) Credential store alias.

CompartmentId string

(Updatable) The OCID of the compartment being referenced.

DisplayName 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.

ConnectionString string

(Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.

DatabaseId string

The OCID of the database being referenced.

DefinedTags 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.

FreeformTags 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"}

IpAddress string

The private IP address in the customer's VCN of the customer's endpoint, typically a database.

KeyId 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.

SecretCompartmentId string

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.

SessionMode 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.

SubnetId string

The OCID of the subnet being referenced.

VaultId 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.

aliasName String

(Updatable) Credential store alias.

compartmentId String

(Updatable) The OCID of the compartment being referenced.

displayName 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.

connectionString String

(Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.

databaseId String

The OCID of the database being referenced.

definedTags 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.

freeformTags 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"}

ipAddress String

The private IP address in the customer's VCN of the customer's endpoint, typically a database.

keyId 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.

secretCompartmentId String

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.

sessionMode 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.

subnetId String

The OCID of the subnet being referenced.

vaultId 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.

aliasName string

(Updatable) Credential store alias.

compartmentId string

(Updatable) The OCID of the compartment being referenced.

displayName 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.

connectionString string

(Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.

databaseId string

The OCID of the database being referenced.

definedTags {[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.

freeformTags {[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"}

ipAddress string

The private IP address in the customer's VCN of the customer's endpoint, typically a database.

keyId 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.

secretCompartmentId string

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.

sessionMode 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.

subnetId string

The OCID of the subnet being referenced.

vaultId 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.

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.

defined_tags 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.

freeform_tags 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_id str

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 subnet being referenced.

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.

aliasName String

(Updatable) Credential store alias.

compartmentId String

(Updatable) The OCID of the compartment being referenced.

displayName 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.

connectionString String

(Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.

databaseId String

The OCID of the database being referenced.

definedTags 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.

freeformTags 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"}

ipAddress String

The private IP address in the customer's VCN of the customer's endpoint, typically a database.

keyId 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.

secretCompartmentId String

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.

sessionMode 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.

subnetId String

The OCID of the subnet being referenced.

vaultId 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.

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.

LifecycleDetails 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.

RcePrivateIp string

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.

SecretId 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.

SystemTags 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}}

TimeCreated string

The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

TimeUpdated 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.

LifecycleDetails 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.

RcePrivateIp string

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.

SecretId 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.

SystemTags 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}}

TimeCreated string

The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

TimeUpdated 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.

lifecycleDetails 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.

rcePrivateIp String

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.

secretId 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.

systemTags 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}}

timeCreated String

The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

timeUpdated 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.

lifecycleDetails 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.

rcePrivateIp string

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.

secretId 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.

systemTags {[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}}

timeCreated string

The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

timeUpdated 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_ip str

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.

system_tags 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.

lifecycleDetails 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.

rcePrivateIp String

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.

secretId 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.

systemTags 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}}

timeCreated String

The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

timeUpdated 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.
The following state arguments are supported:
AliasName string

(Updatable) Credential store alias.

CompartmentId string

(Updatable) The OCID of the compartment being referenced.

ConnectionString string

(Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.

DatabaseId string

The OCID of the database being referenced.

DefinedTags 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.

DisplayName string

(Updatable) An object's Display Name.

Fqdn string

(Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.

FreeformTags 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"}

IpAddress string

The private IP address in the customer's VCN of the customer's endpoint, typically a database.

KeyId 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.

LifecycleDetails 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.

RcePrivateIp string

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.

SecretCompartmentId string

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.

SecretId 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.

SessionMode 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.

SubnetId string

The OCID of the subnet being referenced.

SystemTags 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}}

TimeCreated string

The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

TimeUpdated 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.

VaultId 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.

AliasName string

(Updatable) Credential store alias.

CompartmentId string

(Updatable) The OCID of the compartment being referenced.

ConnectionString string

(Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.

DatabaseId string

The OCID of the database being referenced.

DefinedTags 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.

DisplayName string

(Updatable) An object's Display Name.

Fqdn string

(Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.

FreeformTags 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"}

IpAddress string

The private IP address in the customer's VCN of the customer's endpoint, typically a database.

KeyId 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.

LifecycleDetails 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.

RcePrivateIp string

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.

SecretCompartmentId string

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.

SecretId 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.

SessionMode 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.

SubnetId string

The OCID of the subnet being referenced.

SystemTags 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}}

TimeCreated string

The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

TimeUpdated 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.

VaultId 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.

aliasName String

(Updatable) Credential store alias.

compartmentId String

(Updatable) The OCID of the compartment being referenced.

connectionString String

(Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.

databaseId String

The OCID of the database being referenced.

definedTags 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.

displayName String

(Updatable) An object's Display Name.

fqdn String

(Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.

freeformTags 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"}

ipAddress String

The private IP address in the customer's VCN of the customer's endpoint, typically a database.

keyId 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.

lifecycleDetails 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.

rcePrivateIp String

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.

secretCompartmentId String

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.

secretId 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.

sessionMode 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.

subnetId String

The OCID of the subnet being referenced.

systemTags 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}}

timeCreated String

The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

timeUpdated 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.

vaultId 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.

aliasName string

(Updatable) Credential store alias.

compartmentId string

(Updatable) The OCID of the compartment being referenced.

connectionString string

(Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.

databaseId string

The OCID of the database being referenced.

definedTags {[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.

displayName string

(Updatable) An object's Display Name.

fqdn string

(Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.

freeformTags {[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"}

ipAddress string

The private IP address in the customer's VCN of the customer's endpoint, typically a database.

keyId 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.

lifecycleDetails 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.

rcePrivateIp string

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.

secretCompartmentId string

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.

secretId 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.

sessionMode 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.

subnetId string

The OCID of the subnet being referenced.

systemTags {[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}}

timeCreated string

The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

timeUpdated 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.

vaultId 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.

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.

defined_tags 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.

freeform_tags 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_ip str

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_id str

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 subnet being referenced.

system_tags 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.

aliasName String

(Updatable) Credential store alias.

compartmentId String

(Updatable) The OCID of the compartment being referenced.

connectionString String

(Updatable) Connect descriptor or Easy Connect Naming method used to connect to a database.

databaseId String

The OCID of the database being referenced.

definedTags 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.

displayName String

(Updatable) An object's Display Name.

fqdn String

(Updatable) A three-label Fully Qualified Domain Name (FQDN) for a resource.

freeformTags 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"}

ipAddress String

The private IP address in the customer's VCN of the customer's endpoint, typically a database.

keyId 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.

lifecycleDetails 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.

rcePrivateIp String

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.

secretCompartmentId String

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.

secretId 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.

sessionMode 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.

subnetId String

The OCID of the subnet being referenced.

systemTags 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}}

timeCreated String

The time the resource was created. The format is defined by RFC3339, such as 2016-08-25T21:10:29.600Z.

timeUpdated 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.

vaultId 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.

Import

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

 $ pulumi import oci:GoldenGate/databaseRegistration:DatabaseRegistration test_database_registration "id"

Package Details

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

This Pulumi package is based on the oci Terraform Provider.