1. Packages
  2. Airbyte Provider
  3. API Docs
  4. SourceNetsuiteEnterprise
airbyte 0.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq

airbyte.SourceNetsuiteEnterprise

Explore with Pulumi AI

airbyte logo
airbyte 0.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq

    SourceNetsuiteEnterprise 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.SourceNetsuiteEnterprise;
    import com.pulumi.airbyte.SourceNetsuiteEnterpriseArgs;
    import com.pulumi.airbyte.inputs.SourceNetsuiteEnterpriseConfigurationArgs;
    import com.pulumi.airbyte.inputs.SourceNetsuiteEnterpriseConfigurationCursorArgs;
    import com.pulumi.airbyte.inputs.SourceNetsuiteEnterpriseConfigurationCursorScanChangesWithUserDefinedCursorArgs;
    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 mySourceNetsuiteenterprise = new SourceNetsuiteEnterprise("mySourceNetsuiteenterprise", SourceNetsuiteEnterpriseArgs.builder()
                .configuration(SourceNetsuiteEnterpriseConfigurationArgs.builder()
                    .account_id("...my_account_id...")
                    .check_privileges(true)
                    .checkpoint_target_interval_seconds(0)
                    .concurrency(0)
                    .cursor(SourceNetsuiteEnterpriseConfigurationCursorArgs.builder()
                        .scanChangesWithUserDefinedCursor(SourceNetsuiteEnterpriseConfigurationCursorScanChangesWithUserDefinedCursorArgs.builder()
                            .additionalProperties("{ \"see\": \"documentation\" }")
                            .cursorMethod("user_defined")
                            .build())
                        .build())
                    .host("...my_host...")
                    .jdbc_url_params("...my_jdbc_url_params...")
                    .password("...my_password...")
                    .port(23532)
                    .role_id("...my_role_id...")
                    .tunnel_method(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .username("...my_username...")
                    .build())
                .definitionId("b1a37fdc-e9dc-446b-bb63-0075ceb6310e")
                .secretId("...my_secret_id...")
                .workspaceId("32a5fd0b-a2bf-4401-ab81-427ed8dbf79a")
                .build());
    
        }
    }
    
    resources:
      mySourceNetsuiteenterprise:
        type: airbyte:SourceNetsuiteEnterprise
        properties:
          configuration:
            account_id: '...my_account_id...'
            check_privileges: true
            checkpoint_target_interval_seconds: 0
            concurrency: 0
            cursor:
              scanChangesWithUserDefinedCursor:
                additionalProperties: '{ "see": "documentation" }'
                cursorMethod: user_defined
            host: '...my_host...'
            jdbc_url_params: '...my_jdbc_url_params...'
            password: '...my_password...'
            port: 23532
            role_id: '...my_role_id...'
            tunnel_method:
              sshKeyAuthentication:
                additionalProperties: '{ "see": "documentation" }'
                sshKey: '...my_ssh_key...'
                tunnelHost: '...my_tunnel_host...'
                tunnelMethod: SSH_KEY_AUTH
                tunnelPort: 57500
                tunnelUser: '...my_tunnel_user...'
            username: '...my_username...'
          definitionId: b1a37fdc-e9dc-446b-bb63-0075ceb6310e
          secretId: '...my_secret_id...'
          workspaceId: 32a5fd0b-a2bf-4401-ab81-427ed8dbf79a
    

    Create SourceNetsuiteEnterprise Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SourceNetsuiteEnterprise(name: string, args: SourceNetsuiteEnterpriseArgs, opts?: CustomResourceOptions);
    @overload
    def SourceNetsuiteEnterprise(resource_name: str,
                                 args: SourceNetsuiteEnterpriseArgs,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def SourceNetsuiteEnterprise(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 configuration: Optional[SourceNetsuiteEnterpriseConfigurationArgs] = None,
                                 workspace_id: Optional[str] = None,
                                 definition_id: Optional[str] = None,
                                 name: Optional[str] = None,
                                 secret_id: Optional[str] = None)
    func NewSourceNetsuiteEnterprise(ctx *Context, name string, args SourceNetsuiteEnterpriseArgs, opts ...ResourceOption) (*SourceNetsuiteEnterprise, error)
    public SourceNetsuiteEnterprise(string name, SourceNetsuiteEnterpriseArgs args, CustomResourceOptions? opts = null)
    public SourceNetsuiteEnterprise(String name, SourceNetsuiteEnterpriseArgs args)
    public SourceNetsuiteEnterprise(String name, SourceNetsuiteEnterpriseArgs args, CustomResourceOptions options)
    
    type: airbyte:SourceNetsuiteEnterprise
    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 SourceNetsuiteEnterpriseArgs
    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 SourceNetsuiteEnterpriseArgs
    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 SourceNetsuiteEnterpriseArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SourceNetsuiteEnterpriseArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SourceNetsuiteEnterpriseArgs
    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 sourceNetsuiteEnterpriseResource = new Airbyte.SourceNetsuiteEnterprise("sourceNetsuiteEnterpriseResource", new()
    {
        Configuration = new Airbyte.Inputs.SourceNetsuiteEnterpriseConfigurationArgs
        {
            AccountId = "string",
            Cursor = new Airbyte.Inputs.SourceNetsuiteEnterpriseConfigurationCursorArgs
            {
                ScanChangesWithUserDefinedCursor = new Airbyte.Inputs.SourceNetsuiteEnterpriseConfigurationCursorScanChangesWithUserDefinedCursorArgs
                {
                    AdditionalProperties = "string",
                    CursorMethod = "string",
                },
            },
            Host = "string",
            RoleId = "string",
            TunnelMethod = new Airbyte.Inputs.SourceNetsuiteEnterpriseConfigurationTunnelMethodArgs
            {
                NoTunnel = new Airbyte.Inputs.SourceNetsuiteEnterpriseConfigurationTunnelMethodNoTunnelArgs
                {
                    AdditionalProperties = "string",
                    TunnelMethod = "string",
                },
                PasswordAuthentication = new Airbyte.Inputs.SourceNetsuiteEnterpriseConfigurationTunnelMethodPasswordAuthenticationArgs
                {
                    TunnelHost = "string",
                    TunnelUser = "string",
                    TunnelUserPassword = "string",
                    AdditionalProperties = "string",
                    TunnelMethod = "string",
                    TunnelPort = 0,
                },
                SshKeyAuthentication = new Airbyte.Inputs.SourceNetsuiteEnterpriseConfigurationTunnelMethodSshKeyAuthenticationArgs
                {
                    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,
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
        SecretId = "string",
    });
    
    example, err := airbyte.NewSourceNetsuiteEnterprise(ctx, "sourceNetsuiteEnterpriseResource", &airbyte.SourceNetsuiteEnterpriseArgs{
    Configuration: &.SourceNetsuiteEnterpriseConfigurationArgs{
    AccountId: pulumi.String("string"),
    Cursor: &.SourceNetsuiteEnterpriseConfigurationCursorArgs{
    ScanChangesWithUserDefinedCursor: &.SourceNetsuiteEnterpriseConfigurationCursorScanChangesWithUserDefinedCursorArgs{
    AdditionalProperties: pulumi.String("string"),
    CursorMethod: pulumi.String("string"),
    },
    },
    Host: pulumi.String("string"),
    RoleId: pulumi.String("string"),
    TunnelMethod: &.SourceNetsuiteEnterpriseConfigurationTunnelMethodArgs{
    NoTunnel: &.SourceNetsuiteEnterpriseConfigurationTunnelMethodNoTunnelArgs{
    AdditionalProperties: pulumi.String("string"),
    TunnelMethod: pulumi.String("string"),
    },
    PasswordAuthentication: &.SourceNetsuiteEnterpriseConfigurationTunnelMethodPasswordAuthenticationArgs{
    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: &.SourceNetsuiteEnterpriseConfigurationTunnelMethodSshKeyAuthenticationArgs{
    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),
    },
    WorkspaceId: pulumi.String("string"),
    DefinitionId: pulumi.String("string"),
    Name: pulumi.String("string"),
    SecretId: pulumi.String("string"),
    })
    
    var sourceNetsuiteEnterpriseResource = new SourceNetsuiteEnterprise("sourceNetsuiteEnterpriseResource", SourceNetsuiteEnterpriseArgs.builder()
        .configuration(SourceNetsuiteEnterpriseConfigurationArgs.builder()
            .accountId("string")
            .cursor(SourceNetsuiteEnterpriseConfigurationCursorArgs.builder()
                .scanChangesWithUserDefinedCursor(SourceNetsuiteEnterpriseConfigurationCursorScanChangesWithUserDefinedCursorArgs.builder()
                    .additionalProperties("string")
                    .cursorMethod("string")
                    .build())
                .build())
            .host("string")
            .roleId("string")
            .tunnelMethod(SourceNetsuiteEnterpriseConfigurationTunnelMethodArgs.builder()
                .noTunnel(SourceNetsuiteEnterpriseConfigurationTunnelMethodNoTunnelArgs.builder()
                    .additionalProperties("string")
                    .tunnelMethod("string")
                    .build())
                .passwordAuthentication(SourceNetsuiteEnterpriseConfigurationTunnelMethodPasswordAuthenticationArgs.builder()
                    .tunnelHost("string")
                    .tunnelUser("string")
                    .tunnelUserPassword("string")
                    .additionalProperties("string")
                    .tunnelMethod("string")
                    .tunnelPort(0)
                    .build())
                .sshKeyAuthentication(SourceNetsuiteEnterpriseConfigurationTunnelMethodSshKeyAuthenticationArgs.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)
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .secretId("string")
        .build());
    
    source_netsuite_enterprise_resource = airbyte.SourceNetsuiteEnterprise("sourceNetsuiteEnterpriseResource",
        configuration={
            "account_id": "string",
            "cursor": {
                "scan_changes_with_user_defined_cursor": {
                    "additional_properties": "string",
                    "cursor_method": "string",
                },
            },
            "host": "string",
            "role_id": "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,
        },
        workspace_id="string",
        definition_id="string",
        name="string",
        secret_id="string")
    
    const sourceNetsuiteEnterpriseResource = new airbyte.SourceNetsuiteEnterprise("sourceNetsuiteEnterpriseResource", {
        configuration: {
            accountId: "string",
            cursor: {
                scanChangesWithUserDefinedCursor: {
                    additionalProperties: "string",
                    cursorMethod: "string",
                },
            },
            host: "string",
            roleId: "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,
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
        secretId: "string",
    });
    
    type: airbyte:SourceNetsuiteEnterprise
    properties:
        configuration:
            accountId: string
            checkPrivileges: false
            checkpointTargetIntervalSeconds: 0
            concurrency: 0
            cursor:
                scanChangesWithUserDefinedCursor:
                    additionalProperties: string
                    cursorMethod: string
            host: string
            jdbcUrlParams: string
            password: string
            port: 0
            roleId: 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
    

    SourceNetsuiteEnterprise 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 SourceNetsuiteEnterprise resource accepts the following input properties:

    Configuration SourceNetsuiteEnterpriseConfiguration
    WorkspaceId string
    DefinitionId 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.
    SecretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    Configuration SourceNetsuiteEnterpriseConfigurationArgs
    WorkspaceId string
    DefinitionId 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.
    SecretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    configuration SourceNetsuiteEnterpriseConfiguration
    workspaceId String
    definitionId 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.
    secretId String
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    configuration SourceNetsuiteEnterpriseConfiguration
    workspaceId string
    definitionId 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.
    secretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    configuration SourceNetsuiteEnterpriseConfigurationArgs
    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
    workspaceId String
    definitionId 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.
    secretId 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 SourceNetsuiteEnterprise resource produces the following output properties:

    CreatedAt double
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation SourceNetsuiteEnterpriseResourceAllocation
    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.
    SourceId string
    SourceType string
    CreatedAt float64
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation SourceNetsuiteEnterpriseResourceAllocation
    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.
    SourceId string
    SourceType string
    createdAt Double
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAllocation SourceNetsuiteEnterpriseResourceAllocation
    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.
    sourceId String
    sourceType String
    createdAt number
    id string
    The provider-assigned unique ID for this managed resource.
    resourceAllocation SourceNetsuiteEnterpriseResourceAllocation
    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.
    sourceId string
    sourceType string
    created_at float
    id str
    The provider-assigned unique ID for this managed resource.
    resource_allocation SourceNetsuiteEnterpriseResourceAllocation
    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
    createdAt Number
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAllocation 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.
    sourceId String
    sourceType String

    Look up Existing SourceNetsuiteEnterprise Resource

    Get an existing SourceNetsuiteEnterprise 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?: SourceNetsuiteEnterpriseState, opts?: CustomResourceOptions): SourceNetsuiteEnterprise
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[SourceNetsuiteEnterpriseConfigurationArgs] = None,
            created_at: Optional[float] = None,
            definition_id: Optional[str] = None,
            name: Optional[str] = None,
            resource_allocation: Optional[SourceNetsuiteEnterpriseResourceAllocationArgs] = None,
            secret_id: Optional[str] = None,
            source_id: Optional[str] = None,
            source_type: Optional[str] = None,
            workspace_id: Optional[str] = None) -> SourceNetsuiteEnterprise
    func GetSourceNetsuiteEnterprise(ctx *Context, name string, id IDInput, state *SourceNetsuiteEnterpriseState, opts ...ResourceOption) (*SourceNetsuiteEnterprise, error)
    public static SourceNetsuiteEnterprise Get(string name, Input<string> id, SourceNetsuiteEnterpriseState? state, CustomResourceOptions? opts = null)
    public static SourceNetsuiteEnterprise get(String name, Output<String> id, SourceNetsuiteEnterpriseState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:SourceNetsuiteEnterprise    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.
    The following state arguments are supported:
    Configuration SourceNetsuiteEnterpriseConfiguration
    CreatedAt double
    DefinitionId 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.
    ResourceAllocation SourceNetsuiteEnterpriseResourceAllocation
    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.
    SecretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    SourceId string
    SourceType string
    WorkspaceId string
    Configuration SourceNetsuiteEnterpriseConfigurationArgs
    CreatedAt float64
    DefinitionId 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.
    ResourceAllocation SourceNetsuiteEnterpriseResourceAllocationArgs
    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.
    SecretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    SourceId string
    SourceType string
    WorkspaceId string
    configuration SourceNetsuiteEnterpriseConfiguration
    createdAt Double
    definitionId 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.
    resourceAllocation SourceNetsuiteEnterpriseResourceAllocation
    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.
    secretId String
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    sourceId String
    sourceType String
    workspaceId String
    configuration SourceNetsuiteEnterpriseConfiguration
    createdAt number
    definitionId 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.
    resourceAllocation SourceNetsuiteEnterpriseResourceAllocation
    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.
    secretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    sourceId string
    sourceType string
    workspaceId string
    configuration SourceNetsuiteEnterpriseConfigurationArgs
    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 SourceNetsuiteEnterpriseResourceAllocationArgs
    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
    createdAt Number
    definitionId 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.
    resourceAllocation 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.
    secretId String
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    sourceId String
    sourceType String
    workspaceId String

    Supporting Types

    SourceNetsuiteEnterpriseConfiguration, SourceNetsuiteEnterpriseConfigurationArgs

    AccountId string
    The username which is used to access the database.
    Cursor SourceNetsuiteEnterpriseConfigurationCursor
    Configures how data is extracted from the database.
    Host string
    Hostname of the database.
    RoleId string
    The username which is used to access the database.
    TunnelMethod SourceNetsuiteEnterpriseConfigurationTunnelMethod
    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.
    CheckPrivileges 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
    CheckpointTargetIntervalSeconds double
    How often (in seconds) a stream should checkpoint, when possible. Default: 300
    Concurrency double
    Maximum number of concurrent queries to the database. Default: 1
    JdbcUrlParams string
    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. Default: 1708
    AccountId string
    The username which is used to access the database.
    Cursor SourceNetsuiteEnterpriseConfigurationCursor
    Configures how data is extracted from the database.
    Host string
    Hostname of the database.
    RoleId string
    The username which is used to access the database.
    TunnelMethod SourceNetsuiteEnterpriseConfigurationTunnelMethod
    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.
    CheckPrivileges 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
    CheckpointTargetIntervalSeconds float64
    How often (in seconds) a stream should checkpoint, when possible. Default: 300
    Concurrency float64
    Maximum number of concurrent queries to the database. Default: 1
    JdbcUrlParams string
    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. Default: 1708
    accountId String
    The username which is used to access the database.
    cursor SourceNetsuiteEnterpriseConfigurationCursor
    Configures how data is extracted from the database.
    host String
    Hostname of the database.
    roleId String
    The username which is used to access the database.
    tunnelMethod SourceNetsuiteEnterpriseConfigurationTunnelMethod
    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.
    checkPrivileges 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
    checkpointTargetIntervalSeconds Double
    How often (in seconds) a stream should checkpoint, when possible. Default: 300
    concurrency Double
    Maximum number of concurrent queries to the database. Default: 1
    jdbcUrlParams String
    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. Default: 1708
    accountId string
    The username which is used to access the database.
    cursor SourceNetsuiteEnterpriseConfigurationCursor
    Configures how data is extracted from the database.
    host string
    Hostname of the database.
    roleId string
    The username which is used to access the database.
    tunnelMethod SourceNetsuiteEnterpriseConfigurationTunnelMethod
    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.
    checkPrivileges 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
    checkpointTargetIntervalSeconds number
    How often (in seconds) a stream should checkpoint, when possible. Default: 300
    concurrency number
    Maximum number of concurrent queries to the database. Default: 1
    jdbcUrlParams string
    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. Default: 1708
    account_id str
    The username which is used to access the database.
    cursor SourceNetsuiteEnterpriseConfigurationCursor
    Configures how data is extracted from the database.
    host str
    Hostname of the database.
    role_id str
    The username which is used to access the database.
    tunnel_method SourceNetsuiteEnterpriseConfigurationTunnelMethod
    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_interval_seconds float
    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_params str
    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. Default: 1708
    accountId String
    The username which is used to access the database.
    cursor Property Map
    Configures how data is extracted from the database.
    host String
    Hostname of the database.
    roleId String
    The username which is used to access the database.
    tunnelMethod 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.
    checkPrivileges 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
    checkpointTargetIntervalSeconds Number
    How often (in seconds) a stream should checkpoint, when possible. Default: 300
    concurrency Number
    Maximum number of concurrent queries to the database. Default: 1
    jdbcUrlParams String
    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. Default: 1708

    SourceNetsuiteEnterpriseConfigurationCursor, SourceNetsuiteEnterpriseConfigurationCursorArgs

    ScanChangesWithUserDefinedCursor SourceNetsuiteEnterpriseConfigurationCursorScanChangesWithUserDefinedCursor
    Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
    ScanChangesWithUserDefinedCursor SourceNetsuiteEnterpriseConfigurationCursorScanChangesWithUserDefinedCursor
    Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
    scanChangesWithUserDefinedCursor SourceNetsuiteEnterpriseConfigurationCursorScanChangesWithUserDefinedCursor
    Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
    scanChangesWithUserDefinedCursor SourceNetsuiteEnterpriseConfigurationCursorScanChangesWithUserDefinedCursor
    Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
    scan_changes_with_user_defined_cursor SourceNetsuiteEnterpriseConfigurationCursorScanChangesWithUserDefinedCursor
    Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).
    scanChangesWithUserDefinedCursor Property Map
    Incrementally detects new inserts and updates using the \n\ncursor column\n\n chosen when configuring a connection (e.g. createdat, updatedat).

    SourceNetsuiteEnterpriseConfigurationCursorScanChangesWithUserDefinedCursor, SourceNetsuiteEnterpriseConfigurationCursorScanChangesWithUserDefinedCursorArgs

    AdditionalProperties string
    Parsed as JSON.
    CursorMethod string
    Default: "userdefined"; must be "userdefined"
    AdditionalProperties string
    Parsed as JSON.
    CursorMethod string
    Default: "userdefined"; must be "userdefined"
    additionalProperties String
    Parsed as JSON.
    cursorMethod String
    Default: "userdefined"; must be "userdefined"
    additionalProperties string
    Parsed as JSON.
    cursorMethod string
    Default: "userdefined"; must be "userdefined"
    additional_properties str
    Parsed as JSON.
    cursor_method str
    Default: "userdefined"; must be "userdefined"
    additionalProperties String
    Parsed as JSON.
    cursorMethod String
    Default: "userdefined"; must be "userdefined"

    SourceNetsuiteEnterpriseConfigurationTunnelMethod, SourceNetsuiteEnterpriseConfigurationTunnelMethodArgs

    NoTunnel SourceNetsuiteEnterpriseConfigurationTunnelMethodNoTunnel
    No ssh tunnel needed to connect to database
    PasswordAuthentication SourceNetsuiteEnterpriseConfigurationTunnelMethodPasswordAuthentication
    Connect through a jump server tunnel host using username and password authentication
    SshKeyAuthentication SourceNetsuiteEnterpriseConfigurationTunnelMethodSshKeyAuthentication
    Connect through a jump server tunnel host using username and ssh key
    NoTunnel SourceNetsuiteEnterpriseConfigurationTunnelMethodNoTunnel
    No ssh tunnel needed to connect to database
    PasswordAuthentication SourceNetsuiteEnterpriseConfigurationTunnelMethodPasswordAuthentication
    Connect through a jump server tunnel host using username and password authentication
    SshKeyAuthentication SourceNetsuiteEnterpriseConfigurationTunnelMethodSshKeyAuthentication
    Connect through a jump server tunnel host using username and ssh key
    noTunnel SourceNetsuiteEnterpriseConfigurationTunnelMethodNoTunnel
    No ssh tunnel needed to connect to database
    passwordAuthentication SourceNetsuiteEnterpriseConfigurationTunnelMethodPasswordAuthentication
    Connect through a jump server tunnel host using username and password authentication
    sshKeyAuthentication SourceNetsuiteEnterpriseConfigurationTunnelMethodSshKeyAuthentication
    Connect through a jump server tunnel host using username and ssh key
    noTunnel SourceNetsuiteEnterpriseConfigurationTunnelMethodNoTunnel
    No ssh tunnel needed to connect to database
    passwordAuthentication SourceNetsuiteEnterpriseConfigurationTunnelMethodPasswordAuthentication
    Connect through a jump server tunnel host using username and password authentication
    sshKeyAuthentication SourceNetsuiteEnterpriseConfigurationTunnelMethodSshKeyAuthentication
    Connect through a jump server tunnel host using username and ssh key
    no_tunnel SourceNetsuiteEnterpriseConfigurationTunnelMethodNoTunnel
    No ssh tunnel needed to connect to database
    password_authentication SourceNetsuiteEnterpriseConfigurationTunnelMethodPasswordAuthentication
    Connect through a jump server tunnel host using username and password authentication
    ssh_key_authentication SourceNetsuiteEnterpriseConfigurationTunnelMethodSshKeyAuthentication
    Connect through a jump server tunnel host using username and ssh key
    noTunnel Property Map
    No ssh tunnel needed to connect to database
    passwordAuthentication Property Map
    Connect through a jump server tunnel host using username and password authentication
    sshKeyAuthentication Property Map
    Connect through a jump server tunnel host using username and ssh key

    SourceNetsuiteEnterpriseConfigurationTunnelMethodNoTunnel, SourceNetsuiteEnterpriseConfigurationTunnelMethodNoTunnelArgs

    AdditionalProperties string
    Parsed as JSON.
    TunnelMethod string
    Default: "NOTUNNEL"; must be "NOTUNNEL"
    AdditionalProperties string
    Parsed as JSON.
    TunnelMethod string
    Default: "NOTUNNEL"; must be "NOTUNNEL"
    additionalProperties String
    Parsed as JSON.
    tunnelMethod String
    Default: "NOTUNNEL"; must be "NOTUNNEL"
    additionalProperties string
    Parsed as JSON.
    tunnelMethod string
    Default: "NOTUNNEL"; must be "NOTUNNEL"
    additional_properties str
    Parsed as JSON.
    tunnel_method str
    Default: "NOTUNNEL"; must be "NOTUNNEL"
    additionalProperties String
    Parsed as JSON.
    tunnelMethod String
    Default: "NOTUNNEL"; must be "NOTUNNEL"

    SourceNetsuiteEnterpriseConfigurationTunnelMethodPasswordAuthentication, SourceNetsuiteEnterpriseConfigurationTunnelMethodPasswordAuthenticationArgs

    TunnelHost string
    Hostname of the jump server host that allows inbound ssh tunnel.
    TunnelUser string
    OS-level username for logging into the jump server host
    TunnelUserPassword string
    OS-level password for logging into the jump server host
    AdditionalProperties string
    Parsed as JSON.
    TunnelMethod string
    Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
    TunnelPort double
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    TunnelHost string
    Hostname of the jump server host that allows inbound ssh tunnel.
    TunnelUser string
    OS-level username for logging into the jump server host
    TunnelUserPassword string
    OS-level password for logging into the jump server host
    AdditionalProperties string
    Parsed as JSON.
    TunnelMethod string
    Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
    TunnelPort float64
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    tunnelHost String
    Hostname of the jump server host that allows inbound ssh tunnel.
    tunnelUser String
    OS-level username for logging into the jump server host
    tunnelUserPassword String
    OS-level password for logging into the jump server host
    additionalProperties String
    Parsed as JSON.
    tunnelMethod String
    Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
    tunnelPort Double
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    tunnelHost string
    Hostname of the jump server host that allows inbound ssh tunnel.
    tunnelUser string
    OS-level username for logging into the jump server host
    tunnelUserPassword string
    OS-level password for logging into the jump server host
    additionalProperties string
    Parsed as JSON.
    tunnelMethod string
    Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
    tunnelPort 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_password str
    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
    tunnelHost String
    Hostname of the jump server host that allows inbound ssh tunnel.
    tunnelUser String
    OS-level username for logging into the jump server host
    tunnelUserPassword String
    OS-level password for logging into the jump server host
    additionalProperties String
    Parsed as JSON.
    tunnelMethod String
    Default: "SSHPASSWORDAUTH"; must be "SSHPASSWORDAUTH"
    tunnelPort Number
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22

    SourceNetsuiteEnterpriseConfigurationTunnelMethodSshKeyAuthentication, SourceNetsuiteEnterpriseConfigurationTunnelMethodSshKeyAuthenticationArgs

    SshKey string
    OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
    TunnelHost string
    Hostname of the jump server host that allows inbound ssh tunnel.
    TunnelUser string
    OS-level username for logging into the jump server host
    AdditionalProperties string
    Parsed as JSON.
    TunnelMethod string
    Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
    TunnelPort double
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    SshKey string
    OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
    TunnelHost string
    Hostname of the jump server host that allows inbound ssh tunnel.
    TunnelUser string
    OS-level username for logging into the jump server host
    AdditionalProperties string
    Parsed as JSON.
    TunnelMethod string
    Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
    TunnelPort float64
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    sshKey String
    OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
    tunnelHost String
    Hostname of the jump server host that allows inbound ssh tunnel.
    tunnelUser String
    OS-level username for logging into the jump server host
    additionalProperties String
    Parsed as JSON.
    tunnelMethod String
    Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
    tunnelPort Double
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22
    sshKey string
    OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
    tunnelHost string
    Hostname of the jump server host that allows inbound ssh tunnel.
    tunnelUser string
    OS-level username for logging into the jump server host
    additionalProperties string
    Parsed as JSON.
    tunnelMethod string
    Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
    tunnelPort 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
    sshKey String
    OS-level user account ssh key credentials in RSA PEM format ( created with ssh-keygen -t rsa -m PEM -f myuser_rsa )
    tunnelHost String
    Hostname of the jump server host that allows inbound ssh tunnel.
    tunnelUser String
    OS-level username for logging into the jump server host
    additionalProperties String
    Parsed as JSON.
    tunnelMethod String
    Default: "SSHKEYAUTH"; must be "SSHKEYAUTH"
    tunnelPort Number
    Port on the proxy/jump server that accepts inbound ssh connections. Default: 22

    SourceNetsuiteEnterpriseResourceAllocation, SourceNetsuiteEnterpriseResourceAllocationArgs

    default Property Map
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics List<Property Map>

    SourceNetsuiteEnterpriseResourceAllocationDefault, SourceNetsuiteEnterpriseResourceAllocationDefaultArgs

    SourceNetsuiteEnterpriseResourceAllocationJobSpecific, SourceNetsuiteEnterpriseResourceAllocationJobSpecificArgs

    JobType 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"]
    ResourceRequirements SourceNetsuiteEnterpriseResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    JobType 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"]
    ResourceRequirements SourceNetsuiteEnterpriseResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType 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"]
    resourceRequirements SourceNetsuiteEnterpriseResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType 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"]
    resourceRequirements SourceNetsuiteEnterpriseResourceAllocationJobSpecificResourceRequirements
    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 SourceNetsuiteEnterpriseResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType 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"]
    resourceRequirements Property Map
    optional resource requirements to run workers (blank for unbounded allocations)

    SourceNetsuiteEnterpriseResourceAllocationJobSpecificResourceRequirements, SourceNetsuiteEnterpriseResourceAllocationJobSpecificResourceRequirementsArgs

    Import

    $ pulumi import airbyte:index/sourceNetsuiteEnterprise:SourceNetsuiteEnterprise my_airbyte_source_netsuite_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.
    airbyte logo
    airbyte 0.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq