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

airbyte.DestinationCobra

Explore with Pulumi AI

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

    DestinationCobra 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.DestinationCobra;
    import com.pulumi.airbyte.DestinationCobraArgs;
    import com.pulumi.airbyte.inputs.DestinationCobraConfigurationArgs;
    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 myDestinationCobra = new DestinationCobra("myDestinationCobra", DestinationCobraArgs.builder()
                .configuration(DestinationCobraConfigurationArgs.builder()
                    .client_id("...my_client_id...")
                    .client_secret("...my_client_secret...")
                    .is_sandbox(true)
                    .print_record_content_on_error(false)
                    .refresh_token("...my_refresh_token...")
                    .stream_mappings(%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
                    .stream_order("...")
                    .build())
                .definitionId("639ce355-2f32-46fc-b636-542060b9a351")
                .workspaceId("7743f23f-cbcc-4682-9621-edebf51717cf")
                .build());
    
        }
    }
    
    resources:
      myDestinationCobra:
        type: airbyte:DestinationCobra
        properties:
          configuration:
            client_id: '...my_client_id...'
            client_secret: '...my_client_secret...'
            is_sandbox: true
            print_record_content_on_error: false
            refresh_token: '...my_refresh_token...'
            stream_mappings:
              - destinationTable: '...my_destination_table...'
                sourceStream: '...my_source_stream...'
                updateMode: DELETE
                upsertKey: '...my_upsert_key...'
            stream_order:
              - '...'
          definitionId: 639ce355-2f32-46fc-b636-542060b9a351
          workspaceId: 7743f23f-cbcc-4682-9621-edebf51717cf
    

    Create DestinationCobra Resource

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

    Constructor syntax

    new DestinationCobra(name: string, args: DestinationCobraArgs, opts?: CustomResourceOptions);
    @overload
    def DestinationCobra(resource_name: str,
                         args: DestinationCobraArgs,
                         opts: Optional[ResourceOptions] = None)
    
    @overload
    def DestinationCobra(resource_name: str,
                         opts: Optional[ResourceOptions] = None,
                         configuration: Optional[DestinationCobraConfigurationArgs] = None,
                         workspace_id: Optional[str] = None,
                         definition_id: Optional[str] = None,
                         name: Optional[str] = None)
    func NewDestinationCobra(ctx *Context, name string, args DestinationCobraArgs, opts ...ResourceOption) (*DestinationCobra, error)
    public DestinationCobra(string name, DestinationCobraArgs args, CustomResourceOptions? opts = null)
    public DestinationCobra(String name, DestinationCobraArgs args)
    public DestinationCobra(String name, DestinationCobraArgs args, CustomResourceOptions options)
    
    type: airbyte:DestinationCobra
    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 DestinationCobraArgs
    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 DestinationCobraArgs
    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 DestinationCobraArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args DestinationCobraArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args DestinationCobraArgs
    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 destinationCobraResource = new Airbyte.DestinationCobra("destinationCobraResource", new()
    {
        Configuration = new Airbyte.Inputs.DestinationCobraConfigurationArgs
        {
            ClientId = "string",
            ClientSecret = "string",
            RefreshToken = "string",
            IsSandbox = false,
            PrintRecordContentOnError = false,
            StreamMappings = new[]
            {
                new Airbyte.Inputs.DestinationCobraConfigurationStreamMappingArgs
                {
                    DestinationTable = "string",
                    SourceStream = "string",
                    UpdateMode = "string",
                    UpsertKey = "string",
                },
            },
            StreamOrders = new[]
            {
                "string",
            },
        },
        WorkspaceId = "string",
        DefinitionId = "string",
        Name = "string",
    });
    
    example, err := airbyte.NewDestinationCobra(ctx, "destinationCobraResource", &airbyte.DestinationCobraArgs{
    Configuration: &.DestinationCobraConfigurationArgs{
    ClientId: pulumi.String("string"),
    ClientSecret: pulumi.String("string"),
    RefreshToken: pulumi.String("string"),
    IsSandbox: pulumi.Bool(false),
    PrintRecordContentOnError: pulumi.Bool(false),
    StreamMappings: .DestinationCobraConfigurationStreamMappingArray{
    &.DestinationCobraConfigurationStreamMappingArgs{
    DestinationTable: pulumi.String("string"),
    SourceStream: pulumi.String("string"),
    UpdateMode: pulumi.String("string"),
    UpsertKey: pulumi.String("string"),
    },
    },
    StreamOrders: pulumi.StringArray{
    pulumi.String("string"),
    },
    },
    WorkspaceId: pulumi.String("string"),
    DefinitionId: pulumi.String("string"),
    Name: pulumi.String("string"),
    })
    
    var destinationCobraResource = new DestinationCobra("destinationCobraResource", DestinationCobraArgs.builder()
        .configuration(DestinationCobraConfigurationArgs.builder()
            .clientId("string")
            .clientSecret("string")
            .refreshToken("string")
            .isSandbox(false)
            .printRecordContentOnError(false)
            .streamMappings(DestinationCobraConfigurationStreamMappingArgs.builder()
                .destinationTable("string")
                .sourceStream("string")
                .updateMode("string")
                .upsertKey("string")
                .build())
            .streamOrders("string")
            .build())
        .workspaceId("string")
        .definitionId("string")
        .name("string")
        .build());
    
    destination_cobra_resource = airbyte.DestinationCobra("destinationCobraResource",
        configuration={
            "client_id": "string",
            "client_secret": "string",
            "refresh_token": "string",
            "is_sandbox": False,
            "print_record_content_on_error": False,
            "stream_mappings": [{
                "destination_table": "string",
                "source_stream": "string",
                "update_mode": "string",
                "upsert_key": "string",
            }],
            "stream_orders": ["string"],
        },
        workspace_id="string",
        definition_id="string",
        name="string")
    
    const destinationCobraResource = new airbyte.DestinationCobra("destinationCobraResource", {
        configuration: {
            clientId: "string",
            clientSecret: "string",
            refreshToken: "string",
            isSandbox: false,
            printRecordContentOnError: false,
            streamMappings: [{
                destinationTable: "string",
                sourceStream: "string",
                updateMode: "string",
                upsertKey: "string",
            }],
            streamOrders: ["string"],
        },
        workspaceId: "string",
        definitionId: "string",
        name: "string",
    });
    
    type: airbyte:DestinationCobra
    properties:
        configuration:
            clientId: string
            clientSecret: string
            isSandbox: false
            printRecordContentOnError: false
            refreshToken: string
            streamMappings:
                - destinationTable: string
                  sourceStream: string
                  updateMode: string
                  upsertKey: string
            streamOrders:
                - string
        definitionId: string
        name: string
        workspaceId: string
    

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

    Configuration DestinationCobraConfiguration
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    Configuration DestinationCobraConfigurationArgs
    WorkspaceId string
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    Name string
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationCobraConfiguration
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationCobraConfiguration
    workspaceId string
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name string
    Name of the destination e.g. dev-mysql-instance.
    configuration DestinationCobraConfigurationArgs
    workspace_id str
    definition_id str
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name str
    Name of the destination e.g. dev-mysql-instance.
    configuration Property Map
    workspaceId String
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    name String
    Name of the destination e.g. dev-mysql-instance.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the DestinationCobra resource produces the following output properties:

    CreatedAt double
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation DestinationCobraResourceAllocation
    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.
    CreatedAt float64
    DestinationId string
    DestinationType string
    Id string
    The provider-assigned unique ID for this managed resource.
    ResourceAllocation DestinationCobraResourceAllocation
    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.
    createdAt Double
    destinationId String
    destinationType String
    id String
    The provider-assigned unique ID for this managed resource.
    resourceAllocation DestinationCobraResourceAllocation
    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.
    createdAt number
    destinationId string
    destinationType string
    id string
    The provider-assigned unique ID for this managed resource.
    resourceAllocation DestinationCobraResourceAllocation
    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.
    created_at float
    destination_id str
    destination_type str
    id str
    The provider-assigned unique ID for this managed resource.
    resource_allocation DestinationCobraResourceAllocation
    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.
    createdAt Number
    destinationId String
    destinationType String
    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.

    Look up Existing DestinationCobra Resource

    Get an existing DestinationCobra 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?: DestinationCobraState, opts?: CustomResourceOptions): DestinationCobra
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            configuration: Optional[DestinationCobraConfigurationArgs] = None,
            created_at: Optional[float] = None,
            definition_id: Optional[str] = None,
            destination_id: Optional[str] = None,
            destination_type: Optional[str] = None,
            name: Optional[str] = None,
            resource_allocation: Optional[DestinationCobraResourceAllocationArgs] = None,
            workspace_id: Optional[str] = None) -> DestinationCobra
    func GetDestinationCobra(ctx *Context, name string, id IDInput, state *DestinationCobraState, opts ...ResourceOption) (*DestinationCobra, error)
    public static DestinationCobra Get(string name, Input<string> id, DestinationCobraState? state, CustomResourceOptions? opts = null)
    public static DestinationCobra get(String name, Output<String> id, DestinationCobraState state, CustomResourceOptions options)
    resources:  _:    type: airbyte:DestinationCobra    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 DestinationCobraConfiguration
    CreatedAt double
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    ResourceAllocation DestinationCobraResourceAllocation
    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.
    WorkspaceId string
    Configuration DestinationCobraConfigurationArgs
    CreatedAt float64
    DefinitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    DestinationId string
    DestinationType string
    Name string
    Name of the destination e.g. dev-mysql-instance.
    ResourceAllocation DestinationCobraResourceAllocationArgs
    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.
    WorkspaceId string
    configuration DestinationCobraConfiguration
    createdAt Double
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation DestinationCobraResourceAllocation
    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.
    workspaceId String
    configuration DestinationCobraConfiguration
    createdAt number
    definitionId string
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId string
    destinationType string
    name string
    Name of the destination e.g. dev-mysql-instance.
    resourceAllocation DestinationCobraResourceAllocation
    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.
    workspaceId string
    configuration DestinationCobraConfigurationArgs
    created_at float
    definition_id str
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destination_id str
    destination_type str
    name str
    Name of the destination e.g. dev-mysql-instance.
    resource_allocation DestinationCobraResourceAllocationArgs
    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.
    workspace_id str
    configuration Property Map
    createdAt Number
    definitionId String
    The UUID of the connector definition. One of configuration.destinationType or definitionId must be provided. Requires replacement if changed.
    destinationId String
    destinationType String
    name String
    Name of the destination 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.
    workspaceId String

    Supporting Types

    DestinationCobraConfiguration, DestinationCobraConfigurationArgs

    ClientId string
    Enter your Salesforce developer application's \n\nClient ID\n\n
    ClientSecret string
    Enter your Salesforce developer application's \n\nClient secret\n\n
    RefreshToken string
    Enter your application's \n\nSalesforce Refresh Token\n\n used for Airbyte to access your Salesforce account.
    IsSandbox bool
    Toggle if you're using a \n\nSalesforce Sandbox\n\n. Default: false
    PrintRecordContentOnError bool
    If enabled, the records content will be printed as part of the log in case of failure which allows for easier debugging. Default: false
    StreamMappings List<DestinationCobraConfigurationStreamMapping>
    StreamOrders List<string>
    The order in which the streams should be synced. Streams are synced in the order they are listed. Only those streams will be synced so make sure all the input streams are configured here.
    ClientId string
    Enter your Salesforce developer application's \n\nClient ID\n\n
    ClientSecret string
    Enter your Salesforce developer application's \n\nClient secret\n\n
    RefreshToken string
    Enter your application's \n\nSalesforce Refresh Token\n\n used for Airbyte to access your Salesforce account.
    IsSandbox bool
    Toggle if you're using a \n\nSalesforce Sandbox\n\n. Default: false
    PrintRecordContentOnError bool
    If enabled, the records content will be printed as part of the log in case of failure which allows for easier debugging. Default: false
    StreamMappings []DestinationCobraConfigurationStreamMapping
    StreamOrders []string
    The order in which the streams should be synced. Streams are synced in the order they are listed. Only those streams will be synced so make sure all the input streams are configured here.
    clientId String
    Enter your Salesforce developer application's \n\nClient ID\n\n
    clientSecret String
    Enter your Salesforce developer application's \n\nClient secret\n\n
    refreshToken String
    Enter your application's \n\nSalesforce Refresh Token\n\n used for Airbyte to access your Salesforce account.
    isSandbox Boolean
    Toggle if you're using a \n\nSalesforce Sandbox\n\n. Default: false
    printRecordContentOnError Boolean
    If enabled, the records content will be printed as part of the log in case of failure which allows for easier debugging. Default: false
    streamMappings List<DestinationCobraConfigurationStreamMapping>
    streamOrders List<String>
    The order in which the streams should be synced. Streams are synced in the order they are listed. Only those streams will be synced so make sure all the input streams are configured here.
    clientId string
    Enter your Salesforce developer application's \n\nClient ID\n\n
    clientSecret string
    Enter your Salesforce developer application's \n\nClient secret\n\n
    refreshToken string
    Enter your application's \n\nSalesforce Refresh Token\n\n used for Airbyte to access your Salesforce account.
    isSandbox boolean
    Toggle if you're using a \n\nSalesforce Sandbox\n\n. Default: false
    printRecordContentOnError boolean
    If enabled, the records content will be printed as part of the log in case of failure which allows for easier debugging. Default: false
    streamMappings DestinationCobraConfigurationStreamMapping[]
    streamOrders string[]
    The order in which the streams should be synced. Streams are synced in the order they are listed. Only those streams will be synced so make sure all the input streams are configured here.
    client_id str
    Enter your Salesforce developer application's \n\nClient ID\n\n
    client_secret str
    Enter your Salesforce developer application's \n\nClient secret\n\n
    refresh_token str
    Enter your application's \n\nSalesforce Refresh Token\n\n used for Airbyte to access your Salesforce account.
    is_sandbox bool
    Toggle if you're using a \n\nSalesforce Sandbox\n\n. Default: false
    print_record_content_on_error bool
    If enabled, the records content will be printed as part of the log in case of failure which allows for easier debugging. Default: false
    stream_mappings Sequence[DestinationCobraConfigurationStreamMapping]
    stream_orders Sequence[str]
    The order in which the streams should be synced. Streams are synced in the order they are listed. Only those streams will be synced so make sure all the input streams are configured here.
    clientId String
    Enter your Salesforce developer application's \n\nClient ID\n\n
    clientSecret String
    Enter your Salesforce developer application's \n\nClient secret\n\n
    refreshToken String
    Enter your application's \n\nSalesforce Refresh Token\n\n used for Airbyte to access your Salesforce account.
    isSandbox Boolean
    Toggle if you're using a \n\nSalesforce Sandbox\n\n. Default: false
    printRecordContentOnError Boolean
    If enabled, the records content will be printed as part of the log in case of failure which allows for easier debugging. Default: false
    streamMappings List<Property Map>
    streamOrders List<String>
    The order in which the streams should be synced. Streams are synced in the order they are listed. Only those streams will be synced so make sure all the input streams are configured here.

    DestinationCobraConfigurationStreamMapping, DestinationCobraConfigurationStreamMappingArgs

    DestinationTable string
    The name for the table to update the data in the destination.
    SourceStream string
    The name for the input stream.
    UpdateMode string
    How to update the data in the destination. must be one of ["INSERT", "UPDATE", "UPSERT", "DELETE"]
    UpsertKey string
    Given the operation is an upsert, a field representing an external ID needs to be provided
    DestinationTable string
    The name for the table to update the data in the destination.
    SourceStream string
    The name for the input stream.
    UpdateMode string
    How to update the data in the destination. must be one of ["INSERT", "UPDATE", "UPSERT", "DELETE"]
    UpsertKey string
    Given the operation is an upsert, a field representing an external ID needs to be provided
    destinationTable String
    The name for the table to update the data in the destination.
    sourceStream String
    The name for the input stream.
    updateMode String
    How to update the data in the destination. must be one of ["INSERT", "UPDATE", "UPSERT", "DELETE"]
    upsertKey String
    Given the operation is an upsert, a field representing an external ID needs to be provided
    destinationTable string
    The name for the table to update the data in the destination.
    sourceStream string
    The name for the input stream.
    updateMode string
    How to update the data in the destination. must be one of ["INSERT", "UPDATE", "UPSERT", "DELETE"]
    upsertKey string
    Given the operation is an upsert, a field representing an external ID needs to be provided
    destination_table str
    The name for the table to update the data in the destination.
    source_stream str
    The name for the input stream.
    update_mode str
    How to update the data in the destination. must be one of ["INSERT", "UPDATE", "UPSERT", "DELETE"]
    upsert_key str
    Given the operation is an upsert, a field representing an external ID needs to be provided
    destinationTable String
    The name for the table to update the data in the destination.
    sourceStream String
    The name for the input stream.
    updateMode String
    How to update the data in the destination. must be one of ["INSERT", "UPDATE", "UPSERT", "DELETE"]
    upsertKey String
    Given the operation is an upsert, a field representing an external ID needs to be provided

    DestinationCobraResourceAllocation, DestinationCobraResourceAllocationArgs

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

    DestinationCobraResourceAllocationDefault, DestinationCobraResourceAllocationDefaultArgs

    DestinationCobraResourceAllocationJobSpecific, DestinationCobraResourceAllocationJobSpecificArgs

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

    DestinationCobraResourceAllocationJobSpecificResourceRequirements, DestinationCobraResourceAllocationJobSpecificResourceRequirementsArgs

    Import

    $ pulumi import airbyte:index/destinationCobra:DestinationCobra my_airbyte_destination_cobra ""
    

    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