1. Packages
  2. Honeycombio Provider
  3. API Docs
  4. getDerivedColumns
honeycombio 0.31.0 published on Friday, Mar 7, 2025 by honeycombio

honeycombio.getDerivedColumns

Explore with Pulumi AI

honeycombio logo
honeycombio 0.31.0 published on Friday, Mar 7, 2025 by honeycombio

    # Data Source: honeycombio.getDerivedColumns

    The honeycombio.getDerivedColumns data source allows the derived columns of a dataset to be retrieved.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as honeycombio from "@pulumi/honeycombio";
    
    const config = new pulumi.Config();
    const dataset = config.require("dataset");
    const all = honeycombio.getDerivedColumns({
        dataset: dataset,
    });
    const foo = honeycombio.getDerivedColumns({
        dataset: dataset,
        startsWith: "foo_",
    });
    
    import pulumi
    import pulumi_honeycombio as honeycombio
    
    config = pulumi.Config()
    dataset = config.require("dataset")
    all = honeycombio.get_derived_columns(dataset=dataset)
    foo = honeycombio.get_derived_columns(dataset=dataset,
        starts_with="foo_")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/honeycombio/honeycombio"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi/config"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		cfg := config.New(ctx, "")
    		dataset := cfg.Require("dataset")
    		_, err := honeycombio.GetDerivedColumns(ctx, &honeycombio.GetDerivedColumnsArgs{
    			Dataset: dataset,
    		}, nil)
    		if err != nil {
    			return err
    		}
    		_, err = honeycombio.GetDerivedColumns(ctx, &honeycombio.GetDerivedColumnsArgs{
    			Dataset:    dataset,
    			StartsWith: pulumi.StringRef("foo_"),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Honeycombio = Pulumi.Honeycombio;
    
    return await Deployment.RunAsync(() => 
    {
        var config = new Config();
        var dataset = config.Require("dataset");
        var all = Honeycombio.GetDerivedColumns.Invoke(new()
        {
            Dataset = dataset,
        });
    
        var foo = Honeycombio.GetDerivedColumns.Invoke(new()
        {
            Dataset = dataset,
            StartsWith = "foo_",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.honeycombio.HoneycombioFunctions;
    import com.pulumi.honeycombio.inputs.GetDerivedColumnsArgs;
    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 config = ctx.config();
            final var dataset = config.get("dataset");
            final var all = HoneycombioFunctions.getDerivedColumns(GetDerivedColumnsArgs.builder()
                .dataset(dataset)
                .build());
    
            final var foo = HoneycombioFunctions.getDerivedColumns(GetDerivedColumnsArgs.builder()
                .dataset(dataset)
                .startsWith("foo_")
                .build());
    
        }
    }
    
    configuration:
      dataset:
        type: string
    variables:
      all:
        fn::invoke:
          function: honeycombio:getDerivedColumns
          arguments:
            dataset: ${dataset}
      foo:
        fn::invoke:
          function: honeycombio:getDerivedColumns
          arguments:
            dataset: ${dataset}
            startsWith: foo_
    

    Using getDerivedColumns

    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 getDerivedColumns(args: GetDerivedColumnsArgs, opts?: InvokeOptions): Promise<GetDerivedColumnsResult>
    function getDerivedColumnsOutput(args: GetDerivedColumnsOutputArgs, opts?: InvokeOptions): Output<GetDerivedColumnsResult>
    def get_derived_columns(dataset: Optional[str] = None,
                            starts_with: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetDerivedColumnsResult
    def get_derived_columns_output(dataset: Optional[pulumi.Input[str]] = None,
                            starts_with: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetDerivedColumnsResult]
    func GetDerivedColumns(ctx *Context, args *GetDerivedColumnsArgs, opts ...InvokeOption) (*GetDerivedColumnsResult, error)
    func GetDerivedColumnsOutput(ctx *Context, args *GetDerivedColumnsOutputArgs, opts ...InvokeOption) GetDerivedColumnsResultOutput

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

    public static class GetDerivedColumns 
    {
        public static Task<GetDerivedColumnsResult> InvokeAsync(GetDerivedColumnsArgs args, InvokeOptions? opts = null)
        public static Output<GetDerivedColumnsResult> Invoke(GetDerivedColumnsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDerivedColumnsResult> getDerivedColumns(GetDerivedColumnsArgs args, InvokeOptions options)
    public static Output<GetDerivedColumnsResult> getDerivedColumns(GetDerivedColumnsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: honeycombio:index/getDerivedColumns:getDerivedColumns
      arguments:
        # arguments dictionary

    The following arguments are supported:

    Dataset string
    The dataset to retrieve the columns list from. Use __all__ for Environment-wide derived columns.
    StartsWith string
    Only return derived columns starting with the given value.
    Dataset string
    The dataset to retrieve the columns list from. Use __all__ for Environment-wide derived columns.
    StartsWith string
    Only return derived columns starting with the given value.
    dataset String
    The dataset to retrieve the columns list from. Use __all__ for Environment-wide derived columns.
    startsWith String
    Only return derived columns starting with the given value.
    dataset string
    The dataset to retrieve the columns list from. Use __all__ for Environment-wide derived columns.
    startsWith string
    Only return derived columns starting with the given value.
    dataset str
    The dataset to retrieve the columns list from. Use __all__ for Environment-wide derived columns.
    starts_with str
    Only return derived columns starting with the given value.
    dataset String
    The dataset to retrieve the columns list from. Use __all__ for Environment-wide derived columns.
    startsWith String
    Only return derived columns starting with the given value.

    getDerivedColumns Result

    The following output properties are available:

    Dataset string
    Id string
    Names List<string>
    a list of all the derived column names found in the dataset
    StartsWith string
    Dataset string
    Id string
    Names []string
    a list of all the derived column names found in the dataset
    StartsWith string
    dataset String
    id String
    names List<String>
    a list of all the derived column names found in the dataset
    startsWith String
    dataset string
    id string
    names string[]
    a list of all the derived column names found in the dataset
    startsWith string
    dataset str
    id str
    names Sequence[str]
    a list of all the derived column names found in the dataset
    starts_with str
    dataset String
    id String
    names List<String>
    a list of all the derived column names found in the dataset
    startsWith String

    Package Details

    Repository
    honeycombio honeycombio/terraform-provider-honeycombio
    License
    Notes
    This Pulumi package is based on the honeycombio Terraform Provider.
    honeycombio logo
    honeycombio 0.31.0 published on Friday, Mar 7, 2025 by honeycombio