airbyte.SourceShopify
Explore with Pulumi AI
SourceShopify 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.SourceShopify;
import com.pulumi.airbyte.SourceShopifyArgs;
import com.pulumi.airbyte.inputs.SourceShopifyConfigurationArgs;
import com.pulumi.airbyte.inputs.SourceShopifyConfigurationCredentialsArgs;
import com.pulumi.airbyte.inputs.SourceShopifyConfigurationCredentialsApiPasswordArgs;
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 mySourceShopify = new SourceShopify("mySourceShopify", SourceShopifyArgs.builder()
.configuration(SourceShopifyConfigurationArgs.builder()
.bulk_window_in_days(4)
.credentials(SourceShopifyConfigurationCredentialsArgs.builder()
.apiPassword(SourceShopifyConfigurationCredentialsApiPasswordArgs.builder()
.apiPassword("...my_api_password...")
.build())
.build())
.fetch_transactions_user_id(true)
.job_checkpoint_interval(484517)
.job_product_variants_include_pres_prices(true)
.job_termination_threshold(5282)
.shop("my-store")
.start_date("2021-05-19")
.build())
.definitionId("1a8f2c45-b7ec-4db1-8680-d2e228b3d43e")
.secretId("...my_secret_id...")
.workspaceId("de6ea042-7883-4cc3-9786-89e9d969aa09")
.build());
}
}
resources:
mySourceShopify:
type: airbyte:SourceShopify
properties:
configuration:
bulk_window_in_days: 4
credentials:
apiPassword:
apiPassword: '...my_api_password...'
fetch_transactions_user_id: true
job_checkpoint_interval: 484517
job_product_variants_include_pres_prices: true
job_termination_threshold: 5282
shop: my-store
start_date: 2021-05-19
definitionId: 1a8f2c45-b7ec-4db1-8680-d2e228b3d43e
secretId: '...my_secret_id...'
workspaceId: de6ea042-7883-4cc3-9786-89e9d969aa09
Create SourceShopify Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new SourceShopify(name: string, args: SourceShopifyArgs, opts?: CustomResourceOptions);
@overload
def SourceShopify(resource_name: str,
args: SourceShopifyArgs,
opts: Optional[ResourceOptions] = None)
@overload
def SourceShopify(resource_name: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceShopifyConfigurationArgs] = None,
workspace_id: Optional[str] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
secret_id: Optional[str] = None)
func NewSourceShopify(ctx *Context, name string, args SourceShopifyArgs, opts ...ResourceOption) (*SourceShopify, error)
public SourceShopify(string name, SourceShopifyArgs args, CustomResourceOptions? opts = null)
public SourceShopify(String name, SourceShopifyArgs args)
public SourceShopify(String name, SourceShopifyArgs args, CustomResourceOptions options)
type: airbyte:SourceShopify
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 SourceShopifyArgs
- 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 SourceShopifyArgs
- 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 SourceShopifyArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SourceShopifyArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SourceShopifyArgs
- 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 sourceShopifyResource = new Airbyte.SourceShopify("sourceShopifyResource", new()
{
Configuration = new Airbyte.Inputs.SourceShopifyConfigurationArgs
{
Shop = "string",
BulkWindowInDays = 0,
Credentials = new Airbyte.Inputs.SourceShopifyConfigurationCredentialsArgs
{
ApiPassword = new Airbyte.Inputs.SourceShopifyConfigurationCredentialsApiPasswordArgs
{
ApiPassword = "string",
},
OAuth20 = new Airbyte.Inputs.SourceShopifyConfigurationCredentialsOAuth20Args
{
AccessToken = "string",
ClientId = "string",
ClientSecret = "string",
},
},
FetchTransactionsUserId = false,
JobCheckpointInterval = 0,
JobProductVariantsIncludePresPrices = false,
JobTerminationThreshold = 0,
StartDate = "string",
},
WorkspaceId = "string",
DefinitionId = "string",
Name = "string",
SecretId = "string",
});
example, err := airbyte.NewSourceShopify(ctx, "sourceShopifyResource", &airbyte.SourceShopifyArgs{
Configuration: &.SourceShopifyConfigurationArgs{
Shop: pulumi.String("string"),
BulkWindowInDays: pulumi.Float64(0),
Credentials: &.SourceShopifyConfigurationCredentialsArgs{
ApiPassword: &.SourceShopifyConfigurationCredentialsApiPasswordArgs{
ApiPassword: pulumi.String("string"),
},
OAuth20: &.SourceShopifyConfigurationCredentialsOAuth20Args{
AccessToken: pulumi.String("string"),
ClientId: pulumi.String("string"),
ClientSecret: pulumi.String("string"),
},
},
FetchTransactionsUserId: pulumi.Bool(false),
JobCheckpointInterval: pulumi.Float64(0),
JobProductVariantsIncludePresPrices: pulumi.Bool(false),
JobTerminationThreshold: pulumi.Float64(0),
StartDate: pulumi.String("string"),
},
WorkspaceId: pulumi.String("string"),
DefinitionId: pulumi.String("string"),
Name: pulumi.String("string"),
SecretId: pulumi.String("string"),
})
var sourceShopifyResource = new SourceShopify("sourceShopifyResource", SourceShopifyArgs.builder()
.configuration(SourceShopifyConfigurationArgs.builder()
.shop("string")
.bulkWindowInDays(0)
.credentials(SourceShopifyConfigurationCredentialsArgs.builder()
.apiPassword(SourceShopifyConfigurationCredentialsApiPasswordArgs.builder()
.apiPassword("string")
.build())
.oAuth20(SourceShopifyConfigurationCredentialsOAuth20Args.builder()
.accessToken("string")
.clientId("string")
.clientSecret("string")
.build())
.build())
.fetchTransactionsUserId(false)
.jobCheckpointInterval(0)
.jobProductVariantsIncludePresPrices(false)
.jobTerminationThreshold(0)
.startDate("string")
.build())
.workspaceId("string")
.definitionId("string")
.name("string")
.secretId("string")
.build());
source_shopify_resource = airbyte.SourceShopify("sourceShopifyResource",
configuration={
"shop": "string",
"bulk_window_in_days": 0,
"credentials": {
"api_password": {
"api_password": "string",
},
"o_auth20": {
"access_token": "string",
"client_id": "string",
"client_secret": "string",
},
},
"fetch_transactions_user_id": False,
"job_checkpoint_interval": 0,
"job_product_variants_include_pres_prices": False,
"job_termination_threshold": 0,
"start_date": "string",
},
workspace_id="string",
definition_id="string",
name="string",
secret_id="string")
const sourceShopifyResource = new airbyte.SourceShopify("sourceShopifyResource", {
configuration: {
shop: "string",
bulkWindowInDays: 0,
credentials: {
apiPassword: {
apiPassword: "string",
},
oAuth20: {
accessToken: "string",
clientId: "string",
clientSecret: "string",
},
},
fetchTransactionsUserId: false,
jobCheckpointInterval: 0,
jobProductVariantsIncludePresPrices: false,
jobTerminationThreshold: 0,
startDate: "string",
},
workspaceId: "string",
definitionId: "string",
name: "string",
secretId: "string",
});
type: airbyte:SourceShopify
properties:
configuration:
bulkWindowInDays: 0
credentials:
apiPassword:
apiPassword: string
oAuth20:
accessToken: string
clientId: string
clientSecret: string
fetchTransactionsUserId: false
jobCheckpointInterval: 0
jobProductVariantsIncludePresPrices: false
jobTerminationThreshold: 0
shop: string
startDate: string
definitionId: string
name: string
secretId: string
workspaceId: string
SourceShopify 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 SourceShopify resource accepts the following input properties:
- Configuration
Source
Shopify 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
Shopify 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
Shopify 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
Shopify 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
Shopify 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 SourceShopify resource produces the following output properties:
- Created
At double - Id string
- The provider-assigned unique ID for this managed resource.
- Resource
Allocation SourceShopify 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 SourceShopify 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 SourceShopify 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 SourceShopify 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 SourceShopify 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 SourceShopify Resource
Get an existing SourceShopify 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?: SourceShopifyState, opts?: CustomResourceOptions): SourceShopify
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
configuration: Optional[SourceShopifyConfigurationArgs] = None,
created_at: Optional[float] = None,
definition_id: Optional[str] = None,
name: Optional[str] = None,
resource_allocation: Optional[SourceShopifyResourceAllocationArgs] = None,
secret_id: Optional[str] = None,
source_id: Optional[str] = None,
source_type: Optional[str] = None,
workspace_id: Optional[str] = None) -> SourceShopify
func GetSourceShopify(ctx *Context, name string, id IDInput, state *SourceShopifyState, opts ...ResourceOption) (*SourceShopify, error)
public static SourceShopify Get(string name, Input<string> id, SourceShopifyState? state, CustomResourceOptions? opts = null)
public static SourceShopify get(String name, Output<String> id, SourceShopifyState state, CustomResourceOptions options)
resources: _: type: airbyte:SourceShopify 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
Shopify 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 SourceShopify 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
Shopify 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 SourceShopify 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
Shopify 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 SourceShopify 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
Shopify 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 SourceShopify 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
Shopify 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 SourceShopify 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
SourceShopifyConfiguration, SourceShopifyConfigurationArgs
- Shop string
- The name of your Shopify store found in the URL. For example, if your URL was https://NAME.myshopify.com, then the name would be 'NAME' or 'NAME.myshopify.com'.
- Bulk
Window doubleIn Days - Defines what would be a date range per single BULK Job. Default: 30
- Credentials
Source
Shopify Configuration Credentials - The authorization method to use to retrieve data from Shopify
- Fetch
Transactions boolUser Id - Defines which API type (REST/BULK) to use to fetch
Transactions
data. If you are aShopify Plus
user, leave the default value to speed up the fetch. Default: false - Job
Checkpoint doubleInterval - The threshold, after which the single BULK Job should be checkpointed (min: 15k, max: 1M). Default: 100000
- Job
Product boolVariants Include Pres Prices - If enabled, the
Product Variants
stream attempts to includePresentment prices
field (may affect the performance). Default: true - Job
Termination doubleThreshold - The max time in seconds, after which the single BULK Job should be
CANCELED
and retried. The bigger the value the longer the BULK Job is allowed to run. Default: 7200 - Start
Date string - The date you would like to replicate data from. Format: YYYY-MM-DD. Any data before this date will not be replicated. Default: "2020-01-01"
- Shop string
- The name of your Shopify store found in the URL. For example, if your URL was https://NAME.myshopify.com, then the name would be 'NAME' or 'NAME.myshopify.com'.
- Bulk
Window float64In Days - Defines what would be a date range per single BULK Job. Default: 30
- Credentials
Source
Shopify Configuration Credentials - The authorization method to use to retrieve data from Shopify
- Fetch
Transactions boolUser Id - Defines which API type (REST/BULK) to use to fetch
Transactions
data. If you are aShopify Plus
user, leave the default value to speed up the fetch. Default: false - Job
Checkpoint float64Interval - The threshold, after which the single BULK Job should be checkpointed (min: 15k, max: 1M). Default: 100000
- Job
Product boolVariants Include Pres Prices - If enabled, the
Product Variants
stream attempts to includePresentment prices
field (may affect the performance). Default: true - Job
Termination float64Threshold - The max time in seconds, after which the single BULK Job should be
CANCELED
and retried. The bigger the value the longer the BULK Job is allowed to run. Default: 7200 - Start
Date string - The date you would like to replicate data from. Format: YYYY-MM-DD. Any data before this date will not be replicated. Default: "2020-01-01"
- shop String
- The name of your Shopify store found in the URL. For example, if your URL was https://NAME.myshopify.com, then the name would be 'NAME' or 'NAME.myshopify.com'.
- bulk
Window DoubleIn Days - Defines what would be a date range per single BULK Job. Default: 30
- credentials
Source
Shopify Configuration Credentials - The authorization method to use to retrieve data from Shopify
- fetch
Transactions BooleanUser Id - Defines which API type (REST/BULK) to use to fetch
Transactions
data. If you are aShopify Plus
user, leave the default value to speed up the fetch. Default: false - job
Checkpoint DoubleInterval - The threshold, after which the single BULK Job should be checkpointed (min: 15k, max: 1M). Default: 100000
- job
Product BooleanVariants Include Pres Prices - If enabled, the
Product Variants
stream attempts to includePresentment prices
field (may affect the performance). Default: true - job
Termination DoubleThreshold - The max time in seconds, after which the single BULK Job should be
CANCELED
and retried. The bigger the value the longer the BULK Job is allowed to run. Default: 7200 - start
Date String - The date you would like to replicate data from. Format: YYYY-MM-DD. Any data before this date will not be replicated. Default: "2020-01-01"
- shop string
- The name of your Shopify store found in the URL. For example, if your URL was https://NAME.myshopify.com, then the name would be 'NAME' or 'NAME.myshopify.com'.
- bulk
Window numberIn Days - Defines what would be a date range per single BULK Job. Default: 30
- credentials
Source
Shopify Configuration Credentials - The authorization method to use to retrieve data from Shopify
- fetch
Transactions booleanUser Id - Defines which API type (REST/BULK) to use to fetch
Transactions
data. If you are aShopify Plus
user, leave the default value to speed up the fetch. Default: false - job
Checkpoint numberInterval - The threshold, after which the single BULK Job should be checkpointed (min: 15k, max: 1M). Default: 100000
- job
Product booleanVariants Include Pres Prices - If enabled, the
Product Variants
stream attempts to includePresentment prices
field (may affect the performance). Default: true - job
Termination numberThreshold - The max time in seconds, after which the single BULK Job should be
CANCELED
and retried. The bigger the value the longer the BULK Job is allowed to run. Default: 7200 - start
Date string - The date you would like to replicate data from. Format: YYYY-MM-DD. Any data before this date will not be replicated. Default: "2020-01-01"
- shop str
- The name of your Shopify store found in the URL. For example, if your URL was https://NAME.myshopify.com, then the name would be 'NAME' or 'NAME.myshopify.com'.
- bulk_
window_ floatin_ days - Defines what would be a date range per single BULK Job. Default: 30
- credentials
Source
Shopify Configuration Credentials - The authorization method to use to retrieve data from Shopify
- fetch_
transactions_ booluser_ id - Defines which API type (REST/BULK) to use to fetch
Transactions
data. If you are aShopify Plus
user, leave the default value to speed up the fetch. Default: false - job_
checkpoint_ floatinterval - The threshold, after which the single BULK Job should be checkpointed (min: 15k, max: 1M). Default: 100000
- job_
product_ boolvariants_ include_ pres_ prices - If enabled, the
Product Variants
stream attempts to includePresentment prices
field (may affect the performance). Default: true - job_
termination_ floatthreshold - The max time in seconds, after which the single BULK Job should be
CANCELED
and retried. The bigger the value the longer the BULK Job is allowed to run. Default: 7200 - start_
date str - The date you would like to replicate data from. Format: YYYY-MM-DD. Any data before this date will not be replicated. Default: "2020-01-01"
- shop String
- The name of your Shopify store found in the URL. For example, if your URL was https://NAME.myshopify.com, then the name would be 'NAME' or 'NAME.myshopify.com'.
- bulk
Window NumberIn Days - Defines what would be a date range per single BULK Job. Default: 30
- credentials Property Map
- The authorization method to use to retrieve data from Shopify
- fetch
Transactions BooleanUser Id - Defines which API type (REST/BULK) to use to fetch
Transactions
data. If you are aShopify Plus
user, leave the default value to speed up the fetch. Default: false - job
Checkpoint NumberInterval - The threshold, after which the single BULK Job should be checkpointed (min: 15k, max: 1M). Default: 100000
- job
Product BooleanVariants Include Pres Prices - If enabled, the
Product Variants
stream attempts to includePresentment prices
field (may affect the performance). Default: true - job
Termination NumberThreshold - The max time in seconds, after which the single BULK Job should be
CANCELED
and retried. The bigger the value the longer the BULK Job is allowed to run. Default: 7200 - start
Date String - The date you would like to replicate data from. Format: YYYY-MM-DD. Any data before this date will not be replicated. Default: "2020-01-01"
SourceShopifyConfigurationCredentials, SourceShopifyConfigurationCredentialsArgs
- api
Password Property Map - API Password Auth
- o
Auth20 Property Map - OAuth2.0
SourceShopifyConfigurationCredentialsApiPassword, SourceShopifyConfigurationCredentialsApiPasswordArgs
- Api
Password string - The API Password for your private application in the
Shopify
store.
- Api
Password string - The API Password for your private application in the
Shopify
store.
- api
Password String - The API Password for your private application in the
Shopify
store.
- api
Password string - The API Password for your private application in the
Shopify
store.
- api_
password str - The API Password for your private application in the
Shopify
store.
- api
Password String - The API Password for your private application in the
Shopify
store.
SourceShopifyConfigurationCredentialsOAuth20, SourceShopifyConfigurationCredentialsOAuth20Args
- Access
Token string - The Access Token for making authenticated requests.
- Client
Id string - The Client ID of the Shopify developer application.
- Client
Secret string - The Client Secret of the Shopify developer application.
- Access
Token string - The Access Token for making authenticated requests.
- Client
Id string - The Client ID of the Shopify developer application.
- Client
Secret string - The Client Secret of the Shopify developer application.
- access
Token String - The Access Token for making authenticated requests.
- client
Id String - The Client ID of the Shopify developer application.
- client
Secret String - The Client Secret of the Shopify developer application.
- access
Token string - The Access Token for making authenticated requests.
- client
Id string - The Client ID of the Shopify developer application.
- client
Secret string - The Client Secret of the Shopify developer application.
- access_
token str - The Access Token for making authenticated requests.
- client_
id str - The Client ID of the Shopify developer application.
- client_
secret str - The Client Secret of the Shopify developer application.
- access
Token String - The Access Token for making authenticated requests.
- client
Id String - The Client ID of the Shopify developer application.
- client
Secret String - The Client Secret of the Shopify developer application.
SourceShopifyResourceAllocation, SourceShopifyResourceAllocationArgs
- Default
Source
Shopify Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics List<SourceShopify Resource Allocation Job Specific>
- Default
Source
Shopify Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- Job
Specifics []SourceShopify Resource Allocation Job Specific
- default_
Source
Shopify Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<SourceShopify Resource Allocation Job Specific>
- default
Source
Shopify Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics SourceShopify Resource Allocation Job Specific[]
- default
Source
Shopify Resource Allocation Default - optional resource requirements to run workers (blank for unbounded allocations)
- job_
specifics Sequence[SourceShopify Resource Allocation Job Specific]
- default Property Map
- optional resource requirements to run workers (blank for unbounded allocations)
- job
Specifics List<Property Map>
SourceShopifyResourceAllocationDefault, SourceShopifyResourceAllocationDefaultArgs
- 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
SourceShopifyResourceAllocationJobSpecific, SourceShopifyResourceAllocationJobSpecificArgs
- 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 SourceShopify 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 SourceShopify 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 SourceShopify 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 SourceShopify 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 SourceShopify 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)
SourceShopifyResourceAllocationJobSpecificResourceRequirements, SourceShopifyResourceAllocationJobSpecificResourceRequirementsArgs
- 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/sourceShopify:SourceShopify my_airbyte_source_shopify ""
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.