SourceOracle Resource
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as airbyte from "@pulumi/airbyte";
const mySourceOracle = new airbyte.SourceOracle("my_source_oracle", {
configuration: {
connectionData: {
systemIdsid: {
sid: "...my_sid...",
},
},
encryption: {
tlsEncryptedVerifyCertificate: {
sslCertificate: "...my_ssl_certificate...",
},
},
host: "...my_host...",
jdbcUrlParams: "...my_jdbc_url_params...",
password: "...my_password...",
port: 22568,
schemas: ["..."],
tunnelMethod: {
noTunnel: {},
},
username: "...my_username...",
},
definitionId: "19b6db41-3eb9-40e4-9d70-9711de027975",
name: "...my_name...",
secretId: "...my_secret_id...",
workspaceId: "a4ecddd5-3505-44b1-8fbf-25c1225b2856",
});
import pulumi
import pulumi_airbyte as airbyte
my_source_oracle = airbyte.SourceOracle("my_source_oracle",
configuration={
"connection_data": {
"system_idsid": {
"sid": "...my_sid...",
},
},
"encryption": {
"tls_encrypted_verify_certificate": {
"ssl_certificate": "...my_ssl_certificate...",
},
},
"host": "...my_host...",
"jdbc_url_params": "...my_jdbc_url_params...",
"password": "...my_password...",
"port": 22568,
"schemas": ["..."],
"tunnel_method": {
"no_tunnel": {},
},
"username": "...my_username...",
},
definition_id="19b6db41-3eb9-40e4-9d70-9711de027975",
name="...my_name...",
secret_id="...my_secret_id...",
workspace_id="a4ecddd5-3505-44b1-8fbf-25c1225b2856")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/airbyte/airbyte"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := airbyte.NewSourceOracle(ctx, "my_source_oracle", &airbyte.SourceOracleArgs{
Configuration: &airbyte.SourceOracleConfigurationArgs{
ConnectionData: &airbyte.SourceOracleConfigurationConnectionDataArgs{
SystemIdsid: &airbyte.SourceOracleConfigurationConnectionDataSystemIdsidArgs{
Sid: pulumi.String("...my_sid..."),
},
},
Encryption: &airbyte.SourceOracleConfigurationEncryptionArgs{
TlsEncryptedVerifyCertificate: &airbyte.SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs{
SslCertificate: pulumi.String("...my_ssl_certificate..."),
},
},
Host: pulumi.String("...my_host..."),
JdbcUrlParams: pulumi.String("...my_jdbc_url_params..."),
Password: pulumi.String("...my_password..."),
Port: pulumi.Float64(22568),
Schemas: pulumi.StringArray{
pulumi.String("..."),
},
TunnelMethod: &airbyte.SourceOracleConfigurationTunnelMethodArgs{
NoTunnel: &airbyte.SourceOracleConfigurationTunnelMethodNoTunnelArgs{},
},
Username: pulumi.String("...my_username..."),
},
DefinitionId: pulumi.String("19b6db41-3eb9-40e4-9d70-9711de027975"),
Name: pulumi.String("...my_name..."),
SecretId: pulumi.String("...my_secret_id..."),
WorkspaceId: pulumi.String("a4ecddd5-3505-44b1-8fbf-25c1225b2856"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Airbyte = Pulumi.Airbyte;
return await Deployment.RunAsync(() =>
{
var mySourceOracle = new Airbyte.SourceOracle("my_source_oracle", new()
{
Configuration = new Airbyte.Inputs.SourceOracleConfigurationArgs
{
ConnectionData = new Airbyte.Inputs.SourceOracleConfigurationConnectionDataArgs
{
SystemIdsid = new Airbyte.Inputs.SourceOracleConfigurationConnectionDataSystemIdsidArgs
{
Sid = "...my_sid...",
},
},
Encryption = new Airbyte.Inputs.SourceOracleConfigurationEncryptionArgs
{
TlsEncryptedVerifyCertificate = new Airbyte.Inputs.SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs
{
SslCertificate = "...my_ssl_certificate...",
},
},
Host = "...my_host...",
JdbcUrlParams = "...my_jdbc_url_params...",
Password = "...my_password...",
Port = 22568,
Schemas = new[]
{
"...",
},
TunnelMethod = new Airbyte.Inputs.SourceOracleConfigurationTunnelMethodArgs
{
NoTunnel = null,
},
Username = "...my_username...",
},
DefinitionId = "19b6db41-3eb9-40e4-9d70-9711de027975",
Name = "...my_name...",
SecretId = "...my_secret_id...",
WorkspaceId = "a4ecddd5-3505-44b1-8fbf-25c1225b2856",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.airbyte.SourceOracle;
import com.pulumi.airbyte.SourceOracleArgs;
import com.pulumi.airbyte.inputs.SourceOracleConfigurationArgs;
import com.pulumi.airbyte.inputs.SourceOracleConfigurationConnectionDataArgs;
import com.pulumi.airbyte.inputs.SourceOracleConfigurationConnectionDataSystemIdsidArgs;
import com.pulumi.airbyte.inputs.SourceOracleConfigurationEncryptionArgs;
import com.pulumi.airbyte.inputs.SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs;
import com.pulumi.airbyte.inputs.SourceOracleConfigurationTunnelMethodArgs;
import com.pulumi.airbyte.inputs.SourceOracleConfigurationTunnelMethodNoTunnelArgs;
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 mySourceOracle = new SourceOracle("mySourceOracle", SourceOracleArgs.builder()
.configuration(SourceOracleConfigurationArgs.builder()
.connectionData(SourceOracleConfigurationConnectionDataArgs.builder()
.systemIdsid(SourceOracleConfigurationConnectionDataSystemIdsidArgs.builder()
.sid("...my_sid...")
.build())
.build())
.encryption(SourceOracleConfigurationEncryptionArgs.builder()
.tlsEncryptedVerifyCertificate(SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs.builder()
.sslCertificate("...my_ssl_certificate...")
.build())
.build())
.host("...my_host...")
.jdbcUrlParams("...my_jdbc_url_params...")
.password("...my_password...")
.port(22568.0)
.schemas("...")
.tunnelMethod(SourceOracleConfigurationTunnelMethodArgs.builder()
.noTunnel(SourceOracleConfigurationTunnelMethodNoTunnelArgs.builder()
.build())
.build())
.username("...my_username...")
.build())
.definitionId("19b6db41-3eb9-40e4-9d70-9711de027975")
.name("...my_name...")
.secretId("...my_secret_id...")
.workspaceId("a4ecddd5-3505-44b1-8fbf-25c1225b2856")
.build());
}
}
resources:
mySourceOracle:
type: airbyte:SourceOracle
name: my_source_oracle
properties:
configuration:
connectionData:
systemIdsid:
sid: '...my_sid...'
encryption:
tlsEncryptedVerifyCertificate:
sslCertificate: '...my_ssl_certificate...'
host: '...my_host...'
jdbcUrlParams: '...my_jdbc_url_params...'
password: '...my_password...'
port: 22568
schemas:
- '...'
tunnelMethod:
noTunnel: {}
username: '...my_username...'
definitionId: 19b6db41-3eb9-40e4-9d70-9711de027975
name: '...my_name...'
secretId: '...my_secret_id...'
workspaceId: a4ecddd5-3505-44b1-8fbf-25c1225b2856
Create SourceOracle Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceOracle(name: string, args: SourceOracleArgs, opts?: CustomResourceOptions);@overload
def SourceOracle(resource_name: str,
args: SourceOracleArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourceOracle(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceOracleConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None)func NewSourceOracle(ctx *Context, name string, args SourceOracleArgs, opts ...ResourceOption) (*SourceOracle, error)public SourceOracle(string name, SourceOracleArgs args, CustomResourceOptions? opts = null)
public SourceOracle(String name, SourceOracleArgs args)
public SourceOracle(String name, SourceOracleArgs args, CustomResourceOptions options)
type: airbyte:SourceOracle
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 SourceOracleArgs
- 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 SourceOracleArgs
- 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 SourceOracleArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceOracleArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceOracleArgs
- 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 sourceOracleResource = new Airbyte.SourceOracle("sourceOracleResource", new()
{
Configuration = new Airbyte.Inputs.SourceOracleConfigurationArgs
{
Encryption = new Airbyte.Inputs.SourceOracleConfigurationEncryptionArgs
{
NativeNetworkEncryptionNne = new Airbyte.Inputs.SourceOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs
{
EncryptionAlgorithm = "string",
},
TlsEncryptedVerifyCertificate = new Airbyte.Inputs.SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs
{
SslCertificate = "string",
},
},
Host = "string",
Username = "string",
ConnectionData = new Airbyte.Inputs.SourceOracleConfigurationConnectionDataArgs
{
ServiceName = new Airbyte.Inputs.SourceOracleConfigurationConnectionDataServiceNameArgs
{
ServiceName = "string",
},
SystemIdsid = new Airbyte.Inputs.SourceOracleConfigurationConnectionDataSystemIdsidArgs
{
Sid = "string",
},
},
JdbcUrlParams = "string",
Password = "string",
Port = 0,
Schemas = new[]
{
"string",
},
TunnelMethod = new Airbyte.Inputs.SourceOracleConfigurationTunnelMethodArgs
{
NoTunnel = null,
PasswordAuthentication = new Airbyte.Inputs.SourceOracleConfigurationTunnelMethodPasswordAuthenticationArgs
{
TunnelHost = "string",
TunnelUser = "string",
TunnelUserPassword = "string",
TunnelPort = 0,
},
SshKeyAuthentication = new Airbyte.Inputs.SourceOracleConfigurationTunnelMethodSshKeyAuthenticationArgs
{
SshKey = "string",
TunnelHost = "string",
TunnelUser = "string",
TunnelPort = 0,
},
},
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
SecretId = "string",
});
example, err := airbyte.NewSourceOracle(ctx, "sourceOracleResource", &airbyte.SourceOracleArgs{
Configuration: &airbyte.SourceOracleConfigurationArgs{
Encryption: &airbyte.SourceOracleConfigurationEncryptionArgs{
NativeNetworkEncryptionNne: &airbyte.SourceOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs{
EncryptionAlgorithm: pulumi.String("string"),
},
TlsEncryptedVerifyCertificate: &airbyte.SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs{
SslCertificate: pulumi.String("string"),
},
},
Host: pulumi.String("string"),
Username: pulumi.String("string"),
ConnectionData: &airbyte.SourceOracleConfigurationConnectionDataArgs{
ServiceName: &airbyte.SourceOracleConfigurationConnectionDataServiceNameArgs{
ServiceName: pulumi.String("string"),
},
SystemIdsid: &airbyte.SourceOracleConfigurationConnectionDataSystemIdsidArgs{
Sid: pulumi.String("string"),
},
},
JdbcUrlParams: pulumi.String("string"),
Password: pulumi.String("string"),
Port: pulumi.Float64(0),
Schemas: pulumi.StringArray{
pulumi.String("string"),
},
TunnelMethod: &airbyte.SourceOracleConfigurationTunnelMethodArgs{
NoTunnel: &airbyte.SourceOracleConfigurationTunnelMethodNoTunnelArgs{},
PasswordAuthentication: &airbyte.SourceOracleConfigurationTunnelMethodPasswordAuthenticationArgs{
TunnelHost: pulumi.String("string"),
TunnelUser: pulumi.String("string"),
TunnelUserPassword: pulumi.String("string"),
TunnelPort: pulumi.Float64(0),
},
SshKeyAuthentication: &airbyte.SourceOracleConfigurationTunnelMethodSshKeyAuthenticationArgs{
SshKey: pulumi.String("string"),
TunnelHost: pulumi.String("string"),
TunnelUser: pulumi.String("string"),
TunnelPort: pulumi.Float64(0),
},
},
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
var sourceOracleResource = new SourceOracle("sourceOracleResource", SourceOracleArgs.builder()
.configuration(SourceOracleConfigurationArgs.builder()
.encryption(SourceOracleConfigurationEncryptionArgs.builder()
.nativeNetworkEncryptionNne(SourceOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs.builder()
.encryptionAlgorithm("string")
.build())
.tlsEncryptedVerifyCertificate(SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs.builder()
.sslCertificate("string")
.build())
.build())
.host("string")
.username("string")
.connectionData(SourceOracleConfigurationConnectionDataArgs.builder()
.serviceName(SourceOracleConfigurationConnectionDataServiceNameArgs.builder()
.serviceName("string")
.build())
.systemIdsid(SourceOracleConfigurationConnectionDataSystemIdsidArgs.builder()
.sid("string")
.build())
.build())
.jdbcUrlParams("string")
.password("string")
.port(0.0)
.schemas("string")
.tunnelMethod(SourceOracleConfigurationTunnelMethodArgs.builder()
.noTunnel(SourceOracleConfigurationTunnelMethodNoTunnelArgs.builder()
.build())
.passwordAuthentication(SourceOracleConfigurationTunnelMethodPasswordAuthenticationArgs.builder()
.tunnelHost("string")
.tunnelUser("string")
.tunnelUserPassword("string")
.tunnelPort(0.0)
.build())
.sshKeyAuthentication(SourceOracleConfigurationTunnelMethodSshKeyAuthenticationArgs.builder()
.sshKey("string")
.tunnelHost("string")
.tunnelUser("string")
.tunnelPort(0.0)
.build())
.build())
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.secretId("string")
.build());
source_oracle_resource = airbyte.SourceOracle("sourceOracleResource",
configuration={
"encryption": {
"native_network_encryption_nne": {
"encryption_algorithm": "string",
},
"tls_encrypted_verify_certificate": {
"ssl_certificate": "string",
},
},
"host": "string",
"username": "string",
"connection_data": {
"service_name": {
"service_name": "string",
},
"system_idsid": {
"sid": "string",
},
},
"jdbc_url_params": "string",
"password": "string",
"port": 0,
"schemas": ["string"],
"tunnel_method": {
"no_tunnel": {},
"password_authentication": {
"tunnel_host": "string",
"tunnel_user": "string",
"tunnel_user_password": "string",
"tunnel_port": 0,
},
"ssh_key_authentication": {
"ssh_key": "string",
"tunnel_host": "string",
"tunnel_user": "string",
"tunnel_port": 0,
},
},
},
workspace_id="string",
definition_id="string",
name="string",
secret_id="string")
const sourceOracleResource = new airbyte.SourceOracle("sourceOracleResource", {
configuration: {
encryption: {
nativeNetworkEncryptionNne: {
encryptionAlgorithm: "string",
},
tlsEncryptedVerifyCertificate: {
sslCertificate: "string",
},
},
host: "string",
username: "string",
connectionData: {
serviceName: {
serviceName: "string",
},
systemIdsid: {
sid: "string",
},
},
jdbcUrlParams: "string",
password: "string",
port: 0,
schemas: ["string"],
tunnelMethod: {
noTunnel: {},
passwordAuthentication: {
tunnelHost: "string",
tunnelUser: "string",
tunnelUserPassword: "string",
tunnelPort: 0,
},
sshKeyAuthentication: {
sshKey: "string",
tunnelHost: "string",
tunnelUser: "string",
tunnelPort: 0,
},
},
},
workspaceId: "string",
definitionId: "string",
name: "string",
secretId: "string",
});
type: airbyte:SourceOracle
properties:
configuration:
connectionData:
serviceName:
serviceName: string
systemIdsid:
sid: string
encryption:
nativeNetworkEncryptionNne:
encryptionAlgorithm: string
tlsEncryptedVerifyCertificate:
sslCertificate: string
host: string
jdbcUrlParams: string
password: string
port: 0
schemas:
- string
tunnelMethod:
noTunnel: {}
passwordAuthentication:
tunnelHost: string
tunnelPort: 0
tunnelUser: string
tunnelUserPassword: string
sshKeyAuthentication:
sshKey: string
tunnelHost: string
tunnelPort: 0
tunnelUser: string
username: string
definitionId: string
name: string
secretId: string
workspaceId: string
SourceOracle 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 SourceOracle resource accepts the following input properties:
- Configuration
Source
Oracle Configuration - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Default: "b39a7370-74c3-45a6-ac3a-380d48520a83"; 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 Configuration Args - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Default: "b39a7370-74c3-45a6-ac3a-380d48520a83"; 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 Configuration - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Default: "b39a7370-74c3-45a6-ac3a-380d48520a83"; 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 Configuration - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- workspace
Id string - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Default: "b39a7370-74c3-45a6-ac3a-380d48520a83"; 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 Configuration Args - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- workspace_
id str - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Default: "b39a7370-74c3-45a6-ac3a-380d48520a83"; 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
- The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Default: "b39a7370-74c3-45a6-ac3a-380d48520a83"; 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 SourceOracle resource produces the following output properties:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourceOracle 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 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 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 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 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 SourceOracle Resource
Get an existing SourceOracle 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?: SourceOracleState, opts?: CustomResourceOptions): SourceOracle@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceOracleConfigurationArgs] = None,
created_at: Optional[float] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
resource_allocation: Optional[SourceOracleResourceAllocationArgs] = None,
secret_id: Optional[str] = None,
source_id: Optional[str] = None,
source_type: Optional[str] = None,
workspace_id: Optional[str] = None) -> SourceOraclefunc GetSourceOracle(ctx *Context, name string, id IDInput, state *SourceOracleState, opts ...ResourceOption) (*SourceOracle, error)public static SourceOracle Get(string name, Input<string> id, SourceOracleState? state, CustomResourceOptions? opts = null)public static SourceOracle get(String name, Output<String> id, SourceOracleState state, CustomResourceOptions options)resources: _: type: airbyte:SourceOracle 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 Configuration - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Default: "b39a7370-74c3-45a6-ac3a-380d48520a83"; Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Resource
Allocation SourceOracle 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 Configuration Args - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Default: "b39a7370-74c3-45a6-ac3a-380d48520a83"; Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Resource
Allocation SourceOracle 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 Configuration - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Default: "b39a7370-74c3-45a6-ac3a-380d48520a83"; Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation SourceOracle 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 Configuration - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- created
At number - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Default: "b39a7370-74c3-45a6-ac3a-380d48520a83"; Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation SourceOracle 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 Configuration Args - The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- created_
at float - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Default: "b39a7370-74c3-45a6-ac3a-380d48520a83"; Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- resource_
allocation SourceOracle 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
- The values required to configure the source. The schema for this must match the schema return by sourcedefinitionspecifications/get for the source.
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Default: "b39a7370-74c3-45a6-ac3a-380d48520a83"; 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
SourceOracleConfiguration, SourceOracleConfigurationArgs
- Encryption
Source
Oracle Configuration Encryption - The encryption method with is used when communicating with the database.
- Host string
- Hostname of the database.
- Username string
- The username which is used to access the database.
- Connection
Data SourceOracle Configuration Connection Data - Connect data that will be used for DB connection
- 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.
- Tunnel
Method SourceOracle Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- Encryption
Source
Oracle Configuration Encryption - The encryption method with is used when communicating with the database.
- Host string
- Hostname of the database.
- Username string
- The username which is used to access the database.
- Connection
Data SourceOracle Configuration Connection Data - Connect data that will be used for DB connection
- 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.
- Tunnel
Method SourceOracle Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- encryption
Source
Oracle Configuration Encryption - The encryption method with is used when communicating with the database.
- host String
- Hostname of the database.
- username String
- The username which is used to access the database.
- connection
Data SourceOracle Configuration Connection Data - Connect data that will be used for DB connection
- 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.
- tunnel
Method SourceOracle Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- encryption
Source
Oracle Configuration Encryption - The encryption method with is used when communicating with the database.
- host string
- Hostname of the database.
- username string
- The username which is used to access the database.
- connection
Data SourceOracle Configuration Connection Data - Connect data that will be used for DB connection
- 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.
- tunnel
Method SourceOracle Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- encryption
Source
Oracle Configuration Encryption - The encryption method with is used when communicating with the database.
- host str
- Hostname of the database.
- username str
- The username which is used to access the database.
- connection_
data SourceOracle Configuration Connection Data - Connect data that will be used for DB connection
- 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.
- tunnel_
method SourceOracle Configuration Tunnel Method - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
- encryption Property Map
- The encryption method with is used when communicating with the database.
- host String
- Hostname of the database.
- username String
- The username which is used to access the database.
- connection
Data Property Map - Connect data that will be used for DB connection
- 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.
- tunnel
Method Property Map - Whether to initiate an SSH tunnel before connecting to the database, and if so, which kind of authentication to use.
SourceOracleConfigurationConnectionData, SourceOracleConfigurationConnectionDataArgs
- Service
Name SourceOracle Configuration Connection Data Service Name - Use service name
- System
Idsid SourceOracle Configuration Connection Data System Idsid - Use SID (Oracle System Identifier)
- Service
Name SourceOracle Configuration Connection Data Service Name - Use service name
- System
Idsid SourceOracle Configuration Connection Data System Idsid - Use SID (Oracle System Identifier)
- service
Name SourceOracle Configuration Connection Data Service Name - Use service name
- system
Idsid SourceOracle Configuration Connection Data System Idsid - Use SID (Oracle System Identifier)
- service
Name SourceOracle Configuration Connection Data Service Name - Use service name
- system
Idsid SourceOracle Configuration Connection Data System Idsid - Use SID (Oracle System Identifier)
- service_
name SourceOracle Configuration Connection Data Service Name - Use service name
- system_
idsid SourceOracle Configuration Connection Data System Idsid - Use SID (Oracle System Identifier)
- service
Name Property Map - Use service name
- system
Idsid Property Map - Use SID (Oracle System Identifier)
SourceOracleConfigurationConnectionDataServiceName, SourceOracleConfigurationConnectionDataServiceNameArgs
- Service
Name string
- Service
Name string
- service
Name String
- service
Name string
- service_
name str
- service
Name String
SourceOracleConfigurationConnectionDataSystemIdsid, SourceOracleConfigurationConnectionDataSystemIdsidArgs
- Sid string
- Sid string
- sid String
- sid string
- sid str
- sid String
SourceOracleConfigurationEncryption, SourceOracleConfigurationEncryptionArgs
- Native
Network SourceEncryption Nne Oracle 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 Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- Native
Network SourceEncryption Nne Oracle 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 Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- native
Network SourceEncryption Nne Oracle 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 Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- native
Network SourceEncryption Nne Oracle 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 Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- native_
network_ Sourceencryption_ nne Oracle 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 Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- 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.
SourceOracleConfigurationEncryptionNativeNetworkEncryptionNne, SourceOracleConfigurationEncryptionNativeNetworkEncryptionNneArgs
- Encryption
Algorithm string - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- Encryption
Algorithm string - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- encryption
Algorithm String - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- encryption
Algorithm string - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- encryption_
algorithm str - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- encryption
Algorithm String - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificate, SourceOracleConfigurationEncryptionTlsEncryptedVerifyCertificateArgs
- Ssl
Certificate string - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- Ssl
Certificate string - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- ssl
Certificate String - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- ssl
Certificate string - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- ssl_
certificate str - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
- ssl
Certificate String - Privacy Enhanced Mail (PEM) files are concatenated certificate containers frequently used in certificate installations.
SourceOracleConfigurationTunnelMethod, SourceOracleConfigurationTunnelMethodArgs
SourceOracleConfigurationTunnelMethodPasswordAuthentication, SourceOracleConfigurationTunnelMethodPasswordAuthenticationArgs
- 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
- 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
- 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
- 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
- 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
- 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
- tunnel
Port Number - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
SourceOracleConfigurationTunnelMethodSshKeyAuthentication, SourceOracleConfigurationTunnelMethodSshKeyAuthenticationArgs
- 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.
- 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.
- 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.
- 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.
- 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.
- 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.
- tunnel
Port Number - Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
SourceOracleResourceAllocation, SourceOracleResourceAllocationArgs
- Default
Source
Oracle Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<SourceOracle Resource Allocation Job Specific>
- Default
Source
Oracle Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []SourceOracle Resource Allocation Job Specific
- default_
Source
Oracle Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<SourceOracle Resource Allocation Job Specific>
- default
Source
Oracle Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics SourceOracle Resource Allocation Job Specific[]
- default
Source
Oracle Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[SourceOracle Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
SourceOracleResourceAllocationDefault, SourceOracleResourceAllocationDefaultArgs
- 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
SourceOracleResourceAllocationJobSpecific, SourceOracleResourceAllocationJobSpecificArgs
- Job
Type string - enum that describes the different types of jobs that the platform runs.
- Resource
Requirements SourceOracle 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.
- Resource
Requirements SourceOracle 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.
- resource
Requirements SourceOracle 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.
- resource
Requirements SourceOracle 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.
- resource_
requirements SourceOracle 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.
- resource
Requirements Property Map - optional resource requirements to run workers (blank for unbounded allocations)
SourceOracleResourceAllocationJobSpecificResourceRequirements, SourceOracleResourceAllocationJobSpecificResourceRequirementsArgs
- 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
In Terraform v1.5.0 and later, the import block can be used with the id attribute, for example:
terraform
import {
to = airbyte_source_oracle.my_airbyte_source_oracle
id = “…”
}
The pulumi import command can be used, for example:
$ pulumi import airbyte:index/sourceOracle:SourceOracle my_airbyte_source_oracle "..."
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
airbyteTerraform Provider.
