airbyte.SourceSapHanaEnterprise
Explore with Pulumi AI
SourceSapHanaEnterprise 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.SourceSapHanaEnterprise;
import com.pulumi.airbyte.SourceSapHanaEnterpriseArgs;
import com.pulumi.airbyte.inputs.SourceSapHanaEnterpriseConfigurationArgs;
import com.pulumi.airbyte.inputs.SourceSapHanaEnterpriseConfigurationCursorArgs;
import com.pulumi.airbyte.inputs.SourceSapHanaEnterpriseConfigurationCursorReadChangesUsingChangeDataCaptureCdcArgs;
import com.pulumi.airbyte.inputs.SourceSapHanaEnterpriseConfigurationEncryptionArgs;
import com.pulumi.airbyte.inputs.SourceSapHanaEnterpriseConfigurationEncryptionNativeNetworkEncryptionNneArgs;
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 mySourceSaphanaenterprise = new SourceSapHanaEnterprise("mySourceSaphanaenterprise", SourceSapHanaEnterpriseArgs.builder()
.configuration(SourceSapHanaEnterpriseConfigurationArgs.builder()
.check_privileges(true)
.checkpoint_target_interval_seconds(8)
.concurrency(8)
.cursor(SourceSapHanaEnterpriseConfigurationCursorArgs.builder()
.readChangesUsingChangeDataCaptureCdc(SourceSapHanaEnterpriseConfigurationCursorReadChangesUsingChangeDataCaptureCdcArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.cursorMethod("cdc")
.initialLoadTimeoutHours(4)
.invalidCdcCursorPositionBehavior("Fail sync")
.build())
.build())
.encryption(SourceSapHanaEnterpriseConfigurationEncryptionArgs.builder()
.nativeNetworkEncryptionNne(SourceSapHanaEnterpriseConfigurationEncryptionNativeNetworkEncryptionNneArgs.builder()
.additionalProperties("{ \"see\": \"documentation\" }")
.encryptionAlgorithm("3DES168")
.encryptionMethod("client_nne")
.build())
.build())
.host("...my_host...")
.jdbc_url_params("...my_jdbc_url_params...")
.password("...my_password...")
.port(16220)
.schemas("...")
.tunnel_method(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.username("...my_username...")
.build())
.definitionId("146af6a4-b817-4da8-8507-960bbac6c639")
.secretId("...my_secret_id...")
.workspaceId("8cdf60e5-3b70-4620-a70a-c6bfd3b48c4f")
.build());
}
}
resources:
mySourceSaphanaenterprise:
type: airbyte:SourceSapHanaEnterprise
properties:
configuration:
check_privileges: true
checkpoint_target_interval_seconds: 8
concurrency: 8
cursor:
readChangesUsingChangeDataCaptureCdc:
additionalProperties: '{ "see": "documentation" }'
cursorMethod: cdc
initialLoadTimeoutHours: 4
invalidCdcCursorPositionBehavior: Fail sync
encryption:
nativeNetworkEncryptionNne:
additionalProperties: '{ "see": "documentation" }'
encryptionAlgorithm: 3DES168
encryptionMethod: client_nne
host: '...my_host...'
jdbc_url_params: '...my_jdbc_url_params...'
password: '...my_password...'
port: 16220
schemas:
- '...'
tunnel_method:
passwordAuthentication:
additionalProperties: '{ "see": "documentation" }'
tunnelHost: '...my_tunnel_host...'
tunnelMethod: SSH_PASSWORD_AUTH
tunnelPort: 48297
tunnelUser: '...my_tunnel_user...'
tunnelUserPassword: '...my_tunnel_user_password...'
username: '...my_username...'
definitionId: 146af6a4-b817-4da8-8507-960bbac6c639
secretId: '...my_secret_id...'
workspaceId: 8cdf60e5-3b70-4620-a70a-c6bfd3b48c4f
Create SourceSapHanaEnterprise Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceSapHanaEnterprise(name: string, args: SourceSapHanaEnterpriseArgs, opts?: CustomResourceOptions);
@overload
def SourceSapHanaEnterprise(resource_name: str,
args: SourceSapHanaEnterpriseArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourceSapHanaEnterprise(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceSapHanaEnterpriseConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None)
func NewSourceSapHanaEnterprise(ctx *Context, name string, args SourceSapHanaEnterpriseArgs, opts ...ResourceOption) (*SourceSapHanaEnterprise, error)
public SourceSapHanaEnterprise(string name, SourceSapHanaEnterpriseArgs args, CustomResourceOptions? opts = null)
public SourceSapHanaEnterprise(String name, SourceSapHanaEnterpriseArgs args)
public SourceSapHanaEnterprise(String name, SourceSapHanaEnterpriseArgs args, CustomResourceOptions options)
type: airbyte:SourceSapHanaEnterprise
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 SourceSapHanaEnterpriseArgs
- 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 SourceSapHanaEnterpriseArgs
- 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 SourceSapHanaEnterpriseArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceSapHanaEnterpriseArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceSapHanaEnterpriseArgs
- 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 sourceSapHanaEnterpriseResource = new Airbyte.SourceSapHanaEnterprise("sourceSapHanaEnterpriseResource", new()
{
Configuration = new Airbyte.Inputs.SourceSapHanaEnterpriseConfigurationArgs
{
Cursor = new Airbyte.Inputs.SourceSapHanaEnterpriseConfigurationCursorArgs
{
ReadChangesUsingChangeDataCaptureCdc = new Airbyte.Inputs.SourceSapHanaEnterpriseConfigurationCursorReadChangesUsingChangeDataCaptureCdcArgs
{
AdditionalProperties = "string",
CursorMethod = "string",
InitialLoadTimeoutHours = 0,
InvalidCdcCursorPositionBehavior = "string",
},
ScanChangesWithUserDefinedCursor = new Airbyte.Inputs.SourceSapHanaEnterpriseConfigurationCursorScanChangesWithUserDefinedCursorArgs
{
AdditionalProperties = "string",
CursorMethod = "string",
},
},
Encryption = new Airbyte.Inputs.SourceSapHanaEnterpriseConfigurationEncryptionArgs
{
NativeNetworkEncryptionNne = new Airbyte.Inputs.SourceSapHanaEnterpriseConfigurationEncryptionNativeNetworkEncryptionNneArgs
{
AdditionalProperties = "string",
EncryptionAlgorithm = "string",
EncryptionMethod = "string",
},
TlsEncryptedVerifyCertificate = new Airbyte.Inputs.SourceSapHanaEnterpriseConfigurationEncryptionTlsEncryptedVerifyCertificateArgs
{
SslCertificate = "string",
AdditionalProperties = "string",
EncryptionMethod = "string",
},
Unencrypted = new Airbyte.Inputs.SourceSapHanaEnterpriseConfigurationEncryptionUnencryptedArgs
{
AdditionalProperties = "string",
EncryptionMethod = "string",
},
},
Host = "string",
TunnelMethod = new Airbyte.Inputs.SourceSapHanaEnterpriseConfigurationTunnelMethodArgs
{
NoTunnel = new Airbyte.Inputs.SourceSapHanaEnterpriseConfigurationTunnelMethodNoTunnelArgs
{
AdditionalProperties = "string",
TunnelMethod = "string",
},
PasswordAuthentication = new Airbyte.Inputs.SourceSapHanaEnterpriseConfigurationTunnelMethodPasswordAuthenticationArgs
{
TunnelHost = "string",
TunnelUser = "string",
TunnelUserPassword = "string",
AdditionalProperties = "string",
TunnelMethod = "string",
TunnelPort = 0,
},
SshKeyAuthentication = new Airbyte.Inputs.SourceSapHanaEnterpriseConfigurationTunnelMethodSshKeyAuthenticationArgs
{
SshKey = "string",
TunnelHost = "string",
TunnelUser = "string",
AdditionalProperties = "string",
TunnelMethod = "string",
TunnelPort = 0,
},
},
Username = "string",
CheckPrivileges = false,
CheckpointTargetIntervalSeconds = 0,
Concurrency = 0,
JdbcUrlParams = "string",
Password = "string",
Port = 0,
Schemas = new[]
{
"string",
},
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
SecretId = "string",
});
example, err := airbyte.NewSourceSapHanaEnterprise(ctx, "sourceSapHanaEnterpriseResource", &airbyte.SourceSapHanaEnterpriseArgs{
Configuration: &.SourceSapHanaEnterpriseConfigurationArgs{
Cursor: &.SourceSapHanaEnterpriseConfigurationCursorArgs{
ReadChangesUsingChangeDataCaptureCdc: &.SourceSapHanaEnterpriseConfigurationCursorReadChangesUsingChangeDataCaptureCdcArgs{
AdditionalProperties: pulumi.String("string"),
CursorMethod: pulumi.String("string"),
InitialLoadTimeoutHours: pulumi.Float64(0),
InvalidCdcCursorPositionBehavior: pulumi.String("string"),
},
ScanChangesWithUserDefinedCursor: &.SourceSapHanaEnterpriseConfigurationCursorScanChangesWithUserDefinedCursorArgs{
AdditionalProperties: pulumi.String("string"),
CursorMethod: pulumi.String("string"),
},
},
Encryption: &.SourceSapHanaEnterpriseConfigurationEncryptionArgs{
NativeNetworkEncryptionNne: &.SourceSapHanaEnterpriseConfigurationEncryptionNativeNetworkEncryptionNneArgs{
AdditionalProperties: pulumi.String("string"),
EncryptionAlgorithm: pulumi.String("string"),
EncryptionMethod: pulumi.String("string"),
},
TlsEncryptedVerifyCertificate: &.SourceSapHanaEnterpriseConfigurationEncryptionTlsEncryptedVerifyCertificateArgs{
SslCertificate: pulumi.String("string"),
AdditionalProperties: pulumi.String("string"),
EncryptionMethod: pulumi.String("string"),
},
Unencrypted: &.SourceSapHanaEnterpriseConfigurationEncryptionUnencryptedArgs{
AdditionalProperties: pulumi.String("string"),
EncryptionMethod: pulumi.String("string"),
},
},
Host: pulumi.String("string"),
TunnelMethod: &.SourceSapHanaEnterpriseConfigurationTunnelMethodArgs{
NoTunnel: &.SourceSapHanaEnterpriseConfigurationTunnelMethodNoTunnelArgs{
AdditionalProperties: pulumi.String("string"),
TunnelMethod: pulumi.String("string"),
},
PasswordAuthentication: &.SourceSapHanaEnterpriseConfigurationTunnelMethodPasswordAuthenticationArgs{
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: &.SourceSapHanaEnterpriseConfigurationTunnelMethodSshKeyAuthenticationArgs{
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"),
CheckPrivileges: pulumi.Bool(false),
CheckpointTargetIntervalSeconds: pulumi.Float64(0),
Concurrency: pulumi.Float64(0),
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 sourceSapHanaEnterpriseResource = new SourceSapHanaEnterprise("sourceSapHanaEnterpriseResource", SourceSapHanaEnterpriseArgs.builder()
.configuration(SourceSapHanaEnterpriseConfigurationArgs.builder()
.cursor(SourceSapHanaEnterpriseConfigurationCursorArgs.builder()
.readChangesUsingChangeDataCaptureCdc(SourceSapHanaEnterpriseConfigurationCursorReadChangesUsingChangeDataCaptureCdcArgs.builder()
.additionalProperties("string")
.cursorMethod("string")
.initialLoadTimeoutHours(0)
.invalidCdcCursorPositionBehavior("string")
.build())
.scanChangesWithUserDefinedCursor(SourceSapHanaEnterpriseConfigurationCursorScanChangesWithUserDefinedCursorArgs.builder()
.additionalProperties("string")
.cursorMethod("string")
.build())
.build())
.encryption(SourceSapHanaEnterpriseConfigurationEncryptionArgs.builder()
.nativeNetworkEncryptionNne(SourceSapHanaEnterpriseConfigurationEncryptionNativeNetworkEncryptionNneArgs.builder()
.additionalProperties("string")
.encryptionAlgorithm("string")
.encryptionMethod("string")
.build())
.tlsEncryptedVerifyCertificate(SourceSapHanaEnterpriseConfigurationEncryptionTlsEncryptedVerifyCertificateArgs.builder()
.sslCertificate("string")
.additionalProperties("string")
.encryptionMethod("string")
.build())
.unencrypted(SourceSapHanaEnterpriseConfigurationEncryptionUnencryptedArgs.builder()
.additionalProperties("string")
.encryptionMethod("string")
.build())
.build())
.host("string")
.tunnelMethod(SourceSapHanaEnterpriseConfigurationTunnelMethodArgs.builder()
.noTunnel(SourceSapHanaEnterpriseConfigurationTunnelMethodNoTunnelArgs.builder()
.additionalProperties("string")
.tunnelMethod("string")
.build())
.passwordAuthentication(SourceSapHanaEnterpriseConfigurationTunnelMethodPasswordAuthenticationArgs.builder()
.tunnelHost("string")
.tunnelUser("string")
.tunnelUserPassword("string")
.additionalProperties("string")
.tunnelMethod("string")
.tunnelPort(0)
.build())
.sshKeyAuthentication(SourceSapHanaEnterpriseConfigurationTunnelMethodSshKeyAuthenticationArgs.builder()
.sshKey("string")
.tunnelHost("string")
.tunnelUser("string")
.additionalProperties("string")
.tunnelMethod("string")
.tunnelPort(0)
.build())
.build())
.username("string")
.checkPrivileges(false)
.checkpointTargetIntervalSeconds(0)
.concurrency(0)
.jdbcUrlParams("string")
.password("string")
.port(0)
.schemas("string")
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.secretId("string")
.build());
source_sap_hana_enterprise_resource = airbyte.SourceSapHanaEnterprise("sourceSapHanaEnterpriseResource",
configuration={
"cursor": {
"read_changes_using_change_data_capture_cdc": {
"additional_properties": "string",
"cursor_method": "string",
"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",
},
},
"host": "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",
"check_privileges": False,
"checkpoint_target_interval_seconds": 0,
"concurrency": 0,
"jdbc_url_params": "string",
"password": "string",
"port": 0,
"schemas": ["string"],
},
workspace_id="string",
definition_id="string",
name="string",
secret_id="string")
const sourceSapHanaEnterpriseResource = new airbyte.SourceSapHanaEnterprise("sourceSapHanaEnterpriseResource", {
configuration: {
cursor: {
readChangesUsingChangeDataCaptureCdc: {
additionalProperties: "string",
cursorMethod: "string",
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",
},
},
host: "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",
checkPrivileges: false,
checkpointTargetIntervalSeconds: 0,
concurrency: 0,
jdbcUrlParams: "string",
password: "string",
port: 0,
schemas: ["string"],
},
workspaceId: "string",
definitionId: "string",
name: "string",
secretId: "string",
});
type: airbyte:SourceSapHanaEnterprise
properties:
configuration:
checkPrivileges: false
checkpointTargetIntervalSeconds: 0
concurrency: 0
cursor:
readChangesUsingChangeDataCaptureCdc:
additionalProperties: string
cursorMethod: string
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
SourceSapHanaEnterprise 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 SourceSapHanaEnterprise resource accepts the following input properties:
- Configuration
Source
Sap Hana 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
Sap Hana 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
Sap Hana 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
Sap Hana 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
Sap Hana 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 SourceSapHanaEnterprise resource produces the following output properties:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourceSap Hana 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 SourceSap Hana 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 SourceSap Hana 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 SourceSap Hana 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 SourceSap Hana 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 SourceSapHanaEnterprise Resource
Get an existing SourceSapHanaEnterprise 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?: SourceSapHanaEnterpriseState, opts?: CustomResourceOptions): SourceSapHanaEnterprise
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceSapHanaEnterpriseConfigurationArgs] = None,
created_at: Optional[float] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
resource_allocation: Optional[SourceSapHanaEnterpriseResourceAllocationArgs] = None,
secret_id: Optional[str] = None,
source_id: Optional[str] = None,
source_type: Optional[str] = None,
workspace_id: Optional[str] = None) -> SourceSapHanaEnterprise
func GetSourceSapHanaEnterprise(ctx *Context, name string, id IDInput, state *SourceSapHanaEnterpriseState, opts ...ResourceOption) (*SourceSapHanaEnterprise, error)
public static SourceSapHanaEnterprise Get(string name, Input<string> id, SourceSapHanaEnterpriseState? state, CustomResourceOptions? opts = null)
public static SourceSapHanaEnterprise get(String name, Output<String> id, SourceSapHanaEnterpriseState state, CustomResourceOptions options)
resources: _: type: airbyte:SourceSapHanaEnterprise 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
Sap Hana 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 SourceSap Hana 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
Sap Hana 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 SourceSap Hana 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
Sap Hana 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 SourceSap Hana 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
Sap Hana 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 SourceSap Hana 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
Sap Hana 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 SourceSap Hana 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
SourceSapHanaEnterpriseConfiguration, SourceSapHanaEnterpriseConfigurationArgs
- Cursor
Source
Sap Hana Enterprise Configuration Cursor - Configures how data is extracted from the database.
- Encryption
Source
Sap Hana Enterprise Configuration Encryption - The encryption method with is used when communicating with the database.
- Host string
- Hostname of the database.
- Tunnel
Method SourceSap Hana 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. SapHana Corporations recommends the following port numbers: 443 - Default listening port for SAP HANA cloud client connections to the listener. Default: 443
- Schemas List<string>
- The list of schemas to sync from. Defaults to user. Case sensitive.
- Cursor
Source
Sap Hana Enterprise Configuration Cursor - Configures how data is extracted from the database.
- Encryption
Source
Sap Hana Enterprise Configuration Encryption - The encryption method with is used when communicating with the database.
- Host string
- Hostname of the database.
- Tunnel
Method SourceSap Hana 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. SapHana Corporations recommends the following port numbers: 443 - Default listening port for SAP HANA cloud client connections to the listener. Default: 443
- Schemas []string
- The list of schemas to sync from. Defaults to user. Case sensitive.
- cursor
Source
Sap Hana Enterprise Configuration Cursor - Configures how data is extracted from the database.
- encryption
Source
Sap Hana Enterprise Configuration Encryption - The encryption method with is used when communicating with the database.
- host String
- Hostname of the database.
- tunnel
Method SourceSap Hana 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. SapHana Corporations recommends the following port numbers: 443 - Default listening port for SAP HANA cloud client connections to the listener. Default: 443
- schemas List<String>
- The list of schemas to sync from. Defaults to user. Case sensitive.
- cursor
Source
Sap Hana Enterprise Configuration Cursor - Configures how data is extracted from the database.
- encryption
Source
Sap Hana Enterprise Configuration Encryption - The encryption method with is used when communicating with the database.
- host string
- Hostname of the database.
- tunnel
Method SourceSap Hana 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. SapHana Corporations recommends the following port numbers: 443 - Default listening port for SAP HANA cloud client connections to the listener. Default: 443
- schemas string[]
- The list of schemas to sync from. Defaults to user. Case sensitive.
- cursor
Source
Sap Hana Enterprise Configuration Cursor - Configures how data is extracted from the database.
- encryption
Source
Sap Hana Enterprise Configuration Encryption - The encryption method with is used when communicating with the database.
- host str
- Hostname of the database.
- tunnel_
method SourceSap Hana 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. SapHana Corporations recommends the following port numbers: 443 - Default listening port for SAP HANA cloud client connections to the listener. Default: 443
- schemas Sequence[str]
- The list of schemas to sync from. Defaults to user. Case sensitive.
- 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. SapHana Corporations recommends the following port numbers: 443 - Default listening port for SAP HANA cloud client connections to the listener. Default: 443
- schemas List<String>
- The list of schemas to sync from. Defaults to user. Case sensitive.
SourceSapHanaEnterpriseConfigurationCursor, SourceSapHanaEnterpriseConfigurationCursorArgs
- Read
Changes SourceUsing Change Data Capture Cdc Sap Hana Enterprise Configuration Cursor Read Changes Using Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using change data capture feature. This must be enabled on your database.
- Scan
Changes SourceWith User Defined Cursor Sap Hana 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 Sap Hana Enterprise Configuration Cursor Read Changes Using Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using change data capture feature. This must be enabled on your database.
- Scan
Changes SourceWith User Defined Cursor Sap Hana 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 Sap Hana Enterprise Configuration Cursor Read Changes Using Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using change data capture feature. This must be enabled on your database.
- scan
Changes SourceWith User Defined Cursor Sap Hana 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 Sap Hana Enterprise Configuration Cursor Read Changes Using Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using change data capture feature. This must be enabled on your database.
- scan
Changes SourceWith User Defined Cursor Sap Hana 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 Sap Hana Enterprise Configuration Cursor Read Changes Using Change Data Capture Cdc - \n\nRecommended\n\n - Incrementally reads new inserts, updates, and deletes using change data capture feature. This must be enabled on your database.
- scan_
changes_ Sourcewith_ user_ defined_ cursor Sap Hana 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 change data capture feature. 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).
SourceSapHanaEnterpriseConfigurationCursorReadChangesUsingChangeDataCaptureCdc, SourceSapHanaEnterpriseConfigurationCursorReadChangesUsingChangeDataCaptureCdcArgs
- Additional
Properties string - Parsed as JSON.
- Cursor
Method string - Default: "cdc"; must be "cdc"
- 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"
- 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"
- 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"
- 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"
- 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"
- 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"]
SourceSapHanaEnterpriseConfigurationCursorScanChangesWithUserDefinedCursor, SourceSapHanaEnterpriseConfigurationCursorScanChangesWithUserDefinedCursorArgs
- 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"
SourceSapHanaEnterpriseConfigurationEncryption, SourceSapHanaEnterpriseConfigurationEncryptionArgs
- Native
Network SourceEncryption Nne Sap Hana 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 Sap Hana Enterprise Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- Unencrypted
Source
Sap Hana Enterprise Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- Native
Network SourceEncryption Nne Sap Hana 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 Sap Hana Enterprise Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- Unencrypted
Source
Sap Hana Enterprise Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- native
Network SourceEncryption Nne Sap Hana 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 Sap Hana Enterprise Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- unencrypted
Source
Sap Hana Enterprise Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- native
Network SourceEncryption Nne Sap Hana 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 Sap Hana Enterprise Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- unencrypted
Source
Sap Hana Enterprise Configuration Encryption Unencrypted - Data transfer will not be encrypted.
- native_
network_ Sourceencryption_ nne Sap Hana 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 Sap Hana Enterprise Configuration Encryption Tls Encrypted Verify Certificate - Verify and use the certificate provided by the server.
- unencrypted
Source
Sap Hana 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.
SourceSapHanaEnterpriseConfigurationEncryptionNativeNetworkEncryptionNne, SourceSapHanaEnterpriseConfigurationEncryptionNativeNetworkEncryptionNneArgs
- Additional
Properties string - Parsed as JSON.
- Encryption
Algorithm string - This parameter defines what encryption algorithm is used. Default: "AES256"; must be one of ["AES256", "RC4_56", "3DES168"]
- 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", "RC4_56", "3DES168"]
- 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", "RC4_56", "3DES168"]
- 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", "RC4_56", "3DES168"]
- 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", "RC4_56", "3DES168"]
- 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", "RC4_56", "3DES168"]
- encryption
Method String - Default: "clientnne"; must be "clientnne"
SourceSapHanaEnterpriseConfigurationEncryptionTlsEncryptedVerifyCertificate, SourceSapHanaEnterpriseConfigurationEncryptionTlsEncryptedVerifyCertificateArgs
- 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"
SourceSapHanaEnterpriseConfigurationEncryptionUnencrypted, SourceSapHanaEnterpriseConfigurationEncryptionUnencryptedArgs
- 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"
SourceSapHanaEnterpriseConfigurationTunnelMethod, SourceSapHanaEnterpriseConfigurationTunnelMethodArgs
- No
Tunnel SourceSap Hana Enterprise Configuration Tunnel Method No Tunnel - No ssh tunnel needed to connect to database
- Password
Authentication SourceSap Hana Enterprise Configuration Tunnel Method Password Authentication - Connect through a jump server tunnel host using username and password authentication
- Ssh
Key SourceAuthentication Sap Hana Enterprise Configuration Tunnel Method Ssh Key Authentication - Connect through a jump server tunnel host using username and ssh key
- No
Tunnel SourceSap Hana Enterprise Configuration Tunnel Method No Tunnel - No ssh tunnel needed to connect to database
- Password
Authentication SourceSap Hana Enterprise Configuration Tunnel Method Password Authentication - Connect through a jump server tunnel host using username and password authentication
- Ssh
Key SourceAuthentication Sap Hana Enterprise Configuration Tunnel Method Ssh Key Authentication - Connect through a jump server tunnel host using username and ssh key
- no
Tunnel SourceSap Hana Enterprise Configuration Tunnel Method No Tunnel - No ssh tunnel needed to connect to database
- password
Authentication SourceSap Hana Enterprise Configuration Tunnel Method Password Authentication - Connect through a jump server tunnel host using username and password authentication
- ssh
Key SourceAuthentication Sap Hana Enterprise Configuration Tunnel Method Ssh Key Authentication - Connect through a jump server tunnel host using username and ssh key
- no
Tunnel SourceSap Hana Enterprise Configuration Tunnel Method No Tunnel - No ssh tunnel needed to connect to database
- password
Authentication SourceSap Hana Enterprise Configuration Tunnel Method Password Authentication - Connect through a jump server tunnel host using username and password authentication
- ssh
Key SourceAuthentication Sap Hana Enterprise Configuration Tunnel Method Ssh Key Authentication - Connect through a jump server tunnel host using username and ssh key
- no_
tunnel SourceSap Hana Enterprise Configuration Tunnel Method No Tunnel - No ssh tunnel needed to connect to database
- password_
authentication SourceSap Hana Enterprise Configuration Tunnel Method Password Authentication - Connect through a jump server tunnel host using username and password authentication
- ssh_
key_ Sourceauthentication Sap Hana 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
SourceSapHanaEnterpriseConfigurationTunnelMethodNoTunnel, SourceSapHanaEnterpriseConfigurationTunnelMethodNoTunnelArgs
- 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"
SourceSapHanaEnterpriseConfigurationTunnelMethodPasswordAuthentication, SourceSapHanaEnterpriseConfigurationTunnelMethodPasswordAuthenticationArgs
- 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
SourceSapHanaEnterpriseConfigurationTunnelMethodSshKeyAuthentication, SourceSapHanaEnterpriseConfigurationTunnelMethodSshKeyAuthenticationArgs
- 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
SourceSapHanaEnterpriseResourceAllocation, SourceSapHanaEnterpriseResourceAllocationArgs
- Default
Source
Sap Hana Enterprise Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<SourceSap Hana Enterprise Resource Allocation Job Specific>
- Default
Source
Sap Hana Enterprise Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []SourceSap Hana Enterprise Resource Allocation Job Specific
- default_
Source
Sap Hana Enterprise Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<SourceSap Hana Enterprise Resource Allocation Job Specific>
- default
Source
Sap Hana Enterprise Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics SourceSap Hana Enterprise Resource Allocation Job Specific[]
- default
Source
Sap Hana Enterprise Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[SourceSap Hana Enterprise Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
SourceSapHanaEnterpriseResourceAllocationDefault, SourceSapHanaEnterpriseResourceAllocationDefaultArgs
- 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
SourceSapHanaEnterpriseResourceAllocationJobSpecific, SourceSapHanaEnterpriseResourceAllocationJobSpecificArgs
- 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 SourceSap Hana 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 SourceSap Hana 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 SourceSap Hana 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 SourceSap Hana 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 SourceSap Hana 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)
SourceSapHanaEnterpriseResourceAllocationJobSpecificResourceRequirements, SourceSapHanaEnterpriseResourceAllocationJobSpecificResourceRequirementsArgs
- 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/sourceSapHanaEnterprise:SourceSapHanaEnterprise my_airbyte_source_sap_hana_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.