1. Packages
  2. Airbyte Provider
  3. API Docs
  4. SourcePardot
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

airbyte.SourcePardot

Explore with Pulumi AI

airbyte logo
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

    SourcePardot 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.SourcePardot;
    import com.pulumi.airbyte.SourcePardotArgs;
    import com.pulumi.airbyte.inputs.SourcePardotConfigurationArgs;
    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 mySourcePardot = new SourcePardot("mySourcePardot", SourcePardotArgs.builder()
                .configuration(SourcePardotConfigurationArgs.builder()
                    .client_id("...my_client_id...")
                    .client_secret("...my_client_secret...")
                    .is_sandbox(true)
                    .page_size("...my_page_size...")
                    .pardot_business_unit_id("...my_pardot_business_unit_id...")
                    .refresh_token("...my_refresh_token...")
                    .start_date("2021-07-25T00:00:00Z")
                    .build())
                .definitionId("762e3001-6edb-4979-8bc5-5c4d9f862232")
                .secretId("...my_secret_id...")
                .workspaceId("d5e8c4ce-fc79-41ce-a312-1e9b3d367285")
                .build());
    
        }
    }
    
    resources:
      mySourcePardot:
        type: airbyte:SourcePardot
        properties:
          configuration:
            client_id: '...my_client_id...'
            client_secret: '...my_client_secret...'
            is_sandbox: true
            page_size: '...my_page_size...'
            pardot_business_unit_id: '...my_pardot_business_unit_id...'
            refresh_token: '...my_refresh_token...'
            start_date: 2021-07-25T00:00:00Z
          definitionId: 762e3001-6edb-4979-8bc5-5c4d9f862232
          secretId: '...my_secret_id...'
          workspaceId: d5e8c4ce-fc79-41ce-a312-1e9b3d367285
    

    Create SourcePardot Resource

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

    Constructor syntax

    new SourcePardot(name: string, args: SourcePardotArgs, opts?: CustomResourceOptions);
    @overload
    def SourcePardot(resource_name: str,
                     args: SourcePardotArgs,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def SourcePardot(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     configuration: Optional[SourcePardotConfigurationArgs] = None,
                     workspace_id: Optional[str] = None,
                     definition_id: Optional[str] = None,
                     name: Optional[str] = None,
                     secret_id: Optional[str] = None)
    func NewSourcePardot(ctx *Context, name string, args SourcePardotArgs, opts ...ResourceOption) (*SourcePardot, error)
    public SourcePardot(string name, SourcePardotArgs args, CustomResourceOptions? opts = null)
    public SourcePardot(String name, SourcePardotArgs args)
    public SourcePardot(String name, SourcePardotArgs args, CustomResourceOptions options)
    
    type: airbyte:SourcePardot
    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 SourcePardotArgs
    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 SourcePardotArgs
    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 SourcePardotArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SourcePardotArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SourcePardotArgs
    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 sourcePardotResource = new Airbyte.SourcePardot("sourcePardotResource", new()
    {
        Configuration = new Airbyte.Inputs.SourcePardotConfigurationArgs
        {
            ClientId = "string",
            ClientSecret = "string",
            PardotBusinessUnitId = "string",
            RefreshToken = "string",
            IsSandbox = false,
            PageSize = "string",
            StartDate = "string",
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
        SecretId = "string",
    });
    
    example, err := airbyte.NewSourcePardot(ctx, "sourcePardotResource", &airbyte.SourcePardotArgs{
    Configuration: &.SourcePardotConfigurationArgs{
    ClientId: pulumi.String("string"),
    ClientSecret: pulumi.String("string"),
    PardotBusinessUnitId: pulumi.String("string"),
    RefreshToken: pulumi.String("string"),
    IsSandbox: pulumi.Bool(false),
    PageSize: pulumi.String("string"),
    StartDate: pulumi.String("string"),
    },
    WorkspaceId: pulumi.String("string"),
    DefinitionId: pulumi.String("string"),
    Name: pulumi.String("string"),
    SecretId: pulumi.String("string"),
    })
    
    var sourcePardotResource = new SourcePardot("sourcePardotResource", SourcePardotArgs.builder()
        .configuration(SourcePardotConfigurationArgs.builder()
            .clientId("string")
            .clientSecret("string")
            .pardotBusinessUnitId("string")
            .refreshToken("string")
            .isSandbox(false)
            .pageSize("string")
            .startDate("string")
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .secretId("string")
        .build());
    
    source_pardot_resource = airbyte.SourcePardot("sourcePardotResource",
        configuration={
            "client_id": "string",
            "client_secret": "string",
            "pardot_business_unit_id": "string",
            "refresh_token": "string",
            "is_sandbox": False,
            "page_size": "string",
            "start_date": "string",
        },
        workspace_id="string",
        definition_id="string",
        name="string",
        secret_id="string")
    
    const sourcePardotResource = new airbyte.SourcePardot("sourcePardotResource", {
        configuration: {
            clientId: "string",
            clientSecret: "string",
            pardotBusinessUnitId: "string",
            refreshToken: "string",
            isSandbox: false,
            pageSize: "string",
            startDate: "string",
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
        secretId: "string",
    });
    
    type: airbyte:SourcePardot
    properties:
        configuration:
            clientId: string
            clientSecret: string
            isSandbox: false
            pageSize: string
            pardotBusinessUnitId: string
            refreshToken: string
            startDate: string
        definitionId: string
        name: string
        secretId: string
        workspaceId: string
    

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

    Configuration SourcePardotConfiguration
    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 SourcePardotConfigurationArgs
    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 SourcePardotConfiguration
    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 SourcePardotConfiguration
    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 SourcePardotConfigurationArgs
    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 SourcePardot resource produces the following output properties:

    CreatedAt double
    Id string
    The provider-assigned unique ID for this managed resource.
    SourceId string
    SourceType string
    CreatedAt float64
    Id string
    The provider-assigned unique ID for this managed resource.
    SourceId string
    SourceType string
    createdAt Double
    id String
    The provider-assigned unique ID for this managed resource.
    sourceId String
    sourceType String
    createdAt number
    id string
    The provider-assigned unique ID for this managed resource.
    sourceId string
    sourceType string
    created_at float
    id str
    The provider-assigned unique ID for this managed resource.
    source_id str
    source_type str
    createdAt Number
    id String
    The provider-assigned unique ID for this managed resource.
    sourceId String
    sourceType String

    Look up Existing SourcePardot Resource

    Get an existing SourcePardot 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?: SourcePardotState, opts?: CustomResourceOptions): SourcePardot
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[SourcePardotConfigurationArgs] = None,
            created_at: Optional[float] = None,
            definition_id: Optional[str] = None,
            name: Optional[str] = None,
            secret_id: Optional[str] = None,
            source_id: Optional[str] = None,
            source_type: Optional[str] = None,
            workspace_id: Optional[str] = None) -> SourcePardot
    func GetSourcePardot(ctx *Context, name string, id IDInput, state *SourcePardotState, opts ...ResourceOption) (*SourcePardot, error)
    public static SourcePardot Get(string name, Input<string> id, SourcePardotState? state, CustomResourceOptions? opts = null)
    public static SourcePardot get(String name, Output<String> id, SourcePardotState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:SourcePardot    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 SourcePardotConfiguration
    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.
    SecretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    SourceId string
    SourceType string
    WorkspaceId string
    Configuration SourcePardotConfigurationArgs
    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.
    SecretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    SourceId string
    SourceType string
    WorkspaceId string
    configuration SourcePardotConfiguration
    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.
    secretId String
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    sourceId String
    sourceType String
    workspaceId String
    configuration SourcePardotConfiguration
    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.
    secretId string
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    sourceId string
    sourceType string
    workspaceId string
    configuration SourcePardotConfigurationArgs
    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.
    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.
    secretId String
    Optional secretID obtained through the public API OAuth redirect flow. Requires replacement if changed.
    sourceId String
    sourceType String
    workspaceId String

    Supporting Types

    SourcePardotConfiguration, SourcePardotConfigurationArgs

    ClientId string
    The Consumer Key that can be found when viewing your app in Salesforce
    ClientSecret string
    The Consumer Secret that can be found when viewing your app in Salesforce
    PardotBusinessUnitId string
    Pardot Business ID, can be found at Setup > Pardot > Pardot Account Setup
    RefreshToken string
    Salesforce Refresh Token used for Airbyte to access your Salesforce account. If you don't know what this is, follow this \n\nguide\n\n to retrieve it.
    IsSandbox bool
    Whether or not the the app is in a Salesforce sandbox. If you do not know what this, assume it is false. Default: false
    PageSize string
    The maximum number of records to return per request. Default: "1000"
    StartDate string
    UTC date and time in the format 2000-01-01T00:00:00Z. Any data before this date will not be replicated. Defaults to the year Pardot was released. Default: "2007-01-01T00:00:00Z"
    ClientId string
    The Consumer Key that can be found when viewing your app in Salesforce
    ClientSecret string
    The Consumer Secret that can be found when viewing your app in Salesforce
    PardotBusinessUnitId string
    Pardot Business ID, can be found at Setup > Pardot > Pardot Account Setup
    RefreshToken string
    Salesforce Refresh Token used for Airbyte to access your Salesforce account. If you don't know what this is, follow this \n\nguide\n\n to retrieve it.
    IsSandbox bool
    Whether or not the the app is in a Salesforce sandbox. If you do not know what this, assume it is false. Default: false
    PageSize string
    The maximum number of records to return per request. Default: "1000"
    StartDate string
    UTC date and time in the format 2000-01-01T00:00:00Z. Any data before this date will not be replicated. Defaults to the year Pardot was released. Default: "2007-01-01T00:00:00Z"
    clientId String
    The Consumer Key that can be found when viewing your app in Salesforce
    clientSecret String
    The Consumer Secret that can be found when viewing your app in Salesforce
    pardotBusinessUnitId String
    Pardot Business ID, can be found at Setup > Pardot > Pardot Account Setup
    refreshToken String
    Salesforce Refresh Token used for Airbyte to access your Salesforce account. If you don't know what this is, follow this \n\nguide\n\n to retrieve it.
    isSandbox Boolean
    Whether or not the the app is in a Salesforce sandbox. If you do not know what this, assume it is false. Default: false
    pageSize String
    The maximum number of records to return per request. Default: "1000"
    startDate String
    UTC date and time in the format 2000-01-01T00:00:00Z. Any data before this date will not be replicated. Defaults to the year Pardot was released. Default: "2007-01-01T00:00:00Z"
    clientId string
    The Consumer Key that can be found when viewing your app in Salesforce
    clientSecret string
    The Consumer Secret that can be found when viewing your app in Salesforce
    pardotBusinessUnitId string
    Pardot Business ID, can be found at Setup > Pardot > Pardot Account Setup
    refreshToken string
    Salesforce Refresh Token used for Airbyte to access your Salesforce account. If you don't know what this is, follow this \n\nguide\n\n to retrieve it.
    isSandbox boolean
    Whether or not the the app is in a Salesforce sandbox. If you do not know what this, assume it is false. Default: false
    pageSize string
    The maximum number of records to return per request. Default: "1000"
    startDate string
    UTC date and time in the format 2000-01-01T00:00:00Z. Any data before this date will not be replicated. Defaults to the year Pardot was released. Default: "2007-01-01T00:00:00Z"
    client_id str
    The Consumer Key that can be found when viewing your app in Salesforce
    client_secret str
    The Consumer Secret that can be found when viewing your app in Salesforce
    pardot_business_unit_id str
    Pardot Business ID, can be found at Setup > Pardot > Pardot Account Setup
    refresh_token str
    Salesforce Refresh Token used for Airbyte to access your Salesforce account. If you don't know what this is, follow this \n\nguide\n\n to retrieve it.
    is_sandbox bool
    Whether or not the the app is in a Salesforce sandbox. If you do not know what this, assume it is false. Default: false
    page_size str
    The maximum number of records to return per request. Default: "1000"
    start_date str
    UTC date and time in the format 2000-01-01T00:00:00Z. Any data before this date will not be replicated. Defaults to the year Pardot was released. Default: "2007-01-01T00:00:00Z"
    clientId String
    The Consumer Key that can be found when viewing your app in Salesforce
    clientSecret String
    The Consumer Secret that can be found when viewing your app in Salesforce
    pardotBusinessUnitId String
    Pardot Business ID, can be found at Setup > Pardot > Pardot Account Setup
    refreshToken String
    Salesforce Refresh Token used for Airbyte to access your Salesforce account. If you don't know what this is, follow this \n\nguide\n\n to retrieve it.
    isSandbox Boolean
    Whether or not the the app is in a Salesforce sandbox. If you do not know what this, assume it is false. Default: false
    pageSize String
    The maximum number of records to return per request. Default: "1000"
    startDate String
    UTC date and time in the format 2000-01-01T00:00:00Z. Any data before this date will not be replicated. Defaults to the year Pardot was released. Default: "2007-01-01T00:00:00Z"

    Import

    $ pulumi import airbyte:index/sourcePardot:SourcePardot my_airbyte_source_pardot ""
    

    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.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq