published on Friday, Sep 11, 2026 by incident-io
published on Friday, Sep 11, 2026 by incident-io
Look up an alert source by id or name, in the same shape as the incident.AlertSource resource. Exactly one lookup field should be set.
The attributes a source populates are not returned here: each is its own object, read with the incident.AlertSourceAttribute data source.
title and description come back as the account holds them, which for a source you manage here need not be the document you wrote: a resource keeps your spelling of a rich text value, and this reports the {{ }} template it renders to. The two mean the same thing and either can be written back, but they are not the same string, so comparing one against the other will not match.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as incident from "@pulumi/incident";
// Look up a single alert source by ID.
const pagerduty = incident.getAlertSource({
id: "01FCNDV6P870EA6S7TK1DSYDG0",
});
export const pagerdutyAlertEventsUrl = pagerduty.then(pagerduty => pagerduty.alertEventsUrl);
// Or by name, for a source you did not create here and whose ID you do not have. Names are
// not unique, so a name matching more than one source is an error rather than a guess.
const cron = incident.getAlertSource({
name: "Cron heartbeat",
});
export const cronPingUrl = cron.then(cron => cron.heartbeatOptions?.pingUrl);
import pulumi
import pulumi_incident as incident
# Look up a single alert source by ID.
pagerduty = incident.get_alert_source(id="01FCNDV6P870EA6S7TK1DSYDG0")
pulumi.export("pagerdutyAlertEventsUrl", pagerduty.alert_events_url)
# Or by name, for a source you did not create here and whose ID you do not have. Names are
# not unique, so a name matching more than one source is an error rather than a guess.
cron = incident.get_alert_source(name="Cron heartbeat")
pulumi.export("cronPingUrl", cron.heartbeat_options.ping_url)
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/incident/v7/incident"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
// Look up a single alert source by ID.
pagerduty, err := incident.LookupAlertSource(ctx, &incident.LookupAlertSourceArgs{
Id: pulumi.StringRef("01FCNDV6P870EA6S7TK1DSYDG0"),
}, nil)
if err != nil {
return err
}
ctx.Export("pagerdutyAlertEventsUrl", pagerduty.AlertEventsUrl)
// Or by name, for a source you did not create here and whose ID you do not have. Names are
// not unique, so a name matching more than one source is an error rather than a guess.
cron, err := incident.LookupAlertSource(ctx, &incident.LookupAlertSourceArgs{
Name: pulumi.StringRef("Cron heartbeat"),
}, nil)
if err != nil {
return err
}
ctx.Export("cronPingUrl", cron.HeartbeatOptions.PingUrl)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Incident = Pulumi.Incident;
return await Deployment.RunAsync(() =>
{
// Look up a single alert source by ID.
var pagerduty = Incident.GetAlertSource.Invoke(new()
{
Id = "01FCNDV6P870EA6S7TK1DSYDG0",
});
// Or by name, for a source you did not create here and whose ID you do not have. Names are
// not unique, so a name matching more than one source is an error rather than a guess.
var cron = Incident.GetAlertSource.Invoke(new()
{
Name = "Cron heartbeat",
});
return new Dictionary<string, object?>
{
["pagerdutyAlertEventsUrl"] = pagerduty.Apply(getAlertSourceResult => getAlertSourceResult.AlertEventsUrl),
["cronPingUrl"] = cron.Apply(getAlertSourceResult => getAlertSourceResult.HeartbeatOptions?.PingUrl),
};
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.incident.IncidentFunctions;
import com.pulumi.incident.inputs.GetAlertSourceArgs;
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) {
// Look up a single alert source by ID.
final var pagerduty = IncidentFunctions.getAlertSource(GetAlertSourceArgs.builder()
.id("01FCNDV6P870EA6S7TK1DSYDG0")
.build());
ctx.export("pagerdutyAlertEventsUrl", pagerduty.alertEventsUrl());
// Or by name, for a source you did not create here and whose ID you do not have. Names are
// not unique, so a name matching more than one source is an error rather than a guess.
final var cron = IncidentFunctions.getAlertSource(GetAlertSourceArgs.builder()
.name("Cron heartbeat")
.build());
ctx.export("cronPingUrl", cron.heartbeatOptions().pingUrl());
}
}
variables:
# Look up a single alert source by ID.
pagerduty:
fn::invoke:
function: incident:getAlertSource
arguments:
id: 01FCNDV6P870EA6S7TK1DSYDG0
# Or by name, for a source you did not create here and whose ID you do not have. Names are
# not unique, so a name matching more than one source is an error rather than a guess.
cron:
fn::invoke:
function: incident:getAlertSource
arguments:
name: Cron heartbeat
outputs:
pagerdutyAlertEventsUrl: ${pagerduty.alertEventsUrl}
cronPingUrl: ${cron.heartbeatOptions.pingUrl}
Example coming soon!
Using getAlertSource
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 getAlertSource(args: GetAlertSourceArgs, opts?: InvokeOptions): Promise<GetAlertSourceResult>
function getAlertSourceOutput(args: GetAlertSourceOutputArgs, opts?: InvokeOutputOptions): Output<GetAlertSourceResult>def get_alert_source(id: Optional[str] = None,
name: Optional[str] = None,
named_expressions: Optional[Sequence[GetAlertSourceNamedExpression]] = None,
opts: Optional[InvokeOptions] = None) -> GetAlertSourceResult
def get_alert_source_output(id: pulumi.Input[Optional[str]] = None,
name: pulumi.Input[Optional[str]] = None,
named_expressions: pulumi.Input[Optional[Sequence[pulumi.Input[GetAlertSourceNamedExpressionArgs]]]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetAlertSourceResult]func LookupAlertSource(ctx *Context, args *LookupAlertSourceArgs, opts ...InvokeOption) (*LookupAlertSourceResult, error)
func LookupAlertSourceOutput(ctx *Context, args *LookupAlertSourceOutputArgs, opts ...InvokeOption) LookupAlertSourceResultOutput> Note: This function is named LookupAlertSource in the Go SDK.
public static class GetAlertSource
{
public static Task<GetAlertSourceResult> InvokeAsync(GetAlertSourceArgs args, InvokeOptions? opts = null)
public static Output<GetAlertSourceResult> Invoke(GetAlertSourceInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetAlertSourceResult> Invoke(GetAlertSourceInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetAlertSourceResult> getAlertSource(GetAlertSourceArgs args, InvokeOptions options)
public static Output<GetAlertSourceResult> getAlertSource(GetAlertSourceArgs args, InvokeOptions options)
public static Output<GetAlertSourceResult> getAlertSource(GetAlertSourceArgs args, InvokeOutputOptions options)
fn::invoke:
function: incident:index/getAlertSource:getAlertSource
arguments:
# arguments dictionarydata "incident_get_alert_source" "name" {
# arguments
}The following arguments are supported:
- Id string
- Unique identifier for this alert source
- Name string
- The name of this alert source, for the user's reference
- Named
Expressions List<GetAlert Source Named Expression> - An expression this resource owns, addressed by name.
- Id string
- Unique identifier for this alert source
- Name string
- The name of this alert source, for the user's reference
- Named
Expressions []GetAlert Source Named Expression - An expression this resource owns, addressed by name.
- id string
- Unique identifier for this alert source
- name string
- The name of this alert source, for the user's reference
- named_
expressions list(object) - An expression this resource owns, addressed by name.
- id String
- Unique identifier for this alert source
- name String
- The name of this alert source, for the user's reference
- named
Expressions List<GetAlert Source Named Expression> - An expression this resource owns, addressed by name.
- id string
- Unique identifier for this alert source
- name string
- The name of this alert source, for the user's reference
- named
Expressions GetAlert Source Named Expression[] - An expression this resource owns, addressed by name.
- id str
- Unique identifier for this alert source
- name str
- The name of this alert source, for the user's reference
- named_
expressions Sequence[GetAlert Source Named Expression] - An expression this resource owns, addressed by name.
- id String
- Unique identifier for this alert source
- name String
- The name of this alert source, for the user's reference
- named
Expressions List<Property Map> - An expression this resource owns, addressed by name.
getAlertSource Result
The following output properties are available:
- Alert
Events stringUrl - The URL to send alert events to
- Auto
Resolve boolIncident Alerts - Whether alerts from this source keep counting down to auto-resolve while attached to an incident. Defaults to true. Has no effect without autoresolvetimeout_minutes.
- Auto
Resolve doubleTimeout Minutes - How long to wait before automatically resolving alerts from this source
- Description
Get
Alert Source Description - Disabled bool
- Whether monitoring is paused for this source. Only returned for source types that support being disabled.
- Email
Address string - Email address this alert source receives alerts to
- Email
Options GetAlert Source Email Options - Filter
Condition List<GetGroups Alert Source Filter Condition Group> - The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
- Fixed
Team stringId - When set, the team every alert from this source is attributed to. The team attribute is managed from this field: it is not returned by the attribute endpoints and cannot be bound directly.
- Heartbeat
Options GetAlert Source Heartbeat Options - Http
Custom GetOptions Alert Source Http Custom Options - Id string
- Unique identifier for this alert source
- Is
Private bool - Whether alerts from this source are private
- Jira
Options GetAlert Source Jira Options - Name string
- The name of this alert source, for the user's reference
- Owning
Team List<string>Ids - IDs of the teams that own this alert source
- Priority
Get
Alert Source Priority - Rate
Limit GetSharding Alert Source Rate Limit Sharding - Controls how this source's ingest rate limit is split into buckets.
- Secret
Token string - The token to use when sending alerts to this source. Only returned to callers with permission to update the source.
- Source
Type string - Type of alert source. Possible values are:
alertmanager,app_optics,azure_monitor,azure_devops,big_panda,bugsnag,checkly,chronosphere,cloudwatch,cloudflare,coralogix,cronitor,crowdstrike_falcon,dash0,datadog,dynatrace,elasticsearch,email,expel,github_issue,google_cloud,grafana,heartbeat,http,http_custom,honeycomb,icinga2,incoming_calls,jira,jsm,monte_carlo,nagios,new_relic,opsgenie,prtg,pager_duty,panther,pingdom,runscope,sns,salesforce_case,sentry,sentry_metric,service_now,splunk,status_cake,status_page_views,sumo_logic,uptime,vercel,wiz,zendesk. - Title
Get
Alert Source Title - Version double
- The source's current version, which increments on every write. Pass it back as expected_version to reject a write built from a stale read.
- Visible
To GetTeams Alert Source Visible To Teams - Named
Expressions List<GetAlert Source Named Expression> - An expression this resource owns, addressed by name.
- Alert
Events stringUrl - The URL to send alert events to
- Auto
Resolve boolIncident Alerts - Whether alerts from this source keep counting down to auto-resolve while attached to an incident. Defaults to true. Has no effect without autoresolvetimeout_minutes.
- Auto
Resolve float64Timeout Minutes - How long to wait before automatically resolving alerts from this source
- Description
Get
Alert Source Description - Disabled bool
- Whether monitoring is paused for this source. Only returned for source types that support being disabled.
- Email
Address string - Email address this alert source receives alerts to
- Email
Options GetAlert Source Email Options - Filter
Condition []GetGroups Alert Source Filter Condition Group - The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
- Fixed
Team stringId - When set, the team every alert from this source is attributed to. The team attribute is managed from this field: it is not returned by the attribute endpoints and cannot be bound directly.
- Heartbeat
Options GetAlert Source Heartbeat Options - Http
Custom GetOptions Alert Source Http Custom Options - Id string
- Unique identifier for this alert source
- Is
Private bool - Whether alerts from this source are private
- Jira
Options GetAlert Source Jira Options - Name string
- The name of this alert source, for the user's reference
- Owning
Team []stringIds - IDs of the teams that own this alert source
- Priority
Get
Alert Source Priority - Rate
Limit GetSharding Alert Source Rate Limit Sharding - Controls how this source's ingest rate limit is split into buckets.
- Secret
Token string - The token to use when sending alerts to this source. Only returned to callers with permission to update the source.
- Source
Type string - Type of alert source. Possible values are:
alertmanager,app_optics,azure_monitor,azure_devops,big_panda,bugsnag,checkly,chronosphere,cloudwatch,cloudflare,coralogix,cronitor,crowdstrike_falcon,dash0,datadog,dynatrace,elasticsearch,email,expel,github_issue,google_cloud,grafana,heartbeat,http,http_custom,honeycomb,icinga2,incoming_calls,jira,jsm,monte_carlo,nagios,new_relic,opsgenie,prtg,pager_duty,panther,pingdom,runscope,sns,salesforce_case,sentry,sentry_metric,service_now,splunk,status_cake,status_page_views,sumo_logic,uptime,vercel,wiz,zendesk. - Title
Get
Alert Source Title - Version float64
- The source's current version, which increments on every write. Pass it back as expected_version to reject a write built from a stale read.
- Visible
To GetTeams Alert Source Visible To Teams - Named
Expressions []GetAlert Source Named Expression - An expression this resource owns, addressed by name.
- alert_
events_ stringurl - The URL to send alert events to
- auto_
resolve_ boolincident_ alerts - Whether alerts from this source keep counting down to auto-resolve while attached to an incident. Defaults to true. Has no effect without autoresolvetimeout_minutes.
- auto_
resolve_ numbertimeout_ minutes - How long to wait before automatically resolving alerts from this source
- description object
- disabled bool
- Whether monitoring is paused for this source. Only returned for source types that support being disabled.
- email_
address string - Email address this alert source receives alerts to
- email_
options object - filter_
condition_ list(object)groups - The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
- fixed_
team_ stringid - When set, the team every alert from this source is attributed to. The team attribute is managed from this field: it is not returned by the attribute endpoints and cannot be bound directly.
- heartbeat_
options object - http_
custom_ objectoptions - id string
- Unique identifier for this alert source
- is_
private bool - Whether alerts from this source are private
- jira_
options object - name string
- The name of this alert source, for the user's reference
- owning_
team_ list(string)ids - IDs of the teams that own this alert source
- priority object
- rate_
limit_ objectsharding - Controls how this source's ingest rate limit is split into buckets.
- secret_
token string - The token to use when sending alerts to this source. Only returned to callers with permission to update the source.
- source_
type string - Type of alert source. Possible values are:
alertmanager,app_optics,azure_monitor,azure_devops,big_panda,bugsnag,checkly,chronosphere,cloudwatch,cloudflare,coralogix,cronitor,crowdstrike_falcon,dash0,datadog,dynatrace,elasticsearch,email,expel,github_issue,google_cloud,grafana,heartbeat,http,http_custom,honeycomb,icinga2,incoming_calls,jira,jsm,monte_carlo,nagios,new_relic,opsgenie,prtg,pager_duty,panther,pingdom,runscope,sns,salesforce_case,sentry,sentry_metric,service_now,splunk,status_cake,status_page_views,sumo_logic,uptime,vercel,wiz,zendesk. - title object
- version number
- The source's current version, which increments on every write. Pass it back as expected_version to reject a write built from a stale read.
- visible_
to_ objectteams - named_
expressions list(object) - An expression this resource owns, addressed by name.
- alert
Events StringUrl - The URL to send alert events to
- auto
Resolve BooleanIncident Alerts - Whether alerts from this source keep counting down to auto-resolve while attached to an incident. Defaults to true. Has no effect without autoresolvetimeout_minutes.
- auto
Resolve DoubleTimeout Minutes - How long to wait before automatically resolving alerts from this source
- description
Get
Alert Source Description - disabled Boolean
- Whether monitoring is paused for this source. Only returned for source types that support being disabled.
- email
Address String - Email address this alert source receives alerts to
- email
Options GetAlert Source Email Options - filter
Condition List<GetGroups Alert Source Filter Condition Group> - The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
- fixed
Team StringId - When set, the team every alert from this source is attributed to. The team attribute is managed from this field: it is not returned by the attribute endpoints and cannot be bound directly.
- heartbeat
Options GetAlert Source Heartbeat Options - http
Custom GetOptions Alert Source Http Custom Options - id String
- Unique identifier for this alert source
- is
Private Boolean - Whether alerts from this source are private
- jira
Options GetAlert Source Jira Options - name String
- The name of this alert source, for the user's reference
- owning
Team List<String>Ids - IDs of the teams that own this alert source
- priority
Get
Alert Source Priority - rate
Limit GetSharding Alert Source Rate Limit Sharding - Controls how this source's ingest rate limit is split into buckets.
- secret
Token String - The token to use when sending alerts to this source. Only returned to callers with permission to update the source.
- source
Type String - Type of alert source. Possible values are:
alertmanager,app_optics,azure_monitor,azure_devops,big_panda,bugsnag,checkly,chronosphere,cloudwatch,cloudflare,coralogix,cronitor,crowdstrike_falcon,dash0,datadog,dynatrace,elasticsearch,email,expel,github_issue,google_cloud,grafana,heartbeat,http,http_custom,honeycomb,icinga2,incoming_calls,jira,jsm,monte_carlo,nagios,new_relic,opsgenie,prtg,pager_duty,panther,pingdom,runscope,sns,salesforce_case,sentry,sentry_metric,service_now,splunk,status_cake,status_page_views,sumo_logic,uptime,vercel,wiz,zendesk. - title
Get
Alert Source Title - version Double
- The source's current version, which increments on every write. Pass it back as expected_version to reject a write built from a stale read.
- visible
To GetTeams Alert Source Visible To Teams - named
Expressions List<GetAlert Source Named Expression> - An expression this resource owns, addressed by name.
- alert
Events stringUrl - The URL to send alert events to
- auto
Resolve booleanIncident Alerts - Whether alerts from this source keep counting down to auto-resolve while attached to an incident. Defaults to true. Has no effect without autoresolvetimeout_minutes.
- auto
Resolve numberTimeout Minutes - How long to wait before automatically resolving alerts from this source
- description
Get
Alert Source Description - disabled boolean
- Whether monitoring is paused for this source. Only returned for source types that support being disabled.
- email
Address string - Email address this alert source receives alerts to
- email
Options GetAlert Source Email Options - filter
Condition GetGroups Alert Source Filter Condition Group[] - The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
- fixed
Team stringId - When set, the team every alert from this source is attributed to. The team attribute is managed from this field: it is not returned by the attribute endpoints and cannot be bound directly.
- heartbeat
Options GetAlert Source Heartbeat Options - http
Custom GetOptions Alert Source Http Custom Options - id string
- Unique identifier for this alert source
- is
Private boolean - Whether alerts from this source are private
- jira
Options GetAlert Source Jira Options - name string
- The name of this alert source, for the user's reference
- owning
Team string[]Ids - IDs of the teams that own this alert source
- priority
Get
Alert Source Priority - rate
Limit GetSharding Alert Source Rate Limit Sharding - Controls how this source's ingest rate limit is split into buckets.
- secret
Token string - The token to use when sending alerts to this source. Only returned to callers with permission to update the source.
- source
Type string - Type of alert source. Possible values are:
alertmanager,app_optics,azure_monitor,azure_devops,big_panda,bugsnag,checkly,chronosphere,cloudwatch,cloudflare,coralogix,cronitor,crowdstrike_falcon,dash0,datadog,dynatrace,elasticsearch,email,expel,github_issue,google_cloud,grafana,heartbeat,http,http_custom,honeycomb,icinga2,incoming_calls,jira,jsm,monte_carlo,nagios,new_relic,opsgenie,prtg,pager_duty,panther,pingdom,runscope,sns,salesforce_case,sentry,sentry_metric,service_now,splunk,status_cake,status_page_views,sumo_logic,uptime,vercel,wiz,zendesk. - title
Get
Alert Source Title - version number
- The source's current version, which increments on every write. Pass it back as expected_version to reject a write built from a stale read.
- visible
To GetTeams Alert Source Visible To Teams - named
Expressions GetAlert Source Named Expression[] - An expression this resource owns, addressed by name.
- alert_
events_ strurl - The URL to send alert events to
- auto_
resolve_ boolincident_ alerts - Whether alerts from this source keep counting down to auto-resolve while attached to an incident. Defaults to true. Has no effect without autoresolvetimeout_minutes.
- auto_
resolve_ floattimeout_ minutes - How long to wait before automatically resolving alerts from this source
- description
Get
Alert Source Description - disabled bool
- Whether monitoring is paused for this source. Only returned for source types that support being disabled.
- email_
address str - Email address this alert source receives alerts to
- email_
options GetAlert Source Email Options - filter_
condition_ Sequence[Getgroups Alert Source Filter Condition Group] - The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
- fixed_
team_ strid - When set, the team every alert from this source is attributed to. The team attribute is managed from this field: it is not returned by the attribute endpoints and cannot be bound directly.
- heartbeat_
options GetAlert Source Heartbeat Options - http_
custom_ Getoptions Alert Source Http Custom Options - id str
- Unique identifier for this alert source
- is_
private bool - Whether alerts from this source are private
- jira_
options GetAlert Source Jira Options - name str
- The name of this alert source, for the user's reference
- owning_
team_ Sequence[str]ids - IDs of the teams that own this alert source
- priority
Get
Alert Source Priority - rate_
limit_ Getsharding Alert Source Rate Limit Sharding - Controls how this source's ingest rate limit is split into buckets.
- secret_
token str - The token to use when sending alerts to this source. Only returned to callers with permission to update the source.
- source_
type str - Type of alert source. Possible values are:
alertmanager,app_optics,azure_monitor,azure_devops,big_panda,bugsnag,checkly,chronosphere,cloudwatch,cloudflare,coralogix,cronitor,crowdstrike_falcon,dash0,datadog,dynatrace,elasticsearch,email,expel,github_issue,google_cloud,grafana,heartbeat,http,http_custom,honeycomb,icinga2,incoming_calls,jira,jsm,monte_carlo,nagios,new_relic,opsgenie,prtg,pager_duty,panther,pingdom,runscope,sns,salesforce_case,sentry,sentry_metric,service_now,splunk,status_cake,status_page_views,sumo_logic,uptime,vercel,wiz,zendesk. - title
Get
Alert Source Title - version float
- The source's current version, which increments on every write. Pass it back as expected_version to reject a write built from a stale read.
- visible_
to_ Getteams Alert Source Visible To Teams - named_
expressions Sequence[GetAlert Source Named Expression] - An expression this resource owns, addressed by name.
- alert
Events StringUrl - The URL to send alert events to
- auto
Resolve BooleanIncident Alerts - Whether alerts from this source keep counting down to auto-resolve while attached to an incident. Defaults to true. Has no effect without autoresolvetimeout_minutes.
- auto
Resolve NumberTimeout Minutes - How long to wait before automatically resolving alerts from this source
- description Property Map
- disabled Boolean
- Whether monitoring is paused for this source. Only returned for source types that support being disabled.
- email
Address String - Email address this alert source receives alerts to
- email
Options Property Map - filter
Condition List<Property Map>Groups - The condition groups to apply in this filter. Only one group needs to be satisfied for the filter to pass.
- fixed
Team StringId - When set, the team every alert from this source is attributed to. The team attribute is managed from this field: it is not returned by the attribute endpoints and cannot be bound directly.
- heartbeat
Options Property Map - http
Custom Property MapOptions - id String
- Unique identifier for this alert source
- is
Private Boolean - Whether alerts from this source are private
- jira
Options Property Map - name String
- The name of this alert source, for the user's reference
- owning
Team List<String>Ids - IDs of the teams that own this alert source
- priority Property Map
- rate
Limit Property MapSharding - Controls how this source's ingest rate limit is split into buckets.
- secret
Token String - The token to use when sending alerts to this source. Only returned to callers with permission to update the source.
- source
Type String - Type of alert source. Possible values are:
alertmanager,app_optics,azure_monitor,azure_devops,big_panda,bugsnag,checkly,chronosphere,cloudwatch,cloudflare,coralogix,cronitor,crowdstrike_falcon,dash0,datadog,dynatrace,elasticsearch,email,expel,github_issue,google_cloud,grafana,heartbeat,http,http_custom,honeycomb,icinga2,incoming_calls,jira,jsm,monte_carlo,nagios,new_relic,opsgenie,prtg,pager_duty,panther,pingdom,runscope,sns,salesforce_case,sentry,sentry_metric,service_now,splunk,status_cake,status_page_views,sumo_logic,uptime,vercel,wiz,zendesk. - title Property Map
- version Number
- The source's current version, which increments on every write. Pass it back as expected_version to reject a write built from a stale read.
- visible
To Property MapTeams - named
Expressions List<Property Map> - An expression this resource owns, addressed by name.
Supporting Types
GetAlertSourceDescription
- Literal string
- Fixed content, which may interpolate the scope with
{{ variable }}. Filterstruncate: Nandomit_if_unsetare supported. For content needing formatting a template can't express, pass a document fromdata.incident_rich_textwithfeature_set = "rich". - Reference string
- A reference into the scope whose value becomes the content, such as
payload.summary.
- Literal string
- Fixed content, which may interpolate the scope with
{{ variable }}. Filterstruncate: Nandomit_if_unsetare supported. For content needing formatting a template can't express, pass a document fromdata.incident_rich_textwithfeature_set = "rich". - Reference string
- A reference into the scope whose value becomes the content, such as
payload.summary.
- literal string
- Fixed content, which may interpolate the scope with
{{ variable }}. Filterstruncate: Nandomit_if_unsetare supported. For content needing formatting a template can't express, pass a document fromdata.incident_rich_textwithfeature_set = "rich". - reference string
- A reference into the scope whose value becomes the content, such as
payload.summary.
- literal String
- Fixed content, which may interpolate the scope with
{{ variable }}. Filterstruncate: Nandomit_if_unsetare supported. For content needing formatting a template can't express, pass a document fromdata.incident_rich_textwithfeature_set = "rich". - reference String
- A reference into the scope whose value becomes the content, such as
payload.summary.
- literal string
- Fixed content, which may interpolate the scope with
{{ variable }}. Filterstruncate: Nandomit_if_unsetare supported. For content needing formatting a template can't express, pass a document fromdata.incident_rich_textwithfeature_set = "rich". - reference string
- A reference into the scope whose value becomes the content, such as
payload.summary.
- literal str
- Fixed content, which may interpolate the scope with
{{ variable }}. Filterstruncate: Nandomit_if_unsetare supported. For content needing formatting a template can't express, pass a document fromdata.incident_rich_textwithfeature_set = "rich". - reference str
- A reference into the scope whose value becomes the content, such as
payload.summary.
- literal String
- Fixed content, which may interpolate the scope with
{{ variable }}. Filterstruncate: Nandomit_if_unsetare supported. For content needing formatting a template can't express, pass a document fromdata.incident_rich_textwithfeature_set = "rich". - reference String
- A reference into the scope whose value becomes the content, such as
payload.summary.
GetAlertSourceEmailOptions
- Redactions List<string>
- Which PII types to automatically redact from incoming email content before storage. Possible values are:
credit_card_numbers,us_social_security_numbers,phone_numbers. - Transform
Expression string - JavaScript expression to transform email fields into structured alert fields
- Redactions []string
- Which PII types to automatically redact from incoming email content before storage. Possible values are:
credit_card_numbers,us_social_security_numbers,phone_numbers. - Transform
Expression string - JavaScript expression to transform email fields into structured alert fields
- redactions list(string)
- Which PII types to automatically redact from incoming email content before storage. Possible values are:
credit_card_numbers,us_social_security_numbers,phone_numbers. - transform_
expression string - JavaScript expression to transform email fields into structured alert fields
- redactions List<String>
- Which PII types to automatically redact from incoming email content before storage. Possible values are:
credit_card_numbers,us_social_security_numbers,phone_numbers. - transform
Expression String - JavaScript expression to transform email fields into structured alert fields
- redactions string[]
- Which PII types to automatically redact from incoming email content before storage. Possible values are:
credit_card_numbers,us_social_security_numbers,phone_numbers. - transform
Expression string - JavaScript expression to transform email fields into structured alert fields
- redactions Sequence[str]
- Which PII types to automatically redact from incoming email content before storage. Possible values are:
credit_card_numbers,us_social_security_numbers,phone_numbers. - transform_
expression str - JavaScript expression to transform email fields into structured alert fields
- redactions List<String>
- Which PII types to automatically redact from incoming email content before storage. Possible values are:
credit_card_numbers,us_social_security_numbers,phone_numbers. - transform
Expression String - JavaScript expression to transform email fields into structured alert fields
GetAlertSourceFilterConditionGroup
- Conditions
List<Get
Alert Source Filter Condition Group Condition> - All conditions in this list must be satisfied for the group to be satisfied
- Conditions
[]Get
Alert Source Filter Condition Group Condition - All conditions in this list must be satisfied for the group to be satisfied
- conditions list(object)
- All conditions in this list must be satisfied for the group to be satisfied
- conditions
List<Get
Alert Source Filter Condition Group Condition> - All conditions in this list must be satisfied for the group to be satisfied
- conditions
Get
Alert Source Filter Condition Group Condition[] - All conditions in this list must be satisfied for the group to be satisfied
- conditions
Sequence[Get
Alert Source Filter Condition Group Condition] - All conditions in this list must be satisfied for the group to be satisfied
- conditions List<Property Map>
- All conditions in this list must be satisfied for the group to be satisfied
GetAlertSourceFilterConditionGroupCondition
- Operation string
- Param
Bindings List<GetAlert Source Filter Condition Group Condition Param Binding> - Bindings for the operation parameters
- Subject string
- Operation string
- Param
Bindings []GetAlert Source Filter Condition Group Condition Param Binding - Bindings for the operation parameters
- Subject string
- operation string
- param_
bindings list(object) - Bindings for the operation parameters
- subject string
- operation String
- param
Bindings List<GetAlert Source Filter Condition Group Condition Param Binding> - Bindings for the operation parameters
- subject String
- operation string
- param
Bindings GetAlert Source Filter Condition Group Condition Param Binding[] - Bindings for the operation parameters
- subject string
- operation str
- param_
bindings Sequence[GetAlert Source Filter Condition Group Condition Param Binding] - Bindings for the operation parameters
- subject str
- operation String
- param
Bindings List<Property Map> - Bindings for the operation parameters
- subject String
GetAlertSourceFilterConditionGroupConditionParamBinding
- Array
Values List<GetAlert Source Filter Condition Group Condition Param Binding Array Value> - If array*value is set, this helps render the values
- Expression
Ref string - Value
Get
Alert Source Filter Condition Group Condition Param Binding Value - Value
Literal string - Value
Reference string - Values List<string>
- Array
Values []GetAlert Source Filter Condition Group Condition Param Binding Array Value - If array*value is set, this helps render the values
- Expression
Ref string - Value
Get
Alert Source Filter Condition Group Condition Param Binding Value - Value
Literal string - Value
Reference string - Values []string
- array_
values list(object) - If array*value is set, this helps render the values
- expression_
ref string - value object
- value_
literal string - value_
reference string - values list(string)
- array
Values List<GetAlert Source Filter Condition Group Condition Param Binding Array Value> - If array*value is set, this helps render the values
- expression
Ref String - value
Get
Alert Source Filter Condition Group Condition Param Binding Value - value
Literal String - value
Reference String - values List<String>
- array
Values GetAlert Source Filter Condition Group Condition Param Binding Array Value[] - If array*value is set, this helps render the values
- expression
Ref string - value
Get
Alert Source Filter Condition Group Condition Param Binding Value - value
Literal string - value
Reference string - values string[]
- array_
values Sequence[GetAlert Source Filter Condition Group Condition Param Binding Array Value] - If array*value is set, this helps render the values
- expression_
ref str - value
Get
Alert Source Filter Condition Group Condition Param Binding Value - value_
literal str - value_
reference str - values Sequence[str]
- array
Values List<Property Map> - If array*value is set, this helps render the values
- expression
Ref String - value Property Map
- value
Literal String - value
Reference String - values List<String>
GetAlertSourceFilterConditionGroupConditionParamBindingArrayValue
GetAlertSourceFilterConditionGroupConditionParamBindingValue
GetAlertSourceHeartbeatOptions
- Failure
Threshold double - Number of consecutive missed pings before an alert fires.
- Grace
Period doubleSeconds - How long after a missed ping before the heartbeat is considered late, in seconds. If zero, it transitions directly to failing.
- Interval
Seconds double - How often a ping is expected, in seconds.
- Ping
Url string - The URL to POST to in order to send a heartbeat ping.
- Failure
Threshold float64 - Number of consecutive missed pings before an alert fires.
- Grace
Period float64Seconds - How long after a missed ping before the heartbeat is considered late, in seconds. If zero, it transitions directly to failing.
- Interval
Seconds float64 - How often a ping is expected, in seconds.
- Ping
Url string - The URL to POST to in order to send a heartbeat ping.
- failure_
threshold number - Number of consecutive missed pings before an alert fires.
- grace_
period_ numberseconds - How long after a missed ping before the heartbeat is considered late, in seconds. If zero, it transitions directly to failing.
- interval_
seconds number - How often a ping is expected, in seconds.
- ping_
url string - The URL to POST to in order to send a heartbeat ping.
- failure
Threshold Double - Number of consecutive missed pings before an alert fires.
- grace
Period DoubleSeconds - How long after a missed ping before the heartbeat is considered late, in seconds. If zero, it transitions directly to failing.
- interval
Seconds Double - How often a ping is expected, in seconds.
- ping
Url String - The URL to POST to in order to send a heartbeat ping.
- failure
Threshold number - Number of consecutive missed pings before an alert fires.
- grace
Period numberSeconds - How long after a missed ping before the heartbeat is considered late, in seconds. If zero, it transitions directly to failing.
- interval
Seconds number - How often a ping is expected, in seconds.
- ping
Url string - The URL to POST to in order to send a heartbeat ping.
- failure_
threshold float - Number of consecutive missed pings before an alert fires.
- grace_
period_ floatseconds - How long after a missed ping before the heartbeat is considered late, in seconds. If zero, it transitions directly to failing.
- interval_
seconds float - How often a ping is expected, in seconds.
- ping_
url str - The URL to POST to in order to send a heartbeat ping.
- failure
Threshold Number - Number of consecutive missed pings before an alert fires.
- grace
Period NumberSeconds - How long after a missed ping before the heartbeat is considered late, in seconds. If zero, it transitions directly to failing.
- interval
Seconds Number - How often a ping is expected, in seconds.
- ping
Url String - The URL to POST to in order to send a heartbeat ping.
GetAlertSourceHttpCustomOptions
- Deduplication
Key stringPath - JSON path to extract the deduplication key from the payload
- Transform
Expression string - JavaScript expression that returns an object with all alert fields
- Deduplication
Key stringPath - JSON path to extract the deduplication key from the payload
- Transform
Expression string - JavaScript expression that returns an object with all alert fields
- deduplication_
key_ stringpath - JSON path to extract the deduplication key from the payload
- transform_
expression string - JavaScript expression that returns an object with all alert fields
- deduplication
Key StringPath - JSON path to extract the deduplication key from the payload
- transform
Expression String - JavaScript expression that returns an object with all alert fields
- deduplication
Key stringPath - JSON path to extract the deduplication key from the payload
- transform
Expression string - JavaScript expression that returns an object with all alert fields
- deduplication_
key_ strpath - JSON path to extract the deduplication key from the payload
- transform_
expression str - JavaScript expression that returns an object with all alert fields
- deduplication
Key StringPath - JSON path to extract the deduplication key from the payload
- transform
Expression String - JavaScript expression that returns an object with all alert fields
GetAlertSourceJiraOptions
- Project
Ids List<string> - Which projects in Jira should this alert source watch for new issues? IDs can either be IDs of the projects in Jira, or ID of catalog entries in the 'Jira Project' catalog type.
- Project
Ids []string - Which projects in Jira should this alert source watch for new issues? IDs can either be IDs of the projects in Jira, or ID of catalog entries in the 'Jira Project' catalog type.
- project_
ids list(string) - Which projects in Jira should this alert source watch for new issues? IDs can either be IDs of the projects in Jira, or ID of catalog entries in the 'Jira Project' catalog type.
- project
Ids List<String> - Which projects in Jira should this alert source watch for new issues? IDs can either be IDs of the projects in Jira, or ID of catalog entries in the 'Jira Project' catalog type.
- project
Ids string[] - Which projects in Jira should this alert source watch for new issues? IDs can either be IDs of the projects in Jira, or ID of catalog entries in the 'Jira Project' catalog type.
- project_
ids Sequence[str] - Which projects in Jira should this alert source watch for new issues? IDs can either be IDs of the projects in Jira, or ID of catalog entries in the 'Jira Project' catalog type.
- project
Ids List<String> - Which projects in Jira should this alert source watch for new issues? IDs can either be IDs of the projects in Jira, or ID of catalog entries in the 'Jira Project' catalog type.
GetAlertSourceNamedExpression
- Label string
- What the dashboard shows for this expression.
- Name string
- A name for this expression, unique within this resource, referenced by expression_ref.
- Start
From string - Where the expression starts: "payload", "alert", "." for a branches-only expression, or a scope path.
- Fallback
Get
Alert Source Named Expression Fallback - What this expression produces when nothing else matched.
- Operations
List<Get
Alert Source Named Expression Operation> - An ordered pipeline. Each operation feeds the next.
- Label string
- What the dashboard shows for this expression.
- Name string
- A name for this expression, unique within this resource, referenced by expression_ref.
- Start
From string - Where the expression starts: "payload", "alert", "." for a branches-only expression, or a scope path.
- Fallback
Get
Alert Source Named Expression Fallback - What this expression produces when nothing else matched.
- Operations
[]Get
Alert Source Named Expression Operation - An ordered pipeline. Each operation feeds the next.
- label string
- What the dashboard shows for this expression.
- name string
- A name for this expression, unique within this resource, referenced by expression_ref.
- start_
from string - Where the expression starts: "payload", "alert", "." for a branches-only expression, or a scope path.
- fallback object
- What this expression produces when nothing else matched.
- operations list(object)
- An ordered pipeline. Each operation feeds the next.
- label String
- What the dashboard shows for this expression.
- name String
- A name for this expression, unique within this resource, referenced by expression_ref.
- start
From String - Where the expression starts: "payload", "alert", "." for a branches-only expression, or a scope path.
- fallback
Get
Alert Source Named Expression Fallback - What this expression produces when nothing else matched.
- operations
List<Get
Alert Source Named Expression Operation> - An ordered pipeline. Each operation feeds the next.
- label string
- What the dashboard shows for this expression.
- name string
- A name for this expression, unique within this resource, referenced by expression_ref.
- start
From string - Where the expression starts: "payload", "alert", "." for a branches-only expression, or a scope path.
- fallback
Get
Alert Source Named Expression Fallback - What this expression produces when nothing else matched.
- operations
Get
Alert Source Named Expression Operation[] - An ordered pipeline. Each operation feeds the next.
- label str
- What the dashboard shows for this expression.
- name str
- A name for this expression, unique within this resource, referenced by expression_ref.
- start_
from str - Where the expression starts: "payload", "alert", "." for a branches-only expression, or a scope path.
- fallback
Get
Alert Source Named Expression Fallback - What this expression produces when nothing else matched.
- operations
Sequence[Get
Alert Source Named Expression Operation] - An ordered pipeline. Each operation feeds the next.
- label String
- What the dashboard shows for this expression.
- name String
- A name for this expression, unique within this resource, referenced by expression_ref.
- start
From String - Where the expression starts: "payload", "alert", "." for a branches-only expression, or a scope path.
- fallback Property Map
- What this expression produces when nothing else matched.
- operations List<Property Map>
- An ordered pipeline. Each operation feeds the next.
GetAlertSourceNamedExpressionFallback
- Expression
Ref string - The name of a named_expression in this resource.
- Result
Get
Alert Source Named Expression Fallback Result - A flat, unconditional value.
- Else
Get
Alert Source Named Expression Fallback Else - The unconditional default for the shorthand above.
- Else
Ifs List<GetAlert Source Named Expression Fallback Else If> - Tried in order, after if.
- If
Get
Alert Source Named Expression Fallback If - Shorthand for a branching fallback.
- Expression
Ref string - The name of a named_expression in this resource.
- Result
Get
Alert Source Named Expression Fallback Result - A flat, unconditional value.
- Else
Get
Alert Source Named Expression Fallback Else - The unconditional default for the shorthand above.
- Else
Ifs []GetAlert Source Named Expression Fallback Else If - Tried in order, after if.
- If
Get
Alert Source Named Expression Fallback If - Shorthand for a branching fallback.
- expression_
ref string - The name of a named_expression in this resource.
- result object
- A flat, unconditional value.
- else object
- The unconditional default for the shorthand above.
- else_
ifs list(object) - Tried in order, after if.
- if object
- Shorthand for a branching fallback.
- expression
Ref String - The name of a named_expression in this resource.
- result
Get
Alert Source Named Expression Fallback Result - A flat, unconditional value.
- else
Ifs List<GetAlert Source Named Expression Fallback Else If> - Tried in order, after if.
- else_
Get
Alert Source Named Expression Fallback Else - The unconditional default for the shorthand above.
- if_
Get
Alert Source Named Expression Fallback If - Shorthand for a branching fallback.
- expression
Ref string - The name of a named_expression in this resource.
- result
Get
Alert Source Named Expression Fallback Result - A flat, unconditional value.
- else
Get
Alert Source Named Expression Fallback Else - The unconditional default for the shorthand above.
- else
Ifs GetAlert Source Named Expression Fallback Else If[] - Tried in order, after if.
- if
Get
Alert Source Named Expression Fallback If - Shorthand for a branching fallback.
- expression_
ref str - The name of a named_expression in this resource.
- result
Get
Alert Source Named Expression Fallback Result - A flat, unconditional value.
- else_
Get
Alert Source Named Expression Fallback Else - The unconditional default for the shorthand above.
- else_
ifs Sequence[GetAlert Source Named Expression Fallback Else If] - Tried in order, after if.
- if_
Get
Alert Source Named Expression Fallback If - Shorthand for a branching fallback.
- expression
Ref String - The name of a named_expression in this resource.
- result Property Map
- A flat, unconditional value.
- else Property Map
- The unconditional default for the shorthand above.
- else
Ifs List<Property Map> - Tried in order, after if.
- if Property Map
- Shorthand for a branching fallback.
GetAlertSourceNamedExpressionFallbackElse
- Result
Get
Alert Source Named Expression Fallback Else Result - The value to fall back to.
- Result
Get
Alert Source Named Expression Fallback Else Result - The value to fall back to.
- result
Get
Alert Source Named Expression Fallback Else Result - The value to fall back to.
- result
Get
Alert Source Named Expression Fallback Else Result - The value to fall back to.
- result
Get
Alert Source Named Expression Fallback Else Result - The value to fall back to.
- result Property Map
- The value to fall back to.
GetAlertSourceNamedExpressionFallbackElseIf
- Condition
Groups List<GetAlert Source Named Expression Fallback Else If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- Conditions
List<Get
Alert Source Named Expression Fallback Else If Condition> - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Named Expression Fallback Else If Result - The value this branch produces.
- Condition
Groups []GetAlert Source Named Expression Fallback Else If Condition Group - Groups are OR'd; conditions within a group are AND'd.
- Conditions
[]Get
Alert Source Named Expression Fallback Else If Condition - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Named Expression Fallback Else If Result - The value this branch produces.
- condition_
groups list(object) - Groups are OR'd; conditions within a group are AND'd.
- conditions list(object)
- All of these must hold. Sugar for a single condition group.
- result object
- The value this branch produces.
- condition
Groups List<GetAlert Source Named Expression Fallback Else If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- conditions
List<Get
Alert Source Named Expression Fallback Else If Condition> - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Named Expression Fallback Else If Result - The value this branch produces.
- condition
Groups GetAlert Source Named Expression Fallback Else If Condition Group[] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Get
Alert Source Named Expression Fallback Else If Condition[] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Named Expression Fallback Else If Result - The value this branch produces.
- condition_
groups Sequence[GetAlert Source Named Expression Fallback Else If Condition Group] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Sequence[Get
Alert Source Named Expression Fallback Else If Condition] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Named Expression Fallback Else If Result - The value this branch produces.
- condition
Groups List<Property Map> - Groups are OR'd; conditions within a group are AND'd.
- conditions List<Property Map>
- All of these must hold. Sugar for a single condition group.
- result Property Map
- The value this branch produces.
GetAlertSourceNamedExpressionFallbackElseIfCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Named Expression Fallback Else If Condition Param> - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- Operation string
- How the subject is tested.
- Params
[]Get
Alert Source Named Expression Fallback Else If Condition Param - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- operation string
- How the subject is tested.
- params list(object)
- Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation String
- How the subject is tested.
- params
List<Get
Alert Source Named Expression Fallback Else If Condition Param> - Positional parameters for the operation.
- subject String
- The reference this condition tests.
- operation string
- How the subject is tested.
- params
Get
Alert Source Named Expression Fallback Else If Condition Param[] - Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation str
- How the subject is tested.
- params
Sequence[Get
Alert Source Named Expression Fallback Else If Condition Param] - Positional parameters for the operation.
- subject str
- The reference this condition tests.
- operation String
- How the subject is tested.
- params List<Property Map>
- Positional parameters for the operation.
- subject String
- The reference this condition tests.
GetAlertSourceNamedExpressionFallbackElseIfConditionGroup
- Conditions
List<Get
Alert Source Named Expression Fallback Else If Condition Group Condition> - All of these must hold for the group to hold.
- Conditions
[]Get
Alert Source Named Expression Fallback Else If Condition Group Condition - All of these must hold for the group to hold.
- conditions list(object)
- All of these must hold for the group to hold.
- conditions
List<Get
Alert Source Named Expression Fallback Else If Condition Group Condition> - All of these must hold for the group to hold.
- conditions
Get
Alert Source Named Expression Fallback Else If Condition Group Condition[] - All of these must hold for the group to hold.
- conditions
Sequence[Get
Alert Source Named Expression Fallback Else If Condition Group Condition] - All of these must hold for the group to hold.
- conditions List<Property Map>
- All of these must hold for the group to hold.
GetAlertSourceNamedExpressionFallbackElseIfConditionGroupCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Named Expression Fallback Else If Condition Group Condition Param> - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- Operation string
- How the subject is tested.
- Params
[]Get
Alert Source Named Expression Fallback Else If Condition Group Condition Param - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- operation string
- How the subject is tested.
- params list(object)
- Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation String
- How the subject is tested.
- params
List<Get
Alert Source Named Expression Fallback Else If Condition Group Condition Param> - Positional parameters for the operation.
- subject String
- The reference this condition tests.
- operation string
- How the subject is tested.
- params
Get
Alert Source Named Expression Fallback Else If Condition Group Condition Param[] - Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation str
- How the subject is tested.
- params
Sequence[Get
Alert Source Named Expression Fallback Else If Condition Group Condition Param] - Positional parameters for the operation.
- subject str
- The reference this condition tests.
- operation String
- How the subject is tested.
- params List<Property Map>
- Positional parameters for the operation.
- subject String
- The reference this condition tests.
GetAlertSourceNamedExpressionFallbackElseIfConditionGroupConditionParam
- Array
Values List<GetAlert Source Named Expression Fallback Else If Condition Group Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback Else If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Fallback Else If Condition Group Condition Param Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback Else If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Fallback Else If Condition Group Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback Else If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Fallback Else If Condition Group Condition Param Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback Else If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Fallback Else If Condition Group Condition Param Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback Else If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionFallbackElseIfConditionGroupConditionParamArrayValue
GetAlertSourceNamedExpressionFallbackElseIfConditionGroupConditionParamValue
GetAlertSourceNamedExpressionFallbackElseIfConditionParam
- Array
Values List<GetAlert Source Named Expression Fallback Else If Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback Else If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Fallback Else If Condition Param Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback Else If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Fallback Else If Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback Else If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Fallback Else If Condition Param Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback Else If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Fallback Else If Condition Param Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback Else If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionFallbackElseIfConditionParamArrayValue
GetAlertSourceNamedExpressionFallbackElseIfConditionParamValue
GetAlertSourceNamedExpressionFallbackElseIfResult
- Array
Values List<GetAlert Source Named Expression Fallback Else If Result Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback Else If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Fallback Else If Result Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback Else If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Fallback Else If Result Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback Else If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Fallback Else If Result Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback Else If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Fallback Else If Result Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback Else If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionFallbackElseIfResultArrayValue
GetAlertSourceNamedExpressionFallbackElseIfResultValue
GetAlertSourceNamedExpressionFallbackElseResult
- Array
Values List<GetAlert Source Named Expression Fallback Else Result Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback Else Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Fallback Else Result Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback Else Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Fallback Else Result Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback Else Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Fallback Else Result Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback Else Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Fallback Else Result Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback Else Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionFallbackElseResultArrayValue
GetAlertSourceNamedExpressionFallbackElseResultValue
GetAlertSourceNamedExpressionFallbackIf
- Condition
Groups List<GetAlert Source Named Expression Fallback If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- Conditions
List<Get
Alert Source Named Expression Fallback If Condition> - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Named Expression Fallback If Result - The value this branch produces.
- Condition
Groups []GetAlert Source Named Expression Fallback If Condition Group - Groups are OR'd; conditions within a group are AND'd.
- Conditions
[]Get
Alert Source Named Expression Fallback If Condition - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Named Expression Fallback If Result - The value this branch produces.
- condition_
groups list(object) - Groups are OR'd; conditions within a group are AND'd.
- conditions list(object)
- All of these must hold. Sugar for a single condition group.
- result object
- The value this branch produces.
- condition
Groups List<GetAlert Source Named Expression Fallback If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- conditions
List<Get
Alert Source Named Expression Fallback If Condition> - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Named Expression Fallback If Result - The value this branch produces.
- condition
Groups GetAlert Source Named Expression Fallback If Condition Group[] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Get
Alert Source Named Expression Fallback If Condition[] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Named Expression Fallback If Result - The value this branch produces.
- condition_
groups Sequence[GetAlert Source Named Expression Fallback If Condition Group] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Sequence[Get
Alert Source Named Expression Fallback If Condition] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Named Expression Fallback If Result - The value this branch produces.
- condition
Groups List<Property Map> - Groups are OR'd; conditions within a group are AND'd.
- conditions List<Property Map>
- All of these must hold. Sugar for a single condition group.
- result Property Map
- The value this branch produces.
GetAlertSourceNamedExpressionFallbackIfCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Named Expression Fallback If Condition Param> - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- Operation string
- How the subject is tested.
- Params
[]Get
Alert Source Named Expression Fallback If Condition Param - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- operation string
- How the subject is tested.
- params list(object)
- Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation String
- How the subject is tested.
- params
List<Get
Alert Source Named Expression Fallback If Condition Param> - Positional parameters for the operation.
- subject String
- The reference this condition tests.
- operation string
- How the subject is tested.
- params
Get
Alert Source Named Expression Fallback If Condition Param[] - Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation str
- How the subject is tested.
- params
Sequence[Get
Alert Source Named Expression Fallback If Condition Param] - Positional parameters for the operation.
- subject str
- The reference this condition tests.
- operation String
- How the subject is tested.
- params List<Property Map>
- Positional parameters for the operation.
- subject String
- The reference this condition tests.
GetAlertSourceNamedExpressionFallbackIfConditionGroup
- Conditions
List<Get
Alert Source Named Expression Fallback If Condition Group Condition> - All of these must hold for the group to hold.
- Conditions
[]Get
Alert Source Named Expression Fallback If Condition Group Condition - All of these must hold for the group to hold.
- conditions list(object)
- All of these must hold for the group to hold.
- conditions
List<Get
Alert Source Named Expression Fallback If Condition Group Condition> - All of these must hold for the group to hold.
- conditions
Get
Alert Source Named Expression Fallback If Condition Group Condition[] - All of these must hold for the group to hold.
- conditions
Sequence[Get
Alert Source Named Expression Fallback If Condition Group Condition] - All of these must hold for the group to hold.
- conditions List<Property Map>
- All of these must hold for the group to hold.
GetAlertSourceNamedExpressionFallbackIfConditionGroupCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Named Expression Fallback If Condition Group Condition Param> - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- Operation string
- How the subject is tested.
- Params
[]Get
Alert Source Named Expression Fallback If Condition Group Condition Param - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- operation string
- How the subject is tested.
- params list(object)
- Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation String
- How the subject is tested.
- params
List<Get
Alert Source Named Expression Fallback If Condition Group Condition Param> - Positional parameters for the operation.
- subject String
- The reference this condition tests.
- operation string
- How the subject is tested.
- params
Get
Alert Source Named Expression Fallback If Condition Group Condition Param[] - Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation str
- How the subject is tested.
- params
Sequence[Get
Alert Source Named Expression Fallback If Condition Group Condition Param] - Positional parameters for the operation.
- subject str
- The reference this condition tests.
- operation String
- How the subject is tested.
- params List<Property Map>
- Positional parameters for the operation.
- subject String
- The reference this condition tests.
GetAlertSourceNamedExpressionFallbackIfConditionGroupConditionParam
- Array
Values List<GetAlert Source Named Expression Fallback If Condition Group Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Fallback If Condition Group Condition Param Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Fallback If Condition Group Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Fallback If Condition Group Condition Param Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Fallback If Condition Group Condition Param Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionFallbackIfConditionGroupConditionParamArrayValue
GetAlertSourceNamedExpressionFallbackIfConditionGroupConditionParamValue
GetAlertSourceNamedExpressionFallbackIfConditionParam
- Array
Values List<GetAlert Source Named Expression Fallback If Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Fallback If Condition Param Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Fallback If Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Fallback If Condition Param Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Fallback If Condition Param Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionFallbackIfConditionParamArrayValue
GetAlertSourceNamedExpressionFallbackIfConditionParamValue
GetAlertSourceNamedExpressionFallbackIfResult
- Array
Values List<GetAlert Source Named Expression Fallback If Result Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Fallback If Result Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Fallback If Result Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Fallback If Result Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Fallback If Result Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionFallbackIfResultArrayValue
GetAlertSourceNamedExpressionFallbackIfResultValue
GetAlertSourceNamedExpressionFallbackResult
- Array
Values List<GetAlert Source Named Expression Fallback Result Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Fallback Result Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Fallback Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Fallback Result Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Fallback Result Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Fallback Result Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Fallback Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionFallbackResultArrayValue
GetAlertSourceNamedExpressionFallbackResultValue
GetAlertSourceNamedExpressionOperation
- Cast
Get
Alert Source Named Expression Operation Cast - Converts the current value to another type.
- Concatenate
Get
Alert Source Named Expression Operation Concatenate - Adds the values behind another reference to the current value, keeping each value once.
- Count
Get
Alert Source Named Expression Operation Count - Counts the values.
- Filter
Get
Alert Source Named Expression Operation Filter - Keeps the values matching these conditions.
- First
Get
Alert Source Named Expression Operation First - Takes the first value.
- Max
Get
Alert Source Named Expression Operation Max - Takes the largest value.
- Min
Get
Alert Source Named Expression Operation Min - Takes the smallest value.
-
Get
Alert Source Named Expression Operation Navigate - Follows an attribute of the current value.
- Parse
Get
Alert Source Named Expression Operation Parse - Evaluates a function against the current value.
- Random
Get
Alert Source Named Expression Operation Random - Takes one value at random.
- Sum
Get
Alert Source Named Expression Operation Sum - Adds the values together.
- Branches
Get
Alert Source Named Expression Operation Branches - A lookup table, evaluated in order until one matches.
- Cast
Get
Alert Source Named Expression Operation Cast - Converts the current value to another type.
- Concatenate
Get
Alert Source Named Expression Operation Concatenate - Adds the values behind another reference to the current value, keeping each value once.
- Count
Get
Alert Source Named Expression Operation Count - Counts the values.
- Filter
Get
Alert Source Named Expression Operation Filter - Keeps the values matching these conditions.
- First
Get
Alert Source Named Expression Operation First - Takes the first value.
- Max
Get
Alert Source Named Expression Operation Max - Takes the largest value.
- Min
Get
Alert Source Named Expression Operation Min - Takes the smallest value.
-
Get
Alert Source Named Expression Operation Navigate - Follows an attribute of the current value.
- Parse
Get
Alert Source Named Expression Operation Parse - Evaluates a function against the current value.
- Random
Get
Alert Source Named Expression Operation Random - Takes one value at random.
- Sum
Get
Alert Source Named Expression Operation Sum - Adds the values together.
- Branches
Get
Alert Source Named Expression Operation Branches - A lookup table, evaluated in order until one matches.
- cast object
- Converts the current value to another type.
- concatenate object
- Adds the values behind another reference to the current value, keeping each value once.
- count object
- Counts the values.
- filter object
- Keeps the values matching these conditions.
- first object
- Takes the first value.
- max object
- Takes the largest value.
- min object
- Takes the smallest value.
- object
- Follows an attribute of the current value.
- parse object
- Evaluates a function against the current value.
- random object
- Takes one value at random.
- sum object
- Adds the values together.
- branches object
- A lookup table, evaluated in order until one matches.
- cast
Get
Alert Source Named Expression Operation Cast - Converts the current value to another type.
- concatenate
Get
Alert Source Named Expression Operation Concatenate - Adds the values behind another reference to the current value, keeping each value once.
- count
Get
Alert Source Named Expression Operation Count - Counts the values.
- filter
Get
Alert Source Named Expression Operation Filter - Keeps the values matching these conditions.
- first
Get
Alert Source Named Expression Operation First - Takes the first value.
- max
Get
Alert Source Named Expression Operation Max - Takes the largest value.
- min
Get
Alert Source Named Expression Operation Min - Takes the smallest value.
-
Get
Alert Source Named Expression Operation Navigate - Follows an attribute of the current value.
- parse
Get
Alert Source Named Expression Operation Parse - Evaluates a function against the current value.
- random
Get
Alert Source Named Expression Operation Random - Takes one value at random.
- sum
Get
Alert Source Named Expression Operation Sum - Adds the values together.
- branches
Get
Alert Source Named Expression Operation Branches - A lookup table, evaluated in order until one matches.
- cast
Get
Alert Source Named Expression Operation Cast - Converts the current value to another type.
- concatenate
Get
Alert Source Named Expression Operation Concatenate - Adds the values behind another reference to the current value, keeping each value once.
- count
Get
Alert Source Named Expression Operation Count - Counts the values.
- filter
Get
Alert Source Named Expression Operation Filter - Keeps the values matching these conditions.
- first
Get
Alert Source Named Expression Operation First - Takes the first value.
- max
Get
Alert Source Named Expression Operation Max - Takes the largest value.
- min
Get
Alert Source Named Expression Operation Min - Takes the smallest value.
-
Get
Alert Source Named Expression Operation Navigate - Follows an attribute of the current value.
- parse
Get
Alert Source Named Expression Operation Parse - Evaluates a function against the current value.
- random
Get
Alert Source Named Expression Operation Random - Takes one value at random.
- sum
Get
Alert Source Named Expression Operation Sum - Adds the values together.
- branches
Get
Alert Source Named Expression Operation Branches - A lookup table, evaluated in order until one matches.
- cast
Get
Alert Source Named Expression Operation Cast - Converts the current value to another type.
- concatenate
Get
Alert Source Named Expression Operation Concatenate - Adds the values behind another reference to the current value, keeping each value once.
- count
Get
Alert Source Named Expression Operation Count - Counts the values.
- filter
Get
Alert Source Named Expression Operation Filter - Keeps the values matching these conditions.
- first
Get
Alert Source Named Expression Operation First - Takes the first value.
- max
Get
Alert Source Named Expression Operation Max - Takes the largest value.
- min
Get
Alert Source Named Expression Operation Min - Takes the smallest value.
-
Get
Alert Source Named Expression Operation Navigate - Follows an attribute of the current value.
- parse
Get
Alert Source Named Expression Operation Parse - Evaluates a function against the current value.
- random
Get
Alert Source Named Expression Operation Random - Takes one value at random.
- sum
Get
Alert Source Named Expression Operation Sum - Adds the values together.
- branches
Get
Alert Source Named Expression Operation Branches - A lookup table, evaluated in order until one matches.
- cast Property Map
- Converts the current value to another type.
- concatenate Property Map
- Adds the values behind another reference to the current value, keeping each value once.
- count Property Map
- Counts the values.
- filter Property Map
- Keeps the values matching these conditions.
- first Property Map
- Takes the first value.
- max Property Map
- Takes the largest value.
- min Property Map
- Takes the smallest value.
- Property Map
- Follows an attribute of the current value.
- parse Property Map
- Evaluates a function against the current value.
- random Property Map
- Takes one value at random.
- sum Property Map
- Adds the values together.
- branches Property Map
- A lookup table, evaluated in order until one matches.
GetAlertSourceNamedExpressionOperationBranches
- Array bool
- Whether each branch returns several values rather than one.
- As string
- The type every branch result returns.
- Else
Ifs List<GetAlert Source Named Expression Operation Branches Else If> - Tried in order, after if.
- If
Get
Alert Source Named Expression Operation Branches If - The first branch to try.
- Array bool
- Whether each branch returns several values rather than one.
- As string
- The type every branch result returns.
- Else
Ifs []GetAlert Source Named Expression Operation Branches Else If - Tried in order, after if.
- If
Get
Alert Source Named Expression Operation Branches If - The first branch to try.
- array Boolean
- Whether each branch returns several values rather than one.
- as String
- The type every branch result returns.
- else
Ifs List<GetAlert Source Named Expression Operation Branches Else If> - Tried in order, after if.
- if_
Get
Alert Source Named Expression Operation Branches If - The first branch to try.
- array boolean
- Whether each branch returns several values rather than one.
- as string
- The type every branch result returns.
- else
Ifs GetAlert Source Named Expression Operation Branches Else If[] - Tried in order, after if.
- if
Get
Alert Source Named Expression Operation Branches If - The first branch to try.
- array bool
- Whether each branch returns several values rather than one.
- as_ str
- The type every branch result returns.
- else_
ifs Sequence[GetAlert Source Named Expression Operation Branches Else If] - Tried in order, after if.
- if_
Get
Alert Source Named Expression Operation Branches If - The first branch to try.
- array Boolean
- Whether each branch returns several values rather than one.
- as String
- The type every branch result returns.
- else
Ifs List<Property Map> - Tried in order, after if.
- if Property Map
- The first branch to try.
GetAlertSourceNamedExpressionOperationBranchesElseIf
- Condition
Groups List<GetAlert Source Named Expression Operation Branches Else If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- Conditions
List<Get
Alert Source Named Expression Operation Branches Else If Condition> - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Named Expression Operation Branches Else If Result - The value this branch produces.
- Condition
Groups []GetAlert Source Named Expression Operation Branches Else If Condition Group - Groups are OR'd; conditions within a group are AND'd.
- Conditions
[]Get
Alert Source Named Expression Operation Branches Else If Condition - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Named Expression Operation Branches Else If Result - The value this branch produces.
- condition_
groups list(object) - Groups are OR'd; conditions within a group are AND'd.
- conditions list(object)
- All of these must hold. Sugar for a single condition group.
- result object
- The value this branch produces.
- condition
Groups List<GetAlert Source Named Expression Operation Branches Else If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- conditions
List<Get
Alert Source Named Expression Operation Branches Else If Condition> - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Named Expression Operation Branches Else If Result - The value this branch produces.
- condition
Groups GetAlert Source Named Expression Operation Branches Else If Condition Group[] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Get
Alert Source Named Expression Operation Branches Else If Condition[] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Named Expression Operation Branches Else If Result - The value this branch produces.
- condition_
groups Sequence[GetAlert Source Named Expression Operation Branches Else If Condition Group] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Sequence[Get
Alert Source Named Expression Operation Branches Else If Condition] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Named Expression Operation Branches Else If Result - The value this branch produces.
- condition
Groups List<Property Map> - Groups are OR'd; conditions within a group are AND'd.
- conditions List<Property Map>
- All of these must hold. Sugar for a single condition group.
- result Property Map
- The value this branch produces.
GetAlertSourceNamedExpressionOperationBranchesElseIfCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Named Expression Operation Branches Else If Condition Param> - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- Operation string
- How the subject is tested.
- Params
[]Get
Alert Source Named Expression Operation Branches Else If Condition Param - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- operation string
- How the subject is tested.
- params list(object)
- Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation String
- How the subject is tested.
- params
List<Get
Alert Source Named Expression Operation Branches Else If Condition Param> - Positional parameters for the operation.
- subject String
- The reference this condition tests.
- operation string
- How the subject is tested.
- params
Get
Alert Source Named Expression Operation Branches Else If Condition Param[] - Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation str
- How the subject is tested.
- params
Sequence[Get
Alert Source Named Expression Operation Branches Else If Condition Param] - Positional parameters for the operation.
- subject str
- The reference this condition tests.
- operation String
- How the subject is tested.
- params List<Property Map>
- Positional parameters for the operation.
- subject String
- The reference this condition tests.
GetAlertSourceNamedExpressionOperationBranchesElseIfConditionGroup
- Conditions
List<Get
Alert Source Named Expression Operation Branches Else If Condition Group Condition> - All of these must hold for the group to hold.
- Conditions
[]Get
Alert Source Named Expression Operation Branches Else If Condition Group Condition - All of these must hold for the group to hold.
- conditions list(object)
- All of these must hold for the group to hold.
- conditions
List<Get
Alert Source Named Expression Operation Branches Else If Condition Group Condition> - All of these must hold for the group to hold.
- conditions
Get
Alert Source Named Expression Operation Branches Else If Condition Group Condition[] - All of these must hold for the group to hold.
- conditions
Sequence[Get
Alert Source Named Expression Operation Branches Else If Condition Group Condition] - All of these must hold for the group to hold.
- conditions List<Property Map>
- All of these must hold for the group to hold.
GetAlertSourceNamedExpressionOperationBranchesElseIfConditionGroupCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Named Expression Operation Branches Else If Condition Group Condition Param> - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- Operation string
- How the subject is tested.
- Params
[]Get
Alert Source Named Expression Operation Branches Else If Condition Group Condition Param - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- operation string
- How the subject is tested.
- params list(object)
- Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation String
- How the subject is tested.
- params
List<Get
Alert Source Named Expression Operation Branches Else If Condition Group Condition Param> - Positional parameters for the operation.
- subject String
- The reference this condition tests.
- operation string
- How the subject is tested.
- params
Get
Alert Source Named Expression Operation Branches Else If Condition Group Condition Param[] - Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation str
- How the subject is tested.
- params
Sequence[Get
Alert Source Named Expression Operation Branches Else If Condition Group Condition Param] - Positional parameters for the operation.
- subject str
- The reference this condition tests.
- operation String
- How the subject is tested.
- params List<Property Map>
- Positional parameters for the operation.
- subject String
- The reference this condition tests.
GetAlertSourceNamedExpressionOperationBranchesElseIfConditionGroupConditionParam
- Array
Values List<GetAlert Source Named Expression Operation Branches Else If Condition Group Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Branches Else If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Operation Branches Else If Condition Group Condition Param Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Branches Else If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Operation Branches Else If Condition Group Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches Else If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Operation Branches Else If Condition Group Condition Param Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches Else If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Operation Branches Else If Condition Group Condition Param Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches Else If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionOperationBranchesElseIfConditionGroupConditionParamArrayValue
GetAlertSourceNamedExpressionOperationBranchesElseIfConditionGroupConditionParamValue
GetAlertSourceNamedExpressionOperationBranchesElseIfConditionParam
- Array
Values List<GetAlert Source Named Expression Operation Branches Else If Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Branches Else If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Operation Branches Else If Condition Param Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Branches Else If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Operation Branches Else If Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches Else If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Operation Branches Else If Condition Param Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches Else If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Operation Branches Else If Condition Param Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches Else If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionOperationBranchesElseIfConditionParamArrayValue
GetAlertSourceNamedExpressionOperationBranchesElseIfConditionParamValue
GetAlertSourceNamedExpressionOperationBranchesElseIfResult
- Array
Values List<GetAlert Source Named Expression Operation Branches Else If Result Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Branches Else If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Operation Branches Else If Result Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Branches Else If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Operation Branches Else If Result Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches Else If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Operation Branches Else If Result Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches Else If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Operation Branches Else If Result Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches Else If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionOperationBranchesElseIfResultArrayValue
GetAlertSourceNamedExpressionOperationBranchesElseIfResultValue
GetAlertSourceNamedExpressionOperationBranchesIf
- Condition
Groups List<GetAlert Source Named Expression Operation Branches If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- Conditions
List<Get
Alert Source Named Expression Operation Branches If Condition> - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Named Expression Operation Branches If Result - The value this branch produces.
- Condition
Groups []GetAlert Source Named Expression Operation Branches If Condition Group - Groups are OR'd; conditions within a group are AND'd.
- Conditions
[]Get
Alert Source Named Expression Operation Branches If Condition - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Named Expression Operation Branches If Result - The value this branch produces.
- condition_
groups list(object) - Groups are OR'd; conditions within a group are AND'd.
- conditions list(object)
- All of these must hold. Sugar for a single condition group.
- result object
- The value this branch produces.
- condition
Groups List<GetAlert Source Named Expression Operation Branches If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- conditions
List<Get
Alert Source Named Expression Operation Branches If Condition> - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Named Expression Operation Branches If Result - The value this branch produces.
- condition
Groups GetAlert Source Named Expression Operation Branches If Condition Group[] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Get
Alert Source Named Expression Operation Branches If Condition[] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Named Expression Operation Branches If Result - The value this branch produces.
- condition_
groups Sequence[GetAlert Source Named Expression Operation Branches If Condition Group] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Sequence[Get
Alert Source Named Expression Operation Branches If Condition] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Named Expression Operation Branches If Result - The value this branch produces.
- condition
Groups List<Property Map> - Groups are OR'd; conditions within a group are AND'd.
- conditions List<Property Map>
- All of these must hold. Sugar for a single condition group.
- result Property Map
- The value this branch produces.
GetAlertSourceNamedExpressionOperationBranchesIfCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Named Expression Operation Branches If Condition Param> - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- Operation string
- How the subject is tested.
- Params
[]Get
Alert Source Named Expression Operation Branches If Condition Param - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- operation string
- How the subject is tested.
- params list(object)
- Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation String
- How the subject is tested.
- params
List<Get
Alert Source Named Expression Operation Branches If Condition Param> - Positional parameters for the operation.
- subject String
- The reference this condition tests.
- operation string
- How the subject is tested.
- params
Get
Alert Source Named Expression Operation Branches If Condition Param[] - Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation str
- How the subject is tested.
- params
Sequence[Get
Alert Source Named Expression Operation Branches If Condition Param] - Positional parameters for the operation.
- subject str
- The reference this condition tests.
- operation String
- How the subject is tested.
- params List<Property Map>
- Positional parameters for the operation.
- subject String
- The reference this condition tests.
GetAlertSourceNamedExpressionOperationBranchesIfConditionGroup
- Conditions
List<Get
Alert Source Named Expression Operation Branches If Condition Group Condition> - All of these must hold for the group to hold.
- Conditions
[]Get
Alert Source Named Expression Operation Branches If Condition Group Condition - All of these must hold for the group to hold.
- conditions list(object)
- All of these must hold for the group to hold.
- conditions
List<Get
Alert Source Named Expression Operation Branches If Condition Group Condition> - All of these must hold for the group to hold.
- conditions
Get
Alert Source Named Expression Operation Branches If Condition Group Condition[] - All of these must hold for the group to hold.
- conditions
Sequence[Get
Alert Source Named Expression Operation Branches If Condition Group Condition] - All of these must hold for the group to hold.
- conditions List<Property Map>
- All of these must hold for the group to hold.
GetAlertSourceNamedExpressionOperationBranchesIfConditionGroupCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Named Expression Operation Branches If Condition Group Condition Param> - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- Operation string
- How the subject is tested.
- Params
[]Get
Alert Source Named Expression Operation Branches If Condition Group Condition Param - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- operation string
- How the subject is tested.
- params list(object)
- Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation String
- How the subject is tested.
- params
List<Get
Alert Source Named Expression Operation Branches If Condition Group Condition Param> - Positional parameters for the operation.
- subject String
- The reference this condition tests.
- operation string
- How the subject is tested.
- params
Get
Alert Source Named Expression Operation Branches If Condition Group Condition Param[] - Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation str
- How the subject is tested.
- params
Sequence[Get
Alert Source Named Expression Operation Branches If Condition Group Condition Param] - Positional parameters for the operation.
- subject str
- The reference this condition tests.
- operation String
- How the subject is tested.
- params List<Property Map>
- Positional parameters for the operation.
- subject String
- The reference this condition tests.
GetAlertSourceNamedExpressionOperationBranchesIfConditionGroupConditionParam
- Array
Values List<GetAlert Source Named Expression Operation Branches If Condition Group Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Branches If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Operation Branches If Condition Group Condition Param Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Branches If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Operation Branches If Condition Group Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Operation Branches If Condition Group Condition Param Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Operation Branches If Condition Group Condition Param Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches If Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionOperationBranchesIfConditionGroupConditionParamArrayValue
GetAlertSourceNamedExpressionOperationBranchesIfConditionGroupConditionParamValue
GetAlertSourceNamedExpressionOperationBranchesIfConditionParam
- Array
Values List<GetAlert Source Named Expression Operation Branches If Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Branches If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Operation Branches If Condition Param Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Branches If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Operation Branches If Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Operation Branches If Condition Param Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Operation Branches If Condition Param Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches If Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionOperationBranchesIfConditionParamArrayValue
GetAlertSourceNamedExpressionOperationBranchesIfConditionParamValue
GetAlertSourceNamedExpressionOperationBranchesIfResult
- Array
Values List<GetAlert Source Named Expression Operation Branches If Result Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Branches If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Operation Branches If Result Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Branches If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Operation Branches If Result Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Operation Branches If Result Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Operation Branches If Result Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Branches If Result Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionOperationBranchesIfResultArrayValue
GetAlertSourceNamedExpressionOperationBranchesIfResultValue
GetAlertSourceNamedExpressionOperationCast
- As string
- The type to convert to.
- As string
- The type to convert to.
- as string
- The type to convert to.
- as String
- The type to convert to.
- as string
- The type to convert to.
- as_ str
- The type to convert to.
- as String
- The type to convert to.
GetAlertSourceNamedExpressionOperationConcatenate
- With string
- The reference whose values are added.
- With string
- The reference whose values are added.
- with string
- The reference whose values are added.
- with String
- The reference whose values are added.
- with string
- The reference whose values are added.
- with_ str
- The reference whose values are added.
- with String
- The reference whose values are added.
GetAlertSourceNamedExpressionOperationFilter
- Condition
Groups List<GetAlert Source Named Expression Operation Filter Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- Conditions
List<Get
Alert Source Named Expression Operation Filter Condition> - All of these must hold. Sugar for a single condition group.
- Condition
Groups []GetAlert Source Named Expression Operation Filter Condition Group - Groups are OR'd; conditions within a group are AND'd.
- Conditions
[]Get
Alert Source Named Expression Operation Filter Condition - All of these must hold. Sugar for a single condition group.
- condition_
groups list(object) - Groups are OR'd; conditions within a group are AND'd.
- conditions list(object)
- All of these must hold. Sugar for a single condition group.
- condition
Groups List<GetAlert Source Named Expression Operation Filter Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- conditions
List<Get
Alert Source Named Expression Operation Filter Condition> - All of these must hold. Sugar for a single condition group.
- condition
Groups GetAlert Source Named Expression Operation Filter Condition Group[] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Get
Alert Source Named Expression Operation Filter Condition[] - All of these must hold. Sugar for a single condition group.
- condition_
groups Sequence[GetAlert Source Named Expression Operation Filter Condition Group] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Sequence[Get
Alert Source Named Expression Operation Filter Condition] - All of these must hold. Sugar for a single condition group.
- condition
Groups List<Property Map> - Groups are OR'd; conditions within a group are AND'd.
- conditions List<Property Map>
- All of these must hold. Sugar for a single condition group.
GetAlertSourceNamedExpressionOperationFilterCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Named Expression Operation Filter Condition Param> - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- Operation string
- How the subject is tested.
- Params
[]Get
Alert Source Named Expression Operation Filter Condition Param - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- operation string
- How the subject is tested.
- params list(object)
- Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation String
- How the subject is tested.
- params
List<Get
Alert Source Named Expression Operation Filter Condition Param> - Positional parameters for the operation.
- subject String
- The reference this condition tests.
- operation string
- How the subject is tested.
- params
Get
Alert Source Named Expression Operation Filter Condition Param[] - Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation str
- How the subject is tested.
- params
Sequence[Get
Alert Source Named Expression Operation Filter Condition Param] - Positional parameters for the operation.
- subject str
- The reference this condition tests.
- operation String
- How the subject is tested.
- params List<Property Map>
- Positional parameters for the operation.
- subject String
- The reference this condition tests.
GetAlertSourceNamedExpressionOperationFilterConditionGroup
- Conditions
List<Get
Alert Source Named Expression Operation Filter Condition Group Condition> - All of these must hold for the group to hold.
- Conditions
[]Get
Alert Source Named Expression Operation Filter Condition Group Condition - All of these must hold for the group to hold.
- conditions list(object)
- All of these must hold for the group to hold.
- conditions
List<Get
Alert Source Named Expression Operation Filter Condition Group Condition> - All of these must hold for the group to hold.
- conditions
Get
Alert Source Named Expression Operation Filter Condition Group Condition[] - All of these must hold for the group to hold.
- conditions
Sequence[Get
Alert Source Named Expression Operation Filter Condition Group Condition] - All of these must hold for the group to hold.
- conditions List<Property Map>
- All of these must hold for the group to hold.
GetAlertSourceNamedExpressionOperationFilterConditionGroupCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Named Expression Operation Filter Condition Group Condition Param> - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- Operation string
- How the subject is tested.
- Params
[]Get
Alert Source Named Expression Operation Filter Condition Group Condition Param - Positional parameters for the operation.
- Subject string
- The reference this condition tests.
- operation string
- How the subject is tested.
- params list(object)
- Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation String
- How the subject is tested.
- params
List<Get
Alert Source Named Expression Operation Filter Condition Group Condition Param> - Positional parameters for the operation.
- subject String
- The reference this condition tests.
- operation string
- How the subject is tested.
- params
Get
Alert Source Named Expression Operation Filter Condition Group Condition Param[] - Positional parameters for the operation.
- subject string
- The reference this condition tests.
- operation str
- How the subject is tested.
- params
Sequence[Get
Alert Source Named Expression Operation Filter Condition Group Condition Param] - Positional parameters for the operation.
- subject str
- The reference this condition tests.
- operation String
- How the subject is tested.
- params List<Property Map>
- Positional parameters for the operation.
- subject String
- The reference this condition tests.
GetAlertSourceNamedExpressionOperationFilterConditionGroupConditionParam
- Array
Values List<GetAlert Source Named Expression Operation Filter Condition Group Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Filter Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Operation Filter Condition Group Condition Param Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Filter Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Operation Filter Condition Group Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Filter Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Operation Filter Condition Group Condition Param Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Filter Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Operation Filter Condition Group Condition Param Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Filter Condition Group Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionOperationFilterConditionGroupConditionParamArrayValue
GetAlertSourceNamedExpressionOperationFilterConditionGroupConditionParamValue
GetAlertSourceNamedExpressionOperationFilterConditionParam
- Array
Values List<GetAlert Source Named Expression Operation Filter Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Filter Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Named Expression Operation Filter Condition Param Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Named Expression Operation Filter Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Named Expression Operation Filter Condition Param Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Filter Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Named Expression Operation Filter Condition Param Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Filter Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Named Expression Operation Filter Condition Param Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Named Expression Operation Filter Condition Param Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceNamedExpressionOperationFilterConditionParamArrayValue
GetAlertSourceNamedExpressionOperationFilterConditionParamValue
GetAlertSourceNamedExpressionOperationNavigate
- To string
- The catalog attribute to follow.
- To string
- The catalog attribute to follow.
- to string
- The catalog attribute to follow.
- to String
- The catalog attribute to follow.
- to string
- The catalog attribute to follow.
- to str
- The catalog attribute to follow.
- to String
- The catalog attribute to follow.
GetAlertSourceNamedExpressionOperationParse
GetAlertSourcePriority
- Array
Values List<GetAlert Source Priority Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Priority Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Priority Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Priority Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Priority Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Priority Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Priority Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Priority Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Priority Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Priority Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourcePriorityArrayValue
GetAlertSourcePriorityValue
GetAlertSourceRateLimitSharding
- Rate
Limit stringShard Key Path - JSON path to a value that splits this source's rate limit into per-value buckets.
- Rate
Limit stringShard Key Path - JSON path to a value that splits this source's rate limit into per-value buckets.
- rate_
limit_ stringshard_ key_ path - JSON path to a value that splits this source's rate limit into per-value buckets.
- rate
Limit StringShard Key Path - JSON path to a value that splits this source's rate limit into per-value buckets.
- rate
Limit stringShard Key Path - JSON path to a value that splits this source's rate limit into per-value buckets.
- rate_
limit_ strshard_ key_ path - JSON path to a value that splits this source's rate limit into per-value buckets.
- rate
Limit StringShard Key Path - JSON path to a value that splits this source's rate limit into per-value buckets.
GetAlertSourceTitle
- Literal string
- Fixed content, which may interpolate the scope with
{{ variable }}. Filterstruncate: Nandomit_if_unsetare supported. For content needing formatting a template can't express, pass a document fromdata.incident_rich_textwithfeature_set = "plain_single_line". - Reference string
- A reference into the scope whose value becomes the content, such as
payload.summary.
- Literal string
- Fixed content, which may interpolate the scope with
{{ variable }}. Filterstruncate: Nandomit_if_unsetare supported. For content needing formatting a template can't express, pass a document fromdata.incident_rich_textwithfeature_set = "plain_single_line". - Reference string
- A reference into the scope whose value becomes the content, such as
payload.summary.
- literal string
- Fixed content, which may interpolate the scope with
{{ variable }}. Filterstruncate: Nandomit_if_unsetare supported. For content needing formatting a template can't express, pass a document fromdata.incident_rich_textwithfeature_set = "plain_single_line". - reference string
- A reference into the scope whose value becomes the content, such as
payload.summary.
- literal String
- Fixed content, which may interpolate the scope with
{{ variable }}. Filterstruncate: Nandomit_if_unsetare supported. For content needing formatting a template can't express, pass a document fromdata.incident_rich_textwithfeature_set = "plain_single_line". - reference String
- A reference into the scope whose value becomes the content, such as
payload.summary.
- literal string
- Fixed content, which may interpolate the scope with
{{ variable }}. Filterstruncate: Nandomit_if_unsetare supported. For content needing formatting a template can't express, pass a document fromdata.incident_rich_textwithfeature_set = "plain_single_line". - reference string
- A reference into the scope whose value becomes the content, such as
payload.summary.
- literal str
- Fixed content, which may interpolate the scope with
{{ variable }}. Filterstruncate: Nandomit_if_unsetare supported. For content needing formatting a template can't express, pass a document fromdata.incident_rich_textwithfeature_set = "plain_single_line". - reference str
- A reference into the scope whose value becomes the content, such as
payload.summary.
- literal String
- Fixed content, which may interpolate the scope with
{{ variable }}. Filterstruncate: Nandomit_if_unsetare supported. For content needing formatting a template can't express, pass a document fromdata.incident_rich_textwithfeature_set = "plain_single_line". - reference String
- A reference into the scope whose value becomes the content, such as
payload.summary.
GetAlertSourceVisibleToTeams
- Array
Values List<GetAlert Source Visible To Teams Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Visible To Teams Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values List<string>
- Several fixed values. For a mix of fixed values and references, use array_value.
- Array
Values []GetAlert Source Visible To Teams Array Value - Several values, spelled out. Needed when they mix fixed values and references.
- Expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- Value
Get
Alert Source Visible To Teams Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - Value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- Value
Reference string - A reference into the scope, such as
payload.team. - Values []string
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values list(object) - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref string - The name of a named_expression in this resource, whose result becomes the value.
- value object
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference string - A reference into the scope, such as
payload.team. - values list(string)
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<GetAlert Source Visible To Teams Array Value> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Visible To Teams Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values GetAlert Source Visible To Teams Array Value[] - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref string - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Visible To Teams Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal string - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference string - A reference into the scope, such as
payload.team. - values string[]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array_
values Sequence[GetAlert Source Visible To Teams Array Value] - Several values, spelled out. Needed when they mix fixed values and references.
- expression_
ref str - The name of a named_expression in this resource, whose result becomes the value.
- value
Get
Alert Source Visible To Teams Value - One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value_
literal str - A fixed value. A catalog entry ID is a literal, not a reference.
- value_
reference str - A reference into the scope, such as
payload.team. - values Sequence[str]
- Several fixed values. For a mix of fixed values and references, use array_value.
- array
Values List<Property Map> - Several values, spelled out. Needed when they mix fixed values and references.
- expression
Ref String - The name of a named_expression in this resource, whose result becomes the value.
- value Property Map
- One value, spelled out.
value_literalandvalue_referenceare shorthand for this. - value
Literal String - A fixed value. A catalog entry ID is a literal, not a reference.
- value
Reference String - A reference into the scope, such as
payload.team. - values List<String>
- Several fixed values. For a mix of fixed values and references, use array_value.
GetAlertSourceVisibleToTeamsArrayValue
GetAlertSourceVisibleToTeamsValue
Package Details
- Repository
- incident incident-io/terraform-provider-incident
- License
- Notes
- This Pulumi package is based on the
incidentTerraform Provider.
published on Friday, Sep 11, 2026 by incident-io