airbyte.SourceMixpanel
Explore with Pulumi AI
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
Source
Mixpanel Configuration - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Configuration
Source
Mixpanel Configuration Args - Workspace
Id string - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Mixpanel Configuration - workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Mixpanel Configuration - workspace
Id string - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration
Source
Mixpanel Configuration Args - workspace_
id str - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- configuration Property Map
- workspace
Id String - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
Outputs
All input properties are implicitly available as output properties. Additionally, the SourceMixpanel resource produces the following output properties:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourceMixpanel Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Source
Id string - Source
Type string
- Created
At float64 - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourceMixpanel Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Source
Id string - Source
Type string
- created
At Double - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation SourceMixpanel Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source
Id String - source
Type String
- created
At number - id string
- The provider-assigned unique ID for this managed resource.
- resource
Allocation SourceMixpanel Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source
Id string - source
Type string
- created_
at float - id str
- The provider-assigned unique ID for this managed resource.
- resource_
allocation SourceMixpanel Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source_
id str - source_
type str
- created
At Number - id String
- The provider-assigned unique ID for this managed resource.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- source
Id String - source
Type String
Look up Existing 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.
- Configuration
Source
Mixpanel Configuration - Created
At double - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Resource
Allocation SourceMixpanel Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- Configuration
Source
Mixpanel Configuration Args - Created
At float64 - Definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- Name string
- Name of the source e.g. dev-mysql-instance.
- Resource
Allocation SourceMixpanel Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- Secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- Source
Id string - Source
Type string - Workspace
Id string
- configuration
Source
Mixpanel Configuration - created
At Double - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation SourceMixpanel Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
- configuration
Source
Mixpanel Configuration - created
At number - definition
Id string - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name string
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation SourceMixpanel Resource Allocation - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret
Id string - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id string - source
Type string - workspace
Id string
- configuration
Source
Mixpanel Configuration Args - created_
at float - definition_
id str - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name str
- Name of the source e.g. dev-mysql-instance.
- resource_
allocation SourceMixpanel Resource Allocation Args - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret_
id str - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source_
id str - source_
type str - workspace_
id str
- configuration Property Map
- created
At Number - definition
Id String - The UUID of the connector definition. One of configuration.sourceType or definitionId must be provided. Requires replacement if changed.
- name String
- Name of the source e.g. dev-mysql-instance.
- resource
Allocation Property Map - actor or actor definition specific resource requirements. if default is set, these are the requirements that should be set for ALL jobs run for this actor definition. it is overriden by the job type specific configurations. if not set, the platform will use defaults. these values will be overriden by configuration at the connection level.
- secret
Id String - Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
- source
Id String - source
Type String - workspace
Id String
Supporting Types
SourceMixpanelConfiguration, SourceMixpanelConfigurationArgs
- Credentials
Source
Mixpanel Configuration Credentials - Choose how to authenticate to Mixpanel
- Attribution
Window 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
- Date
Window doubleSize - 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 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
- Export
Lookback doubleWindow - 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 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
- Project
Timezone 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"]
- Select
Properties boolBy Default - 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 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
Source
Mixpanel Configuration Credentials - Choose how to authenticate to Mixpanel
- Attribution
Window 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
- Date
Window float64Size - 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 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
- Export
Lookback float64Window - 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 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
- Project
Timezone 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"]
- Select
Properties boolBy Default - 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 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
Source
Mixpanel Configuration Credentials - Choose how to authenticate to Mixpanel
- attribution
Window 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
- date
Window DoubleSize - 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 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
- export
Lookback DoubleWindow - 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 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
- project
Timezone 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"]
- select
Properties BooleanBy Default - 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 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
Source
Mixpanel Configuration Credentials - Choose how to authenticate to Mixpanel
- attribution
Window 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
- date
Window numberSize - 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 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
- export
Lookback numberWindow - 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 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
- project
Timezone 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"]
- select
Properties booleanBy Default - 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 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
Source
Mixpanel Configuration Credentials - 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_ floatsize - 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_ floatwindow - 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_ boolby_ default - 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
- attribution
Window 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
- date
Window NumberSize - 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 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
- export
Lookback NumberWindow - 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 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
- project
Timezone 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"]
- select
Properties BooleanBy Default - 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 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
- Api
Secret string - Mixpanel project secret. See the \n\ndocs\n\n for more information on how to obtain this.
- Api
Secret string - Mixpanel project secret. See the \n\ndocs\n\n for more information on how to obtain this.
- api
Secret String - Mixpanel project secret. See the \n\ndocs\n\n for more information on how to obtain this.
- api
Secret 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.
- api
Secret String - Mixpanel project secret. See the \n\ndocs\n\n for more information on how to obtain this.
SourceMixpanelConfigurationCredentialsServiceAccount, SourceMixpanelConfigurationCredentialsServiceAccountArgs
- Project
Id 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.
- Project
Id 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.
- project
Id 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.
- project
Id 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.
- project
Id 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
Source
Mixpanel Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<SourceMixpanel Resource Allocation Job Specific>
- Default
Source
Mixpanel Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []SourceMixpanel Resource Allocation Job Specific
- default_
Source
Mixpanel Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<SourceMixpanel Resource Allocation Job Specific>
- default
Source
Mixpanel Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics SourceMixpanel Resource Allocation Job Specific[]
- default
Source
Mixpanel Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[SourceMixpanel Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
SourceMixpanelResourceAllocationDefault, SourceMixpanelResourceAllocationDefaultArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
SourceMixpanelResourceAllocationJobSpecific, SourceMixpanelResourceAllocationJobSpecificArgs
- Job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- Resource
Requirements SourceMixpanel Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- Resource
Requirements SourceMixpanel Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements SourceMixpanel Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type string - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements SourceMixpanel Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job_
type str - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource_
requirements SourceMixpanel Resource Allocation Job Specific Resource Requirements - optional resource requirements to run workers (blank for unbounded allocations)
- job
Type String - enum that describes the different types of jobs that the platform runs. must be one of ["getspec", "checkconnection", "discoverschema", "sync", "resetconnection", "connection_updater", "replicate"]
- resource
Requirements Property Map - optional resource requirements to run workers (blank for unbounded allocations)
SourceMixpanelResourceAllocationJobSpecificResourceRequirements, SourceMixpanelResourceAllocationJobSpecificResourceRequirementsArgs
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- Cpu
Limit string - Cpu
Request string - Ephemeral
Storage stringLimit - Ephemeral
Storage stringRequest - Memory
Limit string - Memory
Request string
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
- cpu
Limit string - cpu
Request string - ephemeral
Storage stringLimit - ephemeral
Storage stringRequest - memory
Limit string - memory
Request string
- cpu_
limit str - cpu_
request str - ephemeral_
storage_ strlimit - ephemeral_
storage_ strrequest - memory_
limit str - memory_
request str
- cpu
Limit String - cpu
Request String - ephemeral
Storage StringLimit - ephemeral
Storage StringRequest - memory
Limit String - memory
Request String
Import
$ pulumi import airbyte:index/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.