1. Packages
  2. Airbyte Provider
  3. API Docs
  4. getSourceWorkable
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

airbyte.getSourceWorkable

Explore with Pulumi AI

airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq

SourceWorkable DataSource

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as airbyte from "@pulumi/airbyte";

const mySourceWorkable = airbyte.getSourceWorkable({
    sourceId: "...my_source_id...",
});
Copy
import pulumi
import pulumi_airbyte as airbyte

my_source_workable = airbyte.get_source_workable(source_id="...my_source_id...")
Copy
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.LookupSourceWorkable(ctx, &airbyte.LookupSourceWorkableArgs{
			SourceId: "...my_source_id...",
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Airbyte = Pulumi.Airbyte;

return await Deployment.RunAsync(() => 
{
    var mySourceWorkable = Airbyte.GetSourceWorkable.Invoke(new()
    {
        SourceId = "...my_source_id...",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.airbyte.AirbyteFunctions;
import com.pulumi.airbyte.inputs.GetSourceWorkableArgs;
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) {
        final var mySourceWorkable = AirbyteFunctions.getSourceWorkable(GetSourceWorkableArgs.builder()
            .sourceId("...my_source_id...")
            .build());

    }
}
Copy
variables:
  mySourceWorkable:
    fn::invoke:
      function: airbyte:getSourceWorkable
      arguments:
        sourceId: '...my_source_id...'
Copy

Using getSourceWorkable

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getSourceWorkable(args: GetSourceWorkableArgs, opts?: InvokeOptions): Promise<GetSourceWorkableResult>
function getSourceWorkableOutput(args: GetSourceWorkableOutputArgs, opts?: InvokeOptions): Output<GetSourceWorkableResult>
Copy
def get_source_workable(source_id: Optional[str] = None,
                        opts: Optional[InvokeOptions] = None) -> GetSourceWorkableResult
def get_source_workable_output(source_id: Optional[pulumi.Input[str]] = None,
                        opts: Optional[InvokeOptions] = None) -> Output[GetSourceWorkableResult]
Copy
func LookupSourceWorkable(ctx *Context, args *LookupSourceWorkableArgs, opts ...InvokeOption) (*LookupSourceWorkableResult, error)
func LookupSourceWorkableOutput(ctx *Context, args *LookupSourceWorkableOutputArgs, opts ...InvokeOption) LookupSourceWorkableResultOutput
Copy

> Note: This function is named LookupSourceWorkable in the Go SDK.

public static class GetSourceWorkable 
{
    public static Task<GetSourceWorkableResult> InvokeAsync(GetSourceWorkableArgs args, InvokeOptions? opts = null)
    public static Output<GetSourceWorkableResult> Invoke(GetSourceWorkableInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetSourceWorkableResult> getSourceWorkable(GetSourceWorkableArgs args, InvokeOptions options)
public static Output<GetSourceWorkableResult> getSourceWorkable(GetSourceWorkableArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: airbyte:index/getSourceWorkable:getSourceWorkable
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

SourceId This property is required. string
SourceId This property is required. string
sourceId This property is required. String
sourceId This property is required. string
source_id This property is required. str
sourceId This property is required. String

getSourceWorkable Result

The following output properties are available:

Configuration string
The values required to configure the source. Parsed as JSON.
CreatedAt double
DefinitionId string
Id string
The provider-assigned unique ID for this managed resource.
Name string
SourceId string
SourceType string
WorkspaceId string
Configuration string
The values required to configure the source. Parsed as JSON.
CreatedAt float64
DefinitionId string
Id string
The provider-assigned unique ID for this managed resource.
Name string
SourceId string
SourceType string
WorkspaceId string
configuration String
The values required to configure the source. Parsed as JSON.
createdAt Double
definitionId String
id String
The provider-assigned unique ID for this managed resource.
name String
sourceId String
sourceType String
workspaceId String
configuration string
The values required to configure the source. Parsed as JSON.
createdAt number
definitionId string
id string
The provider-assigned unique ID for this managed resource.
name string
sourceId string
sourceType string
workspaceId string
configuration str
The values required to configure the source. Parsed as JSON.
created_at float
definition_id str
id str
The provider-assigned unique ID for this managed resource.
name str
source_id str
source_type str
workspace_id str
configuration String
The values required to configure the source. Parsed as JSON.
createdAt Number
definitionId String
id String
The provider-assigned unique ID for this managed resource.
name String
sourceId String
sourceType String
workspaceId String

Package Details

Repository
airbyte airbytehq/terraform-provider-airbyte
License
Notes
This Pulumi package is based on the airbyte Terraform Provider.
airbyte 0.7.0-beta2 published on Friday, Mar 7, 2025 by airbytehq