1. Packages
  2. Airbyte Provider
  3. API Docs
  4. SourceRetently
airbyte 0.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq

airbyte.SourceRetently

Explore with Pulumi AI

airbyte logo
airbyte 0.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq

    SourceRetently Resource

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as airbyte from "@pulumi/airbyte";
    
    const mySourceRetently = new airbyte.SourceRetently("mySourceRetently", {
        configuration: {
            credentials: {
                authenticateWithApiToken: {
                    additionalProperties: "{ \"see\": \"documentation\" }",
                    apiKey: "...my_api_key...",
                },
            },
        },
        definitionId: "cca4315f-0685-4a8f-b821-e7a8f8d7f4b8",
        secretId: "...my_secret_id...",
        workspaceId: "fff20602-c218-4268-935e-a746cd7a8c6c",
    });
    
    import pulumi
    import pulumi_airbyte as airbyte
    
    my_source_retently = airbyte.SourceRetently("mySourceRetently",
        configuration={
            "credentials": {
                "authenticate_with_api_token": {
                    "additional_properties": "{ \"see\": \"documentation\" }",
                    "api_key": "...my_api_key...",
                },
            },
        },
        definition_id="cca4315f-0685-4a8f-b821-e7a8f8d7f4b8",
        secret_id="...my_secret_id...",
        workspace_id="fff20602-c218-4268-935e-a746cd7a8c6c")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/airbyte/airbyte"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := airbyte.NewSourceRetently(ctx, "mySourceRetently", &airbyte.SourceRetentlyArgs{
    			Configuration: &airbyte.SourceRetentlyConfigurationArgs{
    				Credentials: &airbyte.SourceRetentlyConfigurationCredentialsArgs{
    					AuthenticateWithApiToken: &airbyte.SourceRetentlyConfigurationCredentialsAuthenticateWithApiTokenArgs{
    						AdditionalProperties: pulumi.String("{ \"see\": \"documentation\" }"),
    						ApiKey:               pulumi.String("...my_api_key..."),
    					},
    				},
    			},
    			DefinitionId: pulumi.String("cca4315f-0685-4a8f-b821-e7a8f8d7f4b8"),
    			SecretId:     pulumi.String("...my_secret_id..."),
    			WorkspaceId:  pulumi.String("fff20602-c218-4268-935e-a746cd7a8c6c"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Airbyte = Pulumi.Airbyte;
    
    return await Deployment.RunAsync(() => 
    {
        var mySourceRetently = new Airbyte.SourceRetently("mySourceRetently", new()
        {
            Configuration = new Airbyte.Inputs.SourceRetentlyConfigurationArgs
            {
                Credentials = new Airbyte.Inputs.SourceRetentlyConfigurationCredentialsArgs
                {
                    AuthenticateWithApiToken = new Airbyte.Inputs.SourceRetentlyConfigurationCredentialsAuthenticateWithApiTokenArgs
                    {
                        AdditionalProperties = "{ \"see\": \"documentation\" }",
                        ApiKey = "...my_api_key...",
                    },
                },
            },
            DefinitionId = "cca4315f-0685-4a8f-b821-e7a8f8d7f4b8",
            SecretId = "...my_secret_id...",
            WorkspaceId = "fff20602-c218-4268-935e-a746cd7a8c6c",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.airbyte.SourceRetently;
    import com.pulumi.airbyte.SourceRetentlyArgs;
    import com.pulumi.airbyte.inputs.SourceRetentlyConfigurationArgs;
    import com.pulumi.airbyte.inputs.SourceRetentlyConfigurationCredentialsArgs;
    import com.pulumi.airbyte.inputs.SourceRetentlyConfigurationCredentialsAuthenticateWithApiTokenArgs;
    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 mySourceRetently = new SourceRetently("mySourceRetently", SourceRetentlyArgs.builder()
                .configuration(SourceRetentlyConfigurationArgs.builder()
                    .credentials(SourceRetentlyConfigurationCredentialsArgs.builder()
                        .authenticateWithApiToken(SourceRetentlyConfigurationCredentialsAuthenticateWithApiTokenArgs.builder()
                            .additionalProperties("{ \"see\": \"documentation\" }")
                            .apiKey("...my_api_key...")
                            .build())
                        .build())
                    .build())
                .definitionId("cca4315f-0685-4a8f-b821-e7a8f8d7f4b8")
                .secretId("...my_secret_id...")
                .workspaceId("fff20602-c218-4268-935e-a746cd7a8c6c")
                .build());
    
        }
    }
    
    resources:
      mySourceRetently:
        type: airbyte:SourceRetently
        properties:
          configuration:
            credentials:
              authenticateWithApiToken:
                additionalProperties: '{ "see": "documentation" }'
                apiKey: '...my_api_key...'
          definitionId: cca4315f-0685-4a8f-b821-e7a8f8d7f4b8
          secretId: '...my_secret_id...'
          workspaceId: fff20602-c218-4268-935e-a746cd7a8c6c
    

    Create SourceRetently Resource

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

    Constructor syntax

    new SourceRetently(name: string, args: SourceRetentlyArgs, opts?: CustomResourceOptions);
    @overload
    def SourceRetently(resource_name: str,
                       args: SourceRetentlyArgs,
                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def SourceRetently(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       configuration: Optional[SourceRetentlyConfigurationArgs] = None,
                       workspace_id: Optional[str] = None,
                       definition_id: Optional[str] = None,
                       name: Optional[str] = None,
                       secret_id: Optional[str] = None)
    func NewSourceRetently(ctx *Context, name string, args SourceRetentlyArgs, opts ...ResourceOption) (*SourceRetently, error)
    public SourceRetently(string name, SourceRetentlyArgs args, CustomResourceOptions? opts = null)
    public SourceRetently(String name, SourceRetentlyArgs args)
    public SourceRetently(String name, SourceRetentlyArgs args, CustomResourceOptions options)
    
    type: airbyte:SourceRetently
    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 SourceRetentlyArgs
    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 SourceRetentlyArgs
    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 SourceRetentlyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SourceRetentlyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SourceRetentlyArgs
    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 sourceRetentlyResource = new Airbyte.SourceRetently("sourceRetentlyResource", new()
    {
        Configuration = new Airbyte.Inputs.SourceRetentlyConfigurationArgs
        {
            Credentials = new Airbyte.Inputs.SourceRetentlyConfigurationCredentialsArgs
            {
                AuthenticateViaRetentlyOAuth = new Airbyte.Inputs.SourceRetentlyConfigurationCredentialsAuthenticateViaRetentlyOAuthArgs
                {
                    ClientId = "string",
                    ClientSecret = "string",
                    RefreshToken = "string",
                    AdditionalProperties = "string",
                },
                AuthenticateWithApiToken = new Airbyte.Inputs.SourceRetentlyConfigurationCredentialsAuthenticateWithApiTokenArgs
                {
                    ApiKey = "string",
                    AdditionalProperties = "string",
                },
            },
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
        SecretId = "string",
    });
    
    example, err := airbyte.NewSourceRetently(ctx, "sourceRetentlyResource", &airbyte.SourceRetentlyArgs{
    Configuration: &.SourceRetentlyConfigurationArgs{
    Credentials: &.SourceRetentlyConfigurationCredentialsArgs{
    AuthenticateViaRetentlyOAuth: &.SourceRetentlyConfigurationCredentialsAuthenticateViaRetentlyOAuthArgs{
    ClientId: pulumi.String("string"),
    ClientSecret: pulumi.String("string"),
    RefreshToken: pulumi.String("string"),
    AdditionalProperties: pulumi.String("string"),
    },
    AuthenticateWithApiToken: &.SourceRetentlyConfigurationCredentialsAuthenticateWithApiTokenArgs{
    ApiKey: pulumi.String("string"),
    AdditionalProperties: pulumi.String("string"),
    },
    },
    },
    WorkspaceId: pulumi.String("string"),
    DefinitionId: pulumi.String("string"),
    Name: pulumi.String("string"),
    SecretId: pulumi.String("string"),
    })
    
    var sourceRetentlyResource = new SourceRetently("sourceRetentlyResource", SourceRetentlyArgs.builder()
        .configuration(SourceRetentlyConfigurationArgs.builder()
            .credentials(SourceRetentlyConfigurationCredentialsArgs.builder()
                .authenticateViaRetentlyOAuth(SourceRetentlyConfigurationCredentialsAuthenticateViaRetentlyOAuthArgs.builder()
                    .clientId("string")
                    .clientSecret("string")
                    .refreshToken("string")
                    .additionalProperties("string")
                    .build())
                .authenticateWithApiToken(SourceRetentlyConfigurationCredentialsAuthenticateWithApiTokenArgs.builder()
                    .apiKey("string")
                    .additionalProperties("string")
                    .build())
                .build())
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .secretId("string")
        .build());
    
    source_retently_resource = airbyte.SourceRetently("sourceRetentlyResource",
        configuration={
            "credentials": {
                "authenticate_via_retently_o_auth": {
                    "client_id": "string",
                    "client_secret": "string",
                    "refresh_token": "string",
                    "additional_properties": "string",
                },
                "authenticate_with_api_token": {
                    "api_key": "string",
                    "additional_properties": "string",
                },
            },
        },
        workspace_id="string",
        definition_id="string",
        name="string",
        secret_id="string")
    
    const sourceRetentlyResource = new airbyte.SourceRetently("sourceRetentlyResource", {
        configuration: {
            credentials: {
                authenticateViaRetentlyOAuth: {
                    clientId: "string",
                    clientSecret: "string",
                    refreshToken: "string",
                    additionalProperties: "string",
                },
                authenticateWithApiToken: {
                    apiKey: "string",
                    additionalProperties: "string",
                },
            },
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
        secretId: "string",
    });
    
    type: airbyte:SourceRetently
    properties:
        configuration:
            credentials:
                authenticateViaRetentlyOAuth:
                    additionalProperties: string
                    clientId: string
                    clientSecret: string
                    refreshToken: string
                authenticateWithApiToken:
                    additionalProperties: string
                    apiKey: string
        definitionId: string
        name: string
        secretId: string
        workspaceId: string
    

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

    Configuration SourceRetentlyConfiguration
    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 SourceRetentlyConfigurationArgs
    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 SourceRetentlyConfiguration
    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 SourceRetentlyConfiguration
    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 SourceRetentlyConfigurationArgs
    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 SourceRetently resource produces the following output properties:

    CreatedAt double
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation SourceRetentlyResourceAllocation
    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 SourceRetentlyResourceAllocation
    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 SourceRetentlyResourceAllocation
    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 SourceRetentlyResourceAllocation
    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 SourceRetentlyResourceAllocation
    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 SourceRetently Resource

    Get an existing SourceRetently 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?: SourceRetentlyState, opts?: CustomResourceOptions): SourceRetently
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[SourceRetentlyConfigurationArgs] = None,
            created_at: Optional[float] = None,
            definition_id: Optional[str] = None,
            name: Optional[str] = None,
            resource_allocation: Optional[SourceRetentlyResourceAllocationArgs] = None,
            secret_id: Optional[str] = None,
            source_id: Optional[str] = None,
            source_type: Optional[str] = None,
            workspace_id: Optional[str] = None) -> SourceRetently
    func GetSourceRetently(ctx *Context, name string, id IDInput, state *SourceRetentlyState, opts ...ResourceOption) (*SourceRetently, error)
    public static SourceRetently Get(string name, Input<string> id, SourceRetentlyState? state, CustomResourceOptions? opts = null)
    public static SourceRetently get(String name, Output<String> id, SourceRetentlyState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:SourceRetently    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 SourceRetentlyConfiguration
    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 SourceRetentlyResourceAllocation
    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 SourceRetentlyConfigurationArgs
    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 SourceRetentlyResourceAllocationArgs
    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 SourceRetentlyConfiguration
    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 SourceRetentlyResourceAllocation
    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 SourceRetentlyConfiguration
    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 SourceRetentlyResourceAllocation
    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 SourceRetentlyConfigurationArgs
    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 SourceRetentlyResourceAllocationArgs
    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

    SourceRetentlyConfiguration, SourceRetentlyConfigurationArgs

    Credentials SourceRetentlyConfigurationCredentials
    Choose how to authenticate to Retently
    Credentials SourceRetentlyConfigurationCredentials
    Choose how to authenticate to Retently
    credentials SourceRetentlyConfigurationCredentials
    Choose how to authenticate to Retently
    credentials SourceRetentlyConfigurationCredentials
    Choose how to authenticate to Retently
    credentials SourceRetentlyConfigurationCredentials
    Choose how to authenticate to Retently
    credentials Property Map
    Choose how to authenticate to Retently

    SourceRetentlyConfigurationCredentials, SourceRetentlyConfigurationCredentialsArgs

    SourceRetentlyConfigurationCredentialsAuthenticateViaRetentlyOAuth, SourceRetentlyConfigurationCredentialsAuthenticateViaRetentlyOAuthArgs

    ClientId string
    The Client ID of your Retently developer application.
    ClientSecret string
    The Client Secret of your Retently developer application.
    RefreshToken string
    Retently Refresh Token which can be used to fetch new Bearer Tokens when the current one expires.
    AdditionalProperties string
    Parsed as JSON.
    ClientId string
    The Client ID of your Retently developer application.
    ClientSecret string
    The Client Secret of your Retently developer application.
    RefreshToken string
    Retently Refresh Token which can be used to fetch new Bearer Tokens when the current one expires.
    AdditionalProperties string
    Parsed as JSON.
    clientId String
    The Client ID of your Retently developer application.
    clientSecret String
    The Client Secret of your Retently developer application.
    refreshToken String
    Retently Refresh Token which can be used to fetch new Bearer Tokens when the current one expires.
    additionalProperties String
    Parsed as JSON.
    clientId string
    The Client ID of your Retently developer application.
    clientSecret string
    The Client Secret of your Retently developer application.
    refreshToken string
    Retently Refresh Token which can be used to fetch new Bearer Tokens when the current one expires.
    additionalProperties string
    Parsed as JSON.
    client_id str
    The Client ID of your Retently developer application.
    client_secret str
    The Client Secret of your Retently developer application.
    refresh_token str
    Retently Refresh Token which can be used to fetch new Bearer Tokens when the current one expires.
    additional_properties str
    Parsed as JSON.
    clientId String
    The Client ID of your Retently developer application.
    clientSecret String
    The Client Secret of your Retently developer application.
    refreshToken String
    Retently Refresh Token which can be used to fetch new Bearer Tokens when the current one expires.
    additionalProperties String
    Parsed as JSON.

    SourceRetentlyConfigurationCredentialsAuthenticateWithApiToken, SourceRetentlyConfigurationCredentialsAuthenticateWithApiTokenArgs

    ApiKey string
    Retently API Token. See the \n\ndocs\n\n for more information on how to obtain this key.
    AdditionalProperties string
    Parsed as JSON.
    ApiKey string
    Retently API Token. See the \n\ndocs\n\n for more information on how to obtain this key.
    AdditionalProperties string
    Parsed as JSON.
    apiKey String
    Retently API Token. See the \n\ndocs\n\n for more information on how to obtain this key.
    additionalProperties String
    Parsed as JSON.
    apiKey string
    Retently API Token. See the \n\ndocs\n\n for more information on how to obtain this key.
    additionalProperties string
    Parsed as JSON.
    api_key str
    Retently API Token. See the \n\ndocs\n\n for more information on how to obtain this key.
    additional_properties str
    Parsed as JSON.
    apiKey String
    Retently API Token. See the \n\ndocs\n\n for more information on how to obtain this key.
    additionalProperties String
    Parsed as JSON.

    SourceRetentlyResourceAllocation, SourceRetentlyResourceAllocationArgs

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

    SourceRetentlyResourceAllocationDefault, SourceRetentlyResourceAllocationDefaultArgs

    SourceRetentlyResourceAllocationJobSpecific, SourceRetentlyResourceAllocationJobSpecificArgs

    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 SourceRetentlyResourceAllocationJobSpecificResourceRequirements
    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 SourceRetentlyResourceAllocationJobSpecificResourceRequirements
    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 SourceRetentlyResourceAllocationJobSpecificResourceRequirements
    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 SourceRetentlyResourceAllocationJobSpecificResourceRequirements
    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 SourceRetentlyResourceAllocationJobSpecificResourceRequirements
    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)

    SourceRetentlyResourceAllocationJobSpecificResourceRequirements, SourceRetentlyResourceAllocationJobSpecificResourceRequirementsArgs

    Import

    $ pulumi import airbyte:index/sourceRetently:SourceRetently my_airbyte_source_retently ""
    

    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.8.0-beta2 published on Thursday, Mar 27, 2025 by airbytehq