honeycombio.getRecipient
Explore with Pulumi AI
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as honeycombio from "@pulumi/honeycombio";
const slack = honeycombio.getRecipient({
type: "slack",
detailFilter: {
name: "channel",
value: "#honeycomb-triggers",
},
});
const exampleQuerySpecification = honeycombio.getQuerySpecification({
calculations: [{
op: "AVG",
column: "duration_ms",
}],
});
const exampleTrigger = new honeycombio.Trigger("exampleTrigger", {
queryJson: exampleQuerySpecification.then(exampleQuerySpecification => exampleQuerySpecification.json),
dataset: _var.dataset,
thresholds: [{
op: ">",
value: 1000,
}],
recipients: [
{
type: "email",
target: "hello@example.com",
},
{
id: slack.then(slack => slack.id),
},
],
});
import pulumi
import pulumi_honeycombio as honeycombio
slack = honeycombio.get_recipient(type="slack",
detail_filter={
"name": "channel",
"value": "#honeycomb-triggers",
})
example_query_specification = honeycombio.get_query_specification(calculations=[{
"op": "AVG",
"column": "duration_ms",
}])
example_trigger = honeycombio.Trigger("exampleTrigger",
query_json=example_query_specification.json,
dataset=var["dataset"],
thresholds=[{
"op": ">",
"value": 1000,
}],
recipients=[
{
"type": "email",
"target": "hello@example.com",
},
{
"id": slack.id,
},
])
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/honeycombio/honeycombio"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
slack, err := honeycombio.GetRecipient(ctx, &honeycombio.GetRecipientArgs{
Type: "slack",
DetailFilter: honeycombio.GetRecipientDetailFilter{
Name: "channel",
Value: pulumi.StringRef("#honeycomb-triggers"),
},
}, nil)
if err != nil {
return err
}
exampleQuerySpecification, err := honeycombio.GetQuerySpecification(ctx, &honeycombio.GetQuerySpecificationArgs{
Calculations: []honeycombio.GetQuerySpecificationCalculation{
{
Op: "AVG",
Column: pulumi.StringRef("duration_ms"),
},
},
}, nil)
if err != nil {
return err
}
_, err = honeycombio.NewTrigger(ctx, "exampleTrigger", &honeycombio.TriggerArgs{
QueryJson: pulumi.String(exampleQuerySpecification.Json),
Dataset: pulumi.Any(_var.Dataset),
Thresholds: honeycombio.TriggerThresholdArray{
&honeycombio.TriggerThresholdArgs{
Op: pulumi.String(">"),
Value: pulumi.Float64(1000),
},
},
Recipients: honeycombio.TriggerRecipientArray{
&honeycombio.TriggerRecipientArgs{
Type: pulumi.String("email"),
Target: pulumi.String("hello@example.com"),
},
&honeycombio.TriggerRecipientArgs{
Id: pulumi.String(slack.Id),
},
},
})
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 slack = Honeycombio.GetRecipient.Invoke(new()
{
Type = "slack",
DetailFilter = new Honeycombio.Inputs.GetRecipientDetailFilterInputArgs
{
Name = "channel",
Value = "#honeycomb-triggers",
},
});
var exampleQuerySpecification = Honeycombio.GetQuerySpecification.Invoke(new()
{
Calculations = new[]
{
new Honeycombio.Inputs.GetQuerySpecificationCalculationInputArgs
{
Op = "AVG",
Column = "duration_ms",
},
},
});
var exampleTrigger = new Honeycombio.Trigger("exampleTrigger", new()
{
QueryJson = exampleQuerySpecification.Apply(getQuerySpecificationResult => getQuerySpecificationResult.Json),
Dataset = @var.Dataset,
Thresholds = new[]
{
new Honeycombio.Inputs.TriggerThresholdArgs
{
Op = ">",
Value = 1000,
},
},
Recipients = new[]
{
new Honeycombio.Inputs.TriggerRecipientArgs
{
Type = "email",
Target = "hello@example.com",
},
new Honeycombio.Inputs.TriggerRecipientArgs
{
Id = slack.Apply(getRecipientResult => getRecipientResult.Id),
},
},
});
});
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.GetRecipientArgs;
import com.pulumi.honeycombio.inputs.GetRecipientDetailFilterArgs;
import com.pulumi.honeycombio.inputs.GetQuerySpecificationArgs;
import com.pulumi.honeycombio.Trigger;
import com.pulumi.honeycombio.TriggerArgs;
import com.pulumi.honeycombio.inputs.TriggerThresholdArgs;
import com.pulumi.honeycombio.inputs.TriggerRecipientArgs;
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 slack = HoneycombioFunctions.getRecipient(GetRecipientArgs.builder()
.type("slack")
.detailFilter(GetRecipientDetailFilterArgs.builder()
.name("channel")
.value("#honeycomb-triggers")
.build())
.build());
final var exampleQuerySpecification = HoneycombioFunctions.getQuerySpecification(GetQuerySpecificationArgs.builder()
.calculations(GetQuerySpecificationCalculationArgs.builder()
.op("AVG")
.column("duration_ms")
.build())
.build());
var exampleTrigger = new Trigger("exampleTrigger", TriggerArgs.builder()
.queryJson(exampleQuerySpecification.applyValue(getQuerySpecificationResult -> getQuerySpecificationResult.json()))
.dataset(var_.dataset())
.thresholds(TriggerThresholdArgs.builder()
.op(">")
.value(1000)
.build())
.recipients(
TriggerRecipientArgs.builder()
.type("email")
.target("hello@example.com")
.build(),
TriggerRecipientArgs.builder()
.id(slack.applyValue(getRecipientResult -> getRecipientResult.id()))
.build())
.build());
}
}
resources:
exampleTrigger:
type: honeycombio:Trigger
properties:
queryJson: ${exampleQuerySpecification.json}
dataset: ${var.dataset}
thresholds:
- op: '>'
value: 1000
recipients:
- type: email
target: hello@example.com
- id: ${slack.id}
variables:
slack:
fn::invoke:
function: honeycombio:getRecipient
arguments:
type: slack
detailFilter:
name: channel
value: '#honeycomb-triggers'
exampleQuerySpecification:
fn::invoke:
function: honeycombio:getQuerySpecification
arguments:
calculations:
- op: AVG
column: duration_ms
Using getRecipient
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 getRecipient(args: GetRecipientArgs, opts?: InvokeOptions): Promise<GetRecipientResult>
function getRecipientOutput(args: GetRecipientOutputArgs, opts?: InvokeOptions): Output<GetRecipientResult>
def get_recipient(dataset: Optional[str] = None,
detail_filter: Optional[GetRecipientDetailFilter] = None,
id: Optional[str] = None,
target: Optional[str] = None,
type: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetRecipientResult
def get_recipient_output(dataset: Optional[pulumi.Input[str]] = None,
detail_filter: Optional[pulumi.Input[GetRecipientDetailFilterArgs]] = None,
id: Optional[pulumi.Input[str]] = None,
target: Optional[pulumi.Input[str]] = None,
type: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetRecipientResult]
func GetRecipient(ctx *Context, args *GetRecipientArgs, opts ...InvokeOption) (*GetRecipientResult, error)
func GetRecipientOutput(ctx *Context, args *GetRecipientOutputArgs, opts ...InvokeOption) GetRecipientResultOutput
> Note: This function is named GetRecipient
in the Go SDK.
public static class GetRecipient
{
public static Task<GetRecipientResult> InvokeAsync(GetRecipientArgs args, InvokeOptions? opts = null)
public static Output<GetRecipientResult> Invoke(GetRecipientInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetRecipientResult> getRecipient(GetRecipientArgs args, InvokeOptions options)
public static Output<GetRecipientResult> getRecipient(GetRecipientArgs args, InvokeOptions options)
fn::invoke:
function: honeycombio:index/getRecipient:getRecipient
arguments:
# arguments dictionary
The following arguments are supported:
- Type string
- The type of recipient, allowed types are
email
,pagerduty
,msteams
,msteams_workflow
,slack
andwebhook
. - Dataset string
- Deprecated: recipients are now a Team-level construct. Any provided value will be ignored.
- Detail
Filter GetRecipient Detail Filter - a block to further filter recipients as described below.
- Id string
- ID of the recipient.
- Target string
Deprecated: use
detail_filter
instead. The target of the recipient, this has another meaning depending on the type of recipient (see the table below).Type | Target -----------------|------------------------- email | an email address marker | name of the marker msteams | name of the integration msteams_workflow | name of the integration pagerduty | N/A slack | name of the channel webhook | name of the webhook
- Type string
- The type of recipient, allowed types are
email
,pagerduty
,msteams
,msteams_workflow
,slack
andwebhook
. - Dataset string
- Deprecated: recipients are now a Team-level construct. Any provided value will be ignored.
- Detail
Filter GetRecipient Detail Filter - a block to further filter recipients as described below.
- Id string
- ID of the recipient.
- Target string
Deprecated: use
detail_filter
instead. The target of the recipient, this has another meaning depending on the type of recipient (see the table below).Type | Target -----------------|------------------------- email | an email address marker | name of the marker msteams | name of the integration msteams_workflow | name of the integration pagerduty | N/A slack | name of the channel webhook | name of the webhook
- type String
- The type of recipient, allowed types are
email
,pagerduty
,msteams
,msteams_workflow
,slack
andwebhook
. - dataset String
- Deprecated: recipients are now a Team-level construct. Any provided value will be ignored.
- detail
Filter GetRecipient Detail Filter - a block to further filter recipients as described below.
- id String
- ID of the recipient.
- target String
Deprecated: use
detail_filter
instead. The target of the recipient, this has another meaning depending on the type of recipient (see the table below).Type | Target -----------------|------------------------- email | an email address marker | name of the marker msteams | name of the integration msteams_workflow | name of the integration pagerduty | N/A slack | name of the channel webhook | name of the webhook
- type string
- The type of recipient, allowed types are
email
,pagerduty
,msteams
,msteams_workflow
,slack
andwebhook
. - dataset string
- Deprecated: recipients are now a Team-level construct. Any provided value will be ignored.
- detail
Filter GetRecipient Detail Filter - a block to further filter recipients as described below.
- id string
- ID of the recipient.
- target string
Deprecated: use
detail_filter
instead. The target of the recipient, this has another meaning depending on the type of recipient (see the table below).Type | Target -----------------|------------------------- email | an email address marker | name of the marker msteams | name of the integration msteams_workflow | name of the integration pagerduty | N/A slack | name of the channel webhook | name of the webhook
- type str
- The type of recipient, allowed types are
email
,pagerduty
,msteams
,msteams_workflow
,slack
andwebhook
. - dataset str
- Deprecated: recipients are now a Team-level construct. Any provided value will be ignored.
- detail_
filter GetRecipient Detail Filter - a block to further filter recipients as described below.
- id str
- ID of the recipient.
- target str
Deprecated: use
detail_filter
instead. The target of the recipient, this has another meaning depending on the type of recipient (see the table below).Type | Target -----------------|------------------------- email | an email address marker | name of the marker msteams | name of the integration msteams_workflow | name of the integration pagerduty | N/A slack | name of the channel webhook | name of the webhook
- type String
- The type of recipient, allowed types are
email
,pagerduty
,msteams
,msteams_workflow
,slack
andwebhook
. - dataset String
- Deprecated: recipients are now a Team-level construct. Any provided value will be ignored.
- detail
Filter Property Map - a block to further filter recipients as described below.
- id String
- ID of the recipient.
- target String
Deprecated: use
detail_filter
instead. The target of the recipient, this has another meaning depending on the type of recipient (see the table below).Type | Target -----------------|------------------------- email | an email address marker | name of the marker msteams | name of the integration msteams_workflow | name of the integration pagerduty | N/A slack | name of the channel webhook | name of the webhook
getRecipient Result
The following output properties are available:
- Address string
- The email recipient's address -- if of type
email
. - Channel string
- The Slack recipient's channel -- if of type
slack
. - Id string
- ID of the recipient.
- Integration
Key string - (Sensitive) The PagerDuty recipient's integration key -- if of type
pagerduty
. - Integration
Name string - The PagerDuty recipient's integration name -- if of type
pagerduty
. - Name string
- The webhook recipient's name -- if of type
webhook
ormsteams
. - Secret string
- (Sensitive) The webhook recipient's secret -- if of type
webhook
. - Type string
- Url string
- The webhook recipient's URL - if of type
webhook
,msteams
ormsteams_workflow
. - Dataset string
- Detail
Filter GetRecipient Detail Filter - Target string
- Address string
- The email recipient's address -- if of type
email
. - Channel string
- The Slack recipient's channel -- if of type
slack
. - Id string
- ID of the recipient.
- Integration
Key string - (Sensitive) The PagerDuty recipient's integration key -- if of type
pagerduty
. - Integration
Name string - The PagerDuty recipient's integration name -- if of type
pagerduty
. - Name string
- The webhook recipient's name -- if of type
webhook
ormsteams
. - Secret string
- (Sensitive) The webhook recipient's secret -- if of type
webhook
. - Type string
- Url string
- The webhook recipient's URL - if of type
webhook
,msteams
ormsteams_workflow
. - Dataset string
- Detail
Filter GetRecipient Detail Filter - Target string
- address String
- The email recipient's address -- if of type
email
. - channel String
- The Slack recipient's channel -- if of type
slack
. - id String
- ID of the recipient.
- integration
Key String - (Sensitive) The PagerDuty recipient's integration key -- if of type
pagerduty
. - integration
Name String - The PagerDuty recipient's integration name -- if of type
pagerduty
. - name String
- The webhook recipient's name -- if of type
webhook
ormsteams
. - secret String
- (Sensitive) The webhook recipient's secret -- if of type
webhook
. - type String
- url String
- The webhook recipient's URL - if of type
webhook
,msteams
ormsteams_workflow
. - dataset String
- detail
Filter GetRecipient Detail Filter - target String
- address string
- The email recipient's address -- if of type
email
. - channel string
- The Slack recipient's channel -- if of type
slack
. - id string
- ID of the recipient.
- integration
Key string - (Sensitive) The PagerDuty recipient's integration key -- if of type
pagerduty
. - integration
Name string - The PagerDuty recipient's integration name -- if of type
pagerduty
. - name string
- The webhook recipient's name -- if of type
webhook
ormsteams
. - secret string
- (Sensitive) The webhook recipient's secret -- if of type
webhook
. - type string
- url string
- The webhook recipient's URL - if of type
webhook
,msteams
ormsteams_workflow
. - dataset string
- detail
Filter GetRecipient Detail Filter - target string
- address str
- The email recipient's address -- if of type
email
. - channel str
- The Slack recipient's channel -- if of type
slack
. - id str
- ID of the recipient.
- integration_
key str - (Sensitive) The PagerDuty recipient's integration key -- if of type
pagerduty
. - integration_
name str - The PagerDuty recipient's integration name -- if of type
pagerduty
. - name str
- The webhook recipient's name -- if of type
webhook
ormsteams
. - secret str
- (Sensitive) The webhook recipient's secret -- if of type
webhook
. - type str
- url str
- The webhook recipient's URL - if of type
webhook
,msteams
ormsteams_workflow
. - dataset str
- detail_
filter GetRecipient Detail Filter - target str
- address String
- The email recipient's address -- if of type
email
. - channel String
- The Slack recipient's channel -- if of type
slack
. - id String
- ID of the recipient.
- integration
Key String - (Sensitive) The PagerDuty recipient's integration key -- if of type
pagerduty
. - integration
Name String - The PagerDuty recipient's integration name -- if of type
pagerduty
. - name String
- The webhook recipient's name -- if of type
webhook
ormsteams
. - secret String
- (Sensitive) The webhook recipient's secret -- if of type
webhook
. - type String
- url String
- The webhook recipient's URL - if of type
webhook
,msteams
ormsteams_workflow
. - dataset String
- detail
Filter Property Map - target String
Supporting Types
GetRecipientDetailFilter
- Name string
- The name of the detail field to filter by. Allowed values are
address
,channel
,name
,integration_name
, andurl
. - Value string
- The value of the detail field to match on.
- Value
Regex string A regular expression string to apply to the value of the detail field to match on.
Note one of
value
orvalue_regex
is required.
- Name string
- The name of the detail field to filter by. Allowed values are
address
,channel
,name
,integration_name
, andurl
. - Value string
- The value of the detail field to match on.
- Value
Regex string A regular expression string to apply to the value of the detail field to match on.
Note one of
value
orvalue_regex
is required.
- name String
- The name of the detail field to filter by. Allowed values are
address
,channel
,name
,integration_name
, andurl
. - value String
- The value of the detail field to match on.
- value
Regex String A regular expression string to apply to the value of the detail field to match on.
Note one of
value
orvalue_regex
is required.
- name string
- The name of the detail field to filter by. Allowed values are
address
,channel
,name
,integration_name
, andurl
. - value string
- The value of the detail field to match on.
- value
Regex string A regular expression string to apply to the value of the detail field to match on.
Note one of
value
orvalue_regex
is required.
- name str
- The name of the detail field to filter by. Allowed values are
address
,channel
,name
,integration_name
, andurl
. - value str
- The value of the detail field to match on.
- value_
regex str A regular expression string to apply to the value of the detail field to match on.
Note one of
value
orvalue_regex
is required.
- name String
- The name of the detail field to filter by. Allowed values are
address
,channel
,name
,integration_name
, andurl
. - value String
- The value of the detail field to match on.
- value
Regex String A regular expression string to apply to the value of the detail field to match on.
Note one of
value
orvalue_regex
is required.
Package Details
- Repository
- honeycombio honeycombio/terraform-provider-honeycombio
- License
- Notes
- This Pulumi package is based on the
honeycombio
Terraform Provider.