Viewing docs for Honeycomb 0.47.1
published on Monday, Mar 9, 2026 by honeycombio
published on Monday, Mar 9, 2026 by honeycombio
Viewing docs for Honeycomb 0.47.1
published on Monday, Mar 9, 2026 by honeycombio
published on Monday, Mar 9, 2026 by honeycombio
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as honeycombio from "@pulumi/honeycombio";
const config = new pulumi.Config();
const dataset = config.require("dataset");
// Retrieve the details of a single derived column
const mydc = honeycombio.getDerivedColumn({
dataset: dataset,
alias: "mydc",
});
import pulumi
import pulumi_honeycombio as honeycombio
config = pulumi.Config()
dataset = config.require("dataset")
# Retrieve the details of a single derived column
mydc = honeycombio.get_derived_column(dataset=dataset,
alias="mydc")
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")
// Retrieve the details of a single derived column
_, err := honeycombio.LookupDerivedColumn(ctx, &honeycombio.LookupDerivedColumnArgs{
Dataset: pulumi.StringRef(dataset),
Alias: "mydc",
}, 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");
// Retrieve the details of a single derived column
var mydc = Honeycombio.GetDerivedColumn.Invoke(new()
{
Dataset = dataset,
Alias = "mydc",
});
});
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.GetDerivedColumnArgs;
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");
// Retrieve the details of a single derived column
final var mydc = HoneycombioFunctions.getDerivedColumn(GetDerivedColumnArgs.builder()
.dataset(dataset)
.alias("mydc")
.build());
}
}
configuration:
dataset:
type: string
variables:
# Retrieve the details of a single derived column
mydc:
fn::invoke:
function: honeycombio:getDerivedColumn
arguments:
dataset: ${dataset}
alias: mydc
Using getDerivedColumn
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 getDerivedColumn(args: GetDerivedColumnArgs, opts?: InvokeOptions): Promise<GetDerivedColumnResult>
function getDerivedColumnOutput(args: GetDerivedColumnOutputArgs, opts?: InvokeOptions): Output<GetDerivedColumnResult>def get_derived_column(alias: Optional[str] = None,
dataset: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetDerivedColumnResult
def get_derived_column_output(alias: Optional[pulumi.Input[str]] = None,
dataset: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetDerivedColumnResult]func LookupDerivedColumn(ctx *Context, args *LookupDerivedColumnArgs, opts ...InvokeOption) (*LookupDerivedColumnResult, error)
func LookupDerivedColumnOutput(ctx *Context, args *LookupDerivedColumnOutputArgs, opts ...InvokeOption) LookupDerivedColumnResultOutput> Note: This function is named LookupDerivedColumn in the Go SDK.
public static class GetDerivedColumn
{
public static Task<GetDerivedColumnResult> InvokeAsync(GetDerivedColumnArgs args, InvokeOptions? opts = null)
public static Output<GetDerivedColumnResult> Invoke(GetDerivedColumnInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetDerivedColumnResult> getDerivedColumn(GetDerivedColumnArgs args, InvokeOptions options)
public static Output<GetDerivedColumnResult> getDerivedColumn(GetDerivedColumnArgs args, InvokeOptions options)
fn::invoke:
function: honeycombio:index/getDerivedColumn:getDerivedColumn
arguments:
# arguments dictionaryThe following arguments are supported:
getDerivedColumn Result
The following output properties are available:
- Alias string
- The alias of the Derived Column.
- Description string
- The Derived Column's description.
- Expression string
- The Derived Column's expression.
- Id string
- The ID of this resource.
- Dataset string
- The dataset to fetch the derived column from. If not set, an Environment-wide lookup will be performed.
- Alias string
- The alias of the Derived Column.
- Description string
- The Derived Column's description.
- Expression string
- The Derived Column's expression.
- Id string
- The ID of this resource.
- Dataset string
- The dataset to fetch the derived column from. If not set, an Environment-wide lookup will be performed.
- alias String
- The alias of the Derived Column.
- description String
- The Derived Column's description.
- expression String
- The Derived Column's expression.
- id String
- The ID of this resource.
- dataset String
- The dataset to fetch the derived column from. If not set, an Environment-wide lookup will be performed.
- alias string
- The alias of the Derived Column.
- description string
- The Derived Column's description.
- expression string
- The Derived Column's expression.
- id string
- The ID of this resource.
- dataset string
- The dataset to fetch the derived column from. If not set, an Environment-wide lookup will be performed.
- alias str
- The alias of the Derived Column.
- description str
- The Derived Column's description.
- expression str
- The Derived Column's expression.
- id str
- The ID of this resource.
- dataset str
- The dataset to fetch the derived column from. If not set, an Environment-wide lookup will be performed.
- alias String
- The alias of the Derived Column.
- description String
- The Derived Column's description.
- expression String
- The Derived Column's expression.
- id String
- The ID of this resource.
- dataset String
- The dataset to fetch the derived column from. If not set, an Environment-wide lookup will be performed.
Package Details
- Repository
- honeycombio honeycombio/terraform-provider-honeycombio
- License
- Notes
- This Pulumi package is based on the
honeycombioTerraform Provider.
Viewing docs for Honeycomb 0.47.1
published on Monday, Mar 9, 2026 by honeycombio
published on Monday, Mar 9, 2026 by honeycombio
