import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; export declare class Connection extends pulumi.CustomResource { /** * Get an existing Connection resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ConnectionState, opts?: pulumi.CustomResourceOptions): Connection; /** * Returns true if the given object is an instance of Connection. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is Connection; /** * A list of configured stream options for a connection. */ readonly configurations: pulumi.Output; readonly connectionId: pulumi.Output; /** * must be one of ["auto", "us", "eu"]; Default: "auto" */ readonly dataResidency: pulumi.Output; /** * Requires replacement if changed. */ readonly destinationId: pulumi.Output; /** * Optional name of the connection */ readonly name: pulumi.Output; /** * Define the location where the data will be stored in the destination. must be one of ["source", "destination", * "custom_format"]; Default: "destination" */ readonly namespaceDefinition: pulumi.Output; /** * Used when namespaceDefinition is 'custom_format'. If blank then behaves like namespaceDefinition = 'destination'. If * "${SOURCE_NAMESPACE}" then behaves like namespaceDefinition = 'source'. Default: null */ readonly namespaceFormat: pulumi.Output; /** * Set how Airbyte handles syncs when it detects a non-breaking schema change in the source. must be one of ["ignore", * "disable_connection", "propagate_columns", "propagate_fully"]; Default: "ignore" */ readonly nonBreakingSchemaUpdatesBehavior: pulumi.Output; /** * Prefix that will be prepended to the name of each stream when it is written to the destination (ex. “airbyte_” * causes “projects” => “airbyte_projects”). */ readonly prefix: pulumi.Output; /** * schedule for when the the connection should run, per the schedule type */ readonly schedule: pulumi.Output; /** * Requires replacement if changed. */ readonly sourceId: pulumi.Output; /** * must be one of ["active", "inactive", "deprecated"] */ readonly status: pulumi.Output; readonly workspaceId: pulumi.Output; /** * Create a Connection resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ConnectionArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering Connection resources. */ export interface ConnectionState { /** * A list of configured stream options for a connection. */ configurations?: pulumi.Input; connectionId?: pulumi.Input; /** * must be one of ["auto", "us", "eu"]; Default: "auto" */ dataResidency?: pulumi.Input; /** * Requires replacement if changed. */ destinationId?: pulumi.Input; /** * Optional name of the connection */ name?: pulumi.Input; /** * Define the location where the data will be stored in the destination. must be one of ["source", "destination", * "custom_format"]; Default: "destination" */ namespaceDefinition?: pulumi.Input; /** * Used when namespaceDefinition is 'custom_format'. If blank then behaves like namespaceDefinition = 'destination'. If * "${SOURCE_NAMESPACE}" then behaves like namespaceDefinition = 'source'. Default: null */ namespaceFormat?: pulumi.Input; /** * Set how Airbyte handles syncs when it detects a non-breaking schema change in the source. must be one of ["ignore", * "disable_connection", "propagate_columns", "propagate_fully"]; Default: "ignore" */ nonBreakingSchemaUpdatesBehavior?: pulumi.Input; /** * Prefix that will be prepended to the name of each stream when it is written to the destination (ex. “airbyte_” * causes “projects” => “airbyte_projects”). */ prefix?: pulumi.Input; /** * schedule for when the the connection should run, per the schedule type */ schedule?: pulumi.Input; /** * Requires replacement if changed. */ sourceId?: pulumi.Input; /** * must be one of ["active", "inactive", "deprecated"] */ status?: pulumi.Input; workspaceId?: pulumi.Input; } /** * The set of arguments for constructing a Connection resource. */ export interface ConnectionArgs { /** * A list of configured stream options for a connection. */ configurations?: pulumi.Input; /** * must be one of ["auto", "us", "eu"]; Default: "auto" */ dataResidency?: pulumi.Input; /** * Requires replacement if changed. */ destinationId: pulumi.Input; /** * Optional name of the connection */ name?: pulumi.Input; /** * Define the location where the data will be stored in the destination. must be one of ["source", "destination", * "custom_format"]; Default: "destination" */ namespaceDefinition?: pulumi.Input; /** * Used when namespaceDefinition is 'custom_format'. If blank then behaves like namespaceDefinition = 'destination'. If * "${SOURCE_NAMESPACE}" then behaves like namespaceDefinition = 'source'. Default: null */ namespaceFormat?: pulumi.Input; /** * Set how Airbyte handles syncs when it detects a non-breaking schema change in the source. must be one of ["ignore", * "disable_connection", "propagate_columns", "propagate_fully"]; Default: "ignore" */ nonBreakingSchemaUpdatesBehavior?: pulumi.Input; /** * Prefix that will be prepended to the name of each stream when it is written to the destination (ex. “airbyte_” * causes “projects” => “airbyte_projects”). */ prefix?: pulumi.Input; /** * schedule for when the the connection should run, per the schedule type */ schedule?: pulumi.Input; /** * Requires replacement if changed. */ sourceId: pulumi.Input; /** * must be one of ["active", "inactive", "deprecated"] */ status?: pulumi.Input; }