airbyte.SourcePinterest
Explore with Pulumi AI
SourcePinterest 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.SourcePinterest;
import com.pulumi.airbyte.SourcePinterestArgs;
import com.pulumi.airbyte.inputs.SourcePinterestConfigurationArgs;
import com.pulumi.airbyte.inputs.SourcePinterestConfigurationCredentialsArgs;
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 mySourcePinterest = new SourcePinterest("mySourcePinterest", SourcePinterestArgs.builder()
.configuration(SourcePinterestConfigurationArgs.builder()
.credentials(SourcePinterestConfigurationCredentialsArgs.builder()
.clientId("...my_client_id...")
.clientSecret("...my_client_secret...")
.refreshToken("...my_refresh_token...")
.build())
.custom_reports(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
.start_date("2022-07-28")
.status("ACTIVE")
.build())
.definitionId("7540406c-2051-4504-8c28-ddff47d8716f")
.secretId("...my_secret_id...")
.workspaceId("4d479a13-e183-4090-af9e-7a388174d4f2")
.build());
}
}
resources:
mySourcePinterest:
type: airbyte:SourcePinterest
properties:
configuration:
credentials:
clientId: '...my_client_id...'
clientSecret: '...my_client_secret...'
refreshToken: '...my_refresh_token...'
custom_reports:
- attributionTypes:
- INDIVIDUAL
clickWindowDays: 60
columns:
- PIN_PROMOTION_ID
conversionReportTime: TIME_OF_CONVERSION
engagementWindowDays: 30
granularity: MONTH
level: CAMPAIGN
name: '...my_name...'
startDate: 2022-07-28
viewWindowDays: 7
start_date: 2022-07-28
status:
- ACTIVE
definitionId: 7540406c-2051-4504-8c28-ddff47d8716f
secretId: '...my_secret_id...'
workspaceId: 4d479a13-e183-4090-af9e-7a388174d4f2
Create SourcePinterest Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourcePinterest(name: string, args: SourcePinterestArgs, opts?: CustomResourceOptions);
@overload
def SourcePinterest(resource_name: str,
args: SourcePinterestArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourcePinterest(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourcePinterestConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None)
func NewSourcePinterest(ctx *Context, name string, args SourcePinterestArgs, opts ...ResourceOption) (*SourcePinterest, error)
public SourcePinterest(string name, SourcePinterestArgs args, CustomResourceOptions? opts = null)
public SourcePinterest(String name, SourcePinterestArgs args)
public SourcePinterest(String name, SourcePinterestArgs args, CustomResourceOptions options)
type: airbyte:SourcePinterest
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 SourcePinterestArgs
- 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 SourcePinterestArgs
- 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 SourcePinterestArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourcePinterestArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourcePinterestArgs
- 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 sourcePinterestResource = new Airbyte.SourcePinterest("sourcePinterestResource", new()
{
Configuration = new Airbyte.Inputs.SourcePinterestConfigurationArgs
{
Credentials = new Airbyte.Inputs.SourcePinterestConfigurationCredentialsArgs
{
ClientId = "string",
ClientSecret = "string",
RefreshToken = "string",
},
CustomReports = new[]
{
new Airbyte.Inputs.SourcePinterestConfigurationCustomReportArgs
{
Name = "string",
AttributionTypes = new[]
{
"string",
},
ClickWindowDays = 0,
Columns = new[]
{
"string",
},
ConversionReportTime = "string",
EngagementWindowDays = 0,
Granularity = "string",
Level = "string",
StartDate = "string",
ViewWindowDays = 0,
},
},
StartDate = "string",
Statuses = new[]
{
"string",
},
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
SecretId = "string",
});
example, err := airbyte.NewSourcePinterest(ctx, "sourcePinterestResource", &airbyte.SourcePinterestArgs{
Configuration: &.SourcePinterestConfigurationArgs{
Credentials: &.SourcePinterestConfigurationCredentialsArgs{
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
RefreshToken: pulumi.String("string"),
},
CustomReports: .SourcePinterestConfigurationCustomReportArray{
&.SourcePinterestConfigurationCustomReportArgs{
Name: pulumi.String("string"),
AttributionTypes: pulumi.StringArray{
pulumi.String("string"),
},
ClickWindowDays: pulumi.Float64(0),
Columns: pulumi.StringArray{
pulumi.String("string"),
},
ConversionReportTime: pulumi.String("string"),
EngagementWindowDays: pulumi.Float64(0),
Granularity: pulumi.String("string"),
Level: pulumi.String("string"),
StartDate: pulumi.String("string"),
ViewWindowDays: pulumi.Float64(0),
},
},
StartDate: pulumi.String("string"),
Statuses: pulumi.StringArray{
pulumi.String("string"),
},
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
var sourcePinterestResource = new SourcePinterest("sourcePinterestResource", SourcePinterestArgs.builder()
.configuration(SourcePinterestConfigurationArgs.builder()
.credentials(SourcePinterestConfigurationCredentialsArgs.builder()
.clientId("string")
.clientSecret("string")
.refreshToken("string")
.build())
.customReports(SourcePinterestConfigurationCustomReportArgs.builder()
.name("string")
.attributionTypes("string")
.clickWindowDays(0)
.columns("string")
.conversionReportTime("string")
.engagementWindowDays(0)
.granularity("string")
.level("string")
.startDate("string")
.viewWindowDays(0)
.build())
.startDate("string")
.statuses("string")
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.secretId("string")
.build());
source_pinterest_resource = airbyte.SourcePinterest("sourcePinterestResource",
configuration={
"credentials": {
"client_id": "string",
"client_secret": "string",
"refresh_token": "string",
},
"custom_reports": [{
"name": "string",
"attribution_types": ["string"],
"click_window_days": 0,
"columns": ["string"],
"conversion_report_time": "string",
"engagement_window_days": 0,
"granularity": "string",
"level": "string",
"start_date": "string",
"view_window_days": 0,
}],
"start_date": "string",
"statuses": ["string"],
},
workspace_id="string",
definition_id="string",
name="string",
secret_id="string")
const sourcePinterestResource = new airbyte.SourcePinterest("sourcePinterestResource", {
configuration: {
credentials: {
clientId: "string",
clientSecret: "string",
refreshToken: "string",
},
customReports: [{
name: "string",
attributionTypes: ["string"],
clickWindowDays: 0,
columns: ["string"],
conversionReportTime: "string",
engagementWindowDays: 0,
granularity: "string",
level: "string",
startDate: "string",
viewWindowDays: 0,
}],
startDate: "string",
statuses: ["string"],
},
workspaceId: "string",
definitionId: "string",
name: "string",
secretId: "string",
});
type: airbyte:SourcePinterest
properties:
configuration:
credentials:
clientId: string
clientSecret: string
refreshToken: string
customReports:
- attributionTypes:
- string
clickWindowDays: 0
columns:
- string
conversionReportTime: string
engagementWindowDays: 0
granularity: string
level: string
name: string
startDate: string
viewWindowDays: 0
startDate: string
statuses:
- string
definitionId: string
name: string
secretId: string
workspaceId: string
SourcePinterest 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 SourcePinterest resource accepts the following input properties:
- Configuration
Source
Pinterest 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
Pinterest 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
Pinterest 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
Pinterest 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
Pinterest 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 SourcePinterest 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 SourcePinterest Resource
Get an existing SourcePinterest 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?: SourcePinterestState, opts?: CustomResourceOptions): SourcePinterest
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourcePinterestConfigurationArgs] = 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) -> SourcePinterest
func GetSourcePinterest(ctx *Context, name string, id IDInput, state *SourcePinterestState, opts ...ResourceOption) (*SourcePinterest, error)
public static SourcePinterest Get(string name, Input<string> id, SourcePinterestState? state, CustomResourceOptions? opts = null)
public static SourcePinterest get(String name, Output<String> id, SourcePinterestState state, CustomResourceOptions options)
resources: _: type: airbyte:SourcePinterest 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
Pinterest 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
Pinterest 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
Pinterest 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
Pinterest 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
Pinterest 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
SourcePinterestConfiguration, SourcePinterestConfigurationArgs
- Credentials
Source
Pinterest Configuration Credentials - Custom
Reports List<SourcePinterest Configuration Custom Report> - A list which contains ad statistics entries, each entry must have a name and can contains fields, breakdowns or action*breakdowns. Click on "add" to fill this field.
- Start
Date string - A date in the format YYYY-MM-DD. If you have not set a date, it would be defaulted to latest allowed date by api (89 days from today).
- Statuses List<string>
- For the ads, ad_groups, and campaigns streams, specifying a status will filter out records that do not match the specified ones. If a status is not specified, the source will default to records with a status of either ACTIVE or PAUSED.
- Credentials
Source
Pinterest Configuration Credentials - Custom
Reports []SourcePinterest Configuration Custom Report - A list which contains ad statistics entries, each entry must have a name and can contains fields, breakdowns or action*breakdowns. Click on "add" to fill this field.
- Start
Date string - A date in the format YYYY-MM-DD. If you have not set a date, it would be defaulted to latest allowed date by api (89 days from today).
- Statuses []string
- For the ads, ad_groups, and campaigns streams, specifying a status will filter out records that do not match the specified ones. If a status is not specified, the source will default to records with a status of either ACTIVE or PAUSED.
- credentials
Source
Pinterest Configuration Credentials - custom
Reports List<SourcePinterest Configuration Custom Report> - A list which contains ad statistics entries, each entry must have a name and can contains fields, breakdowns or action*breakdowns. Click on "add" to fill this field.
- start
Date String - A date in the format YYYY-MM-DD. If you have not set a date, it would be defaulted to latest allowed date by api (89 days from today).
- statuses List<String>
- For the ads, ad_groups, and campaigns streams, specifying a status will filter out records that do not match the specified ones. If a status is not specified, the source will default to records with a status of either ACTIVE or PAUSED.
- credentials
Source
Pinterest Configuration Credentials - custom
Reports SourcePinterest Configuration Custom Report[] - A list which contains ad statistics entries, each entry must have a name and can contains fields, breakdowns or action*breakdowns. Click on "add" to fill this field.
- start
Date string - A date in the format YYYY-MM-DD. If you have not set a date, it would be defaulted to latest allowed date by api (89 days from today).
- statuses string[]
- For the ads, ad_groups, and campaigns streams, specifying a status will filter out records that do not match the specified ones. If a status is not specified, the source will default to records with a status of either ACTIVE or PAUSED.
- credentials
Source
Pinterest Configuration Credentials - custom_
reports Sequence[SourcePinterest Configuration Custom Report] - A list which contains ad statistics entries, each entry must have a name and can contains fields, breakdowns or action*breakdowns. Click on "add" to fill this field.
- start_
date str - A date in the format YYYY-MM-DD. If you have not set a date, it would be defaulted to latest allowed date by api (89 days from today).
- statuses Sequence[str]
- For the ads, ad_groups, and campaigns streams, specifying a status will filter out records that do not match the specified ones. If a status is not specified, the source will default to records with a status of either ACTIVE or PAUSED.
- credentials Property Map
- custom
Reports List<Property Map> - A list which contains ad statistics entries, each entry must have a name and can contains fields, breakdowns or action*breakdowns. Click on "add" to fill this field.
- start
Date String - A date in the format YYYY-MM-DD. If you have not set a date, it would be defaulted to latest allowed date by api (89 days from today).
- statuses List<String>
- For the ads, ad_groups, and campaigns streams, specifying a status will filter out records that do not match the specified ones. If a status is not specified, the source will default to records with a status of either ACTIVE or PAUSED.
SourcePinterestConfigurationCredentials, SourcePinterestConfigurationCredentialsArgs
- Client
Id string - The Client ID of your OAuth application
- Client
Secret string - The Client Secret of your OAuth application.
- Refresh
Token string - Refresh Token to obtain new Access Token, when it's expired.
- Client
Id string - The Client ID of your OAuth application
- Client
Secret string - The Client Secret of your OAuth application.
- Refresh
Token string - Refresh Token to obtain new Access Token, when it's expired.
- client
Id String - The Client ID of your OAuth application
- client
Secret String - The Client Secret of your OAuth application.
- refresh
Token String - Refresh Token to obtain new Access Token, when it's expired.
- client
Id string - The Client ID of your OAuth application
- client
Secret string - The Client Secret of your OAuth application.
- refresh
Token string - Refresh Token to obtain new Access Token, when it's expired.
- client_
id str - The Client ID of your OAuth application
- client_
secret str - The Client Secret of your OAuth application.
- refresh_
token str - Refresh Token to obtain new Access Token, when it's expired.
- client
Id String - The Client ID of your OAuth application
- client
Secret String - The Client Secret of your OAuth application.
- refresh
Token String - Refresh Token to obtain new Access Token, when it's expired.
SourcePinterestConfigurationCustomReport, SourcePinterestConfigurationCustomReportArgs
- Name string
- The name value of report
- Attribution
Types List<string> - List of types of attribution for the conversion report
- Click
Window doubleDays - Number of days to use as the conversion attribution window for a pin click action. Default: 30; must be one of ["0", "1", "7", "14", "30", "60"]
- Columns List<string>
- A list of chosen columns
- Conversion
Report stringTime - The date by which the conversion metrics returned from this endpoint will be reported. There are two dates associated with a conversion event: the date that the user interacted with the ad, and the date that the user completed a conversion event.. Default: "TIMEOFADACTION"; must be one of ["TIMEOFADACTION", "TIMEOFCONVERSION"]
- Engagement
Window doubleDays - Number of days to use as the conversion attribution window for an engagement action. must be one of ["0", "1", "7", "14", "30", "60"]
- Granularity string
- Chosen granularity for API. Default: "TOTAL"; must be one of ["TOTAL", "DAY", "HOUR", "WEEK", "MONTH"]
- Level string
- Chosen level for API. Default: "ADVERTISER"; must be one of ["ADVERTISER", "ADVERTISERTARGETING", "CAMPAIGN", "CAMPAIGNTARGETING", "ADGROUP", "ADGROUPTARGETING", "PINPROMOTION", "PINPROMOTIONTARGETING", "KEYWORD", "PRODUCTGROUP", "PRODUCTGROUPTARGETING", "PRODUCTITEM"]
- Start
Date string - A date in the format YYYY-MM-DD. If you have not set a date, it would be defaulted to latest allowed date by report api (913 days from today).
- View
Window doubleDays - Number of days to use as the conversion attribution window for a view action. must be one of ["0", "1", "7", "14", "30", "60"]
- Name string
- The name value of report
- Attribution
Types []string - List of types of attribution for the conversion report
- Click
Window float64Days - Number of days to use as the conversion attribution window for a pin click action. Default: 30; must be one of ["0", "1", "7", "14", "30", "60"]
- Columns []string
- A list of chosen columns
- Conversion
Report stringTime - The date by which the conversion metrics returned from this endpoint will be reported. There are two dates associated with a conversion event: the date that the user interacted with the ad, and the date that the user completed a conversion event.. Default: "TIMEOFADACTION"; must be one of ["TIMEOFADACTION", "TIMEOFCONVERSION"]
- Engagement
Window float64Days - Number of days to use as the conversion attribution window for an engagement action. must be one of ["0", "1", "7", "14", "30", "60"]
- Granularity string
- Chosen granularity for API. Default: "TOTAL"; must be one of ["TOTAL", "DAY", "HOUR", "WEEK", "MONTH"]
- Level string
- Chosen level for API. Default: "ADVERTISER"; must be one of ["ADVERTISER", "ADVERTISERTARGETING", "CAMPAIGN", "CAMPAIGNTARGETING", "ADGROUP", "ADGROUPTARGETING", "PINPROMOTION", "PINPROMOTIONTARGETING", "KEYWORD", "PRODUCTGROUP", "PRODUCTGROUPTARGETING", "PRODUCTITEM"]
- Start
Date string - A date in the format YYYY-MM-DD. If you have not set a date, it would be defaulted to latest allowed date by report api (913 days from today).
- View
Window float64Days - Number of days to use as the conversion attribution window for a view action. must be one of ["0", "1", "7", "14", "30", "60"]
- name String
- The name value of report
- attribution
Types List<String> - List of types of attribution for the conversion report
- click
Window DoubleDays - Number of days to use as the conversion attribution window for a pin click action. Default: 30; must be one of ["0", "1", "7", "14", "30", "60"]
- columns List<String>
- A list of chosen columns
- conversion
Report StringTime - The date by which the conversion metrics returned from this endpoint will be reported. There are two dates associated with a conversion event: the date that the user interacted with the ad, and the date that the user completed a conversion event.. Default: "TIMEOFADACTION"; must be one of ["TIMEOFADACTION", "TIMEOFCONVERSION"]
- engagement
Window DoubleDays - Number of days to use as the conversion attribution window for an engagement action. must be one of ["0", "1", "7", "14", "30", "60"]
- granularity String
- Chosen granularity for API. Default: "TOTAL"; must be one of ["TOTAL", "DAY", "HOUR", "WEEK", "MONTH"]
- level String
- Chosen level for API. Default: "ADVERTISER"; must be one of ["ADVERTISER", "ADVERTISERTARGETING", "CAMPAIGN", "CAMPAIGNTARGETING", "ADGROUP", "ADGROUPTARGETING", "PINPROMOTION", "PINPROMOTIONTARGETING", "KEYWORD", "PRODUCTGROUP", "PRODUCTGROUPTARGETING", "PRODUCTITEM"]
- start
Date String - A date in the format YYYY-MM-DD. If you have not set a date, it would be defaulted to latest allowed date by report api (913 days from today).
- view
Window DoubleDays - Number of days to use as the conversion attribution window for a view action. must be one of ["0", "1", "7", "14", "30", "60"]
- name string
- The name value of report
- attribution
Types string[] - List of types of attribution for the conversion report
- click
Window numberDays - Number of days to use as the conversion attribution window for a pin click action. Default: 30; must be one of ["0", "1", "7", "14", "30", "60"]
- columns string[]
- A list of chosen columns
- conversion
Report stringTime - The date by which the conversion metrics returned from this endpoint will be reported. There are two dates associated with a conversion event: the date that the user interacted with the ad, and the date that the user completed a conversion event.. Default: "TIMEOFADACTION"; must be one of ["TIMEOFADACTION", "TIMEOFCONVERSION"]
- engagement
Window numberDays - Number of days to use as the conversion attribution window for an engagement action. must be one of ["0", "1", "7", "14", "30", "60"]
- granularity string
- Chosen granularity for API. Default: "TOTAL"; must be one of ["TOTAL", "DAY", "HOUR", "WEEK", "MONTH"]
- level string
- Chosen level for API. Default: "ADVERTISER"; must be one of ["ADVERTISER", "ADVERTISERTARGETING", "CAMPAIGN", "CAMPAIGNTARGETING", "ADGROUP", "ADGROUPTARGETING", "PINPROMOTION", "PINPROMOTIONTARGETING", "KEYWORD", "PRODUCTGROUP", "PRODUCTGROUPTARGETING", "PRODUCTITEM"]
- start
Date string - A date in the format YYYY-MM-DD. If you have not set a date, it would be defaulted to latest allowed date by report api (913 days from today).
- view
Window numberDays - Number of days to use as the conversion attribution window for a view action. must be one of ["0", "1", "7", "14", "30", "60"]
- name str
- The name value of report
- attribution_
types Sequence[str] - List of types of attribution for the conversion report
- click_
window_ floatdays - Number of days to use as the conversion attribution window for a pin click action. Default: 30; must be one of ["0", "1", "7", "14", "30", "60"]
- columns Sequence[str]
- A list of chosen columns
- conversion_
report_ strtime - The date by which the conversion metrics returned from this endpoint will be reported. There are two dates associated with a conversion event: the date that the user interacted with the ad, and the date that the user completed a conversion event.. Default: "TIMEOFADACTION"; must be one of ["TIMEOFADACTION", "TIMEOFCONVERSION"]
- engagement_
window_ floatdays - Number of days to use as the conversion attribution window for an engagement action. must be one of ["0", "1", "7", "14", "30", "60"]
- granularity str
- Chosen granularity for API. Default: "TOTAL"; must be one of ["TOTAL", "DAY", "HOUR", "WEEK", "MONTH"]
- level str
- Chosen level for API. Default: "ADVERTISER"; must be one of ["ADVERTISER", "ADVERTISERTARGETING", "CAMPAIGN", "CAMPAIGNTARGETING", "ADGROUP", "ADGROUPTARGETING", "PINPROMOTION", "PINPROMOTIONTARGETING", "KEYWORD", "PRODUCTGROUP", "PRODUCTGROUPTARGETING", "PRODUCTITEM"]
- start_
date str - A date in the format YYYY-MM-DD. If you have not set a date, it would be defaulted to latest allowed date by report api (913 days from today).
- view_
window_ floatdays - Number of days to use as the conversion attribution window for a view action. must be one of ["0", "1", "7", "14", "30", "60"]
- name String
- The name value of report
- attribution
Types List<String> - List of types of attribution for the conversion report
- click
Window NumberDays - Number of days to use as the conversion attribution window for a pin click action. Default: 30; must be one of ["0", "1", "7", "14", "30", "60"]
- columns List<String>
- A list of chosen columns
- conversion
Report StringTime - The date by which the conversion metrics returned from this endpoint will be reported. There are two dates associated with a conversion event: the date that the user interacted with the ad, and the date that the user completed a conversion event.. Default: "TIMEOFADACTION"; must be one of ["TIMEOFADACTION", "TIMEOFCONVERSION"]
- engagement
Window NumberDays - Number of days to use as the conversion attribution window for an engagement action. must be one of ["0", "1", "7", "14", "30", "60"]
- granularity String
- Chosen granularity for API. Default: "TOTAL"; must be one of ["TOTAL", "DAY", "HOUR", "WEEK", "MONTH"]
- level String
- Chosen level for API. Default: "ADVERTISER"; must be one of ["ADVERTISER", "ADVERTISERTARGETING", "CAMPAIGN", "CAMPAIGNTARGETING", "ADGROUP", "ADGROUPTARGETING", "PINPROMOTION", "PINPROMOTIONTARGETING", "KEYWORD", "PRODUCTGROUP", "PRODUCTGROUPTARGETING", "PRODUCTITEM"]
- start
Date String - A date in the format YYYY-MM-DD. If you have not set a date, it would be defaulted to latest allowed date by report api (913 days from today).
- view
Window NumberDays - Number of days to use as the conversion attribution window for a view action. must be one of ["0", "1", "7", "14", "30", "60"]
Import
$ pulumi import airbyte:index/sourcePinterest:SourcePinterest my_airbyte_source_pinterest ""
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.