airbyte.SourcePardot
Explore with Pulumi AI
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
Source
Pardot 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
Pardot 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
Pardot 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
Pardot 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
Pardot 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 SourcePardot resource produces the following output properties:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Source
Id string - Source
Type string
- Created
At float64 - Id string
- The provider-assigned unique ID for this managed resource.
- Source
Id string - Source
Type string
- created
At Double - id String
- The provider-assigned unique ID for this managed resource.
- source
Id String - source
Type String
- created
At number - id string
- The provider-assigned unique ID for this managed resource.
- source
Id string - source
Type string
- created_
at float - id str
- The provider-assigned unique ID for this managed resource.
- source_
id str - source_
type str
- created
At Number - id String
- The provider-assigned unique ID for this managed resource.
- source
Id String - source
Type 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.
- Configuration
Source
Pardot 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.
- 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
Pardot 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.
- 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
Pardot 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.
- 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
Pardot 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.
- 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
Pardot 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.
- 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.
- 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
SourcePardotConfiguration, SourcePardotConfigurationArgs
- Client
Id string - The Consumer Key that can be found when viewing your app in Salesforce
- Client
Secret string - The Consumer Secret that can be found when viewing your app in Salesforce
- Pardot
Business stringUnit Id - Pardot Business ID, can be found at Setup > Pardot > Pardot Account Setup
- Refresh
Token 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.
- 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 string - The maximum number of records to return per request. Default: "1000"
- Start
Date 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 string - The Consumer Key that can be found when viewing your app in Salesforce
- Client
Secret string - The Consumer Secret that can be found when viewing your app in Salesforce
- Pardot
Business stringUnit Id - Pardot Business ID, can be found at Setup > Pardot > Pardot Account Setup
- Refresh
Token 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.
- 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 string - The maximum number of records to return per request. Default: "1000"
- Start
Date 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 String - The Consumer Key that can be found when viewing your app in Salesforce
- client
Secret String - The Consumer Secret that can be found when viewing your app in Salesforce
- pardot
Business StringUnit Id - Pardot Business ID, can be found at Setup > Pardot > Pardot Account Setup
- refresh
Token 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.
- is
Sandbox 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
- page
Size String - The maximum number of records to return per request. Default: "1000"
- start
Date 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 string - The Consumer Key that can be found when viewing your app in Salesforce
- client
Secret string - The Consumer Secret that can be found when viewing your app in Salesforce
- pardot
Business stringUnit Id - Pardot Business ID, can be found at Setup > Pardot > Pardot Account Setup
- refresh
Token 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.
- is
Sandbox 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
- page
Size string - The maximum number of records to return per request. Default: "1000"
- start
Date 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_ strunit_ id - 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"
- client
Id String - The Consumer Key that can be found when viewing your app in Salesforce
- client
Secret String - The Consumer Secret that can be found when viewing your app in Salesforce
- pardot
Business StringUnit Id - Pardot Business ID, can be found at Setup > Pardot > Pardot Account Setup
- refresh
Token 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.
- is
Sandbox 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
- page
Size String - The maximum number of records to return per request. Default: "1000"
- start
Date 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.