1. Packages
  2. Airbyte Provider
  3. API Docs
  4. SourceConvertkit
airbyte 0.12.0 published on Thursday, May 15, 2025 by airbytehq

airbyte.SourceConvertkit

Explore with Pulumi AI

airbyte logo
airbyte 0.12.0 published on Thursday, May 15, 2025 by airbytehq

    SourceConvertkit 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.SourceConvertkit;
    import com.pulumi.airbyte.SourceConvertkitArgs;
    import com.pulumi.airbyte.inputs.SourceConvertkitConfigurationArgs;
    import com.pulumi.airbyte.inputs.SourceConvertkitConfigurationCredentialsArgs;
    import com.pulumi.airbyte.inputs.SourceConvertkitConfigurationCredentialsApiKeyArgs;
    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 mySourceConvertkit = new SourceConvertkit("mySourceConvertkit", SourceConvertkitArgs.builder()
                .configuration(SourceConvertkitConfigurationArgs.builder()
                    .credentials(SourceConvertkitConfigurationCredentialsArgs.builder()
                        .apiKey(SourceConvertkitConfigurationCredentialsApiKeyArgs.builder()
                            .apiKey("...my_api_key...")
                            .build())
                        .build())
                    .start_date("2022-04-08T08:41:42.142Z")
                    .build())
                .definitionId("49884a66-f571-4d5d-b133-9542868ade4d")
                .secretId("...my_secret_id...")
                .workspaceId("77c64299-e674-4669-8cbe-7d4ab77892df")
                .build());
    
        }
    }
    
    resources:
      mySourceConvertkit:
        type: airbyte:SourceConvertkit
        properties:
          configuration:
            credentials:
              apiKey:
                apiKey: '...my_api_key...'
            start_date: 2022-04-08T08:41:42.142Z
          definitionId: 49884a66-f571-4d5d-b133-9542868ade4d
          secretId: '...my_secret_id...'
          workspaceId: 77c64299-e674-4669-8cbe-7d4ab77892df
    

    Create SourceConvertkit Resource

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

    Constructor syntax

    new SourceConvertkit(name: string, args: SourceConvertkitArgs, opts?: CustomResourceOptions);
    @overload
    def SourceConvertkit(resource_name: str,
                         args: SourceConvertkitArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def SourceConvertkit(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         configuration: Optional[SourceConvertkitConfigurationArgs] = None,
                         workspace_id: Optional[str] = None,
                         definition_id: Optional[str] = None,
                         name: Optional[str] = None,
                         secret_id: Optional[str] = None)
    func NewSourceConvertkit(ctx *Context, name string, args SourceConvertkitArgs, opts ...ResourceOption) (*SourceConvertkit, error)
    public SourceConvertkit(string name, SourceConvertkitArgs args, CustomResourceOptions? opts = null)
    public SourceConvertkit(String name, SourceConvertkitArgs args)
    public SourceConvertkit(String name, SourceConvertkitArgs args, CustomResourceOptions options)
    
    type: airbyte:SourceConvertkit
    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 SourceConvertkitArgs
    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 SourceConvertkitArgs
    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 SourceConvertkitArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SourceConvertkitArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SourceConvertkitArgs
    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 sourceConvertkitResource = new Airbyte.SourceConvertkit("sourceConvertkitResource", new()
    {
        Configuration = new Airbyte.Inputs.SourceConvertkitConfigurationArgs
        {
            Credentials = new Airbyte.Inputs.SourceConvertkitConfigurationCredentialsArgs
            {
                ApiKey = new Airbyte.Inputs.SourceConvertkitConfigurationCredentialsApiKeyArgs
                {
                    ApiKey = "string",
                },
                OAuth20 = new Airbyte.Inputs.SourceConvertkitConfigurationCredentialsOAuth20Args
                {
                    ClientId = "string",
                    ClientSecret = "string",
                    RefreshToken = "string",
                    AccessToken = "string",
                    ExpiresAt = "string",
                },
            },
            StartDate = "string",
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
        SecretId = "string",
    });
    
    example, err := airbyte.NewSourceConvertkit(ctx, "sourceConvertkitResource", &airbyte.SourceConvertkitArgs{
    	Configuration: &airbyte.SourceConvertkitConfigurationArgs{
    		Credentials: &airbyte.SourceConvertkitConfigurationCredentialsArgs{
    			ApiKey: &airbyte.SourceConvertkitConfigurationCredentialsApiKeyArgs{
    				ApiKey: pulumi.String("string"),
    			},
    			OAuth20: &airbyte.SourceConvertkitConfigurationCredentialsOAuth20Args{
    				ClientId:     pulumi.String("string"),
    				ClientSecret: pulumi.String("string"),
    				RefreshToken: pulumi.String("string"),
    				AccessToken:  pulumi.String("string"),
    				ExpiresAt:    pulumi.String("string"),
    			},
    		},
    		StartDate: pulumi.String("string"),
    	},
    	WorkspaceId:  pulumi.String("string"),
    	DefinitionId: pulumi.String("string"),
    	Name:         pulumi.String("string"),
    	SecretId:     pulumi.String("string"),
    })
    
    var sourceConvertkitResource = new SourceConvertkit("sourceConvertkitResource", SourceConvertkitArgs.builder()
        .configuration(SourceConvertkitConfigurationArgs.builder()
            .credentials(SourceConvertkitConfigurationCredentialsArgs.builder()
                .apiKey(SourceConvertkitConfigurationCredentialsApiKeyArgs.builder()
                    .apiKey("string")
                    .build())
                .oAuth20(SourceConvertkitConfigurationCredentialsOAuth20Args.builder()
                    .clientId("string")
                    .clientSecret("string")
                    .refreshToken("string")
                    .accessToken("string")
                    .expiresAt("string")
                    .build())
                .build())
            .startDate("string")
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .secretId("string")
        .build());
    
    source_convertkit_resource = airbyte.SourceConvertkit("sourceConvertkitResource",
        configuration={
            "credentials": {
                "api_key": {
                    "api_key": "string",
                },
                "o_auth20": {
                    "client_id": "string",
                    "client_secret": "string",
                    "refresh_token": "string",
                    "access_token": "string",
                    "expires_at": "string",
                },
            },
            "start_date": "string",
        },
        workspace_id="string",
        definition_id="string",
        name="string",
        secret_id="string")
    
    const sourceConvertkitResource = new airbyte.SourceConvertkit("sourceConvertkitResource", {
        configuration: {
            credentials: {
                apiKey: {
                    apiKey: "string",
                },
                oAuth20: {
                    clientId: "string",
                    clientSecret: "string",
                    refreshToken: "string",
                    accessToken: "string",
                    expiresAt: "string",
                },
            },
            startDate: "string",
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
        secretId: "string",
    });
    
    type: airbyte:SourceConvertkit
    properties:
        configuration:
            credentials:
                apiKey:
                    apiKey: string
                oAuth20:
                    accessToken: string
                    clientId: string
                    clientSecret: string
                    expiresAt: string
                    refreshToken: string
            startDate: string
        definitionId: string
        name: string
        secretId: string
        workspaceId: string
    

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

    Configuration SourceConvertkitConfiguration
    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 SourceConvertkitConfigurationArgs
    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 SourceConvertkitConfiguration
    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 SourceConvertkitConfiguration
    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 SourceConvertkitConfigurationArgs
    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 SourceConvertkit resource produces the following output properties:

    CreatedAt double
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation SourceConvertkitResourceAllocation
    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.
    SourceId string
    SourceType string
    CreatedAt float64
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation SourceConvertkitResourceAllocation
    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.
    SourceId string
    SourceType string
    createdAt Double
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAllocation SourceConvertkitResourceAllocation
    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.
    sourceId String
    sourceType String
    createdAt number
    id string
    The provider-assigned unique ID for this managed resource.
    resourceAllocation SourceConvertkitResourceAllocation
    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.
    sourceId string
    sourceType string
    created_at float
    id str
    The provider-assigned unique ID for this managed resource.
    resource_allocation SourceConvertkitResourceAllocation
    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
    createdAt Number
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAllocation 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.
    sourceId String
    sourceType String

    Look up Existing SourceConvertkit Resource

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

    Supporting Types

    SourceConvertkitConfiguration, SourceConvertkitConfigurationArgs

    credentials Property Map
    startDate String
    Default: "2013-01-01T00:00:00Z"

    SourceConvertkitConfigurationCredentials, SourceConvertkitConfigurationCredentialsArgs

    SourceConvertkitConfigurationCredentialsApiKey, SourceConvertkitConfigurationCredentialsApiKeyArgs

    ApiKey string
    Kit/ConvertKit API Key. Default: "{{ config.get('credentials',{}).get('apikey') or config.get('apisecret') }}"
    ApiKey string
    Kit/ConvertKit API Key. Default: "{{ config.get('credentials',{}).get('apikey') or config.get('apisecret') }}"
    apiKey String
    Kit/ConvertKit API Key. Default: "{{ config.get('credentials',{}).get('apikey') or config.get('apisecret') }}"
    apiKey string
    Kit/ConvertKit API Key. Default: "{{ config.get('credentials',{}).get('apikey') or config.get('apisecret') }}"
    api_key str
    Kit/ConvertKit API Key. Default: "{{ config.get('credentials',{}).get('apikey') or config.get('apisecret') }}"
    apiKey String
    Kit/ConvertKit API Key. Default: "{{ config.get('credentials',{}).get('apikey') or config.get('apisecret') }}"

    SourceConvertkitConfigurationCredentialsOAuth20, SourceConvertkitConfigurationCredentialsOAuth20Args

    ClientId string
    The client ID of your OAuth application.
    ClientSecret string
    The client secret of your OAuth application.
    RefreshToken string
    A current, non-expired refresh token genereted using the provided client ID and secret.
    AccessToken string
    An access token generated using the provided client information and refresh token.
    ExpiresAt string
    The time at which the current access token is set to expire
    ClientId string
    The client ID of your OAuth application.
    ClientSecret string
    The client secret of your OAuth application.
    RefreshToken string
    A current, non-expired refresh token genereted using the provided client ID and secret.
    AccessToken string
    An access token generated using the provided client information and refresh token.
    ExpiresAt string
    The time at which the current access token is set to expire
    clientId String
    The client ID of your OAuth application.
    clientSecret String
    The client secret of your OAuth application.
    refreshToken String
    A current, non-expired refresh token genereted using the provided client ID and secret.
    accessToken String
    An access token generated using the provided client information and refresh token.
    expiresAt String
    The time at which the current access token is set to expire
    clientId string
    The client ID of your OAuth application.
    clientSecret string
    The client secret of your OAuth application.
    refreshToken string
    A current, non-expired refresh token genereted using the provided client ID and secret.
    accessToken string
    An access token generated using the provided client information and refresh token.
    expiresAt string
    The time at which the current access token is set to expire
    client_id str
    The client ID of your OAuth application.
    client_secret str
    The client secret of your OAuth application.
    refresh_token str
    A current, non-expired refresh token genereted using the provided client ID and secret.
    access_token str
    An access token generated using the provided client information and refresh token.
    expires_at str
    The time at which the current access token is set to expire
    clientId String
    The client ID of your OAuth application.
    clientSecret String
    The client secret of your OAuth application.
    refreshToken String
    A current, non-expired refresh token genereted using the provided client ID and secret.
    accessToken String
    An access token generated using the provided client information and refresh token.
    expiresAt String
    The time at which the current access token is set to expire

    SourceConvertkitResourceAllocation, SourceConvertkitResourceAllocationArgs

    Default SourceConvertkitResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    JobSpecifics List<SourceConvertkitResourceAllocationJobSpecific>
    Default SourceConvertkitResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    JobSpecifics []SourceConvertkitResourceAllocationJobSpecific
    default_ SourceConvertkitResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics List<SourceConvertkitResourceAllocationJobSpecific>
    default SourceConvertkitResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics SourceConvertkitResourceAllocationJobSpecific[]
    default SourceConvertkitResourceAllocationDefault
    optional resource requirements to run workers (blank for unbounded allocations)
    job_specifics Sequence[SourceConvertkitResourceAllocationJobSpecific]
    default Property Map
    optional resource requirements to run workers (blank for unbounded allocations)
    jobSpecifics List<Property Map>

    SourceConvertkitResourceAllocationDefault, SourceConvertkitResourceAllocationDefaultArgs

    SourceConvertkitResourceAllocationJobSpecific, SourceConvertkitResourceAllocationJobSpecificArgs

    JobType 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"]
    ResourceRequirements SourceConvertkitResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    JobType 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"]
    ResourceRequirements SourceConvertkitResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType 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"]
    resourceRequirements SourceConvertkitResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType 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"]
    resourceRequirements SourceConvertkitResourceAllocationJobSpecificResourceRequirements
    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 SourceConvertkitResourceAllocationJobSpecificResourceRequirements
    optional resource requirements to run workers (blank for unbounded allocations)
    jobType 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"]
    resourceRequirements Property Map
    optional resource requirements to run workers (blank for unbounded allocations)

    SourceConvertkitResourceAllocationJobSpecificResourceRequirements, SourceConvertkitResourceAllocationJobSpecificResourceRequirementsArgs

    Import

    $ pulumi import airbyte:index/sourceConvertkit:SourceConvertkit my_airbyte_source_convertkit ""
    

    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.12.0 published on Thursday, May 15, 2025 by airbytehq