Viewing docs for incident 7.0.0
published on Friday, Sep 11, 2026 by incident-io
published on Friday, Sep 11, 2026 by incident-io
Viewing docs for incident 7.0.0
published on Friday, Sep 11, 2026 by incident-io
published on Friday, Sep 11, 2026 by incident-io
Look up one attribute binding on an alert source by alert_source_id and alert_attribute_id.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as incident from "@pulumi/incident";
// Look up one attribute binding on an alert source.
const environment = incident.getAlertSourceAttribute({
alertSourceId: "01FCNDV6P870EA6S7TK1DSYDG0",
alertAttributeId: "01GW2G3V0S59R238FAHPDS1R66",
});
export const environmentMergeStrategy = environment.then(environment => environment.mergeStrategy);
import pulumi
import pulumi_incident as incident
# Look up one attribute binding on an alert source.
environment = incident.get_alert_source_attribute(alert_source_id="01FCNDV6P870EA6S7TK1DSYDG0",
alert_attribute_id="01GW2G3V0S59R238FAHPDS1R66")
pulumi.export("environmentMergeStrategy", environment.merge_strategy)
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 one attribute binding on an alert source.
environment, err := incident.LookupAlertSourceAttribute(ctx, &incident.LookupAlertSourceAttributeArgs{
AlertSourceId: "01FCNDV6P870EA6S7TK1DSYDG0",
AlertAttributeId: "01GW2G3V0S59R238FAHPDS1R66",
}, nil)
if err != nil {
return err
}
ctx.Export("environmentMergeStrategy", environment.MergeStrategy)
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Incident = Pulumi.Incident;
return await Deployment.RunAsync(() =>
{
// Look up one attribute binding on an alert source.
var environment = Incident.GetAlertSourceAttribute.Invoke(new()
{
AlertSourceId = "01FCNDV6P870EA6S7TK1DSYDG0",
AlertAttributeId = "01GW2G3V0S59R238FAHPDS1R66",
});
return new Dictionary<string, object?>
{
["environmentMergeStrategy"] = environment.Apply(getAlertSourceAttributeResult => getAlertSourceAttributeResult.MergeStrategy),
};
});
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.GetAlertSourceAttributeArgs;
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 one attribute binding on an alert source.
final var environment = IncidentFunctions.getAlertSourceAttribute(GetAlertSourceAttributeArgs.builder()
.alertSourceId("01FCNDV6P870EA6S7TK1DSYDG0")
.alertAttributeId("01GW2G3V0S59R238FAHPDS1R66")
.build());
ctx.export("environmentMergeStrategy", environment.mergeStrategy());
}
}
variables:
# Look up one attribute binding on an alert source.
environment:
fn::invoke:
function: incident:getAlertSourceAttribute
arguments:
alertSourceId: 01FCNDV6P870EA6S7TK1DSYDG0
alertAttributeId: 01GW2G3V0S59R238FAHPDS1R66
outputs:
environmentMergeStrategy: ${environment.mergeStrategy}
Example coming soon!
Using getAlertSourceAttribute
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 getAlertSourceAttribute(args: GetAlertSourceAttributeArgs, opts?: InvokeOptions): Promise<GetAlertSourceAttributeResult>
function getAlertSourceAttributeOutput(args: GetAlertSourceAttributeOutputArgs, opts?: InvokeOutputOptions): Output<GetAlertSourceAttributeResult>def get_alert_source_attribute(alert_attribute_id: Optional[str] = None,
alert_source_id: Optional[str] = None,
expression: Optional[GetAlertSourceAttributeExpression] = None,
named_expressions: Optional[Sequence[GetAlertSourceAttributeNamedExpression]] = None,
opts: Optional[InvokeOptions] = None) -> GetAlertSourceAttributeResult
def get_alert_source_attribute_output(alert_attribute_id: pulumi.Input[Optional[str]] = None,
alert_source_id: pulumi.Input[Optional[str]] = None,
expression: pulumi.Input[Optional[GetAlertSourceAttributeExpressionArgs]] = None,
named_expressions: pulumi.Input[Optional[Sequence[pulumi.Input[GetAlertSourceAttributeNamedExpressionArgs]]]] = None,
opts: Optional[InvokeOutputOptions] = None) -> Output[GetAlertSourceAttributeResult]func LookupAlertSourceAttribute(ctx *Context, args *LookupAlertSourceAttributeArgs, opts ...InvokeOption) (*LookupAlertSourceAttributeResult, error)
func LookupAlertSourceAttributeOutput(ctx *Context, args *LookupAlertSourceAttributeOutputArgs, opts ...InvokeOption) LookupAlertSourceAttributeResultOutput> Note: This function is named LookupAlertSourceAttribute in the Go SDK.
public static class GetAlertSourceAttribute
{
public static Task<GetAlertSourceAttributeResult> InvokeAsync(GetAlertSourceAttributeArgs args, InvokeOptions? opts = null)
public static Output<GetAlertSourceAttributeResult> Invoke(GetAlertSourceAttributeInvokeArgs args, InvokeOptions? opts = null)
public static Output<GetAlertSourceAttributeResult> Invoke(GetAlertSourceAttributeInvokeArgs args, InvokeOutputOptions opts)
}public static CompletableFuture<GetAlertSourceAttributeResult> getAlertSourceAttribute(GetAlertSourceAttributeArgs args, InvokeOptions options)
public static Output<GetAlertSourceAttributeResult> getAlertSourceAttribute(GetAlertSourceAttributeArgs args, InvokeOptions options)
public static Output<GetAlertSourceAttributeResult> getAlertSourceAttribute(GetAlertSourceAttributeArgs args, InvokeOutputOptions options)
fn::invoke:
function: incident:index/getAlertSourceAttribute:getAlertSourceAttribute
arguments:
# arguments dictionarydata "incident_get_alert_source_attribute" "name" {
# arguments
}The following arguments are supported:
- Alert
Attribute stringId - The alert attribute being bound. This also identifies the binding: an attribute can be bound at most once per source.
- Alert
Source stringId - The alert source this binding belongs to
- Expression
Get
Alert Source Attribute Expression - The expression this field is bound to. Declaring it binds its result.
- Named
Expressions List<GetAlert Source Attribute Named Expression> - An expression this resource owns, addressed by name.
- Alert
Attribute stringId - The alert attribute being bound. This also identifies the binding: an attribute can be bound at most once per source.
- Alert
Source stringId - The alert source this binding belongs to
- Expression
Get
Alert Source Attribute Expression - The expression this field is bound to. Declaring it binds its result.
- Named
Expressions []GetAlert Source Attribute Named Expression - An expression this resource owns, addressed by name.
- alert_
attribute_ stringid - The alert attribute being bound. This also identifies the binding: an attribute can be bound at most once per source.
- alert_
source_ stringid - The alert source this binding belongs to
- expression object
- The expression this field is bound to. Declaring it binds its result.
- named_
expressions list(object) - An expression this resource owns, addressed by name.
- alert
Attribute StringId - The alert attribute being bound. This also identifies the binding: an attribute can be bound at most once per source.
- alert
Source StringId - The alert source this binding belongs to
- expression
Get
Alert Source Attribute Expression - The expression this field is bound to. Declaring it binds its result.
- named
Expressions List<GetAlert Source Attribute Named Expression> - An expression this resource owns, addressed by name.
- alert
Attribute stringId - The alert attribute being bound. This also identifies the binding: an attribute can be bound at most once per source.
- alert
Source stringId - The alert source this binding belongs to
- expression
Get
Alert Source Attribute Expression - The expression this field is bound to. Declaring it binds its result.
- named
Expressions GetAlert Source Attribute Named Expression[] - An expression this resource owns, addressed by name.
- alert_
attribute_ strid - The alert attribute being bound. This also identifies the binding: an attribute can be bound at most once per source.
- alert_
source_ strid - The alert source this binding belongs to
- expression
Get
Alert Source Attribute Expression - The expression this field is bound to. Declaring it binds its result.
- named_
expressions Sequence[GetAlert Source Attribute Named Expression] - An expression this resource owns, addressed by name.
- alert
Attribute StringId - The alert attribute being bound. This also identifies the binding: an attribute can be bound at most once per source.
- alert
Source StringId - The alert source this binding belongs to
- expression Property Map
- The expression this field is bound to. Declaring it binds its result.
- named
Expressions List<Property Map> - An expression this resource owns, addressed by name.
getAlertSourceAttribute Result
The following output properties are available:
- Alert
Attribute stringId - The alert attribute being bound. This also identifies the binding: an attribute can be bound at most once per source.
- Alert
Source stringId - The alert source this binding belongs to
- Array
Values List<GetAlert Source Attribute 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- Merge
Strategy string - How values are combined when an alert is updated. Possible values are:
first_wins,last_wins,append,max,min. - Value
Get
Alert Source Attribute 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.
- Expression
Get
Alert Source Attribute Expression - The expression this field is bound to. Declaring it binds its result.
- Named
Expressions List<GetAlert Source Attribute Named Expression> - An expression this resource owns, addressed by name.
- Alert
Attribute stringId - The alert attribute being bound. This also identifies the binding: an attribute can be bound at most once per source.
- Alert
Source stringId - The alert source this binding belongs to
- Array
Values []GetAlert Source Attribute 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.
- Id string
- The provider-assigned unique ID for this managed resource.
- Merge
Strategy string - How values are combined when an alert is updated. Possible values are:
first_wins,last_wins,append,max,min. - Value
Get
Alert Source Attribute 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.
- Expression
Get
Alert Source Attribute Expression - The expression this field is bound to. Declaring it binds its result.
- Named
Expressions []GetAlert Source Attribute Named Expression - An expression this resource owns, addressed by name.
- alert_
attribute_ stringid - The alert attribute being bound. This also identifies the binding: an attribute can be bound at most once per source.
- alert_
source_ stringid - The alert source this binding belongs to
- 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.
- id string
- The provider-assigned unique ID for this managed resource.
- merge_
strategy string - How values are combined when an alert is updated. Possible values are:
first_wins,last_wins,append,max,min. - 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.
- expression object
- The expression this field is bound to. Declaring it binds its result.
- named_
expressions list(object) - An expression this resource owns, addressed by name.
- alert
Attribute StringId - The alert attribute being bound. This also identifies the binding: an attribute can be bound at most once per source.
- alert
Source StringId - The alert source this binding belongs to
- array
Values List<GetAlert Source Attribute 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.
- id String
- The provider-assigned unique ID for this managed resource.
- merge
Strategy String - How values are combined when an alert is updated. Possible values are:
first_wins,last_wins,append,max,min. - value
Get
Alert Source Attribute 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.
- expression
Get
Alert Source Attribute Expression - The expression this field is bound to. Declaring it binds its result.
- named
Expressions List<GetAlert Source Attribute Named Expression> - An expression this resource owns, addressed by name.
- alert
Attribute stringId - The alert attribute being bound. This also identifies the binding: an attribute can be bound at most once per source.
- alert
Source stringId - The alert source this binding belongs to
- array
Values GetAlert Source Attribute 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.
- id string
- The provider-assigned unique ID for this managed resource.
- merge
Strategy string - How values are combined when an alert is updated. Possible values are:
first_wins,last_wins,append,max,min. - value
Get
Alert Source Attribute 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.
- expression
Get
Alert Source Attribute Expression - The expression this field is bound to. Declaring it binds its result.
- named
Expressions GetAlert Source Attribute Named Expression[] - An expression this resource owns, addressed by name.
- alert_
attribute_ strid - The alert attribute being bound. This also identifies the binding: an attribute can be bound at most once per source.
- alert_
source_ strid - The alert source this binding belongs to
- array_
values Sequence[GetAlert Source Attribute 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.
- id str
- The provider-assigned unique ID for this managed resource.
- merge_
strategy str - How values are combined when an alert is updated. Possible values are:
first_wins,last_wins,append,max,min. - value
Get
Alert Source Attribute 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.
- expression
Get
Alert Source Attribute Expression - The expression this field is bound to. Declaring it binds its result.
- named_
expressions Sequence[GetAlert Source Attribute Named Expression] - An expression this resource owns, addressed by name.
- alert
Attribute StringId - The alert attribute being bound. This also identifies the binding: an attribute can be bound at most once per source.
- alert
Source StringId - The alert source this binding belongs to
- 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.
- id String
- The provider-assigned unique ID for this managed resource.
- merge
Strategy String - How values are combined when an alert is updated. Possible values are:
first_wins,last_wins,append,max,min. - 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.
- expression Property Map
- The expression this field is bound to. Declaring it binds its result.
- named
Expressions List<Property Map> - An expression this resource owns, addressed by name.
Supporting Types
GetAlertSourceAttributeArrayValue
GetAlertSourceAttributeExpression
- Start
From string - Where the expression starts: "payload", "alert", "." for a branches-only expression, or a scope path.
- Fallback
Get
Alert Source Attribute Expression Fallback - What this expression produces when nothing else matched.
- Operations
List<Get
Alert Source Attribute Expression Operation> - An ordered pipeline. Each operation feeds the next.
- Start
From string - Where the expression starts: "payload", "alert", "." for a branches-only expression, or a scope path.
- Fallback
Get
Alert Source Attribute Expression Fallback - What this expression produces when nothing else matched.
- Operations
[]Get
Alert Source Attribute Expression Operation - An ordered pipeline. Each operation feeds the next.
- 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.
- start
From String - Where the expression starts: "payload", "alert", "." for a branches-only expression, or a scope path.
- fallback
Get
Alert Source Attribute Expression Fallback - What this expression produces when nothing else matched.
- operations
List<Get
Alert Source Attribute Expression Operation> - An ordered pipeline. Each operation feeds the next.
- start
From string - Where the expression starts: "payload", "alert", "." for a branches-only expression, or a scope path.
- fallback
Get
Alert Source Attribute Expression Fallback - What this expression produces when nothing else matched.
- operations
Get
Alert Source Attribute Expression Operation[] - An ordered pipeline. Each operation feeds the next.
- start_
from str - Where the expression starts: "payload", "alert", "." for a branches-only expression, or a scope path.
- fallback
Get
Alert Source Attribute Expression Fallback - What this expression produces when nothing else matched.
- operations
Sequence[Get
Alert Source Attribute Expression Operation] - An ordered pipeline. Each operation feeds the next.
- 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.
GetAlertSourceAttributeExpressionFallback
- Expression
Ref string - The name of a named_expression in this resource.
- Result
Get
Alert Source Attribute Expression Fallback Result - A flat, unconditional value.
- Else
Get
Alert Source Attribute Expression Fallback Else - The unconditional default for the shorthand above.
- Else
Ifs List<GetAlert Source Attribute Expression Fallback Else If> - Tried in order, after if.
- If
Get
Alert Source Attribute Expression Fallback If - Shorthand for a branching fallback.
- Expression
Ref string - The name of a named_expression in this resource.
- Result
Get
Alert Source Attribute Expression Fallback Result - A flat, unconditional value.
- Else
Get
Alert Source Attribute Expression Fallback Else - The unconditional default for the shorthand above.
- Else
Ifs []GetAlert Source Attribute Expression Fallback Else If - Tried in order, after if.
- If
Get
Alert Source Attribute 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 Attribute Expression Fallback Result - A flat, unconditional value.
- else
Ifs List<GetAlert Source Attribute Expression Fallback Else If> - Tried in order, after if.
- else_
Get
Alert Source Attribute Expression Fallback Else - The unconditional default for the shorthand above.
- if_
Get
Alert Source Attribute Expression Fallback If - Shorthand for a branching fallback.
- expression
Ref string - The name of a named_expression in this resource.
- result
Get
Alert Source Attribute Expression Fallback Result - A flat, unconditional value.
- else
Get
Alert Source Attribute Expression Fallback Else - The unconditional default for the shorthand above.
- else
Ifs GetAlert Source Attribute Expression Fallback Else If[] - Tried in order, after if.
- if
Get
Alert Source Attribute Expression Fallback If - Shorthand for a branching fallback.
- expression_
ref str - The name of a named_expression in this resource.
- result
Get
Alert Source Attribute Expression Fallback Result - A flat, unconditional value.
- else_
Get
Alert Source Attribute Expression Fallback Else - The unconditional default for the shorthand above.
- else_
ifs Sequence[GetAlert Source Attribute Expression Fallback Else If] - Tried in order, after if.
- if_
Get
Alert Source Attribute 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.
GetAlertSourceAttributeExpressionFallbackElse
- Result
Get
Alert Source Attribute Expression Fallback Else Result - The value to fall back to.
- Result
Get
Alert Source Attribute Expression Fallback Else Result - The value to fall back to.
- result
Get
Alert Source Attribute Expression Fallback Else Result - The value to fall back to.
- result
Get
Alert Source Attribute Expression Fallback Else Result - The value to fall back to.
- result
Get
Alert Source Attribute Expression Fallback Else Result - The value to fall back to.
- result Property Map
- The value to fall back to.
GetAlertSourceAttributeExpressionFallbackElseIf
- Condition
Groups List<GetAlert Source Attribute Expression Fallback Else If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- Conditions
List<Get
Alert Source Attribute Expression Fallback Else If Condition> - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute Expression Fallback Else If Result - The value this branch produces.
- Condition
Groups []GetAlert Source Attribute Expression Fallback Else If Condition Group - Groups are OR'd; conditions within a group are AND'd.
- Conditions
[]Get
Alert Source Attribute Expression Fallback Else If Condition - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute 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 Attribute Expression Fallback Else If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- conditions
List<Get
Alert Source Attribute Expression Fallback Else If Condition> - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Expression Fallback Else If Result - The value this branch produces.
- condition
Groups GetAlert Source Attribute Expression Fallback Else If Condition Group[] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Get
Alert Source Attribute Expression Fallback Else If Condition[] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Expression Fallback Else If Result - The value this branch produces.
- condition_
groups Sequence[GetAlert Source Attribute Expression Fallback Else If Condition Group] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Sequence[Get
Alert Source Attribute Expression Fallback Else If Condition] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute 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.
GetAlertSourceAttributeExpressionFallbackElseIfCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionFallbackElseIfConditionGroup
- Conditions
List<Get
Alert Source Attribute Expression Fallback Else If Condition Group Condition> - All of these must hold for the group to hold.
- Conditions
[]Get
Alert Source Attribute 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 Attribute Expression Fallback Else If Condition Group Condition> - All of these must hold for the group to hold.
- conditions
Get
Alert Source Attribute Expression Fallback Else If Condition Group Condition[] - All of these must hold for the group to hold.
- conditions
Sequence[Get
Alert Source Attribute 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.
GetAlertSourceAttributeExpressionFallbackElseIfConditionGroupCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionFallbackElseIfConditionGroupConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionFallbackElseIfConditionGroupConditionParamArrayValue
GetAlertSourceAttributeExpressionFallbackElseIfConditionGroupConditionParamValue
GetAlertSourceAttributeExpressionFallbackElseIfConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionFallbackElseIfConditionParamArrayValue
GetAlertSourceAttributeExpressionFallbackElseIfConditionParamValue
GetAlertSourceAttributeExpressionFallbackElseIfResult
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionFallbackElseIfResultArrayValue
GetAlertSourceAttributeExpressionFallbackElseIfResultValue
GetAlertSourceAttributeExpressionFallbackElseResult
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionFallbackElseResultArrayValue
GetAlertSourceAttributeExpressionFallbackElseResultValue
GetAlertSourceAttributeExpressionFallbackIf
- Condition
Groups List<GetAlert Source Attribute Expression Fallback If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- Conditions
List<Get
Alert Source Attribute Expression Fallback If Condition> - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute Expression Fallback If Result - The value this branch produces.
- Condition
Groups []GetAlert Source Attribute Expression Fallback If Condition Group - Groups are OR'd; conditions within a group are AND'd.
- Conditions
[]Get
Alert Source Attribute Expression Fallback If Condition - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute 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 Attribute Expression Fallback If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- conditions
List<Get
Alert Source Attribute Expression Fallback If Condition> - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Expression Fallback If Result - The value this branch produces.
- condition
Groups GetAlert Source Attribute Expression Fallback If Condition Group[] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Get
Alert Source Attribute Expression Fallback If Condition[] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Expression Fallback If Result - The value this branch produces.
- condition_
groups Sequence[GetAlert Source Attribute Expression Fallback If Condition Group] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Sequence[Get
Alert Source Attribute Expression Fallback If Condition] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute 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.
GetAlertSourceAttributeExpressionFallbackIfCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionFallbackIfConditionGroup
- Conditions
List<Get
Alert Source Attribute Expression Fallback If Condition Group Condition> - All of these must hold for the group to hold.
- Conditions
[]Get
Alert Source Attribute 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 Attribute Expression Fallback If Condition Group Condition> - All of these must hold for the group to hold.
- conditions
Get
Alert Source Attribute Expression Fallback If Condition Group Condition[] - All of these must hold for the group to hold.
- conditions
Sequence[Get
Alert Source Attribute 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.
GetAlertSourceAttributeExpressionFallbackIfConditionGroupCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionFallbackIfConditionGroupConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionFallbackIfConditionGroupConditionParamArrayValue
GetAlertSourceAttributeExpressionFallbackIfConditionGroupConditionParamValue
GetAlertSourceAttributeExpressionFallbackIfConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionFallbackIfConditionParamArrayValue
GetAlertSourceAttributeExpressionFallbackIfConditionParamValue
GetAlertSourceAttributeExpressionFallbackIfResult
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionFallbackIfResultArrayValue
GetAlertSourceAttributeExpressionFallbackIfResultValue
GetAlertSourceAttributeExpressionFallbackResult
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionFallbackResultArrayValue
GetAlertSourceAttributeExpressionFallbackResultValue
GetAlertSourceAttributeExpressionOperation
- Cast
Get
Alert Source Attribute Expression Operation Cast - Converts the current value to another type.
- Concatenate
Get
Alert Source Attribute Expression Operation Concatenate - Adds the values behind another reference to the current value, keeping each value once.
- Count
Get
Alert Source Attribute Expression Operation Count - Counts the values.
- Filter
Get
Alert Source Attribute Expression Operation Filter - Keeps the values matching these conditions.
- First
Get
Alert Source Attribute Expression Operation First - Takes the first value.
- Max
Get
Alert Source Attribute Expression Operation Max - Takes the largest value.
- Min
Get
Alert Source Attribute Expression Operation Min - Takes the smallest value.
-
Get
Alert Source Attribute Expression Operation Navigate - Follows an attribute of the current value.
- Parse
Get
Alert Source Attribute Expression Operation Parse - Evaluates a function against the current value.
- Random
Get
Alert Source Attribute Expression Operation Random - Takes one value at random.
- Sum
Get
Alert Source Attribute Expression Operation Sum - Adds the values together.
- Branches
Get
Alert Source Attribute Expression Operation Branches - A lookup table, evaluated in order until one matches.
- Cast
Get
Alert Source Attribute Expression Operation Cast - Converts the current value to another type.
- Concatenate
Get
Alert Source Attribute Expression Operation Concatenate - Adds the values behind another reference to the current value, keeping each value once.
- Count
Get
Alert Source Attribute Expression Operation Count - Counts the values.
- Filter
Get
Alert Source Attribute Expression Operation Filter - Keeps the values matching these conditions.
- First
Get
Alert Source Attribute Expression Operation First - Takes the first value.
- Max
Get
Alert Source Attribute Expression Operation Max - Takes the largest value.
- Min
Get
Alert Source Attribute Expression Operation Min - Takes the smallest value.
-
Get
Alert Source Attribute Expression Operation Navigate - Follows an attribute of the current value.
- Parse
Get
Alert Source Attribute Expression Operation Parse - Evaluates a function against the current value.
- Random
Get
Alert Source Attribute Expression Operation Random - Takes one value at random.
- Sum
Get
Alert Source Attribute Expression Operation Sum - Adds the values together.
- Branches
Get
Alert Source Attribute 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 Attribute Expression Operation Cast - Converts the current value to another type.
- concatenate
Get
Alert Source Attribute Expression Operation Concatenate - Adds the values behind another reference to the current value, keeping each value once.
- count
Get
Alert Source Attribute Expression Operation Count - Counts the values.
- filter
Get
Alert Source Attribute Expression Operation Filter - Keeps the values matching these conditions.
- first
Get
Alert Source Attribute Expression Operation First - Takes the first value.
- max
Get
Alert Source Attribute Expression Operation Max - Takes the largest value.
- min
Get
Alert Source Attribute Expression Operation Min - Takes the smallest value.
-
Get
Alert Source Attribute Expression Operation Navigate - Follows an attribute of the current value.
- parse
Get
Alert Source Attribute Expression Operation Parse - Evaluates a function against the current value.
- random
Get
Alert Source Attribute Expression Operation Random - Takes one value at random.
- sum
Get
Alert Source Attribute Expression Operation Sum - Adds the values together.
- branches
Get
Alert Source Attribute Expression Operation Branches - A lookup table, evaluated in order until one matches.
- cast
Get
Alert Source Attribute Expression Operation Cast - Converts the current value to another type.
- concatenate
Get
Alert Source Attribute Expression Operation Concatenate - Adds the values behind another reference to the current value, keeping each value once.
- count
Get
Alert Source Attribute Expression Operation Count - Counts the values.
- filter
Get
Alert Source Attribute Expression Operation Filter - Keeps the values matching these conditions.
- first
Get
Alert Source Attribute Expression Operation First - Takes the first value.
- max
Get
Alert Source Attribute Expression Operation Max - Takes the largest value.
- min
Get
Alert Source Attribute Expression Operation Min - Takes the smallest value.
-
Get
Alert Source Attribute Expression Operation Navigate - Follows an attribute of the current value.
- parse
Get
Alert Source Attribute Expression Operation Parse - Evaluates a function against the current value.
- random
Get
Alert Source Attribute Expression Operation Random - Takes one value at random.
- sum
Get
Alert Source Attribute Expression Operation Sum - Adds the values together.
- branches
Get
Alert Source Attribute Expression Operation Branches - A lookup table, evaluated in order until one matches.
- cast
Get
Alert Source Attribute Expression Operation Cast - Converts the current value to another type.
- concatenate
Get
Alert Source Attribute Expression Operation Concatenate - Adds the values behind another reference to the current value, keeping each value once.
- count
Get
Alert Source Attribute Expression Operation Count - Counts the values.
- filter
Get
Alert Source Attribute Expression Operation Filter - Keeps the values matching these conditions.
- first
Get
Alert Source Attribute Expression Operation First - Takes the first value.
- max
Get
Alert Source Attribute Expression Operation Max - Takes the largest value.
- min
Get
Alert Source Attribute Expression Operation Min - Takes the smallest value.
-
Get
Alert Source Attribute Expression Operation Navigate - Follows an attribute of the current value.
- parse
Get
Alert Source Attribute Expression Operation Parse - Evaluates a function against the current value.
- random
Get
Alert Source Attribute Expression Operation Random - Takes one value at random.
- sum
Get
Alert Source Attribute Expression Operation Sum - Adds the values together.
- branches
Get
Alert Source Attribute 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.
GetAlertSourceAttributeExpressionOperationBranches
- Array bool
- Whether each branch returns several values rather than one.
- As string
- The type every branch result returns.
- Else
Ifs List<GetAlert Source Attribute Expression Operation Branches Else If> - Tried in order, after if.
- If
Get
Alert Source Attribute 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 Attribute Expression Operation Branches Else If - Tried in order, after if.
- If
Get
Alert Source Attribute 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 Attribute Expression Operation Branches Else If> - Tried in order, after if.
- if_
Get
Alert Source Attribute 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 Attribute Expression Operation Branches Else If[] - Tried in order, after if.
- if
Get
Alert Source Attribute 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 Attribute Expression Operation Branches Else If] - Tried in order, after if.
- if_
Get
Alert Source Attribute 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.
GetAlertSourceAttributeExpressionOperationBranchesElseIf
- Condition
Groups List<GetAlert Source Attribute Expression Operation Branches Else If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- Conditions
List<Get
Alert Source Attribute Expression Operation Branches Else If Condition> - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute Expression Operation Branches Else If Result - The value this branch produces.
- Condition
Groups []GetAlert Source Attribute Expression Operation Branches Else If Condition Group - Groups are OR'd; conditions within a group are AND'd.
- Conditions
[]Get
Alert Source Attribute Expression Operation Branches Else If Condition - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute 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 Attribute Expression Operation Branches Else If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- conditions
List<Get
Alert Source Attribute Expression Operation Branches Else If Condition> - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Expression Operation Branches Else If Result - The value this branch produces.
- condition
Groups GetAlert Source Attribute Expression Operation Branches Else If Condition Group[] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Get
Alert Source Attribute Expression Operation Branches Else If Condition[] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Expression Operation Branches Else If Result - The value this branch produces.
- condition_
groups Sequence[GetAlert Source Attribute Expression Operation Branches Else If Condition Group] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Sequence[Get
Alert Source Attribute Expression Operation Branches Else If Condition] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute 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.
GetAlertSourceAttributeExpressionOperationBranchesElseIfCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionOperationBranchesElseIfConditionGroup
- Conditions
List<Get
Alert Source Attribute Expression Operation Branches Else If Condition Group Condition> - All of these must hold for the group to hold.
- Conditions
[]Get
Alert Source Attribute 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 Attribute Expression Operation Branches Else If Condition Group Condition> - All of these must hold for the group to hold.
- conditions
Get
Alert Source Attribute Expression Operation Branches Else If Condition Group Condition[] - All of these must hold for the group to hold.
- conditions
Sequence[Get
Alert Source Attribute 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.
GetAlertSourceAttributeExpressionOperationBranchesElseIfConditionGroupCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionOperationBranchesElseIfConditionGroupConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionOperationBranchesElseIfConditionGroupConditionParamArrayValue
GetAlertSourceAttributeExpressionOperationBranchesElseIfConditionGroupConditionParamValue
GetAlertSourceAttributeExpressionOperationBranchesElseIfConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionOperationBranchesElseIfConditionParamArrayValue
GetAlertSourceAttributeExpressionOperationBranchesElseIfConditionParamValue
GetAlertSourceAttributeExpressionOperationBranchesElseIfResult
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionOperationBranchesElseIfResultArrayValue
GetAlertSourceAttributeExpressionOperationBranchesElseIfResultValue
GetAlertSourceAttributeExpressionOperationBranchesIf
- Condition
Groups List<GetAlert Source Attribute Expression Operation Branches If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- Conditions
List<Get
Alert Source Attribute Expression Operation Branches If Condition> - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute Expression Operation Branches If Result - The value this branch produces.
- Condition
Groups []GetAlert Source Attribute Expression Operation Branches If Condition Group - Groups are OR'd; conditions within a group are AND'd.
- Conditions
[]Get
Alert Source Attribute Expression Operation Branches If Condition - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute 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 Attribute Expression Operation Branches If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- conditions
List<Get
Alert Source Attribute Expression Operation Branches If Condition> - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Expression Operation Branches If Result - The value this branch produces.
- condition
Groups GetAlert Source Attribute Expression Operation Branches If Condition Group[] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Get
Alert Source Attribute Expression Operation Branches If Condition[] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Expression Operation Branches If Result - The value this branch produces.
- condition_
groups Sequence[GetAlert Source Attribute Expression Operation Branches If Condition Group] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Sequence[Get
Alert Source Attribute Expression Operation Branches If Condition] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute 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.
GetAlertSourceAttributeExpressionOperationBranchesIfCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionOperationBranchesIfConditionGroup
- Conditions
List<Get
Alert Source Attribute Expression Operation Branches If Condition Group Condition> - All of these must hold for the group to hold.
- Conditions
[]Get
Alert Source Attribute 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 Attribute Expression Operation Branches If Condition Group Condition> - All of these must hold for the group to hold.
- conditions
Get
Alert Source Attribute Expression Operation Branches If Condition Group Condition[] - All of these must hold for the group to hold.
- conditions
Sequence[Get
Alert Source Attribute 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.
GetAlertSourceAttributeExpressionOperationBranchesIfConditionGroupCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionOperationBranchesIfConditionGroupConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionOperationBranchesIfConditionGroupConditionParamArrayValue
GetAlertSourceAttributeExpressionOperationBranchesIfConditionGroupConditionParamValue
GetAlertSourceAttributeExpressionOperationBranchesIfConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionOperationBranchesIfConditionParamArrayValue
GetAlertSourceAttributeExpressionOperationBranchesIfConditionParamValue
GetAlertSourceAttributeExpressionOperationBranchesIfResult
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionOperationBranchesIfResultArrayValue
GetAlertSourceAttributeExpressionOperationBranchesIfResultValue
GetAlertSourceAttributeExpressionOperationCast
- 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.
GetAlertSourceAttributeExpressionOperationConcatenate
- 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.
GetAlertSourceAttributeExpressionOperationFilter
- Condition
Groups List<GetAlert Source Attribute Expression Operation Filter Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- Conditions
List<Get
Alert Source Attribute Expression Operation Filter Condition> - All of these must hold. Sugar for a single condition group.
- Condition
Groups []GetAlert Source Attribute Expression Operation Filter Condition Group - Groups are OR'd; conditions within a group are AND'd.
- Conditions
[]Get
Alert Source Attribute 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 Attribute Expression Operation Filter Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- conditions
List<Get
Alert Source Attribute Expression Operation Filter Condition> - All of these must hold. Sugar for a single condition group.
- condition
Groups GetAlert Source Attribute Expression Operation Filter Condition Group[] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Get
Alert Source Attribute Expression Operation Filter Condition[] - All of these must hold. Sugar for a single condition group.
- condition_
groups Sequence[GetAlert Source Attribute Expression Operation Filter Condition Group] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Sequence[Get
Alert Source Attribute 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.
GetAlertSourceAttributeExpressionOperationFilterCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionOperationFilterConditionGroup
- Conditions
List<Get
Alert Source Attribute Expression Operation Filter Condition Group Condition> - All of these must hold for the group to hold.
- Conditions
[]Get
Alert Source Attribute 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 Attribute Expression Operation Filter Condition Group Condition> - All of these must hold for the group to hold.
- conditions
Get
Alert Source Attribute Expression Operation Filter Condition Group Condition[] - All of these must hold for the group to hold.
- conditions
Sequence[Get
Alert Source Attribute 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.
GetAlertSourceAttributeExpressionOperationFilterConditionGroupCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionOperationFilterConditionGroupConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionOperationFilterConditionGroupConditionParamArrayValue
GetAlertSourceAttributeExpressionOperationFilterConditionGroupConditionParamValue
GetAlertSourceAttributeExpressionOperationFilterConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeExpressionOperationFilterConditionParamArrayValue
GetAlertSourceAttributeExpressionOperationFilterConditionParamValue
GetAlertSourceAttributeExpressionOperationNavigate
- 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.
GetAlertSourceAttributeExpressionOperationParse
GetAlertSourceAttributeNamedExpression
- 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 Attribute Named Expression Fallback - What this expression produces when nothing else matched.
- Operations
List<Get
Alert Source Attribute 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 Attribute Named Expression Fallback - What this expression produces when nothing else matched.
- Operations
[]Get
Alert Source Attribute 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 Attribute Named Expression Fallback - What this expression produces when nothing else matched.
- operations
List<Get
Alert Source Attribute 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 Attribute Named Expression Fallback - What this expression produces when nothing else matched.
- operations
Get
Alert Source Attribute 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 Attribute Named Expression Fallback - What this expression produces when nothing else matched.
- operations
Sequence[Get
Alert Source Attribute 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.
GetAlertSourceAttributeNamedExpressionFallback
- Expression
Ref string - The name of a named_expression in this resource.
- Result
Get
Alert Source Attribute Named Expression Fallback Result - A flat, unconditional value.
- Else
Get
Alert Source Attribute Named Expression Fallback Else - The unconditional default for the shorthand above.
- Else
Ifs List<GetAlert Source Attribute Named Expression Fallback Else If> - Tried in order, after if.
- If
Get
Alert Source Attribute 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 Attribute Named Expression Fallback Result - A flat, unconditional value.
- Else
Get
Alert Source Attribute Named Expression Fallback Else - The unconditional default for the shorthand above.
- Else
Ifs []GetAlert Source Attribute Named Expression Fallback Else If - Tried in order, after if.
- If
Get
Alert Source Attribute 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 Attribute Named Expression Fallback Result - A flat, unconditional value.
- else
Ifs List<GetAlert Source Attribute Named Expression Fallback Else If> - Tried in order, after if.
- else_
Get
Alert Source Attribute Named Expression Fallback Else - The unconditional default for the shorthand above.
- if_
Get
Alert Source Attribute 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 Attribute Named Expression Fallback Result - A flat, unconditional value.
- else
Get
Alert Source Attribute Named Expression Fallback Else - The unconditional default for the shorthand above.
- else
Ifs GetAlert Source Attribute Named Expression Fallback Else If[] - Tried in order, after if.
- if
Get
Alert Source Attribute 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 Attribute Named Expression Fallback Result - A flat, unconditional value.
- else_
Get
Alert Source Attribute Named Expression Fallback Else - The unconditional default for the shorthand above.
- else_
ifs Sequence[GetAlert Source Attribute Named Expression Fallback Else If] - Tried in order, after if.
- if_
Get
Alert Source Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackElse
- Result
Get
Alert Source Attribute Named Expression Fallback Else Result - The value to fall back to.
- Result
Get
Alert Source Attribute Named Expression Fallback Else Result - The value to fall back to.
- result
Get
Alert Source Attribute Named Expression Fallback Else Result - The value to fall back to.
- result
Get
Alert Source Attribute Named Expression Fallback Else Result - The value to fall back to.
- result
Get
Alert Source Attribute Named Expression Fallback Else Result - The value to fall back to.
- result Property Map
- The value to fall back to.
GetAlertSourceAttributeNamedExpressionFallbackElseIf
- Condition
Groups List<GetAlert Source Attribute Named Expression Fallback Else If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- Conditions
List<Get
Alert Source Attribute Named Expression Fallback Else If Condition> - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute Named Expression Fallback Else If Result - The value this branch produces.
- Condition
Groups []GetAlert Source Attribute Named Expression Fallback Else If Condition Group - Groups are OR'd; conditions within a group are AND'd.
- Conditions
[]Get
Alert Source Attribute Named Expression Fallback Else If Condition - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute 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 Attribute Named Expression Fallback Else If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- conditions
List<Get
Alert Source Attribute Named Expression Fallback Else If Condition> - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Named Expression Fallback Else If Result - The value this branch produces.
- condition
Groups GetAlert Source Attribute Named Expression Fallback Else If Condition Group[] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Get
Alert Source Attribute Named Expression Fallback Else If Condition[] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Named Expression Fallback Else If Result - The value this branch produces.
- condition_
groups Sequence[GetAlert Source Attribute Named Expression Fallback Else If Condition Group] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Sequence[Get
Alert Source Attribute Named Expression Fallback Else If Condition] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackElseIfCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackElseIfConditionGroup
- Conditions
List<Get
Alert Source Attribute Named Expression Fallback Else If Condition Group Condition> - All of these must hold for the group to hold.
- Conditions
[]Get
Alert Source Attribute 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 Attribute Named Expression Fallback Else If Condition Group Condition> - All of these must hold for the group to hold.
- conditions
Get
Alert Source Attribute Named Expression Fallback Else If Condition Group Condition[] - All of these must hold for the group to hold.
- conditions
Sequence[Get
Alert Source Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackElseIfConditionGroupCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackElseIfConditionGroupConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackElseIfConditionGroupConditionParamArrayValue
GetAlertSourceAttributeNamedExpressionFallbackElseIfConditionGroupConditionParamValue
GetAlertSourceAttributeNamedExpressionFallbackElseIfConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackElseIfConditionParamArrayValue
GetAlertSourceAttributeNamedExpressionFallbackElseIfConditionParamValue
GetAlertSourceAttributeNamedExpressionFallbackElseIfResult
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackElseIfResultArrayValue
GetAlertSourceAttributeNamedExpressionFallbackElseIfResultValue
GetAlertSourceAttributeNamedExpressionFallbackElseResult
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackElseResultArrayValue
GetAlertSourceAttributeNamedExpressionFallbackElseResultValue
GetAlertSourceAttributeNamedExpressionFallbackIf
- Condition
Groups List<GetAlert Source Attribute Named Expression Fallback If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- Conditions
List<Get
Alert Source Attribute Named Expression Fallback If Condition> - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute Named Expression Fallback If Result - The value this branch produces.
- Condition
Groups []GetAlert Source Attribute Named Expression Fallback If Condition Group - Groups are OR'd; conditions within a group are AND'd.
- Conditions
[]Get
Alert Source Attribute Named Expression Fallback If Condition - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute 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 Attribute Named Expression Fallback If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- conditions
List<Get
Alert Source Attribute Named Expression Fallback If Condition> - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Named Expression Fallback If Result - The value this branch produces.
- condition
Groups GetAlert Source Attribute Named Expression Fallback If Condition Group[] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Get
Alert Source Attribute Named Expression Fallback If Condition[] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Named Expression Fallback If Result - The value this branch produces.
- condition_
groups Sequence[GetAlert Source Attribute Named Expression Fallback If Condition Group] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Sequence[Get
Alert Source Attribute Named Expression Fallback If Condition] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackIfCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackIfConditionGroup
- Conditions
List<Get
Alert Source Attribute Named Expression Fallback If Condition Group Condition> - All of these must hold for the group to hold.
- Conditions
[]Get
Alert Source Attribute 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 Attribute Named Expression Fallback If Condition Group Condition> - All of these must hold for the group to hold.
- conditions
Get
Alert Source Attribute Named Expression Fallback If Condition Group Condition[] - All of these must hold for the group to hold.
- conditions
Sequence[Get
Alert Source Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackIfConditionGroupCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackIfConditionGroupConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackIfConditionGroupConditionParamArrayValue
GetAlertSourceAttributeNamedExpressionFallbackIfConditionGroupConditionParamValue
GetAlertSourceAttributeNamedExpressionFallbackIfConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackIfConditionParamArrayValue
GetAlertSourceAttributeNamedExpressionFallbackIfConditionParamValue
GetAlertSourceAttributeNamedExpressionFallbackIfResult
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackIfResultArrayValue
GetAlertSourceAttributeNamedExpressionFallbackIfResultValue
GetAlertSourceAttributeNamedExpressionFallbackResult
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionFallbackResultArrayValue
GetAlertSourceAttributeNamedExpressionFallbackResultValue
GetAlertSourceAttributeNamedExpressionOperation
- Cast
Get
Alert Source Attribute Named Expression Operation Cast - Converts the current value to another type.
- Concatenate
Get
Alert Source Attribute Named Expression Operation Concatenate - Adds the values behind another reference to the current value, keeping each value once.
- Count
Get
Alert Source Attribute Named Expression Operation Count - Counts the values.
- Filter
Get
Alert Source Attribute Named Expression Operation Filter - Keeps the values matching these conditions.
- First
Get
Alert Source Attribute Named Expression Operation First - Takes the first value.
- Max
Get
Alert Source Attribute Named Expression Operation Max - Takes the largest value.
- Min
Get
Alert Source Attribute Named Expression Operation Min - Takes the smallest value.
-
Get
Alert Source Attribute Named Expression Operation Navigate - Follows an attribute of the current value.
- Parse
Get
Alert Source Attribute Named Expression Operation Parse - Evaluates a function against the current value.
- Random
Get
Alert Source Attribute Named Expression Operation Random - Takes one value at random.
- Sum
Get
Alert Source Attribute Named Expression Operation Sum - Adds the values together.
- Branches
Get
Alert Source Attribute Named Expression Operation Branches - A lookup table, evaluated in order until one matches.
- Cast
Get
Alert Source Attribute Named Expression Operation Cast - Converts the current value to another type.
- Concatenate
Get
Alert Source Attribute Named Expression Operation Concatenate - Adds the values behind another reference to the current value, keeping each value once.
- Count
Get
Alert Source Attribute Named Expression Operation Count - Counts the values.
- Filter
Get
Alert Source Attribute Named Expression Operation Filter - Keeps the values matching these conditions.
- First
Get
Alert Source Attribute Named Expression Operation First - Takes the first value.
- Max
Get
Alert Source Attribute Named Expression Operation Max - Takes the largest value.
- Min
Get
Alert Source Attribute Named Expression Operation Min - Takes the smallest value.
-
Get
Alert Source Attribute Named Expression Operation Navigate - Follows an attribute of the current value.
- Parse
Get
Alert Source Attribute Named Expression Operation Parse - Evaluates a function against the current value.
- Random
Get
Alert Source Attribute Named Expression Operation Random - Takes one value at random.
- Sum
Get
Alert Source Attribute Named Expression Operation Sum - Adds the values together.
- Branches
Get
Alert Source Attribute 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 Attribute Named Expression Operation Cast - Converts the current value to another type.
- concatenate
Get
Alert Source Attribute Named Expression Operation Concatenate - Adds the values behind another reference to the current value, keeping each value once.
- count
Get
Alert Source Attribute Named Expression Operation Count - Counts the values.
- filter
Get
Alert Source Attribute Named Expression Operation Filter - Keeps the values matching these conditions.
- first
Get
Alert Source Attribute Named Expression Operation First - Takes the first value.
- max
Get
Alert Source Attribute Named Expression Operation Max - Takes the largest value.
- min
Get
Alert Source Attribute Named Expression Operation Min - Takes the smallest value.
-
Get
Alert Source Attribute Named Expression Operation Navigate - Follows an attribute of the current value.
- parse
Get
Alert Source Attribute Named Expression Operation Parse - Evaluates a function against the current value.
- random
Get
Alert Source Attribute Named Expression Operation Random - Takes one value at random.
- sum
Get
Alert Source Attribute Named Expression Operation Sum - Adds the values together.
- branches
Get
Alert Source Attribute Named Expression Operation Branches - A lookup table, evaluated in order until one matches.
- cast
Get
Alert Source Attribute Named Expression Operation Cast - Converts the current value to another type.
- concatenate
Get
Alert Source Attribute Named Expression Operation Concatenate - Adds the values behind another reference to the current value, keeping each value once.
- count
Get
Alert Source Attribute Named Expression Operation Count - Counts the values.
- filter
Get
Alert Source Attribute Named Expression Operation Filter - Keeps the values matching these conditions.
- first
Get
Alert Source Attribute Named Expression Operation First - Takes the first value.
- max
Get
Alert Source Attribute Named Expression Operation Max - Takes the largest value.
- min
Get
Alert Source Attribute Named Expression Operation Min - Takes the smallest value.
-
Get
Alert Source Attribute Named Expression Operation Navigate - Follows an attribute of the current value.
- parse
Get
Alert Source Attribute Named Expression Operation Parse - Evaluates a function against the current value.
- random
Get
Alert Source Attribute Named Expression Operation Random - Takes one value at random.
- sum
Get
Alert Source Attribute Named Expression Operation Sum - Adds the values together.
- branches
Get
Alert Source Attribute Named Expression Operation Branches - A lookup table, evaluated in order until one matches.
- cast
Get
Alert Source Attribute Named Expression Operation Cast - Converts the current value to another type.
- concatenate
Get
Alert Source Attribute Named Expression Operation Concatenate - Adds the values behind another reference to the current value, keeping each value once.
- count
Get
Alert Source Attribute Named Expression Operation Count - Counts the values.
- filter
Get
Alert Source Attribute Named Expression Operation Filter - Keeps the values matching these conditions.
- first
Get
Alert Source Attribute Named Expression Operation First - Takes the first value.
- max
Get
Alert Source Attribute Named Expression Operation Max - Takes the largest value.
- min
Get
Alert Source Attribute Named Expression Operation Min - Takes the smallest value.
-
Get
Alert Source Attribute Named Expression Operation Navigate - Follows an attribute of the current value.
- parse
Get
Alert Source Attribute Named Expression Operation Parse - Evaluates a function against the current value.
- random
Get
Alert Source Attribute Named Expression Operation Random - Takes one value at random.
- sum
Get
Alert Source Attribute Named Expression Operation Sum - Adds the values together.
- branches
Get
Alert Source Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranches
- Array bool
- Whether each branch returns several values rather than one.
- As string
- The type every branch result returns.
- Else
Ifs List<GetAlert Source Attribute Named Expression Operation Branches Else If> - Tried in order, after if.
- If
Get
Alert Source Attribute 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 Attribute Named Expression Operation Branches Else If - Tried in order, after if.
- If
Get
Alert Source Attribute 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 Attribute Named Expression Operation Branches Else If> - Tried in order, after if.
- if_
Get
Alert Source Attribute 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 Attribute Named Expression Operation Branches Else If[] - Tried in order, after if.
- if
Get
Alert Source Attribute 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 Attribute Named Expression Operation Branches Else If] - Tried in order, after if.
- if_
Get
Alert Source Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranchesElseIf
- Condition
Groups List<GetAlert Source Attribute Named Expression Operation Branches Else If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- Conditions
List<Get
Alert Source Attribute Named Expression Operation Branches Else If Condition> - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute Named Expression Operation Branches Else If Result - The value this branch produces.
- Condition
Groups []GetAlert Source Attribute Named Expression Operation Branches Else If Condition Group - Groups are OR'd; conditions within a group are AND'd.
- Conditions
[]Get
Alert Source Attribute Named Expression Operation Branches Else If Condition - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute 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 Attribute Named Expression Operation Branches Else If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- conditions
List<Get
Alert Source Attribute Named Expression Operation Branches Else If Condition> - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Named Expression Operation Branches Else If Result - The value this branch produces.
- condition
Groups GetAlert Source Attribute Named Expression Operation Branches Else If Condition Group[] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Get
Alert Source Attribute Named Expression Operation Branches Else If Condition[] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Named Expression Operation Branches Else If Result - The value this branch produces.
- condition_
groups Sequence[GetAlert Source Attribute Named Expression Operation Branches Else If Condition Group] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Sequence[Get
Alert Source Attribute Named Expression Operation Branches Else If Condition] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranchesElseIfCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranchesElseIfConditionGroup
- Conditions
List<Get
Alert Source Attribute Named Expression Operation Branches Else If Condition Group Condition> - All of these must hold for the group to hold.
- Conditions
[]Get
Alert Source Attribute 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 Attribute Named Expression Operation Branches Else If Condition Group Condition> - All of these must hold for the group to hold.
- conditions
Get
Alert Source Attribute Named Expression Operation Branches Else If Condition Group Condition[] - All of these must hold for the group to hold.
- conditions
Sequence[Get
Alert Source Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranchesElseIfConditionGroupCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranchesElseIfConditionGroupConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranchesElseIfConditionGroupConditionParamArrayValue
GetAlertSourceAttributeNamedExpressionOperationBranchesElseIfConditionGroupConditionParamValue
GetAlertSourceAttributeNamedExpressionOperationBranchesElseIfConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranchesElseIfConditionParamArrayValue
GetAlertSourceAttributeNamedExpressionOperationBranchesElseIfConditionParamValue
GetAlertSourceAttributeNamedExpressionOperationBranchesElseIfResult
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranchesElseIfResultArrayValue
GetAlertSourceAttributeNamedExpressionOperationBranchesElseIfResultValue
GetAlertSourceAttributeNamedExpressionOperationBranchesIf
- Condition
Groups List<GetAlert Source Attribute Named Expression Operation Branches If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- Conditions
List<Get
Alert Source Attribute Named Expression Operation Branches If Condition> - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute Named Expression Operation Branches If Result - The value this branch produces.
- Condition
Groups []GetAlert Source Attribute Named Expression Operation Branches If Condition Group - Groups are OR'd; conditions within a group are AND'd.
- Conditions
[]Get
Alert Source Attribute Named Expression Operation Branches If Condition - All of these must hold. Sugar for a single condition group.
- Result
Get
Alert Source Attribute 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 Attribute Named Expression Operation Branches If Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- conditions
List<Get
Alert Source Attribute Named Expression Operation Branches If Condition> - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Named Expression Operation Branches If Result - The value this branch produces.
- condition
Groups GetAlert Source Attribute Named Expression Operation Branches If Condition Group[] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Get
Alert Source Attribute Named Expression Operation Branches If Condition[] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute Named Expression Operation Branches If Result - The value this branch produces.
- condition_
groups Sequence[GetAlert Source Attribute Named Expression Operation Branches If Condition Group] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Sequence[Get
Alert Source Attribute Named Expression Operation Branches If Condition] - All of these must hold. Sugar for a single condition group.
- result
Get
Alert Source Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranchesIfCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranchesIfConditionGroup
- Conditions
List<Get
Alert Source Attribute Named Expression Operation Branches If Condition Group Condition> - All of these must hold for the group to hold.
- Conditions
[]Get
Alert Source Attribute 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 Attribute Named Expression Operation Branches If Condition Group Condition> - All of these must hold for the group to hold.
- conditions
Get
Alert Source Attribute Named Expression Operation Branches If Condition Group Condition[] - All of these must hold for the group to hold.
- conditions
Sequence[Get
Alert Source Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranchesIfConditionGroupCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranchesIfConditionGroupConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranchesIfConditionGroupConditionParamArrayValue
GetAlertSourceAttributeNamedExpressionOperationBranchesIfConditionGroupConditionParamValue
GetAlertSourceAttributeNamedExpressionOperationBranchesIfConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranchesIfConditionParamArrayValue
GetAlertSourceAttributeNamedExpressionOperationBranchesIfConditionParamValue
GetAlertSourceAttributeNamedExpressionOperationBranchesIfResult
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationBranchesIfResultArrayValue
GetAlertSourceAttributeNamedExpressionOperationBranchesIfResultValue
GetAlertSourceAttributeNamedExpressionOperationCast
- 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.
GetAlertSourceAttributeNamedExpressionOperationConcatenate
- 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.
GetAlertSourceAttributeNamedExpressionOperationFilter
- Condition
Groups List<GetAlert Source Attribute Named Expression Operation Filter Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- Conditions
List<Get
Alert Source Attribute Named Expression Operation Filter Condition> - All of these must hold. Sugar for a single condition group.
- Condition
Groups []GetAlert Source Attribute Named Expression Operation Filter Condition Group - Groups are OR'd; conditions within a group are AND'd.
- Conditions
[]Get
Alert Source Attribute 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 Attribute Named Expression Operation Filter Condition Group> - Groups are OR'd; conditions within a group are AND'd.
- conditions
List<Get
Alert Source Attribute Named Expression Operation Filter Condition> - All of these must hold. Sugar for a single condition group.
- condition
Groups GetAlert Source Attribute Named Expression Operation Filter Condition Group[] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Get
Alert Source Attribute Named Expression Operation Filter Condition[] - All of these must hold. Sugar for a single condition group.
- condition_
groups Sequence[GetAlert Source Attribute Named Expression Operation Filter Condition Group] - Groups are OR'd; conditions within a group are AND'd.
- conditions
Sequence[Get
Alert Source Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationFilterCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationFilterConditionGroup
- Conditions
List<Get
Alert Source Attribute Named Expression Operation Filter Condition Group Condition> - All of these must hold for the group to hold.
- Conditions
[]Get
Alert Source Attribute 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 Attribute Named Expression Operation Filter Condition Group Condition> - All of these must hold for the group to hold.
- conditions
Get
Alert Source Attribute Named Expression Operation Filter Condition Group Condition[] - All of these must hold for the group to hold.
- conditions
Sequence[Get
Alert Source Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationFilterConditionGroupCondition
- Operation string
- How the subject is tested.
- Params
List<Get
Alert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationFilterConditionGroupConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationFilterConditionGroupConditionParamArrayValue
GetAlertSourceAttributeNamedExpressionOperationFilterConditionGroupConditionParamValue
GetAlertSourceAttributeNamedExpressionOperationFilterConditionParam
- Array
Values List<GetAlert Source Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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 Attribute 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.
GetAlertSourceAttributeNamedExpressionOperationFilterConditionParamArrayValue
GetAlertSourceAttributeNamedExpressionOperationFilterConditionParamValue
GetAlertSourceAttributeNamedExpressionOperationNavigate
- 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.
GetAlertSourceAttributeNamedExpressionOperationParse
GetAlertSourceAttributeValue
Package Details
- Repository
- incident incident-io/terraform-provider-incident
- License
- Notes
- This Pulumi package is based on the
incidentTerraform Provider.
Viewing docs for incident 7.0.0
published on Friday, Sep 11, 2026 by incident-io
published on Friday, Sep 11, 2026 by incident-io