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

airbyte.SourceMixpanel

Explore with Pulumi AI

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

    SourceMixpanel 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.SourceMixpanel;
    import com.pulumi.airbyte.SourceMixpanelArgs;
    import com.pulumi.airbyte.inputs.SourceMixpanelConfigurationArgs;
    import com.pulumi.airbyte.inputs.SourceMixpanelConfigurationCredentialsArgs;
    import com.pulumi.airbyte.inputs.SourceMixpanelConfigurationCredentialsServiceAccountArgs;
    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 mySourceMixpanel = new SourceMixpanel("mySourceMixpanel", SourceMixpanelArgs.builder()
                .configuration(SourceMixpanelConfigurationArgs.builder()
                    .attribution_window(10)
                    .credentials(SourceMixpanelConfigurationCredentialsArgs.builder()
                        .serviceAccount(SourceMixpanelConfigurationCredentialsServiceAccountArgs.builder()
                            .projectId(10)
                            .secret("...my_secret...")
                            .username("...my_username...")
                            .build())
                        .build())
                    .date_window_size(10)
                    .end_date("2021-11-16")
                    .export_lookback_window(9)
                    .page_size(6)
                    .project_timezone("US/Pacific")
                    .region("US")
                    .select_properties_by_default(true)
                    .start_date("2021-11-16")
                    .build())
                .definitionId("ec7b9d35-13cb-4117-b2ed-d8a6874a4325")
                .secretId("...my_secret_id...")
                .workspaceId("350068e1-f8f0-490a-ba81-d5400042882c")
                .build());
    
        }
    }
    
    resources:
      mySourceMixpanel:
        type: airbyte:SourceMixpanel
        properties:
          configuration:
            attribution_window: 10
            credentials:
              serviceAccount:
                projectId: 10
                secret: '...my_secret...'
                username: '...my_username...'
            date_window_size: 10
            end_date: 2021-11-16
            export_lookback_window: 9
            page_size: 6
            project_timezone: US/Pacific
            region: US
            select_properties_by_default: true
            start_date: 2021-11-16
          definitionId: ec7b9d35-13cb-4117-b2ed-d8a6874a4325
          secretId: '...my_secret_id...'
          workspaceId: 350068e1-f8f0-490a-ba81-d5400042882c
    

    Create SourceMixpanel Resource

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

    Constructor syntax

    new SourceMixpanel(name: string, args: SourceMixpanelArgs, opts?: CustomResourceOptions);
    @overload
    def SourceMixpanel(resource_name: str,
                       args: SourceMixpanelArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def SourceMixpanel(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       configuration: Optional[SourceMixpanelConfigurationArgs] = None,
                       workspace_id: Optional[str] = None,
                       definition_id: Optional[str] = None,
                       name: Optional[str] = None,
                       secret_id: Optional[str] = None)
    func NewSourceMixpanel(ctx *Context, name string, args SourceMixpanelArgs, opts ...ResourceOption) (*SourceMixpanel, error)
    public SourceMixpanel(string name, SourceMixpanelArgs args, CustomResourceOptions? opts = null)
    public SourceMixpanel(String name, SourceMixpanelArgs args)
    public SourceMixpanel(String name, SourceMixpanelArgs args, CustomResourceOptions options)
    
    type: airbyte:SourceMixpanel
    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 SourceMixpanelArgs
    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 SourceMixpanelArgs
    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 SourceMixpanelArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SourceMixpanelArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SourceMixpanelArgs
    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 sourceMixpanelResource = new Airbyte.SourceMixpanel("sourceMixpanelResource", new()
    {
        Configuration = new Airbyte.Inputs.SourceMixpanelConfigurationArgs
        {
            Credentials = new Airbyte.Inputs.SourceMixpanelConfigurationCredentialsArgs
            {
                ProjectSecret = new Airbyte.Inputs.SourceMixpanelConfigurationCredentialsProjectSecretArgs
                {
                    ApiSecret = "string",
                },
                ServiceAccount = new Airbyte.Inputs.SourceMixpanelConfigurationCredentialsServiceAccountArgs
                {
                    ProjectId = 0,
                    Secret = "string",
                    Username = "string",
                },
            },
            AttributionWindow = 0,
            DateWindowSize = 0,
            EndDate = "string",
            ExportLookbackWindow = 0,
            PageSize = 0,
            ProjectTimezone = "string",
            Region = "string",
            SelectPropertiesByDefault = false,
            StartDate = "string",
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
        SecretId = "string",
    });
    
    example, err := airbyte.NewSourceMixpanel(ctx, "sourceMixpanelResource", &airbyte.SourceMixpanelArgs{
    Configuration: &.SourceMixpanelConfigurationArgs{
    Credentials: &.SourceMixpanelConfigurationCredentialsArgs{
    ProjectSecret: &.SourceMixpanelConfigurationCredentialsProjectSecretArgs{
    ApiSecret: pulumi.String("string"),
    },
    ServiceAccount: &.SourceMixpanelConfigurationCredentialsServiceAccountArgs{
    ProjectId: pulumi.Float64(0),
    Secret: pulumi.String("string"),
    Username: pulumi.String("string"),
    },
    },
    AttributionWindow: pulumi.Float64(0),
    DateWindowSize: pulumi.Float64(0),
    EndDate: pulumi.String("string"),
    ExportLookbackWindow: pulumi.Float64(0),
    PageSize: pulumi.Float64(0),
    ProjectTimezone: pulumi.String("string"),
    Region: pulumi.String("string"),
    SelectPropertiesByDefault: pulumi.Bool(false),
    StartDate: pulumi.String("string"),
    },
    WorkspaceId: pulumi.String("string"),
    DefinitionId: pulumi.String("string"),
    Name: pulumi.String("string"),
    SecretId: pulumi.String("string"),
    })
    
    var sourceMixpanelResource = new SourceMixpanel("sourceMixpanelResource", SourceMixpanelArgs.builder()
        .configuration(SourceMixpanelConfigurationArgs.builder()
            .credentials(SourceMixpanelConfigurationCredentialsArgs.builder()
                .projectSecret(SourceMixpanelConfigurationCredentialsProjectSecretArgs.builder()
                    .apiSecret("string")
                    .build())
                .serviceAccount(SourceMixpanelConfigurationCredentialsServiceAccountArgs.builder()
                    .projectId(0)
                    .secret("string")
                    .username("string")
                    .build())
                .build())
            .attributionWindow(0)
            .dateWindowSize(0)
            .endDate("string")
            .exportLookbackWindow(0)
            .pageSize(0)
            .projectTimezone("string")
            .region("string")
            .selectPropertiesByDefault(false)
            .startDate("string")
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .secretId("string")
        .build());
    
    source_mixpanel_resource = airbyte.SourceMixpanel("sourceMixpanelResource",
        configuration={
            "credentials": {
                "project_secret": {
                    "api_secret": "string",
                },
                "service_account": {
                    "project_id": 0,
                    "secret": "string",
                    "username": "string",
                },
            },
            "attribution_window": 0,
            "date_window_size": 0,
            "end_date": "string",
            "export_lookback_window": 0,
            "page_size": 0,
            "project_timezone": "string",
            "region": "string",
            "select_properties_by_default": False,
            "start_date": "string",
        },
        workspace_id="string",
        definition_id="string",
        name="string",
        secret_id="string")
    
    const sourceMixpanelResource = new airbyte.SourceMixpanel("sourceMixpanelResource", {
        configuration: {
            credentials: {
                projectSecret: {
                    apiSecret: "string",
                },
                serviceAccount: {
                    projectId: 0,
                    secret: "string",
                    username: "string",
                },
            },
            attributionWindow: 0,
            dateWindowSize: 0,
            endDate: "string",
            exportLookbackWindow: 0,
            pageSize: 0,
            projectTimezone: "string",
            region: "string",
            selectPropertiesByDefault: false,
            startDate: "string",
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
        secretId: "string",
    });
    
    type: airbyte:SourceMixpanel
    properties:
        configuration:
            attributionWindow: 0
            credentials:
                projectSecret:
                    apiSecret: string
                serviceAccount:
                    projectId: 0
                    secret: string
                    username: string
            dateWindowSize: 0
            endDate: string
            exportLookbackWindow: 0
            pageSize: 0
            projectTimezone: string
            region: string
            selectPropertiesByDefault: false
            startDate: string
        definitionId: string
        name: string
        secretId: string
        workspaceId: string
    

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

    Configuration SourceMixpanelConfiguration
    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 SourceMixpanelConfigurationArgs
    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 SourceMixpanelConfiguration
    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 SourceMixpanelConfiguration
    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 SourceMixpanelConfigurationArgs
    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 SourceMixpanel resource produces the following output properties:

    CreatedAt double
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation SourceMixpanelResourceAllocation
    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 SourceMixpanelResourceAllocation
    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 SourceMixpanelResourceAllocation
    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 SourceMixpanelResourceAllocation
    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 SourceMixpanelResourceAllocation
    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 SourceMixpanel Resource

    Get an existing SourceMixpanel 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?: SourceMixpanelState, opts?: CustomResourceOptions): SourceMixpanel
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[SourceMixpanelConfigurationArgs] = None,
            created_at: Optional[float] = None,
            definition_id: Optional[str] = None,
            name: Optional[str] = None,
            resource_allocation: Optional[SourceMixpanelResourceAllocationArgs] = None,
            secret_id: Optional[str] = None,
            source_id: Optional[str] = None,
            source_type: Optional[str] = None,
            workspace_id: Optional[str] = None) -> SourceMixpanel
    func GetSourceMixpanel(ctx *Context, name string, id IDInput, state *SourceMixpanelState, opts ...ResourceOption) (*SourceMixpanel, error)
    public static SourceMixpanel Get(string name, Input<string> id, SourceMixpanelState? state, CustomResourceOptions? opts = null)
    public static SourceMixpanel get(String name, Output<String> id, SourceMixpanelState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:SourceMixpanel    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 SourceMixpanelConfiguration
    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 SourceMixpanelResourceAllocation
    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 SourceMixpanelConfigurationArgs
    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 SourceMixpanelResourceAllocationArgs
    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 SourceMixpanelConfiguration
    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 SourceMixpanelResourceAllocation
    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 SourceMixpanelConfiguration
    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 SourceMixpanelResourceAllocation
    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 SourceMixpanelConfigurationArgs
    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 SourceMixpanelResourceAllocationArgs
    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

    SourceMixpanelConfiguration, SourceMixpanelConfigurationArgs

    Credentials SourceMixpanelConfigurationCredentials
    Choose how to authenticate to Mixpanel
    AttributionWindow double
    A period of time for attributing results to ads and the lookback period after those actions occur during which ad results are counted. Default attribution window is 5 days. (This value should be non-negative integer). Default: 5
    DateWindowSize double
    Defines window size in days, that used to slice through data. You can reduce it, if amount of data in each window is too big for your environment. (This value should be positive integer). Default: 30
    EndDate string
    The date in the format YYYY-MM-DD. Any data after this date will not be replicated. Left empty to always sync to most recent date
    ExportLookbackWindow double
    The number of seconds to look back from the last synced timestamp during incremental syncs of the Export stream. This ensures no data is missed due to delays in event recording. Default is 0 seconds. Must be a non-negative integer. Default: 0
    PageSize double
    The number of records to fetch per request for the engage stream. Default is 1000. If you are experiencing long sync times with this stream, try increasing this value. Default: 1000
    ProjectTimezone string
    Time zone in which integer date times are stored. The project timezone may be found in the project settings in the \n\nMixpanel console\n\n. Default: "US/Pacific"
    Region string
    The region of mixpanel domain instance either US or EU. Default: "US"; must be one of ["US", "EU"]
    SelectPropertiesByDefault bool
    Setting this config parameter to TRUE ensures that new properties on events and engage records are captured. Otherwise new properties will be ignored. Default: true
    StartDate string
    The date in the format YYYY-MM-DD. Any data before this date will not be replicated. If this option is not set, the connector will replicate data from up to one year ago by default.
    Credentials SourceMixpanelConfigurationCredentials
    Choose how to authenticate to Mixpanel
    AttributionWindow float64
    A period of time for attributing results to ads and the lookback period after those actions occur during which ad results are counted. Default attribution window is 5 days. (This value should be non-negative integer). Default: 5
    DateWindowSize float64
    Defines window size in days, that used to slice through data. You can reduce it, if amount of data in each window is too big for your environment. (This value should be positive integer). Default: 30
    EndDate string
    The date in the format YYYY-MM-DD. Any data after this date will not be replicated. Left empty to always sync to most recent date
    ExportLookbackWindow float64
    The number of seconds to look back from the last synced timestamp during incremental syncs of the Export stream. This ensures no data is missed due to delays in event recording. Default is 0 seconds. Must be a non-negative integer. Default: 0
    PageSize float64
    The number of records to fetch per request for the engage stream. Default is 1000. If you are experiencing long sync times with this stream, try increasing this value. Default: 1000
    ProjectTimezone string
    Time zone in which integer date times are stored. The project timezone may be found in the project settings in the \n\nMixpanel console\n\n. Default: "US/Pacific"
    Region string
    The region of mixpanel domain instance either US or EU. Default: "US"; must be one of ["US", "EU"]
    SelectPropertiesByDefault bool
    Setting this config parameter to TRUE ensures that new properties on events and engage records are captured. Otherwise new properties will be ignored. Default: true
    StartDate string
    The date in the format YYYY-MM-DD. Any data before this date will not be replicated. If this option is not set, the connector will replicate data from up to one year ago by default.
    credentials SourceMixpanelConfigurationCredentials
    Choose how to authenticate to Mixpanel
    attributionWindow Double
    A period of time for attributing results to ads and the lookback period after those actions occur during which ad results are counted. Default attribution window is 5 days. (This value should be non-negative integer). Default: 5
    dateWindowSize Double
    Defines window size in days, that used to slice through data. You can reduce it, if amount of data in each window is too big for your environment. (This value should be positive integer). Default: 30
    endDate String
    The date in the format YYYY-MM-DD. Any data after this date will not be replicated. Left empty to always sync to most recent date
    exportLookbackWindow Double
    The number of seconds to look back from the last synced timestamp during incremental syncs of the Export stream. This ensures no data is missed due to delays in event recording. Default is 0 seconds. Must be a non-negative integer. Default: 0
    pageSize Double
    The number of records to fetch per request for the engage stream. Default is 1000. If you are experiencing long sync times with this stream, try increasing this value. Default: 1000
    projectTimezone String
    Time zone in which integer date times are stored. The project timezone may be found in the project settings in the \n\nMixpanel console\n\n. Default: "US/Pacific"
    region String
    The region of mixpanel domain instance either US or EU. Default: "US"; must be one of ["US", "EU"]
    selectPropertiesByDefault Boolean
    Setting this config parameter to TRUE ensures that new properties on events and engage records are captured. Otherwise new properties will be ignored. Default: true
    startDate String
    The date in the format YYYY-MM-DD. Any data before this date will not be replicated. If this option is not set, the connector will replicate data from up to one year ago by default.
    credentials SourceMixpanelConfigurationCredentials
    Choose how to authenticate to Mixpanel
    attributionWindow number
    A period of time for attributing results to ads and the lookback period after those actions occur during which ad results are counted. Default attribution window is 5 days. (This value should be non-negative integer). Default: 5
    dateWindowSize number
    Defines window size in days, that used to slice through data. You can reduce it, if amount of data in each window is too big for your environment. (This value should be positive integer). Default: 30
    endDate string
    The date in the format YYYY-MM-DD. Any data after this date will not be replicated. Left empty to always sync to most recent date
    exportLookbackWindow number
    The number of seconds to look back from the last synced timestamp during incremental syncs of the Export stream. This ensures no data is missed due to delays in event recording. Default is 0 seconds. Must be a non-negative integer. Default: 0
    pageSize number
    The number of records to fetch per request for the engage stream. Default is 1000. If you are experiencing long sync times with this stream, try increasing this value. Default: 1000
    projectTimezone string
    Time zone in which integer date times are stored. The project timezone may be found in the project settings in the \n\nMixpanel console\n\n. Default: "US/Pacific"
    region string
    The region of mixpanel domain instance either US or EU. Default: "US"; must be one of ["US", "EU"]
    selectPropertiesByDefault boolean
    Setting this config parameter to TRUE ensures that new properties on events and engage records are captured. Otherwise new properties will be ignored. Default: true
    startDate string
    The date in the format YYYY-MM-DD. Any data before this date will not be replicated. If this option is not set, the connector will replicate data from up to one year ago by default.
    credentials SourceMixpanelConfigurationCredentials
    Choose how to authenticate to Mixpanel
    attribution_window float
    A period of time for attributing results to ads and the lookback period after those actions occur during which ad results are counted. Default attribution window is 5 days. (This value should be non-negative integer). Default: 5
    date_window_size float
    Defines window size in days, that used to slice through data. You can reduce it, if amount of data in each window is too big for your environment. (This value should be positive integer). Default: 30
    end_date str
    The date in the format YYYY-MM-DD. Any data after this date will not be replicated. Left empty to always sync to most recent date
    export_lookback_window float
    The number of seconds to look back from the last synced timestamp during incremental syncs of the Export stream. This ensures no data is missed due to delays in event recording. Default is 0 seconds. Must be a non-negative integer. Default: 0
    page_size float
    The number of records to fetch per request for the engage stream. Default is 1000. If you are experiencing long sync times with this stream, try increasing this value. Default: 1000
    project_timezone str
    Time zone in which integer date times are stored. The project timezone may be found in the project settings in the \n\nMixpanel console\n\n. Default: "US/Pacific"
    region str
    The region of mixpanel domain instance either US or EU. Default: "US"; must be one of ["US", "EU"]
    select_properties_by_default bool
    Setting this config parameter to TRUE ensures that new properties on events and engage records are captured. Otherwise new properties will be ignored. Default: true
    start_date str
    The date in the format YYYY-MM-DD. Any data before this date will not be replicated. If this option is not set, the connector will replicate data from up to one year ago by default.
    credentials Property Map
    Choose how to authenticate to Mixpanel
    attributionWindow Number
    A period of time for attributing results to ads and the lookback period after those actions occur during which ad results are counted. Default attribution window is 5 days. (This value should be non-negative integer). Default: 5
    dateWindowSize Number
    Defines window size in days, that used to slice through data. You can reduce it, if amount of data in each window is too big for your environment. (This value should be positive integer). Default: 30
    endDate String
    The date in the format YYYY-MM-DD. Any data after this date will not be replicated. Left empty to always sync to most recent date
    exportLookbackWindow Number
    The number of seconds to look back from the last synced timestamp during incremental syncs of the Export stream. This ensures no data is missed due to delays in event recording. Default is 0 seconds. Must be a non-negative integer. Default: 0
    pageSize Number
    The number of records to fetch per request for the engage stream. Default is 1000. If you are experiencing long sync times with this stream, try increasing this value. Default: 1000
    projectTimezone String
    Time zone in which integer date times are stored. The project timezone may be found in the project settings in the \n\nMixpanel console\n\n. Default: "US/Pacific"
    region String
    The region of mixpanel domain instance either US or EU. Default: "US"; must be one of ["US", "EU"]
    selectPropertiesByDefault Boolean
    Setting this config parameter to TRUE ensures that new properties on events and engage records are captured. Otherwise new properties will be ignored. Default: true
    startDate String
    The date in the format YYYY-MM-DD. Any data before this date will not be replicated. If this option is not set, the connector will replicate data from up to one year ago by default.

    SourceMixpanelConfigurationCredentials, SourceMixpanelConfigurationCredentialsArgs

    SourceMixpanelConfigurationCredentialsProjectSecret, SourceMixpanelConfigurationCredentialsProjectSecretArgs

    ApiSecret string
    Mixpanel project secret. See the \n\ndocs\n\n for more information on how to obtain this.
    ApiSecret string
    Mixpanel project secret. See the \n\ndocs\n\n for more information on how to obtain this.
    apiSecret String
    Mixpanel project secret. See the \n\ndocs\n\n for more information on how to obtain this.
    apiSecret string
    Mixpanel project secret. See the \n\ndocs\n\n for more information on how to obtain this.
    api_secret str
    Mixpanel project secret. See the \n\ndocs\n\n for more information on how to obtain this.
    apiSecret String
    Mixpanel project secret. See the \n\ndocs\n\n for more information on how to obtain this.

    SourceMixpanelConfigurationCredentialsServiceAccount, SourceMixpanelConfigurationCredentialsServiceAccountArgs

    ProjectId double
    Your project ID number. See the \n\ndocs\n\n for more information on how to obtain this.
    Secret string
    Mixpanel Service Account Secret. See the \n\ndocs\n\n for more information on how to obtain this.
    Username string
    Mixpanel Service Account Username. See the \n\ndocs\n\n for more information on how to obtain this.
    ProjectId float64
    Your project ID number. See the \n\ndocs\n\n for more information on how to obtain this.
    Secret string
    Mixpanel Service Account Secret. See the \n\ndocs\n\n for more information on how to obtain this.
    Username string
    Mixpanel Service Account Username. See the \n\ndocs\n\n for more information on how to obtain this.
    projectId Double
    Your project ID number. See the \n\ndocs\n\n for more information on how to obtain this.
    secret String
    Mixpanel Service Account Secret. See the \n\ndocs\n\n for more information on how to obtain this.
    username String
    Mixpanel Service Account Username. See the \n\ndocs\n\n for more information on how to obtain this.
    projectId number
    Your project ID number. See the \n\ndocs\n\n for more information on how to obtain this.
    secret string
    Mixpanel Service Account Secret. See the \n\ndocs\n\n for more information on how to obtain this.
    username string
    Mixpanel Service Account Username. See the \n\ndocs\n\n for more information on how to obtain this.
    project_id float
    Your project ID number. See the \n\ndocs\n\n for more information on how to obtain this.
    secret str
    Mixpanel Service Account Secret. See the \n\ndocs\n\n for more information on how to obtain this.
    username str
    Mixpanel Service Account Username. See the \n\ndocs\n\n for more information on how to obtain this.
    projectId Number
    Your project ID number. See the \n\ndocs\n\n for more information on how to obtain this.
    secret String
    Mixpanel Service Account Secret. See the \n\ndocs\n\n for more information on how to obtain this.
    username String
    Mixpanel Service Account Username. See the \n\ndocs\n\n for more information on how to obtain this.

    SourceMixpanelResourceAllocation, SourceMixpanelResourceAllocationArgs

    Default SourceMixpanelResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    JobSpecifics List<SourceMixpanelResourceAllocationJobSpecific>
    Default SourceMixpanelResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    JobSpecifics []SourceMixpanelResourceAllocationJobSpecific
    default_ SourceMixpanelResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics List<SourceMixpanelResourceAllocationJobSpecific>
    default SourceMixpanelResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics SourceMixpanelResourceAllocationJobSpecific[]
    default SourceMixpanelResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    job_specifics Sequence[SourceMixpanelResourceAllocationJobSpecific]
    default Property Map
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics List<Property Map>

    SourceMixpanelResourceAllocationDefault, SourceMixpanelResourceAllocationDefaultArgs

    SourceMixpanelResourceAllocationJobSpecific, SourceMixpanelResourceAllocationJobSpecificArgs

    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 SourceMixpanelResourceAllocationJobSpecificResourceRequirements
    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 SourceMixpanelResourceAllocationJobSpecificResourceRequirements
    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 SourceMixpanelResourceAllocationJobSpecificResourceRequirements
    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 SourceMixpanelResourceAllocationJobSpecificResourceRequirements
    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 SourceMixpanelResourceAllocationJobSpecificResourceRequirements
    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)

    SourceMixpanelResourceAllocationJobSpecificResourceRequirements, SourceMixpanelResourceAllocationJobSpecificResourceRequirementsArgs

    Import

    $ pulumi import airbyte:index/sourceMixpanel:SourceMixpanel my_airbyte_source_mixpanel ""
    

    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