airbyte.SourceOracleEnterprise
Explore with Pulumi AI
SourceOracleEnterprise Resource
Example Usage
Coming soon!
Coming soon!
Coming soon!
Coming soon!
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.airbyte.SourceOracleEnterprise;
import com.pulumi.airbyte.SourceOracleEnterpriseArgs;
import com.pulumi.airbyte.inputs.SourceOracleEnterpriseConfigurationArgs;
import com.pulumi.airbyte.inputs.SourceOracleEnterpriseConfigurationCursorArgs;
import com.pulumi.airbyte.inputs.SourceOracleEnterpriseConfigurationCursorReadChangesUsingChangeDataCaptureCdcArgs;
import com.pulumi.airbyte.inputs.SourceOracleEnterpriseConfigurationEncryptionArgs;
import com.pulumi.airbyte.inputs.SourceOracleEnterpriseConfigurationEncryptionUnencryptedArgs;
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 mySourceOracleenterprise = new SourceOracleEnterprise("mySourceOracleenterprise", SourceOracleEnterpriseArgs.builder()
.configuration(SourceOracleEnterpriseConfigurationArgs.builder()
.check_privileges(false)
.checkpoint_target_interval_seconds(3)
.concurrency(1)
.connection_data(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.cursor(SourceOracleEnterpriseConfigurationCursorArgs.builder()
.readChangesUsingChangeDataCaptureCdc(SourceOracleEnterpriseConfigurationCursorReadChangesUsingChangeDataCaptureCdcArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.cursorMethod("cdc")
.debeziumShutdownTimeoutSeconds(4)
.initialLoadTimeoutHours(6)
.invalidCdcCursorPositionBehavior("Re-sync data")
.build())
.build())
.encryption(SourceOracleEnterpriseConfigurationEncryptionArgs.builder()
.unencrypted(SourceOracleEnterpriseConfigurationEncryptionUnencryptedArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.encryptionMethod("unencrypted")
.build())
.build())
.host("...my_host...")
.jdbc_url_params("...my_jdbc_url_params...")
.password("...my_password...")
.port(59972)
.schemas("...")
.tunnel_method(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.username("...my_username...")
.build())
.definitionId("f5de1b25-34d6-4890-aabc-b81b1dcc0212")
.secretId("...my_secret_id...")
.workspaceId("a58273eb-3c83-4b89-b731-736acd84bdaa")
.build());
}
}
resources:
mySourceOracleenterprise:
type: airbyte:SourceOracleEnterprise
properties:
configuration:
check_privileges: false
checkpoint_target_interval_seconds: 3
concurrency: 1
connection_data:
serviceName:
additionalProperties: '{ "see": "documentation" }'
connectionType: service_name
serviceName: '...my_service_name...'
cursor:
readChangesUsingChangeDataCaptureCdc:
additionalProperties: '{ "see": "documentation" }'
cursorMethod: cdc
debeziumShutdownTimeoutSeconds: 4
initialLoadTimeoutHours: 6
invalidCdcCursorPositionBehavior: Re-sync data
encryption:
unencrypted:
additionalProperties: '{ "see": "documentation" }'
encryptionMethod: unencrypted
host: '...my_host...'
jdbc_url_params: '...my_jdbc_url_params...'
password: '...my_password...'
port: 59972
schemas:
- '...'
tunnel_method:
passwordAuthentication:
additionalProperties: '{ "see": "documentation" }'
tunnelHost: '...my_tunnel_host...'
tunnelMethod: SSH_PASSWORD_AUTH
tunnelPort: 8636
tunnelUser: '...my_tunnel_user...'
tunnelUserPassword: '...my_tunnel_user_password...'
username: '...my_username...'
definitionId: f5de1b25-34d6-4890-aabc-b81b1dcc0212
secretId: '...my_secret_id...'
workspaceId: a58273eb-3c83-4b89-b731-736acd84bdaa
Create SourceOracleEnterprise Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceOracleEnterprise(name: string, args: SourceOracleEnterpriseArgs, opts?: CustomResourceOptions);
@overload
def SourceOracleEnterprise(resource_name: str,
args: SourceOracleEnterpriseArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourceOracleEnterprise(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceOracleEnterpriseConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None)
func NewSourceOracleEnterprise(ctx *Context, name string, args SourceOracleEnterpriseArgs, opts ...ResourceOption) (*SourceOracleEnterprise, error)
public SourceOracleEnterprise(string name, SourceOracleEnterpriseArgs args, CustomResourceOptions? opts = null)
public SourceOracleEnterprise(String name, SourceOracleEnterpriseArgs args)
public SourceOracleEnterprise(String name, SourceOracleEnterpriseArgs args, CustomResourceOptions options)
type: airbyte:SourceOracleEnterprise
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 SourceOracleEnterpriseArgs
- 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 SourceOracleEnterpriseArgs
- 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 SourceOracleEnterpriseArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceOracleEnterpriseArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceOracleEnterpriseArgs
- 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 sourceOracleEnterpriseResource = new Airbyte.SourceOracleEnterprise("sourceOracleEnterpriseResource", new()
{
Configuration = new Airbyte.Inputs.SourceOracleEnterpriseConfigurationArgs
{
Host = "string",
ConnectionData = new Airbyte.Inputs.SourceOracleEnterpriseConfigurationConnectionDataArgs
{
ServiceName = new Airbyte.Inputs.SourceOracleEnterpriseConfigurationConnectionDataServiceNameArgs
{
ServiceName = "string",
AdditionalProperties = "string",
ConnectionType = "string",
},
SystemIdsid = new Airbyte.Inputs.SourceOracleEnterpriseConfigurationConnectionDataSystemIdsidArgs
{
Sid = "string",
AdditionalProperties = "string",
ConnectionType = "string",
},
},
Cursor = new Airbyte.Inputs.SourceOracleEnterpriseConfigurationCursorArgs
{
ReadChangesUsingChangeDataCaptureCdc = new Airbyte.Inputs.SourceOracleEnterpriseConfigurationCursorReadChangesUsingChangeDataCaptureCdcArgs
{
AdditionalProperties = "string",
CursorMethod = "string",
DebeziumShutdownTimeoutSeconds = 0,
InitialLoadTimeoutHours = 0,
InvalidCdcCursorPositionBehavior = "string",
},
ScanChangesWithUserDefinedCursor = new Airbyte.Inputs.SourceOracleEnterpriseConfigurationCursorScanChangesWithUserDefinedCursorArgs
{
AdditionalProperties = "string",
CursorMethod = "string",
},
},
Encryption = new Airbyte.Inputs.SourceOracleEnterpriseConfigurationEncryptionArgs
{
NativeNetworkEncryptionNne = new Airbyte.Inputs.SourceOracleEnterpriseConfigurationEncryptionNativeNetworkEncryptionNneArgs
{
AdditionalProperties = "string",
EncryptionAlgorithm = "string",
EncryptionMethod = "string",
},
TlsEncryptedVerifyCertificate = new Airbyte.Inputs.SourceOracleEnterpriseConfigurationEncryptionTlsEncryptedVerifyCertificateArgs
{
SslCertificate = "string",
AdditionalProperties = "string",
EncryptionMethod = "string",
},
Unencrypted = new Airbyte.Inputs.SourceOracleEnterpriseConfigurationEncryptionUnencryptedArgs
{
AdditionalProperties = "string",
EncryptionMethod = "string",
},
},
TunnelMethod = new Airbyte.Inputs.SourceOracleEnterpriseConfigurationTunnelMethodArgs
{
NoTunnel = new Airbyte.Inputs.SourceOracleEnterpriseConfigurationTunnelMethodNoTunnelArgs
{
AdditionalProperties = "string",
TunnelMethod = "string",
},
PasswordAuthentication = new Airbyte.Inputs.SourceOracleEnterpriseConfigurationTunnelMethodPasswordAuthenticationArgs
{
TunnelHost = "string",
TunnelUser = "string",
TunnelUserPassword = "string",
AdditionalProperties = "string",
TunnelMethod = "string",
TunnelPort = 0,
},
SshKeyAuthentication = new Airbyte.Inputs.SourceOracleEnterpriseConfigurationTunnelMethodSshKeyAuthenticationArgs
{
SshKey = "string",
TunnelHost = "string",
TunnelUser = "string",
AdditionalProperties = "string",
TunnelMethod = "string",
TunnelPort = 0,
},
},
Username = "string",
CheckpointTargetIntervalSeconds = 0,
Concurrency = 0,
CheckPrivileges = false,
JdbcUrlParams = "string",
Password = "string",
Port = 0,
Schemas = new[]
{
"string",
},
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
SecretId = "string",
});
example, err := airbyte.NewSourceOracleEnterprise(ctx, "sourceOracleEnterpriseResource", &airbyte.SourceOracleEnterpriseArgs{
Configuration: &.SourceOracleEnterpriseConfigurationArgs{
Host: pulumi.String("string"),
ConnectionData: &.SourceOracleEnterpriseConfigurationConnectionDataArgs{
ServiceName: &.SourceOracleEnterpriseConfigurationConnectionDataServiceNameArgs{
ServiceName: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
ConnectionType: pulumi.String("string"),
},
SystemIdsid: &.SourceOracleEnterpriseConfigurationConnectionDataSystemIdsidArgs{
Sid: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
ConnectionType: pulumi.String("string"),
},
},
Cursor: &.SourceOracleEnterpriseConfigurationCursorArgs{
ReadChangesUsingChangeDataCaptureCdc: &.SourceOracleEnterpriseConfigurationCursorReadChangesUsingChangeDataCaptureCdcArgs{
AdditionalProperties: pulumi.String("string"),
CursorMethod: pulumi.String("string"),
DebeziumShutdownTimeoutSeconds: pulumi.Float64(0),
InitialLoadTimeoutHours: pulumi.Float64(0),
InvalidCdcCursorPositionBehavior: pulumi.String("string"),
},
ScanChangesWithUserDefinedCursor: &.SourceOracleEnterpriseConfigurationCursorScanChangesWithUserDefinedCursorArgs{
AdditionalProperties: pulumi.String("string"),
CursorMethod: pulumi.String("string"),
},
},
Encryption: &.SourceOracleEnterpriseConfigurationEncryptionArgs{
NativeNetworkEncryptionNne: &.SourceOracleEnterpriseConfigurationEncryptionNativeNetworkEncryptionNneArgs{
AdditionalProperties: pulumi.String("string"),
EncryptionAlgorithm: pulumi.String("string"),
EncryptionMethod: pulumi.String("string"),
},
TlsEncryptedVerifyCertificate: &.SourceOracleEnterpriseConfigurationEncryptionTlsEncryptedVerifyCertificateArgs{
SslCertificate: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
EncryptionMethod: pulumi.String("string"),
},
Unencrypted: &.SourceOracleEnterpriseConfigurationEncryptionUnencryptedArgs{
AdditionalProperties: pulumi.String("string"),
EncryptionMethod: pulumi.String("string"),
},
},
TunnelMethod: &.SourceOracleEnterpriseConfigurationTunnelMethodArgs{
NoTunnel: &.SourceOracleEnterpriseConfigurationTunnelMethodNoTunnelArgs{
AdditionalProperties: pulumi.String("string"),
TunnelMethod: pulumi.String("string"),
},
PasswordAuthentication: &.SourceOracleEnterpriseConfigurationTunnelMethodPasswordAuthenticationArgs{
TunnelHost: pulumi.String("string"),
TunnelUser: pulumi.String("string"),
TunnelUserPassword: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
TunnelMethod: pulumi.String("string"),
TunnelPort: pulumi.Float64(0),
},
SshKeyAuthentication: &.SourceOracleEnterpriseConfigurationTunnelMethodSshKeyAuthenticationArgs{
SshKey: pulumi.String("string"),
TunnelHost: pulumi.String("string"),
TunnelUser: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
TunnelMethod: pulumi.String("string"),
TunnelPort: pulumi.Float64(0),
},
},
Username: pulumi.String("string"),
CheckpointTargetIntervalSeconds: pulumi.Float64(0),
Concurrency: pulumi.Float64(0),
CheckPrivileges: pulumi.Bool(false),
JdbcUrlParams: pulumi.String("string"),
Password: pulumi.String("string"),
Port: pulumi.Float64(0),
Schemas: pulumi.StringArray{
pulumi.String("string"),
},
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
var sourceOracleEnterpriseResource = new SourceOracleEnterprise("sourceOracleEnterpriseResource", SourceOracleEnterpriseArgs.builder()
.configuration(SourceOracleEnterpriseConfigurationArgs.builder()
.host("string")
.connectionData(SourceOracleEnterpriseConfigurationConnectionDataArgs.builder()
.serviceName(SourceOracleEnterpriseConfigurationConnectionDataServiceNameArgs.builder()
.serviceName("string")
.additionalProperties("string")
.connectionType("string")
.build())
.systemIdsid(SourceOracleEnterpriseConfigurationConnectionDataSystemIdsidArgs.builder()
.sid("string")
.additionalProperties("string")
.connectionType("string")
.build())
.build())
.cursor(SourceOracleEnterpriseConfigurationCursorArgs.builder()
.readChangesUsingChangeDataCaptureCdc(SourceOracleEnterpriseConfigurationCursorReadChangesUsingChangeDataCaptureCdcArgs.builder()
.additionalProperties("string")
.cursorMethod("string")
.debeziumShutdownTimeoutSeconds(0)
.initialLoadTimeoutHours(0)
.invalidCdcCursorPositionBehavior("string")
.build())
.scanChangesWithUserDefinedCursor(SourceOracleEnterpriseConfigurationCursorScanChangesWithUserDefinedCursorArgs.builder()
.additionalProperties("string")
.cursorMethod("string")
.build())
.build())
.encryption(SourceOracleEnterpriseConfigurationEncryptionArgs.builder()
.nativeNetworkEncryptionNne(SourceOracleEnterpriseConfigurationEncryptionNativeNetworkEncryptionNneArgs.builder()
.additionalProperties("string")
.encryptionAlgorithm("string")
.encryptionMethod("string")
.build())
.tlsEncryptedVerifyCertificate(SourceOracleEnterpriseConfigurationEncryptionTlsEncryptedVerifyCertificateArgs.builder()
.sslCertificate("string")
.additionalProperties("string")
.encryptionMethod("string")
.build())
.unencrypted(SourceOracleEnterpriseConfigurationEncryptionUnencryptedArgs.builder()
.additionalProperties("string")
.encryptionMethod("string")
.build())
.build())
.tunnelMethod(SourceOracleEnterpriseConfigurationTunnelMethodArgs.builder()
.noTunnel(SourceOracleEnterpriseConfigurationTunnelMethodNoTunnelArgs.builder()
.additionalProperties("string")
.tunnelMethod("string")
.build())
.passwordAuthentication(SourceOracleEnterpriseConfigurationTunnelMethodPasswordAuthenticationArgs.builder()
.tunnelHost("string")
.tunnelUser("string")
.tunnelUserPassword("string")
.additionalProperties("string")
.tunnelMethod("string")
.tunnelPort(0)
.build())
.sshKeyAuthentication(SourceOracleEnterpriseConfigurationTunnelMethodSshKeyAuthenticationArgs.builder()
.sshKey("string")
.tunnelHost("string")
.tunnelUser("string")
.additionalProperties("string")
.tunnelMethod("string")
.tunnelPort(0)
.build())
.build())
.username("string")
.checkpointTargetIntervalSeconds(0)
.concurrency(0)
.checkPrivileges(false)
.jdbcUrlParams("string")
.password("string")
.port(0)
.schemas("string")
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.secretId("string")
.build());
source_oracle_enterprise_resource = airbyte.SourceOracleEnterprise("sourceOracleEnterpriseResource",
configuration={
"host": "string",
"connection_data": {
"service_name": {
"service_name": "string",
"additional_properties": "string",
"connection_type": "string",
},
"system_idsid": {
"sid": "string",
"additional_properties": "string",
"connection_type": "string",
},
},
"cursor": {
"read_changes_using_change_data_capture_cdc": {
"additional_properties": "string",
"cursor_method": "string",
"debezium_shutdown_timeout_seconds": 0,
"initial_load_timeout_hours": 0,
"invalid_cdc_cursor_position_behavior": "string",
},
"scan_changes_with_user_defined_cursor": {
"additional_properties": "string",
"cursor_method": "string",
},
},
"encryption": {
"native_network_encryption_nne": {
"additional_properties": "string",
"encryption_algorithm": "string",
"encryption_method": "string",
},
"tls_encrypted_verify_certificate": {
"ssl_certificate": "string",
"additional_properties": "string",
"encryption_method": "string",
},
"unencrypted": {
"additional_properties": "string",
"encryption_method": "string",
},
},
"tunnel_method": {
"no_tunnel": {
"additional_properties": "string",
"tunnel_method": "string",
},
"password_authentication": {
"tunnel_host": "string",
"tunnel_user": "string",
"tunnel_user_password": "string",
"additional_properties": "string",
"tunnel_method": "string",
"tunnel_port": 0,
},
"ssh_key_authentication": {
"ssh_key": "string",
"tunnel_host": "string",
"tunnel_user": "string",
"additional_properties": "string",
"tunnel_method": "string",
"tunnel_port": 0,
},
},
"username": "string",
"checkpoint_target_interval_seconds": 0,
"concurrency": 0,
"check_privileges": False,
"jdbc_url_params": "string",
"password": "string",
"port": 0,
"schemas": ["string"],
},
workspace_id="string",
definition_id="string",
name="string",
secret_id="string")
const sourceOracleEnterpriseResource = new airbyte.SourceOracleEnterprise("sourceOracleEnterpriseResource", {
configuration: {
host: "string",
connectionData: {
serviceName: {
serviceName: "string",
additionalProperties: "string",
connectionType: "string",
},
systemIdsid: {
sid: "string",
additionalProperties: "string",
connectionType: "string",
},
},
cursor: {
readChangesUsingChangeDataCaptureCdc: {
additionalProperties: "string",
cursorMethod: "string",
debeziumShutdownTimeoutSeconds: 0,
initialLoadTimeoutHours: 0,
invalidCdcCursorPositionBehavior: "string",
},
scanChangesWithUserDefinedCursor: {
additionalProperties: "string",
cursorMethod: "string",
},
},
encryption: {
nativeNetworkEncryptionNne: {
additionalProperties: "string",
encryptionAlgorithm: "string",
encryptionMethod: "string",
},
tlsEncryptedVerifyCertificate: {
sslCertificate: "string",
additionalProperties: "string",
encryptionMethod: "string",
},
unencrypted: {
additionalProperties: "string",
encryptionMethod: "string",
},
},
tunnelMethod: {
noTunnel: {
additionalProperties: "string",
tunnelMethod: "string",
},
passwordAuthentication: {
tunnelHost: "string",
tunnelUser: "string",
tunnelUserPassword: "string",
additionalProperties: "string",
tunnelMethod: "string",
tunnelPort: 0,
},
sshKeyAuthentication: {
sshKey: "string",
tunnelHost: "string",
tunnelUser: "string",
additionalProperties: "string",
tunnelMethod: "string",
tunnelPort: 0,
},
},
username: "string",
checkpointTargetIntervalSeconds: 0,
concurrency: 0,
checkPrivileges: false,
jdbcUrlParams: "string",
password: "string",
port: 0,
schemas: ["string"],
},
workspaceId: "string",
definitionId: "string",
name: "string",
secretId: "string",
});
type: airbyte:SourceOracleEnterprise
properties:
configuration:
checkPrivileges: false
checkpointTargetIntervalSeconds: 0
concurrency: 0
connectionData:
serviceName:
additionalProperties: string
connectionType: string
serviceName: string
systemIdsid:
additionalProperties: string
connectionType: string
sid: string
cursor:
readChangesUsingChangeDataCaptureCdc:
additionalProperties: string
cursorMethod: string
debeziumShutdownTimeoutSeconds: 0
initialLoadTimeoutHours: 0
invalidCdcCursorPositionBehavior: string
scanChangesWithUserDefinedCursor:
additionalProperties: string
cursorMethod: string
encryption:
nativeNetworkEncryptionNne:
additionalProperties: string
encryptionAlgorithm: string
encryptionMethod: string
tlsEncryptedVerifyCertificate:
additionalProperties: string
encryptionMethod: string
sslCertificate: string
unencrypted:
additionalProperties: string
encryptionMethod: string
host: string
jdbcUrlParams: string
password: string
port: 0
schemas:
- string
tunnelMethod:
noTunnel:
additionalProperties: string
tunnelMethod: string
passwordAuthentication:
additionalProperties: string
tunnelHost: string
tunnelMethod: string
tunnelPort: 0
tunnelUser: string
tunnelUserPassword: string
sshKeyAuthentication:
additionalProperties: string
sshKey: string
tunnelHost: string
tunnelMethod: string
tunnelPort: 0
tunnelUser: string
username: string
definitionId: string
name: string
secretId: string
workspaceId: string
SourceOracleEnterprise Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The SourceOracleEnterprise resource accepts the following input properties:
- Configuration
Source
Oracle Enterprise Configuration - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Configuration
Source
Oracle Enterprise Configuration Args - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Oracle Enterprise Configuration - workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Oracle Enterprise Configuration - workspace
Id string - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Oracle Enterprise Configuration Args - workspace_
id str - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration Property Map
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the SourceOracleEnterprise resource produces the following output properties:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourceOracle Enterprise Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Source
Id string - Source
Type string
- Created
At float64 - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourceOracle Enterprise Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Source
Id string - Source
Type string
- created
At Double - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation SourceOracle Enterprise Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source
Id String - source
Type String
- created
At number - id string
- The provider-assigned unique ID for this managed resource.
- resource
Allocation SourceOracle Enterprise Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source
Id string - source
Type string
- created_
at float - id str
- The provider-assigned unique ID for this managed resource.
- resource_
allocation SourceOracle Enterprise Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source_
id str - source_
type str
- created
At Number - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source
Id String - source
Type String
Look up Existing SourceOracleEnterprise Resource
Get an existing SourceOracleEnterprise 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?: SourceOracleEnterpriseState, opts?: CustomResourceOptions): SourceOracleEnterprise
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceOracleEnterpriseConfigurationArgs] = None,
created_at: Optional[float] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
resource_allocation: Optional[SourceOracleEnterpriseResourceAllocationArgs] = None,
secret_id: Optional[str] = None,
source_id: Optional[str] = None,
source_type: Optional[str] = None,
workspace_id: Optional[str] = None) -> SourceOracleEnterprise
func GetSourceOracleEnterprise(ctx *Context, name string, id IDInput, state *SourceOracleEnterpriseState, opts ...ResourceOption) (*SourceOracleEnterprise, error)
public static SourceOracleEnterprise Get(string name, Input<string> id, SourceOracleEnterpriseState? state, CustomResourceOptions? opts = null)
public static SourceOracleEnterprise get(String name, Output<String> id, SourceOracleEnterpriseState state, CustomResourceOptions options)
resources: _: type: airbyte:SourceOracleEnterprise get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Configuration
Source
Oracle Enterprise Configuration - Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Resource
Allocation SourceOracle Enterprise Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- Configuration
Source
Oracle Enterprise Configuration Args - Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Resource
Allocation SourceOracle Enterprise Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- configuration
Source
Oracle Enterprise Configuration - created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation SourceOracle Enterprise Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
- configuration
Source
Oracle Enterprise Configuration - created
At number - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation SourceOracle Enterprise Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id string - source
Type string - workspace
Id string
- configuration
Source
Oracle Enterprise Configuration Args - created_
at float - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- resource_
allocation SourceOracle Enterprise Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source_
id str - source_
type str - workspace_
id str
- configuration Property Map
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
Supporting Types
SourceOracleEnterpriseConfiguration, SourceOracleEnterpriseConfigurationArgs
- Connection
Data SourceOracle Enterprise Configuration Connection Data - The scheme by which to establish a database connection.
- Cursor
Source
Oracle Enterprise Configuration Cursor - Configures how data is extracted from the database.
- Encryption
Source
Oracle Enterprise Configuration Encryption - The encryption method with is used when communicating with the database.
- Host string
- Hostname of the database.
- Tunnel
Method SourceOracle Enterprise Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- Username string
- The username which is used to access the database.
- Check
Privileges bool - When this feature is enabled, during schema discovery the connector will query each table or view individually to check access privileges and inaccessible tables, views, or columns therein will be removed. In large schemas, this might cause schema discovery to take too long, in which case it might be advisable to disable this feature. Default: true
- Checkpoint
Target doubleInterval Seconds - How often (in seconds) a stream should checkpoint, when possible. Default: 300
- Concurrency double
- Maximum number of concurrent queries to the database. Default: 1
- Jdbc
Url stringParams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- Password string
- The password associated with the username.
- Port double
- Port of the database. Oracle Corporations recommends the following port numbers: 1521 - Default listening port for client connections to the listener. 2484 - Recommended and officially registered listening port for client connections to the listener using TCP/IP with SSL. Default: 1521
- Schemas List<string>
- The list of schemas to sync from. Defaults to user. Case sensitive.
- Connection
Data SourceOracle Enterprise Configuration Connection Data - The scheme by which to establish a database connection.
- Cursor
Source
Oracle Enterprise Configuration Cursor - Configures how data is extracted from the database.
- Encryption
Source
Oracle Enterprise Configuration Encryption - The encryption method with is used when communicating with the database.
- Host string
- Hostname of the database.
- Tunnel
Method SourceOracle Enterprise Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- Username string
- The username which is used to access the database.
- Check
Privileges bool - When this feature is enabled, during schema discovery the connector will query each table or view individually to check access privileges and inaccessible tables, views, or columns therein will be removed. In large schemas, this might cause schema discovery to take too long, in which case it might be advisable to disable this feature. Default: true
- Checkpoint
Target float64Interval Seconds - How often (in seconds) a stream should checkpoint, when possible. Default: 300
- Concurrency float64
- Maximum number of concurrent queries to the database. Default: 1
- Jdbc
Url stringParams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- Password string
- The password associated with the username.
- Port float64
- Port of the database. Oracle Corporations recommends the following port numbers: 1521 - Default listening port for client connections to the listener. 2484 - Recommended and officially registered listening port for client connections to the listener using TCP/IP with SSL. Default: 1521
- Schemas []string
- The list of schemas to sync from. Defaults to user. Case sensitive.
- connection
Data SourceOracle Enterprise Configuration Connection Data - The scheme by which to establish a database connection.
- cursor
Source
Oracle Enterprise Configuration Cursor - Configures how data is extracted from the database.
- encryption
Source
Oracle Enterprise Configuration Encryption - The encryption method with is used when communicating with the database.
- host String
- Hostname of the database.
- tunnel
Method SourceOracle Enterprise Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- username String
- The username which is used to access the database.
- check
Privileges Boolean - When this feature is enabled, during schema discovery the connector will query each table or view individually to check access privileges and inaccessible tables, views, or columns therein will be removed. In large schemas, this might cause schema discovery to take too long, in which case it might be advisable to disable this feature. Default: true
- checkpoint
Target DoubleInterval Seconds - How often (in seconds) a stream should checkpoint, when possible. Default: 300
- concurrency Double
- Maximum number of concurrent queries to the database. Default: 1
- jdbc
Url StringParams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- password String
- The password associated with the username.
- port Double
- Port of the database. Oracle Corporations recommends the following port numbers: 1521 - Default listening port for client connections to the listener. 2484 - Recommended and officially registered listening port for client connections to the listener using TCP/IP with SSL. Default: 1521
- schemas List<String>
- The list of schemas to sync from. Defaults to user. Case sensitive.
- connection
Data SourceOracle Enterprise Configuration Connection Data - The scheme by which to establish a database connection.
- cursor
Source
Oracle Enterprise Configuration Cursor - Configures how data is extracted from the database.
- encryption
Source
Oracle Enterprise Configuration Encryption - The encryption method with is used when communicating with the database.
- host string
- Hostname of the database.
- tunnel
Method SourceOracle Enterprise Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- username string
- The username which is used to access the database.
- check
Privileges boolean - When this feature is enabled, during schema discovery the connector will query each table or view individually to check access privileges and inaccessible tables, views, or columns therein will be removed. In large schemas, this might cause schema discovery to take too long, in which case it might be advisable to disable this feature. Default: true
- checkpoint
Target numberInterval Seconds - How often (in seconds) a stream should checkpoint, when possible. Default: 300
- concurrency number
- Maximum number of concurrent queries to the database. Default: 1
- jdbc
Url stringParams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- password string
- The password associated with the username.
- port number
- Port of the database. Oracle Corporations recommends the following port numbers: 1521 - Default listening port for client connections to the listener. 2484 - Recommended and officially registered listening port for client connections to the listener using TCP/IP with SSL. Default: 1521
- schemas string[]
- The list of schemas to sync from. Defaults to user. Case sensitive.
- connection_
data SourceOracle Enterprise Configuration Connection Data - The scheme by which to establish a database connection.
- cursor
Source
Oracle Enterprise Configuration Cursor - Configures how data is extracted from the database.
- encryption
Source
Oracle Enterprise Configuration Encryption - The encryption method with is used when communicating with the database.
- host str
- Hostname of the database.
- tunnel_
method SourceOracle Enterprise Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- username str
- The username which is used to access the database.
- check_
privileges bool - When this feature is enabled, during schema discovery the connector will query each table or view individually to check access privileges and inaccessible tables, views, or columns therein will be removed. In large schemas, this might cause schema discovery to take too long, in which case it might be advisable to disable this feature. Default: true
- checkpoint_
target_ floatinterval_ seconds - How often (in seconds) a stream should checkpoint, when possible. Default: 300
- concurrency float
- Maximum number of concurrent queries to the database. Default: 1
- jdbc_
url_ strparams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- password str
- The password associated with the username.
- port float
- Port of the database. Oracle Corporations recommends the following port numbers: 1521 - Default listening port for client connections to the listener. 2484 - Recommended and officially registered listening port for client connections to the listener using TCP/IP with SSL. Default: 1521
- schemas Sequence[str]
- The list of schemas to sync from. Defaults to user. Case sensitive.
- connection
Data Property Map - The scheme by which to establish a database connection.
- cursor Property Map
- Configures how data is extracted from the database.
- encryption Property Map
- The encryption method with is used when communicating with the database.
- host String
- Hostname of the database.
- tunnel
Method Property Map - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- username String
- The username which is used to access the database.
- check
Privileges Boolean - When this feature is enabled, during schema discovery the connector will query each table or view individually to check access privileges and inaccessible tables, views, or columns therein will be removed. In large schemas, this might cause schema discovery to take too long, in which case it might be advisable to disable this feature. Default: true
- checkpoint
Target NumberInterval Seconds - How often (in seconds) a stream should checkpoint, when possible. Default: 300
- concurrency Number
- Maximum number of concurrent queries to the database. Default: 1
- jdbc
Url StringParams - Additional properties to pass to the JDBC URL string when connecting to the database formatted as 'key=value' pairs separated by the symbol '&'. (example: key1=value1&key2=value2&key3=value3).
- password String
- The password associated with the username.
- port Number
- Port of the database. Oracle Corporations recommends the following port numbers: 1521 - Default listening port for client connections to the listener. 2484 - Recommended and officially registered listening port for client connections to the listener using TCP/IP with SSL. Default: 1521
- schemas List<String>
- The list of schemas to sync from. Defaults to user. Case sensitive.
SourceOracleEnterpriseConfigurationConnectionData, SourceOracleEnterpriseConfigurationConnectionDataArgs
- Service
Name SourceOracle Enterprise Configuration Connection Data Service Name - Use service name.
- System
Idsid SourceOracle Enterprise Configuration Connection Data System Idsid - Use Oracle System Identifier.
- Service
Name SourceOracle Enterprise Configuration Connection Data Service Name - Use service name.
- System
Idsid SourceOracle Enterprise Configuration Connection Data System Idsid - Use Oracle System Identifier.
- service
Name SourceOracle Enterprise Configuration Connection Data Service Name - Use service name.
- system
Idsid SourceOracle Enterprise Configuration Connection Data System Idsid - Use Oracle System Identifier.
- service
Name SourceOracle Enterprise Configuration Connection Data Service Name - Use service name.
- system
Idsid SourceOracle Enterprise Configuration Connection Data System Idsid - Use Oracle System Identifier.
- service_
name SourceOracle Enterprise Configuration Connection Data Service Name - Use service name.
- system_
idsid SourceOracle Enterprise Configuration Connection Data System Idsid - Use Oracle System Identifier.
- service
Name Property Map - Use service name.
- system
Idsid Property Map - Use Oracle System Identifier.
SourceOracleEnterpriseConfigurationConnectionDataServiceName, SourceOracleEnterpriseConfigurationConnectionDataServiceNameArgs
- Service
Name string - Additional
Properties string - Parsed as JSON.
- Connection
Type string - Default: "servicename"; must be "servicename"
- Service
Name string - Additional
Properties string - Parsed as JSON.
- Connection
Type string - Default: "servicename"; must be "servicename"
- service
Name String - additional
Properties String - Parsed as JSON.
- connection
Type String - Default: "servicename"; must be "servicename"
- service
Name string - additional
Properties string - Parsed as JSON.
- connection
Type string - Default: "servicename"; must be "servicename"
- service_
name str - additional_
properties str - Parsed as JSON.
- connection_
type str - Default: "servicename"; must be "servicename"
- service
Name String - additional
Properties String - Parsed as JSON.
- connection
Type String - Default: "servicename"; must be "servicename"
SourceOracleEnterpriseConfigurationConnectionDataSystemIdsid, SourceOracleEnterpriseConfigurationConnectionDataSystemIdsidArgs
- Sid string
- Additional
Properties string - Parsed as JSON.
- Connection
Type string - Default: "sid"; must be "sid"
- Sid string
- Additional
Properties string - Parsed as JSON.
- Connection
Type string - Default: "sid"; must be "sid"
- sid String
- additional
Properties String - Parsed as JSON.
- connection
Type String - Default: "sid"; must be "sid"
- sid string
- additional
Properties string - Parsed as JSON.
- connection
Type string - Default: "sid"; must be "sid"
- sid str
- additional_
properties str - Parsed as JSON.
- connection_
type str - Default: "sid"; must be "sid"
- sid String
- additional
Properties String - Parsed as JSON.
- connection
Type String - Default: "sid"; must be "sid"
SourceOracleEnterpriseConfigurationCursor, SourceOracleEnterpriseConfigurationCursorArgs
- Read
Changes SourceUsing Change Data Capture Cdc Oracle Enterprise Configuration Cursor Read Changes Using Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using Oracle's \n\n change data capture feature\n\n. This must be enabled on your database.
- Scan
Changes SourceWith User Defined Cursor Oracle Enterprise Configuration Cursor Scan Changes With User Defined Cursor - Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
- Read
Changes SourceUsing Change Data Capture Cdc Oracle Enterprise Configuration Cursor Read Changes Using Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using Oracle's \n\n change data capture feature\n\n. This must be enabled on your database.
- Scan
Changes SourceWith User Defined Cursor Oracle Enterprise Configuration Cursor Scan Changes With User Defined Cursor - Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
- read
Changes SourceUsing Change Data Capture Cdc Oracle Enterprise Configuration Cursor Read Changes Using Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using Oracle's \n\n change data capture feature\n\n. This must be enabled on your database.
- scan
Changes SourceWith User Defined Cursor Oracle Enterprise Configuration Cursor Scan Changes With User Defined Cursor - Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
- read
Changes SourceUsing Change Data Capture Cdc Oracle Enterprise Configuration Cursor Read Changes Using Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using Oracle's \n\n change data capture feature\n\n. This must be enabled on your database.
- scan
Changes SourceWith User Defined Cursor Oracle Enterprise Configuration Cursor Scan Changes With User Defined Cursor - Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
- read_
changes_ Sourceusing_ change_ data_ capture_ cdc Oracle Enterprise Configuration Cursor Read Changes Using Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using Oracle's \n\n change data capture feature\n\n. This must be enabled on your database.
- scan_
changes_ Sourcewith_ user_ defined_ cursor Oracle Enterprise Configuration Cursor Scan Changes With User Defined Cursor - Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
- read
Changes Property MapUsing Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using Oracle's \n\n change data capture feature\n\n. This must be enabled on your database.
- scan
Changes Property MapWith User Defined Cursor - Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
SourceOracleEnterpriseConfigurationCursorReadChangesUsingChangeDataCaptureCdc, SourceOracleEnterpriseConfigurationCursorReadChangesUsingChangeDataCaptureCdcArgs
- Additional
Properties string - Parsed as JSON.
- Cursor
Method string - Default: "cdc"; must be "cdc"
- Debezium
Shutdown doubleTimeout Seconds - The amount of time to allow the Debezium Engine to shut down, in seconds. Default: 60
- Initial
Load doubleTimeout Hours - The amount of time an initial load is allowed to continue for before catching up on CDC events. Default: 8
- Invalid
Cdc stringCursor Position Behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value in the mined logs. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- Additional
Properties string - Parsed as JSON.
- Cursor
Method string - Default: "cdc"; must be "cdc"
- Debezium
Shutdown float64Timeout Seconds - The amount of time to allow the Debezium Engine to shut down, in seconds. Default: 60
- Initial
Load float64Timeout Hours - The amount of time an initial load is allowed to continue for before catching up on CDC events. Default: 8
- Invalid
Cdc stringCursor Position Behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value in the mined logs. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- additional
Properties String - Parsed as JSON.
- cursor
Method String - Default: "cdc"; must be "cdc"
- debezium
Shutdown DoubleTimeout Seconds - The amount of time to allow the Debezium Engine to shut down, in seconds. Default: 60
- initial
Load DoubleTimeout Hours - The amount of time an initial load is allowed to continue for before catching up on CDC events. Default: 8
- invalid
Cdc StringCursor Position Behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value in the mined logs. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- additional
Properties string - Parsed as JSON.
- cursor
Method string - Default: "cdc"; must be "cdc"
- debezium
Shutdown numberTimeout Seconds - The amount of time to allow the Debezium Engine to shut down, in seconds. Default: 60
- initial
Load numberTimeout Hours - The amount of time an initial load is allowed to continue for before catching up on CDC events. Default: 8
- invalid
Cdc stringCursor Position Behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value in the mined logs. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- additional_
properties str - Parsed as JSON.
- cursor_
method str - Default: "cdc"; must be "cdc"
- debezium_
shutdown_ floattimeout_ seconds - The amount of time to allow the Debezium Engine to shut down, in seconds. Default: 60
- initial_
load_ floattimeout_ hours - The amount of time an initial load is allowed to continue for before catching up on CDC events. Default: 8
- invalid_
cdc_ strcursor_ position_ behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value in the mined logs. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
- additional
Properties String - Parsed as JSON.
- cursor
Method String - Default: "cdc"; must be "cdc"
- debezium
Shutdown NumberTimeout Seconds - The amount of time to allow the Debezium Engine to shut down, in seconds. Default: 60
- initial
Load NumberTimeout Hours - The amount of time an initial load is allowed to continue for before catching up on CDC events. Default: 8
- invalid
Cdc StringCursor Position Behavior - Determines whether Airbyte should fail or re-sync data in case of an stale/invalid cursor value in the mined logs. If 'Fail sync' is chosen, a user will have to manually reset the connection before being able to continue syncing data. If 'Re-sync data' is chosen, Airbyte will automatically trigger a refresh but could lead to higher cloud costs and data loss. Default: "Fail sync"; must be one of ["Fail sync", "Re-sync data"]
SourceOracleEnterpriseConfigurationCursorScanChangesWithUserDefinedCursor, SourceOracleEnterpriseConfigurationCursorScanChangesWithUserDefinedCursorArgs
- Additional
Properties string - Parsed as JSON.
- Cursor
Method string - Default: "userdefined"; must be "userdefined"
- Additional
Properties string - Parsed as JSON.
- Cursor
Method string - Default: "userdefined"; must be "userdefined"
- additional
Properties String - Parsed as JSON.
- cursor
Method String - Default: "userdefined"; must be "userdefined"
- additional
Properties string - Parsed as JSON.
- cursor
Method string - Default: "userdefined"; must be "userdefined"
- additional_
properties str - Parsed as JSON.
- cursor_
method str - Default: "userdefined"; must be "userdefined"
- additional
Properties String - Parsed as JSON.
- cursor
Method String - Default: "userdefined"; must be "userdefined"
SourceOracleEnterpriseConfigurationEncryption, SourceOracleEnterpriseConfigurationEncryptionArgs
- Native
Network SourceEncryption Nne Oracle Enterprise Configuration Encryption Native Network Encryption Nne - The native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.
- Tls
Encrypted SourceVerify Certificate Oracle Enterprise Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- Unencrypted
Source
Oracle Enterprise Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- Native
Network SourceEncryption Nne Oracle Enterprise Configuration Encryption Native Network Encryption Nne - The native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.
- Tls
Encrypted SourceVerify Certificate Oracle Enterprise Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- Unencrypted
Source
Oracle Enterprise Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- native
Network SourceEncryption Nne Oracle Enterprise Configuration Encryption Native Network Encryption Nne - The native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.
- tls
Encrypted SourceVerify Certificate Oracle Enterprise Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- unencrypted
Source
Oracle Enterprise Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- native
Network SourceEncryption Nne Oracle Enterprise Configuration Encryption Native Network Encryption Nne - The native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.
- tls
Encrypted SourceVerify Certificate Oracle Enterprise Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- unencrypted
Source
Oracle Enterprise Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- native_
network_ Sourceencryption_ nne Oracle Enterprise Configuration Encryption Native Network Encryption Nne - The native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.
- tls_
encrypted_ Sourceverify_ certificate Oracle Enterprise Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- unencrypted
Source
Oracle Enterprise Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- native
Network Property MapEncryption Nne - The native network encryption gives you the ability to encrypt database connections, without the configuration overhead of TCP/IP and SSL/TLS and without the need to open and listen on different ports.
- tls
Encrypted Property MapVerify Certificate - Verify and use the certificate provided by the server.
- unencrypted Property Map
- Data transfer will not be encrypted.
SourceOracleEnterpriseConfigurationEncryptionNativeNetworkEncryptionNne, SourceOracleEnterpriseConfigurationEncryptionNativeNetworkEncryptionNneArgs
- Additional
Properties string - Parsed as JSON.
- Encryption
Algorithm string - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "AES192", "AES128", "3DES168", "3DES112", "DES"]
- Encryption
Method string - Default: "clientnne"; must be "clientnne"
- Additional
Properties string - Parsed as JSON.
- Encryption
Algorithm string - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "AES192", "AES128", "3DES168", "3DES112", "DES"]
- Encryption
Method string - Default: "clientnne"; must be "clientnne"
- additional
Properties String - Parsed as JSON.
- encryption
Algorithm String - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "AES192", "AES128", "3DES168", "3DES112", "DES"]
- encryption
Method String - Default: "clientnne"; must be "clientnne"
- additional
Properties string - Parsed as JSON.
- encryption
Algorithm string - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "AES192", "AES128", "3DES168", "3DES112", "DES"]
- encryption
Method string - Default: "clientnne"; must be "clientnne"
- additional_
properties str - Parsed as JSON.
- encryption_
algorithm str - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "AES192", "AES128", "3DES168", "3DES112", "DES"]
- encryption_
method str - Default: "clientnne"; must be "clientnne"
- additional
Properties String - Parsed as JSON.
- encryption
Algorithm String - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "AES192", "AES128", "3DES168", "3DES112", "DES"]
- encryption
Method String - Default: "clientnne"; must be "clientnne"
SourceOracleEnterpriseConfigurationEncryptionTlsEncryptedVerifyCertificate, SourceOracleEnterpriseConfigurationEncryptionTlsEncryptedVerifyCertificateArgs
- Ssl
Certificate string - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- Additional
Properties string - Parsed as JSON.
- Encryption
Method string - Default: "encryptedverifycertificate"; must be "encryptedverifycertificate"
- Ssl
Certificate string - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- Additional
Properties string - Parsed as JSON.
- Encryption
Method string - Default: "encryptedverifycertificate"; must be "encryptedverifycertificate"
- ssl
Certificate String - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- additional
Properties String - Parsed as JSON.
- encryption
Method String - Default: "encryptedverifycertificate"; must be "encryptedverifycertificate"
- ssl
Certificate string - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- additional
Properties string - Parsed as JSON.
- encryption
Method string - Default: "encryptedverifycertificate"; must be "encryptedverifycertificate"
- ssl_
certificate str - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- additional_
properties str - Parsed as JSON.
- encryption_
method str - Default: "encryptedverifycertificate"; must be "encryptedverifycertificate"
- ssl
Certificate String - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- additional
Properties String - Parsed as JSON.
- encryption
Method String - Default: "encryptedverifycertificate"; must be "encryptedverifycertificate"
SourceOracleEnterpriseConfigurationEncryptionUnencrypted, SourceOracleEnterpriseConfigurationEncryptionUnencryptedArgs
- Additional
Properties string - Parsed as JSON.
- Encryption
Method string - Default: "unencrypted"; must be "unencrypted"
- Additional
Properties string - Parsed as JSON.
- Encryption
Method string - Default: "unencrypted"; must be "unencrypted"
- additional
Properties String - Parsed as JSON.
- encryption
Method String - Default: "unencrypted"; must be "unencrypted"
- additional
Properties string - Parsed as JSON.
- encryption
Method string - Default: "unencrypted"; must be "unencrypted"
- additional_
properties str - Parsed as JSON.
- encryption_
method str - Default: "unencrypted"; must be "unencrypted"
- additional
Properties String - Parsed as JSON.
- encryption
Method String - Default: "unencrypted"; must be "unencrypted"
SourceOracleEnterpriseConfigurationTunnelMethod, SourceOracleEnterpriseConfigurationTunnelMethodArgs
- No
Tunnel SourceOracle Enterprise Configuration Tunnel Method No Tunnel - No ssh tunnel needed to connect to database
- Password
Authentication SourceOracle Enterprise Configuration Tunnel Method Password Authentication - Connect through a jump server tunnel host using username and password authentication
- Ssh
Key SourceAuthentication Oracle Enterprise Configuration Tunnel Method Ssh Key Authentication - Connect through a jump server tunnel host using username and ssh key
- No
Tunnel SourceOracle Enterprise Configuration Tunnel Method No Tunnel - No ssh tunnel needed to connect to database
- Password
Authentication SourceOracle Enterprise Configuration Tunnel Method Password Authentication - Connect through a jump server tunnel host using username and password authentication
- Ssh
Key SourceAuthentication Oracle Enterprise Configuration Tunnel Method Ssh Key Authentication - Connect through a jump server tunnel host using username and ssh key
- no
Tunnel SourceOracle Enterprise Configuration Tunnel Method No Tunnel - No ssh tunnel needed to connect to database
- password
Authentication SourceOracle Enterprise Configuration Tunnel Method Password Authentication - Connect through a jump server tunnel host using username and password authentication
- ssh
Key SourceAuthentication Oracle Enterprise Configuration Tunnel Method Ssh Key Authentication - Connect through a jump server tunnel host using username and ssh key
- no
Tunnel SourceOracle Enterprise Configuration Tunnel Method No Tunnel - No ssh tunnel needed to connect to database
- password
Authentication SourceOracle Enterprise Configuration Tunnel Method Password Authentication - Connect through a jump server tunnel host using username and password authentication
- ssh
Key SourceAuthentication Oracle Enterprise Configuration Tunnel Method Ssh Key Authentication - Connect through a jump server tunnel host using username and ssh key
- no_
tunnel SourceOracle Enterprise Configuration Tunnel Method No Tunnel - No ssh tunnel needed to connect to database
- password_
authentication SourceOracle Enterprise Configuration Tunnel Method Password Authentication - Connect through a jump server tunnel host using username and password authentication
- ssh_
key_ Sourceauthentication Oracle Enterprise Configuration Tunnel Method Ssh Key Authentication - Connect through a jump server tunnel host using username and ssh key
- no
Tunnel Property Map - No ssh tunnel needed to connect to database
- password
Authentication Property Map - Connect through a jump server tunnel host using username and password authentication
- ssh
Key Property MapAuthentication - Connect through a jump server tunnel host using username and ssh key
SourceOracleEnterpriseConfigurationTunnelMethodNoTunnel, SourceOracleEnterpriseConfigurationTunnelMethodNoTunnelArgs
- Additional
Properties string - Parsed as JSON.
- Tunnel
Method string - Default: "NOTUNNEL"; must be "NOTUNNEL"
- Additional
Properties string - Parsed as JSON.
- Tunnel
Method string - Default: "NOTUNNEL"; must be "NOTUNNEL"
- additional
Properties String - Parsed as JSON.
- tunnel
Method String - Default: "NOTUNNEL"; must be "NOTUNNEL"
- additional
Properties string - Parsed as JSON.
- tunnel
Method string - Default: "NOTUNNEL"; must be "NOTUNNEL"
- additional_
properties str - Parsed as JSON.
- tunnel_
method str - Default: "NOTUNNEL"; must be "NOTUNNEL"
- additional
Properties String - Parsed as JSON.
- tunnel
Method String - Default: "NOTUNNEL"; must be "NOTUNNEL"
SourceOracleEnterpriseConfigurationTunnelMethodPasswordAuthentication, SourceOracleEnterpriseConfigurationTunnelMethodPasswordAuthenticationArgs
- Tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- Tunnel
User string - OS-level username for logging into the jump server host
- Tunnel
User stringPassword - OS-level password for logging into the jump server host
- Additional
Properties string - Parsed as JSON.
- Tunnel
Method string - Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
- Tunnel
Port double - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- Tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- Tunnel
User string - OS-level username for logging into the jump server host
- Tunnel
User stringPassword - OS-level password for logging into the jump server host
- Additional
Properties string - Parsed as JSON.
- Tunnel
Method string - Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
- Tunnel
Port float64 - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- tunnel
Host String - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User String - OS-level username for logging into the jump server host
- tunnel
User StringPassword - OS-level password for logging into the jump server host
- additional
Properties String - Parsed as JSON.
- tunnel
Method String - Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
- tunnel
Port Double - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User string - OS-level username for logging into the jump server host
- tunnel
User stringPassword - OS-level password for logging into the jump server host
- additional
Properties string - Parsed as JSON.
- tunnel
Method string - Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
- tunnel
Port number - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- tunnel_
host str - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel_
user str - OS-level username for logging into the jump server host
- tunnel_
user_ strpassword - OS-level password for logging into the jump server host
- additional_
properties str - Parsed as JSON.
- tunnel_
method str - Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
- tunnel_
port float - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- tunnel
Host String - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User String - OS-level username for logging into the jump server host
- tunnel
User StringPassword - OS-level password for logging into the jump server host
- additional
Properties String - Parsed as JSON.
- tunnel
Method String - Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
- tunnel
Port Number - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
SourceOracleEnterpriseConfigurationTunnelMethodSshKeyAuthentication, SourceOracleEnterpriseConfigurationTunnelMethodSshKeyAuthenticationArgs
- Ssh
Key string - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- Tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- Tunnel
User string - OS-level username for logging into the jump server host
- Additional
Properties string - Parsed as JSON.
- Tunnel
Method string - Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
- Tunnel
Port double - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- Ssh
Key string - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- Tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- Tunnel
User string - OS-level username for logging into the jump server host
- Additional
Properties string - Parsed as JSON.
- Tunnel
Method string - Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
- Tunnel
Port float64 - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- ssh
Key String - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- tunnel
Host String - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User String - OS-level username for logging into the jump server host
- additional
Properties String - Parsed as JSON.
- tunnel
Method String - Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
- tunnel
Port Double - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- ssh
Key string - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- tunnel
Host string - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User string - OS-level username for logging into the jump server host
- additional
Properties string - Parsed as JSON.
- tunnel
Method string - Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
- tunnel
Port number - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- ssh_
key str - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- tunnel_
host str - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel_
user str - OS-level username for logging into the jump server host
- additional_
properties str - Parsed as JSON.
- tunnel_
method str - Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
- tunnel_
port float - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
- ssh
Key String - OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
- tunnel
Host String - Hostname of the jump server host that allows inbound ssh tunnel.
- tunnel
User String - OS-level username for logging into the jump server host
- additional
Properties String - Parsed as JSON.
- tunnel
Method String - Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
- tunnel
Port Number - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
SourceOracleEnterpriseResourceAllocation, SourceOracleEnterpriseResourceAllocationArgs
- Default
Source
Oracle Enterprise Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<SourceOracle Enterprise Resource Allocation Job Specific>
- Default
Source
Oracle Enterprise Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []SourceOracle Enterprise Resource Allocation Job Specific
- default_
Source
Oracle Enterprise Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<SourceOracle Enterprise Resource Allocation Job Specific>
- default
Source
Oracle Enterprise Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics SourceOracle Enterprise Resource Allocation Job Specific[]
- default
Source
Oracle Enterprise Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[SourceOracle Enterprise Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
SourceOracleEnterpriseResourceAllocationDefault, SourceOracleEnterpriseResourceAllocationDefaultArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
SourceOracleEnterpriseResourceAllocationJobSpecific, SourceOracleEnterpriseResourceAllocationJobSpecificArgs
- Job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- Resource
Requirements SourceOracle Enterprise Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- Resource
Requirements SourceOracle Enterprise Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements SourceOracle Enterprise Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements SourceOracle Enterprise Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job_
type str - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource_
requirements SourceOracle Enterprise Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements Property Map - optional resource requirements to run workers (blank for unbounded allocations)
SourceOracleEnterpriseResourceAllocationJobSpecificResourceRequirements, SourceOracleEnterpriseResourceAllocationJobSpecificResourceRequirementsArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
Import
$ pulumi import airbyte:index/sourceOracleEnterprise:SourceOracleEnterprise my_airbyte_source_oracle_enterprise ""
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- airbyte airbytehq/terraform-provider-airbyte
- License
- Notes
- This Pulumi package is based on the
airbyte
Terraform Provider.