1. Packages
  2. Ibm Provider
  3. API Docs
  4. getLogsAlert
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

ibm.getLogsAlert

Explore with Pulumi AI

ibm logo
ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud

    Provides a read-only data source to retrieve information about a logs_alert. You can then reference the fields of the data source in other resources within the same configuration by using interpolation syntax.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ibm from "@pulumi/ibm";
    
    const logsAlertInstance = ibm.getLogsAlert({
        instanceId: ibm_logs_alert.logs_alert_instance.instance_id,
        region: ibm_logs_alert.logs_alert_instance.region,
        logsAlertId: ibm_logs_alert.logs_alert_instance.alert_id,
    });
    
    import pulumi
    import pulumi_ibm as ibm
    
    logs_alert_instance = ibm.get_logs_alert(instance_id=ibm_logs_alert["logs_alert_instance"]["instance_id"],
        region=ibm_logs_alert["logs_alert_instance"]["region"],
        logs_alert_id=ibm_logs_alert["logs_alert_instance"]["alert_id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/ibm/ibm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := ibm.LookupLogsAlert(ctx, &ibm.LookupLogsAlertArgs{
    			InstanceId:  ibm_logs_alert.Logs_alert_instance.Instance_id,
    			Region:      pulumi.StringRef(ibm_logs_alert.Logs_alert_instance.Region),
    			LogsAlertId: ibm_logs_alert.Logs_alert_instance.Alert_id,
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ibm = Pulumi.Ibm;
    
    return await Deployment.RunAsync(() => 
    {
        var logsAlertInstance = Ibm.GetLogsAlert.Invoke(new()
        {
            InstanceId = ibm_logs_alert.Logs_alert_instance.Instance_id,
            Region = ibm_logs_alert.Logs_alert_instance.Region,
            LogsAlertId = ibm_logs_alert.Logs_alert_instance.Alert_id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ibm.IbmFunctions;
    import com.pulumi.ibm.inputs.GetLogsAlertArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var logsAlertInstance = IbmFunctions.getLogsAlert(GetLogsAlertArgs.builder()
                .instanceId(ibm_logs_alert.logs_alert_instance().instance_id())
                .region(ibm_logs_alert.logs_alert_instance().region())
                .logsAlertId(ibm_logs_alert.logs_alert_instance().alert_id())
                .build());
    
        }
    }
    
    variables:
      logsAlertInstance:
        fn::invoke:
          function: ibm:getLogsAlert
          arguments:
            instanceId: ${ibm_logs_alert.logs_alert_instance.instance_id}
            region: ${ibm_logs_alert.logs_alert_instance.region}
            logsAlertId: ${ibm_logs_alert.logs_alert_instance.alert_id}
    

    Using getLogsAlert

    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 getLogsAlert(args: GetLogsAlertArgs, opts?: InvokeOptions): Promise<GetLogsAlertResult>
    function getLogsAlertOutput(args: GetLogsAlertOutputArgs, opts?: InvokeOptions): Output<GetLogsAlertResult>
    def get_logs_alert(endpoint_type: Optional[str] = None,
                       id: Optional[str] = None,
                       instance_id: Optional[str] = None,
                       logs_alert_id: Optional[str] = None,
                       region: Optional[str] = None,
                       opts: Optional[InvokeOptions] = None) -> GetLogsAlertResult
    def get_logs_alert_output(endpoint_type: Optional[pulumi.Input[str]] = None,
                       id: Optional[pulumi.Input[str]] = None,
                       instance_id: Optional[pulumi.Input[str]] = None,
                       logs_alert_id: Optional[pulumi.Input[str]] = None,
                       region: Optional[pulumi.Input[str]] = None,
                       opts: Optional[InvokeOptions] = None) -> Output[GetLogsAlertResult]
    func LookupLogsAlert(ctx *Context, args *LookupLogsAlertArgs, opts ...InvokeOption) (*LookupLogsAlertResult, error)
    func LookupLogsAlertOutput(ctx *Context, args *LookupLogsAlertOutputArgs, opts ...InvokeOption) LookupLogsAlertResultOutput

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

    public static class GetLogsAlert 
    {
        public static Task<GetLogsAlertResult> InvokeAsync(GetLogsAlertArgs args, InvokeOptions? opts = null)
        public static Output<GetLogsAlertResult> Invoke(GetLogsAlertInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetLogsAlertResult> getLogsAlert(GetLogsAlertArgs args, InvokeOptions options)
    public static Output<GetLogsAlertResult> getLogsAlert(GetLogsAlertArgs args, InvokeOptions options)
    
    fn::invoke:
      function: ibm:index/getLogsAlert:getLogsAlert
      arguments:
        # arguments dictionary

    The following arguments are supported:

    InstanceId string
    Cloud Logs Instance GUID.
    LogsAlertId string
    Alert ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    EndpointType string
    Id string
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    Region string
    Cloud Logs Instance Region.
    InstanceId string
    Cloud Logs Instance GUID.
    LogsAlertId string
    Alert ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    EndpointType string
    Id string
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    Region string
    Cloud Logs Instance Region.
    instanceId String
    Cloud Logs Instance GUID.
    logsAlertId String
    Alert ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    endpointType String
    id String
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    region String
    Cloud Logs Instance Region.
    instanceId string
    Cloud Logs Instance GUID.
    logsAlertId string
    Alert ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    endpointType string
    id string
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    region string
    Cloud Logs Instance Region.
    instance_id str
    Cloud Logs Instance GUID.
    logs_alert_id str
    Alert ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    endpoint_type str
    id str
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    region str
    Cloud Logs Instance Region.
    instanceId String
    Cloud Logs Instance GUID.
    logsAlertId String
    Alert ID.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    endpointType String
    id String
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    region String
    Cloud Logs Instance Region.

    getLogsAlert Result

    The following output properties are available:

    ActiveWhens List<GetLogsAlertActiveWhen>
    (List) When should the alert be active. Nested schema for active_when:
    Conditions List<GetLogsAlertCondition>
    (List) Alert condition. Nested schema for condition:
    Description string
    (String) Alert description.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_\\-\\s]+$/.
    Expirations List<GetLogsAlertExpiration>
    (List) Alert expiration date. Nested schema for expiration:
    Filters List<GetLogsAlertFilter>
    (List) Alert filters. Nested schema for filters:
    Id string
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    IncidentSettings List<GetLogsAlertIncidentSetting>
    (List) Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
    InstanceId string
    IsActive bool
    (Boolean) Alert is active.
    LogsAlertId string
    MetaLabels List<GetLogsAlertMetaLabel>
    (List) The Meta labels to add to the alert.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items. Nested schema for meta_labels:
    MetaLabelsStrings List<string>
    (List) The Meta labels to add to the alert as string with ':' separator.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    Name string
    (String) Alert name.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    NotificationGroups List<GetLogsAlertNotificationGroup>
    (List) Alert notification groups.

    • Constraints: The maximum length is 10 items. The minimum length is 1 item. Nested schema for notification_groups:
    NotificationPayloadFilters List<string>
    (List) JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    Region string
    Severity string
    (String) Alert severity.

    • Constraints: Allowable values are: info_or_unspecified, warning, critical, error.
    UniqueIdentifier string
    (String) Alert unique identifier.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    EndpointType string
    ActiveWhens []GetLogsAlertActiveWhen
    (List) When should the alert be active. Nested schema for active_when:
    Conditions []GetLogsAlertCondition
    (List) Alert condition. Nested schema for condition:
    Description string
    (String) Alert description.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_\\-\\s]+$/.
    Expirations []GetLogsAlertExpiration
    (List) Alert expiration date. Nested schema for expiration:
    Filters []GetLogsAlertFilter
    (List) Alert filters. Nested schema for filters:
    Id string
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    IncidentSettings []GetLogsAlertIncidentSetting
    (List) Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
    InstanceId string
    IsActive bool
    (Boolean) Alert is active.
    LogsAlertId string
    MetaLabels []GetLogsAlertMetaLabel
    (List) The Meta labels to add to the alert.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items. Nested schema for meta_labels:
    MetaLabelsStrings []string
    (List) The Meta labels to add to the alert as string with ':' separator.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    Name string
    (String) Alert name.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    NotificationGroups []GetLogsAlertNotificationGroup
    (List) Alert notification groups.

    • Constraints: The maximum length is 10 items. The minimum length is 1 item. Nested schema for notification_groups:
    NotificationPayloadFilters []string
    (List) JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    Region string
    Severity string
    (String) Alert severity.

    • Constraints: Allowable values are: info_or_unspecified, warning, critical, error.
    UniqueIdentifier string
    (String) Alert unique identifier.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    EndpointType string
    activeWhens List<GetLogsAlertActiveWhen>
    (List) When should the alert be active. Nested schema for active_when:
    conditions List<GetLogsAlertCondition>
    (List) Alert condition. Nested schema for condition:
    description String
    (String) Alert description.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_\\-\\s]+$/.
    expirations List<GetLogsAlertExpiration>
    (List) Alert expiration date. Nested schema for expiration:
    filters List<GetLogsAlertFilter>
    (List) Alert filters. Nested schema for filters:
    id String
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    incidentSettings List<GetLogsAlertIncidentSetting>
    (List) Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
    instanceId String
    isActive Boolean
    (Boolean) Alert is active.
    logsAlertId String
    metaLabels List<GetLogsAlertMetaLabel>
    (List) The Meta labels to add to the alert.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items. Nested schema for meta_labels:
    metaLabelsStrings List<String>
    (List) The Meta labels to add to the alert as string with ':' separator.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    name String
    (String) Alert name.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    notificationGroups List<GetLogsAlertNotificationGroup>
    (List) Alert notification groups.

    • Constraints: The maximum length is 10 items. The minimum length is 1 item. Nested schema for notification_groups:
    notificationPayloadFilters List<String>
    (List) JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    region String
    severity String
    (String) Alert severity.

    • Constraints: Allowable values are: info_or_unspecified, warning, critical, error.
    uniqueIdentifier String
    (String) Alert unique identifier.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    endpointType String
    activeWhens GetLogsAlertActiveWhen[]
    (List) When should the alert be active. Nested schema for active_when:
    conditions GetLogsAlertCondition[]
    (List) Alert condition. Nested schema for condition:
    description string
    (String) Alert description.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_\\-\\s]+$/.
    expirations GetLogsAlertExpiration[]
    (List) Alert expiration date. Nested schema for expiration:
    filters GetLogsAlertFilter[]
    (List) Alert filters. Nested schema for filters:
    id string
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    incidentSettings GetLogsAlertIncidentSetting[]
    (List) Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
    instanceId string
    isActive boolean
    (Boolean) Alert is active.
    logsAlertId string
    metaLabels GetLogsAlertMetaLabel[]
    (List) The Meta labels to add to the alert.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items. Nested schema for meta_labels:
    metaLabelsStrings string[]
    (List) The Meta labels to add to the alert as string with ':' separator.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    name string
    (String) Alert name.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    notificationGroups GetLogsAlertNotificationGroup[]
    (List) Alert notification groups.

    • Constraints: The maximum length is 10 items. The minimum length is 1 item. Nested schema for notification_groups:
    notificationPayloadFilters string[]
    (List) JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    region string
    severity string
    (String) Alert severity.

    • Constraints: Allowable values are: info_or_unspecified, warning, critical, error.
    uniqueIdentifier string
    (String) Alert unique identifier.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    endpointType string
    active_whens Sequence[GetLogsAlertActiveWhen]
    (List) When should the alert be active. Nested schema for active_when:
    conditions Sequence[GetLogsAlertCondition]
    (List) Alert condition. Nested schema for condition:
    description str
    (String) Alert description.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_\\-\\s]+$/.
    expirations Sequence[GetLogsAlertExpiration]
    (List) Alert expiration date. Nested schema for expiration:
    filters Sequence[GetLogsAlertFilter]
    (List) Alert filters. Nested schema for filters:
    id str
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    incident_settings Sequence[GetLogsAlertIncidentSetting]
    (List) Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
    instance_id str
    is_active bool
    (Boolean) Alert is active.
    logs_alert_id str
    meta_labels Sequence[GetLogsAlertMetaLabel]
    (List) The Meta labels to add to the alert.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items. Nested schema for meta_labels:
    meta_labels_strings Sequence[str]
    (List) The Meta labels to add to the alert as string with ':' separator.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    name str
    (String) Alert name.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    notification_groups Sequence[GetLogsAlertNotificationGroup]
    (List) Alert notification groups.

    • Constraints: The maximum length is 10 items. The minimum length is 1 item. Nested schema for notification_groups:
    notification_payload_filters Sequence[str]
    (List) JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    region str
    severity str
    (String) Alert severity.

    • Constraints: Allowable values are: info_or_unspecified, warning, critical, error.
    unique_identifier str
    (String) Alert unique identifier.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    endpoint_type str
    activeWhens List<Property Map>
    (List) When should the alert be active. Nested schema for active_when:
    conditions List<Property Map>
    (List) Alert condition. Nested schema for condition:
    description String
    (String) Alert description.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression /^[A-Za-z0-9_\\-\\s]+$/.
    expirations List<Property Map>
    (List) Alert expiration date. Nested schema for expiration:
    filters List<Property Map>
    (List) Alert filters. Nested schema for filters:
    id String
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    incidentSettings List<Property Map>
    (List) Incident settings, will create the incident based on this configuration. Nested schema for incident_settings:
    instanceId String
    isActive Boolean
    (Boolean) Alert is active.
    logsAlertId String
    metaLabels List<Property Map>
    (List) The Meta labels to add to the alert.

    • Constraints: The maximum length is 200 items. The minimum length is 0 items. Nested schema for meta_labels:
    metaLabelsStrings List<String>
    (List) The Meta labels to add to the alert as string with ':' separator.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    name String
    (String) Alert name.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    notificationGroups List<Property Map>
    (List) Alert notification groups.

    • Constraints: The maximum length is 10 items. The minimum length is 1 item. Nested schema for notification_groups:
    notificationPayloadFilters List<String>
    (List) JSON keys to include in the alert notification, if left empty get the full log text in the alert notification.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    region String
    severity String
    (String) Alert severity.

    • Constraints: Allowable values are: info_or_unspecified, warning, critical, error.
    uniqueIdentifier String
    (String) Alert unique identifier.

    • Constraints: The maximum length is 36 characters. The minimum length is 36 characters. The value must match regular expression /^[0-9a-f]{8}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{4}-[0-9a-f]{12}$/.
    endpointType String

    Supporting Types

    GetLogsAlertActiveWhen

    Timeframes List<GetLogsAlertActiveWhenTimeframe>
    (List) Activity timeframes of the alert.

    • Constraints: The maximum length is 30 items. The minimum length is 1 item. Nested schema for timeframes:
    Timeframes []GetLogsAlertActiveWhenTimeframe
    (List) Activity timeframes of the alert.

    • Constraints: The maximum length is 30 items. The minimum length is 1 item. Nested schema for timeframes:
    timeframes List<GetLogsAlertActiveWhenTimeframe>
    (List) Activity timeframes of the alert.

    • Constraints: The maximum length is 30 items. The minimum length is 1 item. Nested schema for timeframes:
    timeframes GetLogsAlertActiveWhenTimeframe[]
    (List) Activity timeframes of the alert.

    • Constraints: The maximum length is 30 items. The minimum length is 1 item. Nested schema for timeframes:
    timeframes Sequence[GetLogsAlertActiveWhenTimeframe]
    (List) Activity timeframes of the alert.

    • Constraints: The maximum length is 30 items. The minimum length is 1 item. Nested schema for timeframes:
    timeframes List<Property Map>
    (List) Activity timeframes of the alert.

    • Constraints: The maximum length is 30 items. The minimum length is 1 item. Nested schema for timeframes:

    GetLogsAlertActiveWhenTimeframe

    DaysOfWeeks List<string>
    (List) Days of the week for activity.

    • Constraints: Allowable list items are: monday_or_unspecified, tuesday, wednesday, thursday, friday, saturday, sunday. The maximum length is 30 items. The minimum length is 1 item.
    Ranges List<GetLogsAlertActiveWhenTimeframeRange>
    (List) Time range in the day of the week. Nested schema for range:
    DaysOfWeeks []string
    (List) Days of the week for activity.

    • Constraints: Allowable list items are: monday_or_unspecified, tuesday, wednesday, thursday, friday, saturday, sunday. The maximum length is 30 items. The minimum length is 1 item.
    Ranges []GetLogsAlertActiveWhenTimeframeRange
    (List) Time range in the day of the week. Nested schema for range:
    daysOfWeeks List<String>
    (List) Days of the week for activity.

    • Constraints: Allowable list items are: monday_or_unspecified, tuesday, wednesday, thursday, friday, saturday, sunday. The maximum length is 30 items. The minimum length is 1 item.
    ranges List<GetLogsAlertActiveWhenTimeframeRange>
    (List) Time range in the day of the week. Nested schema for range:
    daysOfWeeks string[]
    (List) Days of the week for activity.

    • Constraints: Allowable list items are: monday_or_unspecified, tuesday, wednesday, thursday, friday, saturday, sunday. The maximum length is 30 items. The minimum length is 1 item.
    ranges GetLogsAlertActiveWhenTimeframeRange[]
    (List) Time range in the day of the week. Nested schema for range:
    days_of_weeks Sequence[str]
    (List) Days of the week for activity.

    • Constraints: Allowable list items are: monday_or_unspecified, tuesday, wednesday, thursday, friday, saturday, sunday. The maximum length is 30 items. The minimum length is 1 item.
    ranges Sequence[GetLogsAlertActiveWhenTimeframeRange]
    (List) Time range in the day of the week. Nested schema for range:
    daysOfWeeks List<String>
    (List) Days of the week for activity.

    • Constraints: Allowable list items are: monday_or_unspecified, tuesday, wednesday, thursday, friday, saturday, sunday. The maximum length is 30 items. The minimum length is 1 item.
    ranges List<Property Map>
    (List) Time range in the day of the week. Nested schema for range:

    GetLogsAlertActiveWhenTimeframeRange

    Ends List<GetLogsAlertActiveWhenTimeframeRangeEnd>
    (List) Start time. Nested schema for end:
    Starts List<GetLogsAlertActiveWhenTimeframeRangeStart>
    (List) Start time. Nested schema for start:
    Ends []GetLogsAlertActiveWhenTimeframeRangeEnd
    (List) Start time. Nested schema for end:
    Starts []GetLogsAlertActiveWhenTimeframeRangeStart
    (List) Start time. Nested schema for start:
    ends List<GetLogsAlertActiveWhenTimeframeRangeEnd>
    (List) Start time. Nested schema for end:
    starts List<GetLogsAlertActiveWhenTimeframeRangeStart>
    (List) Start time. Nested schema for start:
    ends GetLogsAlertActiveWhenTimeframeRangeEnd[]
    (List) Start time. Nested schema for end:
    starts GetLogsAlertActiveWhenTimeframeRangeStart[]
    (List) Start time. Nested schema for start:
    ends Sequence[GetLogsAlertActiveWhenTimeframeRangeEnd]
    (List) Start time. Nested schema for end:
    starts Sequence[GetLogsAlertActiveWhenTimeframeRangeStart]
    (List) Start time. Nested schema for start:
    ends List<Property Map>
    (List) Start time. Nested schema for end:
    starts List<Property Map>
    (List) Start time. Nested schema for start:

    GetLogsAlertActiveWhenTimeframeRangeEnd

    Hours double
    (Integer) Hours of the day.
    Minutes double
    (Integer) Minutes of the hour.
    Seconds double
    (Integer) Seconds of the minute.
    Hours float64
    (Integer) Hours of the day.
    Minutes float64
    (Integer) Minutes of the hour.
    Seconds float64
    (Integer) Seconds of the minute.
    hours Double
    (Integer) Hours of the day.
    minutes Double
    (Integer) Minutes of the hour.
    seconds Double
    (Integer) Seconds of the minute.
    hours number
    (Integer) Hours of the day.
    minutes number
    (Integer) Minutes of the hour.
    seconds number
    (Integer) Seconds of the minute.
    hours float
    (Integer) Hours of the day.
    minutes float
    (Integer) Minutes of the hour.
    seconds float
    (Integer) Seconds of the minute.
    hours Number
    (Integer) Hours of the day.
    minutes Number
    (Integer) Minutes of the hour.
    seconds Number
    (Integer) Seconds of the minute.

    GetLogsAlertActiveWhenTimeframeRangeStart

    Hours double
    (Integer) Hours of the day.
    Minutes double
    (Integer) Minutes of the hour.
    Seconds double
    (Integer) Seconds of the minute.
    Hours float64
    (Integer) Hours of the day.
    Minutes float64
    (Integer) Minutes of the hour.
    Seconds float64
    (Integer) Seconds of the minute.
    hours Double
    (Integer) Hours of the day.
    minutes Double
    (Integer) Minutes of the hour.
    seconds Double
    (Integer) Seconds of the minute.
    hours number
    (Integer) Hours of the day.
    minutes number
    (Integer) Minutes of the hour.
    seconds number
    (Integer) Seconds of the minute.
    hours float
    (Integer) Hours of the day.
    minutes float
    (Integer) Minutes of the hour.
    seconds float
    (Integer) Seconds of the minute.
    hours Number
    (Integer) Hours of the day.
    minutes Number
    (Integer) Minutes of the hour.
    seconds Number
    (Integer) Seconds of the minute.

    GetLogsAlertCondition

    Flows List<GetLogsAlertConditionFlow>
    (List) Condition for flow alert. Nested schema for flow:
    Immediates List<GetLogsAlertConditionImmediate>
    (List) Condition for immediate standard alert. Nested schema for immediate:
    LessThanUsuals List<GetLogsAlertConditionLessThanUsual>
    (List) Condition for less than usual alert. Nested schema for less_than_usual:
    LessThans List<GetLogsAlertConditionLessThan>
    (List) Condition for less than alert. Nested schema for less_than:
    MoreThanUsuals List<GetLogsAlertConditionMoreThanUsual>
    (List) Condition for more than usual alert. Nested schema for more_than_usual:
    MoreThans List<GetLogsAlertConditionMoreThan>
    (List) Condition for more than alert. Nested schema for more_than:
    NewValues List<GetLogsAlertConditionNewValue>
    (List) Condition for new value alert. Nested schema for new_value:
    UniqueCounts List<GetLogsAlertConditionUniqueCount>
    (List) Condition for unique count alert. Nested schema for unique_count:
    Flows []GetLogsAlertConditionFlow
    (List) Condition for flow alert. Nested schema for flow:
    Immediates []GetLogsAlertConditionImmediate
    (List) Condition for immediate standard alert. Nested schema for immediate:
    LessThanUsuals []GetLogsAlertConditionLessThanUsual
    (List) Condition for less than usual alert. Nested schema for less_than_usual:
    LessThans []GetLogsAlertConditionLessThan
    (List) Condition for less than alert. Nested schema for less_than:
    MoreThanUsuals []GetLogsAlertConditionMoreThanUsual
    (List) Condition for more than usual alert. Nested schema for more_than_usual:
    MoreThans []GetLogsAlertConditionMoreThan
    (List) Condition for more than alert. Nested schema for more_than:
    NewValues []GetLogsAlertConditionNewValue
    (List) Condition for new value alert. Nested schema for new_value:
    UniqueCounts []GetLogsAlertConditionUniqueCount
    (List) Condition for unique count alert. Nested schema for unique_count:
    flows List<GetLogsAlertConditionFlow>
    (List) Condition for flow alert. Nested schema for flow:
    immediates List<GetLogsAlertConditionImmediate>
    (List) Condition for immediate standard alert. Nested schema for immediate:
    lessThanUsuals List<GetLogsAlertConditionLessThanUsual>
    (List) Condition for less than usual alert. Nested schema for less_than_usual:
    lessThans List<GetLogsAlertConditionLessThan>
    (List) Condition for less than alert. Nested schema for less_than:
    moreThanUsuals List<GetLogsAlertConditionMoreThanUsual>
    (List) Condition for more than usual alert. Nested schema for more_than_usual:
    moreThans List<GetLogsAlertConditionMoreThan>
    (List) Condition for more than alert. Nested schema for more_than:
    newValues List<GetLogsAlertConditionNewValue>
    (List) Condition for new value alert. Nested schema for new_value:
    uniqueCounts List<GetLogsAlertConditionUniqueCount>
    (List) Condition for unique count alert. Nested schema for unique_count:
    flows GetLogsAlertConditionFlow[]
    (List) Condition for flow alert. Nested schema for flow:
    immediates GetLogsAlertConditionImmediate[]
    (List) Condition for immediate standard alert. Nested schema for immediate:
    lessThanUsuals GetLogsAlertConditionLessThanUsual[]
    (List) Condition for less than usual alert. Nested schema for less_than_usual:
    lessThans GetLogsAlertConditionLessThan[]
    (List) Condition for less than alert. Nested schema for less_than:
    moreThanUsuals GetLogsAlertConditionMoreThanUsual[]
    (List) Condition for more than usual alert. Nested schema for more_than_usual:
    moreThans GetLogsAlertConditionMoreThan[]
    (List) Condition for more than alert. Nested schema for more_than:
    newValues GetLogsAlertConditionNewValue[]
    (List) Condition for new value alert. Nested schema for new_value:
    uniqueCounts GetLogsAlertConditionUniqueCount[]
    (List) Condition for unique count alert. Nested schema for unique_count:
    flows Sequence[GetLogsAlertConditionFlow]
    (List) Condition for flow alert. Nested schema for flow:
    immediates Sequence[GetLogsAlertConditionImmediate]
    (List) Condition for immediate standard alert. Nested schema for immediate:
    less_than_usuals Sequence[GetLogsAlertConditionLessThanUsual]
    (List) Condition for less than usual alert. Nested schema for less_than_usual:
    less_thans Sequence[GetLogsAlertConditionLessThan]
    (List) Condition for less than alert. Nested schema for less_than:
    more_than_usuals Sequence[GetLogsAlertConditionMoreThanUsual]
    (List) Condition for more than usual alert. Nested schema for more_than_usual:
    more_thans Sequence[GetLogsAlertConditionMoreThan]
    (List) Condition for more than alert. Nested schema for more_than:
    new_values Sequence[GetLogsAlertConditionNewValue]
    (List) Condition for new value alert. Nested schema for new_value:
    unique_counts Sequence[GetLogsAlertConditionUniqueCount]
    (List) Condition for unique count alert. Nested schema for unique_count:
    flows List<Property Map>
    (List) Condition for flow alert. Nested schema for flow:
    immediates List<Property Map>
    (List) Condition for immediate standard alert. Nested schema for immediate:
    lessThanUsuals List<Property Map>
    (List) Condition for less than usual alert. Nested schema for less_than_usual:
    lessThans List<Property Map>
    (List) Condition for less than alert. Nested schema for less_than:
    moreThanUsuals List<Property Map>
    (List) Condition for more than usual alert. Nested schema for more_than_usual:
    moreThans List<Property Map>
    (List) Condition for more than alert. Nested schema for more_than:
    newValues List<Property Map>
    (List) Condition for new value alert. Nested schema for new_value:
    uniqueCounts List<Property Map>
    (List) Condition for unique count alert. Nested schema for unique_count:

    GetLogsAlertConditionFlow

    EnforceSuppression bool
    (Boolean) Should suppression be enforced on the flow alert.
    Parameters List<GetLogsAlertConditionFlowParameter>
    (List) The Less than alert condition parameters. Nested schema for parameters:
    Stages List<GetLogsAlertConditionFlowStage>
    (List) The Flow alert condition parameters.

    • Constraints: The maximum length is 50 items. The minimum length is 0 items. Nested schema for stages:
    EnforceSuppression bool
    (Boolean) Should suppression be enforced on the flow alert.
    Parameters []GetLogsAlertConditionFlowParameter
    (List) The Less than alert condition parameters. Nested schema for parameters:
    Stages []GetLogsAlertConditionFlowStage
    (List) The Flow alert condition parameters.

    • Constraints: The maximum length is 50 items. The minimum length is 0 items. Nested schema for stages:
    enforceSuppression Boolean
    (Boolean) Should suppression be enforced on the flow alert.
    parameters List<GetLogsAlertConditionFlowParameter>
    (List) The Less than alert condition parameters. Nested schema for parameters:
    stages List<GetLogsAlertConditionFlowStage>
    (List) The Flow alert condition parameters.

    • Constraints: The maximum length is 50 items. The minimum length is 0 items. Nested schema for stages:
    enforceSuppression boolean
    (Boolean) Should suppression be enforced on the flow alert.
    parameters GetLogsAlertConditionFlowParameter[]
    (List) The Less than alert condition parameters. Nested schema for parameters:
    stages GetLogsAlertConditionFlowStage[]
    (List) The Flow alert condition parameters.

    • Constraints: The maximum length is 50 items. The minimum length is 0 items. Nested schema for stages:
    enforce_suppression bool
    (Boolean) Should suppression be enforced on the flow alert.
    parameters Sequence[GetLogsAlertConditionFlowParameter]
    (List) The Less than alert condition parameters. Nested schema for parameters:
    stages Sequence[GetLogsAlertConditionFlowStage]
    (List) The Flow alert condition parameters.

    • Constraints: The maximum length is 50 items. The minimum length is 0 items. Nested schema for stages:
    enforceSuppression Boolean
    (Boolean) Should suppression be enforced on the flow alert.
    parameters List<Property Map>
    (List) The Less than alert condition parameters. Nested schema for parameters:
    stages List<Property Map>
    (List) The Flow alert condition parameters.

    • Constraints: The maximum length is 50 items. The minimum length is 0 items. Nested schema for stages:

    GetLogsAlertConditionFlowParameter

    CardinalityFields List<string>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    GroupBies List<string>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    IgnoreInfinity bool
    (Boolean) Should the evaluation ignore infinity value.
    MetricAlertParameters List<GetLogsAlertConditionFlowParameterMetricAlertParameter>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    MetricAlertPromqlParameters List<GetLogsAlertConditionFlowParameterMetricAlertPromqlParameter>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    RelatedExtendedDatas List<GetLogsAlertConditionFlowParameterRelatedExtendedData>
    (List) Deadman configuration. Nested schema for related_extended_data:
    RelativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    Threshold double
    (Float) The threshold for the alert condition.
    Timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    CardinalityFields []string
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    GroupBies []string
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    IgnoreInfinity bool
    (Boolean) Should the evaluation ignore infinity value.
    MetricAlertParameters []GetLogsAlertConditionFlowParameterMetricAlertParameter
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    MetricAlertPromqlParameters []GetLogsAlertConditionFlowParameterMetricAlertPromqlParameter
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    RelatedExtendedDatas []GetLogsAlertConditionFlowParameterRelatedExtendedData
    (List) Deadman configuration. Nested schema for related_extended_data:
    RelativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    Threshold float64
    (Float) The threshold for the alert condition.
    Timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields List<String>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity Boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters List<GetLogsAlertConditionFlowParameterMetricAlertParameter>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters List<GetLogsAlertConditionFlowParameterMetricAlertPromqlParameter>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas List<GetLogsAlertConditionFlowParameterRelatedExtendedData>
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe String
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold Double
    (Float) The threshold for the alert condition.
    timeframe String
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields string[]
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies string[]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters GetLogsAlertConditionFlowParameterMetricAlertParameter[]
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters GetLogsAlertConditionFlowParameterMetricAlertPromqlParameter[]
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas GetLogsAlertConditionFlowParameterRelatedExtendedData[]
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold number
    (Float) The threshold for the alert condition.
    timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinality_fields Sequence[str]
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    group_bies Sequence[str]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignore_infinity bool
    (Boolean) Should the evaluation ignore infinity value.
    metric_alert_parameters Sequence[GetLogsAlertConditionFlowParameterMetricAlertParameter]
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metric_alert_promql_parameters Sequence[GetLogsAlertConditionFlowParameterMetricAlertPromqlParameter]
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    related_extended_datas Sequence[GetLogsAlertConditionFlowParameterRelatedExtendedData]
    (List) Deadman configuration. Nested schema for related_extended_data:
    relative_timeframe str
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold float
    (Float) The threshold for the alert condition.
    timeframe str
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields List<String>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity Boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters List<Property Map>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters List<Property Map>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas List<Property Map>
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe String
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold Number
    (Float) The threshold for the alert condition.
    timeframe String
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.

    GetLogsAlertConditionFlowParameterMetricAlertParameter

    ArithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    ArithmeticOperatorModifier double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    MetricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    MetricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    NonNullPercentage double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SampleThresholdPercentage double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    ArithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    ArithmeticOperatorModifier float64
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    MetricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    MetricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    NonNullPercentage float64
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SampleThresholdPercentage float64
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperator String
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier Double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField String
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource String
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage Double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage Double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.
    arithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues boolean
    (Boolean) Should we swap null values with zero.
    arithmetic_operator str
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmetic_operator_modifier float
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metric_field str
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metric_source str
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    non_null_percentage float
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sample_threshold_percentage float
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swap_null_values bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperator String
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier Number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField String
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource String
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage Number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage Number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.

    GetLogsAlertConditionFlowParameterMetricAlertPromqlParameter

    ArithmeticOperatorModifier double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NonNullPercentage double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    PromqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SampleThresholdPercentage double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    ArithmeticOperatorModifier float64
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NonNullPercentage float64
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    PromqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SampleThresholdPercentage float64
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier Double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage Double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText String
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage Double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues boolean
    (Boolean) Should we swap null values with zero.
    arithmetic_operator_modifier float
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    non_null_percentage float
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promql_text str
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sample_threshold_percentage float
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swap_null_values bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier Number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage Number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText String
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage Number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.

    GetLogsAlertConditionFlowParameterRelatedExtendedData

    CleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    ShouldTriggerDeadman bool
    (Boolean) Should we trigger deadman.
    CleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    ShouldTriggerDeadman bool
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration String
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman Boolean
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman boolean
    (Boolean) Should we trigger deadman.
    cleanup_deadman_duration str
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    should_trigger_deadman bool
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration String
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman Boolean
    (Boolean) Should we trigger deadman.

    GetLogsAlertConditionFlowStage

    Groups List<GetLogsAlertConditionFlowStageGroup>
    (List) List of groups of alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for groups:
    Timeframes List<GetLogsAlertConditionFlowStageTimeframe>
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    Groups []GetLogsAlertConditionFlowStageGroup
    (List) List of groups of alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for groups:
    Timeframes []GetLogsAlertConditionFlowStageTimeframe
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    groups List<GetLogsAlertConditionFlowStageGroup>
    (List) List of groups of alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for groups:
    timeframes List<GetLogsAlertConditionFlowStageTimeframe>
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    groups GetLogsAlertConditionFlowStageGroup[]
    (List) List of groups of alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for groups:
    timeframes GetLogsAlertConditionFlowStageTimeframe[]
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    groups Sequence[GetLogsAlertConditionFlowStageGroup]
    (List) List of groups of alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for groups:
    timeframes Sequence[GetLogsAlertConditionFlowStageTimeframe]
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    groups List<Property Map>
    (List) List of groups of alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for groups:
    timeframes List<Property Map>
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.

    GetLogsAlertConditionFlowStageGroup

    Alerts List<GetLogsAlertConditionFlowStageGroupAlert>
    (List) List of alerts. Nested schema for alerts:
    NextOp string
    (String) Operator for the alerts.

    • Constraints: Allowable values are: and, or.
    Alerts []GetLogsAlertConditionFlowStageGroupAlert
    (List) List of alerts. Nested schema for alerts:
    NextOp string
    (String) Operator for the alerts.

    • Constraints: Allowable values are: and, or.
    alerts List<GetLogsAlertConditionFlowStageGroupAlert>
    (List) List of alerts. Nested schema for alerts:
    nextOp String
    (String) Operator for the alerts.

    • Constraints: Allowable values are: and, or.
    alerts GetLogsAlertConditionFlowStageGroupAlert[]
    (List) List of alerts. Nested schema for alerts:
    nextOp string
    (String) Operator for the alerts.

    • Constraints: Allowable values are: and, or.
    alerts Sequence[GetLogsAlertConditionFlowStageGroupAlert]
    (List) List of alerts. Nested schema for alerts:
    next_op str
    (String) Operator for the alerts.

    • Constraints: Allowable values are: and, or.
    alerts List<Property Map>
    (List) List of alerts. Nested schema for alerts:
    nextOp String
    (String) Operator for the alerts.

    • Constraints: Allowable values are: and, or.

    GetLogsAlertConditionFlowStageGroupAlert

    Op string
    (String) Operator for the alerts.

    • Constraints: Allowable values are: and, or.
    Values List<GetLogsAlertConditionFlowStageGroupAlertValue>
    (List) List of alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for values:
    Op string
    (String) Operator for the alerts.

    • Constraints: Allowable values are: and, or.
    Values []GetLogsAlertConditionFlowStageGroupAlertValue
    (List) List of alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for values:
    op String
    (String) Operator for the alerts.

    • Constraints: Allowable values are: and, or.
    values List<GetLogsAlertConditionFlowStageGroupAlertValue>
    (List) List of alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for values:
    op string
    (String) Operator for the alerts.

    • Constraints: Allowable values are: and, or.
    values GetLogsAlertConditionFlowStageGroupAlertValue[]
    (List) List of alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for values:
    op str
    (String) Operator for the alerts.

    • Constraints: Allowable values are: and, or.
    values Sequence[GetLogsAlertConditionFlowStageGroupAlertValue]
    (List) List of alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for values:
    op String
    (String) Operator for the alerts.

    • Constraints: Allowable values are: and, or.
    values List<Property Map>
    (List) List of alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for values:

    GetLogsAlertConditionFlowStageGroupAlertValue

    Id string
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    Not bool
    (Boolean) The alert not.
    Id string
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    Not bool
    (Boolean) The alert not.
    id String
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    not Boolean
    (Boolean) The alert not.
    id string
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    not boolean
    (Boolean) The alert not.
    id str
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    not_ bool
    (Boolean) The alert not.
    id String
    (String) The alert ID.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    not Boolean
    (Boolean) The alert not.

    GetLogsAlertConditionFlowStageTimeframe

    Ms double
    (Integer) Timeframe in milliseconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    Ms float64
    (Integer) Timeframe in milliseconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    ms Double
    (Integer) Timeframe in milliseconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    ms number
    (Integer) Timeframe in milliseconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    ms float
    (Integer) Timeframe in milliseconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    ms Number
    (Integer) Timeframe in milliseconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.

    GetLogsAlertConditionLessThan

    Parameters List<GetLogsAlertConditionLessThanParameter>
    (List) The Less than alert condition parameters. Nested schema for parameters:
    Parameters []GetLogsAlertConditionLessThanParameter
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters List<GetLogsAlertConditionLessThanParameter>
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters GetLogsAlertConditionLessThanParameter[]
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters Sequence[GetLogsAlertConditionLessThanParameter]
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters List<Property Map>
    (List) The Less than alert condition parameters. Nested schema for parameters:

    GetLogsAlertConditionLessThanParameter

    CardinalityFields List<string>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    GroupBies List<string>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    IgnoreInfinity bool
    (Boolean) Should the evaluation ignore infinity value.
    MetricAlertParameters List<GetLogsAlertConditionLessThanParameterMetricAlertParameter>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    MetricAlertPromqlParameters List<GetLogsAlertConditionLessThanParameterMetricAlertPromqlParameter>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    RelatedExtendedDatas List<GetLogsAlertConditionLessThanParameterRelatedExtendedData>
    (List) Deadman configuration. Nested schema for related_extended_data:
    RelativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    Threshold double
    (Float) The threshold for the alert condition.
    Timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    CardinalityFields []string
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    GroupBies []string
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    IgnoreInfinity bool
    (Boolean) Should the evaluation ignore infinity value.
    MetricAlertParameters []GetLogsAlertConditionLessThanParameterMetricAlertParameter
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    MetricAlertPromqlParameters []GetLogsAlertConditionLessThanParameterMetricAlertPromqlParameter
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    RelatedExtendedDatas []GetLogsAlertConditionLessThanParameterRelatedExtendedData
    (List) Deadman configuration. Nested schema for related_extended_data:
    RelativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    Threshold float64
    (Float) The threshold for the alert condition.
    Timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields List<String>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity Boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters List<GetLogsAlertConditionLessThanParameterMetricAlertParameter>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters List<GetLogsAlertConditionLessThanParameterMetricAlertPromqlParameter>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas List<GetLogsAlertConditionLessThanParameterRelatedExtendedData>
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe String
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold Double
    (Float) The threshold for the alert condition.
    timeframe String
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields string[]
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies string[]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters GetLogsAlertConditionLessThanParameterMetricAlertParameter[]
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters GetLogsAlertConditionLessThanParameterMetricAlertPromqlParameter[]
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas GetLogsAlertConditionLessThanParameterRelatedExtendedData[]
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold number
    (Float) The threshold for the alert condition.
    timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinality_fields Sequence[str]
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    group_bies Sequence[str]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignore_infinity bool
    (Boolean) Should the evaluation ignore infinity value.
    metric_alert_parameters Sequence[GetLogsAlertConditionLessThanParameterMetricAlertParameter]
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metric_alert_promql_parameters Sequence[GetLogsAlertConditionLessThanParameterMetricAlertPromqlParameter]
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    related_extended_datas Sequence[GetLogsAlertConditionLessThanParameterRelatedExtendedData]
    (List) Deadman configuration. Nested schema for related_extended_data:
    relative_timeframe str
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold float
    (Float) The threshold for the alert condition.
    timeframe str
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields List<String>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity Boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters List<Property Map>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters List<Property Map>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas List<Property Map>
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe String
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold Number
    (Float) The threshold for the alert condition.
    timeframe String
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.

    GetLogsAlertConditionLessThanParameterMetricAlertParameter

    ArithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    ArithmeticOperatorModifier double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    MetricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    MetricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    NonNullPercentage double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SampleThresholdPercentage double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    ArithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    ArithmeticOperatorModifier float64
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    MetricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    MetricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    NonNullPercentage float64
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SampleThresholdPercentage float64
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperator String
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier Double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField String
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource String
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage Double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage Double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.
    arithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues boolean
    (Boolean) Should we swap null values with zero.
    arithmetic_operator str
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmetic_operator_modifier float
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metric_field str
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metric_source str
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    non_null_percentage float
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sample_threshold_percentage float
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swap_null_values bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperator String
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier Number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField String
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource String
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage Number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage Number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.

    GetLogsAlertConditionLessThanParameterMetricAlertPromqlParameter

    ArithmeticOperatorModifier double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NonNullPercentage double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    PromqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SampleThresholdPercentage double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    ArithmeticOperatorModifier float64
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NonNullPercentage float64
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    PromqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SampleThresholdPercentage float64
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier Double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage Double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText String
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage Double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues boolean
    (Boolean) Should we swap null values with zero.
    arithmetic_operator_modifier float
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    non_null_percentage float
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promql_text str
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sample_threshold_percentage float
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swap_null_values bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier Number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage Number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText String
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage Number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.

    GetLogsAlertConditionLessThanParameterRelatedExtendedData

    CleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    ShouldTriggerDeadman bool
    (Boolean) Should we trigger deadman.
    CleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    ShouldTriggerDeadman bool
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration String
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman Boolean
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman boolean
    (Boolean) Should we trigger deadman.
    cleanup_deadman_duration str
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    should_trigger_deadman bool
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration String
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman Boolean
    (Boolean) Should we trigger deadman.

    GetLogsAlertConditionLessThanUsual

    Parameters List<GetLogsAlertConditionLessThanUsualParameter>
    (List) The Less than alert condition parameters. Nested schema for parameters:
    Parameters []GetLogsAlertConditionLessThanUsualParameter
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters List<GetLogsAlertConditionLessThanUsualParameter>
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters GetLogsAlertConditionLessThanUsualParameter[]
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters Sequence[GetLogsAlertConditionLessThanUsualParameter]
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters List<Property Map>
    (List) The Less than alert condition parameters. Nested schema for parameters:

    GetLogsAlertConditionLessThanUsualParameter

    CardinalityFields List<string>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    GroupBies List<string>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    IgnoreInfinity bool
    (Boolean) Should the evaluation ignore infinity value.
    MetricAlertParameters List<GetLogsAlertConditionLessThanUsualParameterMetricAlertParameter>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    MetricAlertPromqlParameters List<GetLogsAlertConditionLessThanUsualParameterMetricAlertPromqlParameter>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    RelatedExtendedDatas List<GetLogsAlertConditionLessThanUsualParameterRelatedExtendedData>
    (List) Deadman configuration. Nested schema for related_extended_data:
    RelativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    Threshold double
    (Float) The threshold for the alert condition.
    Timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    CardinalityFields []string
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    GroupBies []string
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    IgnoreInfinity bool
    (Boolean) Should the evaluation ignore infinity value.
    MetricAlertParameters []GetLogsAlertConditionLessThanUsualParameterMetricAlertParameter
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    MetricAlertPromqlParameters []GetLogsAlertConditionLessThanUsualParameterMetricAlertPromqlParameter
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    RelatedExtendedDatas []GetLogsAlertConditionLessThanUsualParameterRelatedExtendedData
    (List) Deadman configuration. Nested schema for related_extended_data:
    RelativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    Threshold float64
    (Float) The threshold for the alert condition.
    Timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields List<String>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity Boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters List<GetLogsAlertConditionLessThanUsualParameterMetricAlertParameter>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters List<GetLogsAlertConditionLessThanUsualParameterMetricAlertPromqlParameter>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas List<GetLogsAlertConditionLessThanUsualParameterRelatedExtendedData>
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe String
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold Double
    (Float) The threshold for the alert condition.
    timeframe String
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields string[]
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies string[]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters GetLogsAlertConditionLessThanUsualParameterMetricAlertParameter[]
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters GetLogsAlertConditionLessThanUsualParameterMetricAlertPromqlParameter[]
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas GetLogsAlertConditionLessThanUsualParameterRelatedExtendedData[]
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold number
    (Float) The threshold for the alert condition.
    timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinality_fields Sequence[str]
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    group_bies Sequence[str]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignore_infinity bool
    (Boolean) Should the evaluation ignore infinity value.
    metric_alert_parameters Sequence[GetLogsAlertConditionLessThanUsualParameterMetricAlertParameter]
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metric_alert_promql_parameters Sequence[GetLogsAlertConditionLessThanUsualParameterMetricAlertPromqlParameter]
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    related_extended_datas Sequence[GetLogsAlertConditionLessThanUsualParameterRelatedExtendedData]
    (List) Deadman configuration. Nested schema for related_extended_data:
    relative_timeframe str
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold float
    (Float) The threshold for the alert condition.
    timeframe str
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields List<String>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity Boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters List<Property Map>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters List<Property Map>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas List<Property Map>
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe String
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold Number
    (Float) The threshold for the alert condition.
    timeframe String
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.

    GetLogsAlertConditionLessThanUsualParameterMetricAlertParameter

    ArithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    ArithmeticOperatorModifier double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    MetricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    MetricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    NonNullPercentage double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SampleThresholdPercentage double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    ArithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    ArithmeticOperatorModifier float64
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    MetricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    MetricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    NonNullPercentage float64
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SampleThresholdPercentage float64
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperator String
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier Double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField String
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource String
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage Double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage Double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.
    arithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues boolean
    (Boolean) Should we swap null values with zero.
    arithmetic_operator str
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmetic_operator_modifier float
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metric_field str
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metric_source str
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    non_null_percentage float
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sample_threshold_percentage float
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swap_null_values bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperator String
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier Number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField String
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource String
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage Number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage Number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.

    GetLogsAlertConditionLessThanUsualParameterMetricAlertPromqlParameter

    ArithmeticOperatorModifier double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NonNullPercentage double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    PromqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SampleThresholdPercentage double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    ArithmeticOperatorModifier float64
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NonNullPercentage float64
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    PromqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SampleThresholdPercentage float64
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier Double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage Double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText String
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage Double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues boolean
    (Boolean) Should we swap null values with zero.
    arithmetic_operator_modifier float
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    non_null_percentage float
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promql_text str
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sample_threshold_percentage float
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swap_null_values bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier Number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage Number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText String
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage Number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.

    GetLogsAlertConditionLessThanUsualParameterRelatedExtendedData

    CleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    ShouldTriggerDeadman bool
    (Boolean) Should we trigger deadman.
    CleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    ShouldTriggerDeadman bool
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration String
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman Boolean
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman boolean
    (Boolean) Should we trigger deadman.
    cleanup_deadman_duration str
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    should_trigger_deadman bool
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration String
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman Boolean
    (Boolean) Should we trigger deadman.

    GetLogsAlertConditionMoreThan

    EvaluationWindow string
    (String) The evaluation window for the alert condition.

    • Constraints: Allowable values are: rolling_or_unspecified, dynamic.
    Parameters List<GetLogsAlertConditionMoreThanParameter>
    (List) The Less than alert condition parameters. Nested schema for parameters:
    EvaluationWindow string
    (String) The evaluation window for the alert condition.

    • Constraints: Allowable values are: rolling_or_unspecified, dynamic.
    Parameters []GetLogsAlertConditionMoreThanParameter
    (List) The Less than alert condition parameters. Nested schema for parameters:
    evaluationWindow String
    (String) The evaluation window for the alert condition.

    • Constraints: Allowable values are: rolling_or_unspecified, dynamic.
    parameters List<GetLogsAlertConditionMoreThanParameter>
    (List) The Less than alert condition parameters. Nested schema for parameters:
    evaluationWindow string
    (String) The evaluation window for the alert condition.

    • Constraints: Allowable values are: rolling_or_unspecified, dynamic.
    parameters GetLogsAlertConditionMoreThanParameter[]
    (List) The Less than alert condition parameters. Nested schema for parameters:
    evaluation_window str
    (String) The evaluation window for the alert condition.

    • Constraints: Allowable values are: rolling_or_unspecified, dynamic.
    parameters Sequence[GetLogsAlertConditionMoreThanParameter]
    (List) The Less than alert condition parameters. Nested schema for parameters:
    evaluationWindow String
    (String) The evaluation window for the alert condition.

    • Constraints: Allowable values are: rolling_or_unspecified, dynamic.
    parameters List<Property Map>
    (List) The Less than alert condition parameters. Nested schema for parameters:

    GetLogsAlertConditionMoreThanParameter

    CardinalityFields List<string>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    GroupBies List<string>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    IgnoreInfinity bool
    (Boolean) Should the evaluation ignore infinity value.
    MetricAlertParameters List<GetLogsAlertConditionMoreThanParameterMetricAlertParameter>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    MetricAlertPromqlParameters List<GetLogsAlertConditionMoreThanParameterMetricAlertPromqlParameter>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    RelatedExtendedDatas List<GetLogsAlertConditionMoreThanParameterRelatedExtendedData>
    (List) Deadman configuration. Nested schema for related_extended_data:
    RelativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    Threshold double
    (Float) The threshold for the alert condition.
    Timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    CardinalityFields []string
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    GroupBies []string
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    IgnoreInfinity bool
    (Boolean) Should the evaluation ignore infinity value.
    MetricAlertParameters []GetLogsAlertConditionMoreThanParameterMetricAlertParameter
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    MetricAlertPromqlParameters []GetLogsAlertConditionMoreThanParameterMetricAlertPromqlParameter
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    RelatedExtendedDatas []GetLogsAlertConditionMoreThanParameterRelatedExtendedData
    (List) Deadman configuration. Nested schema for related_extended_data:
    RelativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    Threshold float64
    (Float) The threshold for the alert condition.
    Timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields List<String>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity Boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters List<GetLogsAlertConditionMoreThanParameterMetricAlertParameter>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters List<GetLogsAlertConditionMoreThanParameterMetricAlertPromqlParameter>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas List<GetLogsAlertConditionMoreThanParameterRelatedExtendedData>
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe String
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold Double
    (Float) The threshold for the alert condition.
    timeframe String
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields string[]
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies string[]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters GetLogsAlertConditionMoreThanParameterMetricAlertParameter[]
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters GetLogsAlertConditionMoreThanParameterMetricAlertPromqlParameter[]
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas GetLogsAlertConditionMoreThanParameterRelatedExtendedData[]
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold number
    (Float) The threshold for the alert condition.
    timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinality_fields Sequence[str]
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    group_bies Sequence[str]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignore_infinity bool
    (Boolean) Should the evaluation ignore infinity value.
    metric_alert_parameters Sequence[GetLogsAlertConditionMoreThanParameterMetricAlertParameter]
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metric_alert_promql_parameters Sequence[GetLogsAlertConditionMoreThanParameterMetricAlertPromqlParameter]
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    related_extended_datas Sequence[GetLogsAlertConditionMoreThanParameterRelatedExtendedData]
    (List) Deadman configuration. Nested schema for related_extended_data:
    relative_timeframe str
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold float
    (Float) The threshold for the alert condition.
    timeframe str
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields List<String>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity Boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters List<Property Map>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters List<Property Map>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas List<Property Map>
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe String
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold Number
    (Float) The threshold for the alert condition.
    timeframe String
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.

    GetLogsAlertConditionMoreThanParameterMetricAlertParameter

    ArithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    ArithmeticOperatorModifier double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    MetricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    MetricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    NonNullPercentage double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SampleThresholdPercentage double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    ArithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    ArithmeticOperatorModifier float64
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    MetricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    MetricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    NonNullPercentage float64
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SampleThresholdPercentage float64
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperator String
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier Double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField String
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource String
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage Double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage Double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.
    arithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues boolean
    (Boolean) Should we swap null values with zero.
    arithmetic_operator str
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmetic_operator_modifier float
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metric_field str
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metric_source str
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    non_null_percentage float
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sample_threshold_percentage float
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swap_null_values bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperator String
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier Number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField String
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource String
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage Number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage Number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.

    GetLogsAlertConditionMoreThanParameterMetricAlertPromqlParameter

    ArithmeticOperatorModifier double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NonNullPercentage double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    PromqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SampleThresholdPercentage double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    ArithmeticOperatorModifier float64
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NonNullPercentage float64
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    PromqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SampleThresholdPercentage float64
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier Double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage Double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText String
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage Double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues boolean
    (Boolean) Should we swap null values with zero.
    arithmetic_operator_modifier float
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    non_null_percentage float
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promql_text str
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sample_threshold_percentage float
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swap_null_values bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier Number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage Number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText String
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage Number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.

    GetLogsAlertConditionMoreThanParameterRelatedExtendedData

    CleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    ShouldTriggerDeadman bool
    (Boolean) Should we trigger deadman.
    CleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    ShouldTriggerDeadman bool
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration String
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman Boolean
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman boolean
    (Boolean) Should we trigger deadman.
    cleanup_deadman_duration str
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    should_trigger_deadman bool
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration String
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman Boolean
    (Boolean) Should we trigger deadman.

    GetLogsAlertConditionMoreThanUsual

    Parameters List<GetLogsAlertConditionMoreThanUsualParameter>
    (List) The Less than alert condition parameters. Nested schema for parameters:
    Parameters []GetLogsAlertConditionMoreThanUsualParameter
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters List<GetLogsAlertConditionMoreThanUsualParameter>
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters GetLogsAlertConditionMoreThanUsualParameter[]
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters Sequence[GetLogsAlertConditionMoreThanUsualParameter]
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters List<Property Map>
    (List) The Less than alert condition parameters. Nested schema for parameters:

    GetLogsAlertConditionMoreThanUsualParameter

    CardinalityFields List<string>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    GroupBies List<string>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    IgnoreInfinity bool
    (Boolean) Should the evaluation ignore infinity value.
    MetricAlertParameters List<GetLogsAlertConditionMoreThanUsualParameterMetricAlertParameter>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    MetricAlertPromqlParameters List<GetLogsAlertConditionMoreThanUsualParameterMetricAlertPromqlParameter>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    RelatedExtendedDatas List<GetLogsAlertConditionMoreThanUsualParameterRelatedExtendedData>
    (List) Deadman configuration. Nested schema for related_extended_data:
    RelativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    Threshold double
    (Float) The threshold for the alert condition.
    Timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    CardinalityFields []string
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    GroupBies []string
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    IgnoreInfinity bool
    (Boolean) Should the evaluation ignore infinity value.
    MetricAlertParameters []GetLogsAlertConditionMoreThanUsualParameterMetricAlertParameter
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    MetricAlertPromqlParameters []GetLogsAlertConditionMoreThanUsualParameterMetricAlertPromqlParameter
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    RelatedExtendedDatas []GetLogsAlertConditionMoreThanUsualParameterRelatedExtendedData
    (List) Deadman configuration. Nested schema for related_extended_data:
    RelativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    Threshold float64
    (Float) The threshold for the alert condition.
    Timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields List<String>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity Boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters List<GetLogsAlertConditionMoreThanUsualParameterMetricAlertParameter>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters List<GetLogsAlertConditionMoreThanUsualParameterMetricAlertPromqlParameter>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas List<GetLogsAlertConditionMoreThanUsualParameterRelatedExtendedData>
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe String
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold Double
    (Float) The threshold for the alert condition.
    timeframe String
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields string[]
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies string[]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters GetLogsAlertConditionMoreThanUsualParameterMetricAlertParameter[]
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters GetLogsAlertConditionMoreThanUsualParameterMetricAlertPromqlParameter[]
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas GetLogsAlertConditionMoreThanUsualParameterRelatedExtendedData[]
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold number
    (Float) The threshold for the alert condition.
    timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinality_fields Sequence[str]
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    group_bies Sequence[str]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignore_infinity bool
    (Boolean) Should the evaluation ignore infinity value.
    metric_alert_parameters Sequence[GetLogsAlertConditionMoreThanUsualParameterMetricAlertParameter]
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metric_alert_promql_parameters Sequence[GetLogsAlertConditionMoreThanUsualParameterMetricAlertPromqlParameter]
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    related_extended_datas Sequence[GetLogsAlertConditionMoreThanUsualParameterRelatedExtendedData]
    (List) Deadman configuration. Nested schema for related_extended_data:
    relative_timeframe str
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold float
    (Float) The threshold for the alert condition.
    timeframe str
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields List<String>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity Boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters List<Property Map>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters List<Property Map>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas List<Property Map>
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe String
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold Number
    (Float) The threshold for the alert condition.
    timeframe String
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.

    GetLogsAlertConditionMoreThanUsualParameterMetricAlertParameter

    ArithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    ArithmeticOperatorModifier double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    MetricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    MetricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    NonNullPercentage double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SampleThresholdPercentage double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    ArithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    ArithmeticOperatorModifier float64
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    MetricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    MetricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    NonNullPercentage float64
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SampleThresholdPercentage float64
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperator String
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier Double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField String
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource String
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage Double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage Double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.
    arithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues boolean
    (Boolean) Should we swap null values with zero.
    arithmetic_operator str
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmetic_operator_modifier float
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metric_field str
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metric_source str
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    non_null_percentage float
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sample_threshold_percentage float
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swap_null_values bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperator String
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier Number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField String
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource String
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage Number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage Number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.

    GetLogsAlertConditionMoreThanUsualParameterMetricAlertPromqlParameter

    ArithmeticOperatorModifier double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NonNullPercentage double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    PromqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SampleThresholdPercentage double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    ArithmeticOperatorModifier float64
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NonNullPercentage float64
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    PromqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SampleThresholdPercentage float64
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier Double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage Double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText String
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage Double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues boolean
    (Boolean) Should we swap null values with zero.
    arithmetic_operator_modifier float
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    non_null_percentage float
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promql_text str
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sample_threshold_percentage float
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swap_null_values bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier Number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage Number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText String
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage Number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.

    GetLogsAlertConditionMoreThanUsualParameterRelatedExtendedData

    CleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    ShouldTriggerDeadman bool
    (Boolean) Should we trigger deadman.
    CleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    ShouldTriggerDeadman bool
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration String
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman Boolean
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman boolean
    (Boolean) Should we trigger deadman.
    cleanup_deadman_duration str
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    should_trigger_deadman bool
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration String
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman Boolean
    (Boolean) Should we trigger deadman.

    GetLogsAlertConditionNewValue

    Parameters List<GetLogsAlertConditionNewValueParameter>
    (List) The Less than alert condition parameters. Nested schema for parameters:
    Parameters []GetLogsAlertConditionNewValueParameter
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters List<GetLogsAlertConditionNewValueParameter>
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters GetLogsAlertConditionNewValueParameter[]
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters Sequence[GetLogsAlertConditionNewValueParameter]
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters List<Property Map>
    (List) The Less than alert condition parameters. Nested schema for parameters:

    GetLogsAlertConditionNewValueParameter

    CardinalityFields List<string>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    GroupBies List<string>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    IgnoreInfinity bool
    (Boolean) Should the evaluation ignore infinity value.
    MetricAlertParameters List<GetLogsAlertConditionNewValueParameterMetricAlertParameter>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    MetricAlertPromqlParameters List<GetLogsAlertConditionNewValueParameterMetricAlertPromqlParameter>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    RelatedExtendedDatas List<GetLogsAlertConditionNewValueParameterRelatedExtendedData>
    (List) Deadman configuration. Nested schema for related_extended_data:
    RelativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    Threshold double
    (Float) The threshold for the alert condition.
    Timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    CardinalityFields []string
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    GroupBies []string
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    IgnoreInfinity bool
    (Boolean) Should the evaluation ignore infinity value.
    MetricAlertParameters []GetLogsAlertConditionNewValueParameterMetricAlertParameter
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    MetricAlertPromqlParameters []GetLogsAlertConditionNewValueParameterMetricAlertPromqlParameter
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    RelatedExtendedDatas []GetLogsAlertConditionNewValueParameterRelatedExtendedData
    (List) Deadman configuration. Nested schema for related_extended_data:
    RelativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    Threshold float64
    (Float) The threshold for the alert condition.
    Timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields List<String>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity Boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters List<GetLogsAlertConditionNewValueParameterMetricAlertParameter>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters List<GetLogsAlertConditionNewValueParameterMetricAlertPromqlParameter>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas List<GetLogsAlertConditionNewValueParameterRelatedExtendedData>
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe String
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold Double
    (Float) The threshold for the alert condition.
    timeframe String
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields string[]
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies string[]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters GetLogsAlertConditionNewValueParameterMetricAlertParameter[]
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters GetLogsAlertConditionNewValueParameterMetricAlertPromqlParameter[]
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas GetLogsAlertConditionNewValueParameterRelatedExtendedData[]
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold number
    (Float) The threshold for the alert condition.
    timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinality_fields Sequence[str]
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    group_bies Sequence[str]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignore_infinity bool
    (Boolean) Should the evaluation ignore infinity value.
    metric_alert_parameters Sequence[GetLogsAlertConditionNewValueParameterMetricAlertParameter]
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metric_alert_promql_parameters Sequence[GetLogsAlertConditionNewValueParameterMetricAlertPromqlParameter]
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    related_extended_datas Sequence[GetLogsAlertConditionNewValueParameterRelatedExtendedData]
    (List) Deadman configuration. Nested schema for related_extended_data:
    relative_timeframe str
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold float
    (Float) The threshold for the alert condition.
    timeframe str
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields List<String>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity Boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters List<Property Map>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters List<Property Map>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas List<Property Map>
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe String
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold Number
    (Float) The threshold for the alert condition.
    timeframe String
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.

    GetLogsAlertConditionNewValueParameterMetricAlertParameter

    ArithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    ArithmeticOperatorModifier double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    MetricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    MetricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    NonNullPercentage double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SampleThresholdPercentage double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    ArithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    ArithmeticOperatorModifier float64
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    MetricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    MetricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    NonNullPercentage float64
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SampleThresholdPercentage float64
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperator String
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier Double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField String
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource String
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage Double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage Double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.
    arithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues boolean
    (Boolean) Should we swap null values with zero.
    arithmetic_operator str
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmetic_operator_modifier float
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metric_field str
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metric_source str
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    non_null_percentage float
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sample_threshold_percentage float
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swap_null_values bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperator String
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier Number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField String
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource String
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage Number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage Number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.

    GetLogsAlertConditionNewValueParameterMetricAlertPromqlParameter

    ArithmeticOperatorModifier double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NonNullPercentage double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    PromqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SampleThresholdPercentage double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    ArithmeticOperatorModifier float64
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NonNullPercentage float64
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    PromqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SampleThresholdPercentage float64
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier Double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage Double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText String
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage Double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues boolean
    (Boolean) Should we swap null values with zero.
    arithmetic_operator_modifier float
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    non_null_percentage float
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promql_text str
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sample_threshold_percentage float
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swap_null_values bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier Number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage Number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText String
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage Number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.

    GetLogsAlertConditionNewValueParameterRelatedExtendedData

    CleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    ShouldTriggerDeadman bool
    (Boolean) Should we trigger deadman.
    CleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    ShouldTriggerDeadman bool
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration String
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman Boolean
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman boolean
    (Boolean) Should we trigger deadman.
    cleanup_deadman_duration str
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    should_trigger_deadman bool
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration String
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman Boolean
    (Boolean) Should we trigger deadman.

    GetLogsAlertConditionUniqueCount

    Parameters List<GetLogsAlertConditionUniqueCountParameter>
    (List) The Less than alert condition parameters. Nested schema for parameters:
    Parameters []GetLogsAlertConditionUniqueCountParameter
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters List<GetLogsAlertConditionUniqueCountParameter>
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters GetLogsAlertConditionUniqueCountParameter[]
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters Sequence[GetLogsAlertConditionUniqueCountParameter]
    (List) The Less than alert condition parameters. Nested schema for parameters:
    parameters List<Property Map>
    (List) The Less than alert condition parameters. Nested schema for parameters:

    GetLogsAlertConditionUniqueCountParameter

    CardinalityFields List<string>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    GroupBies List<string>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    IgnoreInfinity bool
    (Boolean) Should the evaluation ignore infinity value.
    MetricAlertParameters List<GetLogsAlertConditionUniqueCountParameterMetricAlertParameter>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    MetricAlertPromqlParameters List<GetLogsAlertConditionUniqueCountParameterMetricAlertPromqlParameter>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    RelatedExtendedDatas List<GetLogsAlertConditionUniqueCountParameterRelatedExtendedData>
    (List) Deadman configuration. Nested schema for related_extended_data:
    RelativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    Threshold double
    (Float) The threshold for the alert condition.
    Timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    CardinalityFields []string
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    GroupBies []string
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    IgnoreInfinity bool
    (Boolean) Should the evaluation ignore infinity value.
    MetricAlertParameters []GetLogsAlertConditionUniqueCountParameterMetricAlertParameter
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    MetricAlertPromqlParameters []GetLogsAlertConditionUniqueCountParameterMetricAlertPromqlParameter
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    RelatedExtendedDatas []GetLogsAlertConditionUniqueCountParameterRelatedExtendedData
    (List) Deadman configuration. Nested schema for related_extended_data:
    RelativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    Threshold float64
    (Float) The threshold for the alert condition.
    Timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields List<String>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity Boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters List<GetLogsAlertConditionUniqueCountParameterMetricAlertParameter>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters List<GetLogsAlertConditionUniqueCountParameterMetricAlertPromqlParameter>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas List<GetLogsAlertConditionUniqueCountParameterRelatedExtendedData>
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe String
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold Double
    (Float) The threshold for the alert condition.
    timeframe String
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields string[]
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies string[]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters GetLogsAlertConditionUniqueCountParameterMetricAlertParameter[]
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters GetLogsAlertConditionUniqueCountParameterMetricAlertPromqlParameter[]
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas GetLogsAlertConditionUniqueCountParameterRelatedExtendedData[]
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe string
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold number
    (Float) The threshold for the alert condition.
    timeframe string
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinality_fields Sequence[str]
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    group_bies Sequence[str]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignore_infinity bool
    (Boolean) Should the evaluation ignore infinity value.
    metric_alert_parameters Sequence[GetLogsAlertConditionUniqueCountParameterMetricAlertParameter]
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metric_alert_promql_parameters Sequence[GetLogsAlertConditionUniqueCountParameterMetricAlertPromqlParameter]
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    related_extended_datas Sequence[GetLogsAlertConditionUniqueCountParameterRelatedExtendedData]
    (List) Deadman configuration. Nested schema for related_extended_data:
    relative_timeframe str
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold float
    (Float) The threshold for the alert condition.
    timeframe str
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.
    cardinalityFields List<String>
    (List) Cardinality fields for unique count alert.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 4096 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    ignoreInfinity Boolean
    (Boolean) Should the evaluation ignore infinity value.
    metricAlertParameters List<Property Map>
    (List) The lucene metric alert parameters if it is a lucene metric alert. Nested schema for metric_alert_parameters:
    metricAlertPromqlParameters List<Property Map>
    (List) The promql metric alert parameters if is is a promql metric alert. Nested schema for metric_alert_promql_parameters:
    relatedExtendedDatas List<Property Map>
    (List) Deadman configuration. Nested schema for related_extended_data:
    relativeTimeframe String
    (String) The relative timeframe for time relative alerts.

    • Constraints: Allowable values are: hour_or_unspecified, day, week, month.
    threshold Number
    (Float) The threshold for the alert condition.
    timeframe String
    (String) The timeframe for the alert condition.

    • Constraints: Allowable values are: timeframe_5_min_or_unspecified, timeframe_10_min, timeframe_20_min, timeframe_30_min, timeframe_1_h, timeframe_2_h, timeframe_3_h, timeframe_4_h, timeframe_6_h, timeframe_12_h, timeframe_24_h, timeframe_48_h, timeframe_72_h, timeframe_1_w, timeframe_1_m, timeframe_2_m, timeframe_3_m, timeframe_15_min, timeframe_1_min, timeframe_2_min, timeframe_36_h.

    GetLogsAlertConditionUniqueCountParameterMetricAlertParameter

    ArithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    ArithmeticOperatorModifier double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    MetricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    MetricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    NonNullPercentage double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SampleThresholdPercentage double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    ArithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    ArithmeticOperatorModifier float64
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    MetricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    MetricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    NonNullPercentage float64
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SampleThresholdPercentage float64
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperator String
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier Double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField String
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource String
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage Double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage Double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.
    arithmeticOperator string
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField string
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource string
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues boolean
    (Boolean) Should we swap null values with zero.
    arithmetic_operator str
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmetic_operator_modifier float
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metric_field str
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metric_source str
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    non_null_percentage float
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sample_threshold_percentage float
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swap_null_values bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperator String
    (String) The arithmetic operator of the metric promql alert.

    • Constraints: Allowable values are: avg_or_unspecified, min, max, sum, count, percentile.
    arithmeticOperatorModifier Number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    metricField String
    (String) The metric field of the metric alert.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    metricSource String
    (String) The metric source of the metric alert.

    • Constraints: Allowable values are: logs2metrics_or_unspecified, prometheus.
    nonNullPercentage Number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    sampleThresholdPercentage Number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.

    GetLogsAlertConditionUniqueCountParameterMetricAlertPromqlParameter

    ArithmeticOperatorModifier double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NonNullPercentage double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    PromqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SampleThresholdPercentage double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    ArithmeticOperatorModifier float64
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NonNullPercentage float64
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    PromqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    SampleThresholdPercentage float64
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    SwapNullValues bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier Double
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage Double
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText String
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage Double
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText string
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues boolean
    (Boolean) Should we swap null values with zero.
    arithmetic_operator_modifier float
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    non_null_percentage float
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promql_text str
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sample_threshold_percentage float
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swap_null_values bool
    (Boolean) Should we swap null values with zero.
    arithmeticOperatorModifier Number
    (Integer) The arithmetic operator of the metric promql alert.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    nonNullPercentage Number
    (Integer) Non null percentage of the evaluation.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    promqlText String
    (String) The promql text of the metric alert by fields for the alert condition.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    sampleThresholdPercentage Number
    (Integer) The threshold percentage.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    swapNullValues Boolean
    (Boolean) Should we swap null values with zero.

    GetLogsAlertConditionUniqueCountParameterRelatedExtendedData

    CleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    ShouldTriggerDeadman bool
    (Boolean) Should we trigger deadman.
    CleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    ShouldTriggerDeadman bool
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration String
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman Boolean
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration string
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman boolean
    (Boolean) Should we trigger deadman.
    cleanup_deadman_duration str
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    should_trigger_deadman bool
    (Boolean) Should we trigger deadman.
    cleanupDeadmanDuration String
    (String) Cleanup deadman duration.

    • Constraints: Allowable values are: cleanup_deadman_duration_never_or_unspecified, cleanup_deadman_duration_5min, cleanup_deadman_duration_10min, cleanup_deadman_duration_1h, cleanup_deadman_duration_2h, cleanup_deadman_duration_6h, cleanup_deadman_duration_12h, cleanup_deadman_duration_24h.
    shouldTriggerDeadman Boolean
    (Boolean) Should we trigger deadman.

    GetLogsAlertExpiration

    Day double
    (Integer) Day of the month.
    Month double
    (Integer) Month of the year.
    Year double
    (Integer) Year.
    Day float64
    (Integer) Day of the month.
    Month float64
    (Integer) Month of the year.
    Year float64
    (Integer) Year.
    day Double
    (Integer) Day of the month.
    month Double
    (Integer) Month of the year.
    year Double
    (Integer) Year.
    day number
    (Integer) Day of the month.
    month number
    (Integer) Month of the year.
    year number
    (Integer) Year.
    day float
    (Integer) Day of the month.
    month float
    (Integer) Month of the year.
    year float
    (Integer) Year.
    day Number
    (Integer) Day of the month.
    month Number
    (Integer) Month of the year.
    year Number
    (Integer) Year.

    GetLogsAlertFilter

    Alias string
    (String) The alias of the filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    FilterType string
    (String) The type of the filter.

    • Constraints: Allowable values are: text_or_unspecified, template, ratio, unique_count, time_relative, metric, flow.
    Metadatas List<GetLogsAlertFilterMetadata>
    (List) The metadata filters. Nested schema for metadata:
    RatioAlerts List<GetLogsAlertFilterRatioAlert>
    (List) The ratio alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for ratio_alerts:
    Severities List<string>
    (List) The severity of the logs to filter.

    • Constraints: Allowable list items are: debug_or_unspecified, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
    Text string
    (String) The text to filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    Alias string
    (String) The alias of the filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    FilterType string
    (String) The type of the filter.

    • Constraints: Allowable values are: text_or_unspecified, template, ratio, unique_count, time_relative, metric, flow.
    Metadatas []GetLogsAlertFilterMetadata
    (List) The metadata filters. Nested schema for metadata:
    RatioAlerts []GetLogsAlertFilterRatioAlert
    (List) The ratio alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for ratio_alerts:
    Severities []string
    (List) The severity of the logs to filter.

    • Constraints: Allowable list items are: debug_or_unspecified, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
    Text string
    (String) The text to filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    alias String
    (String) The alias of the filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    filterType String
    (String) The type of the filter.

    • Constraints: Allowable values are: text_or_unspecified, template, ratio, unique_count, time_relative, metric, flow.
    metadatas List<GetLogsAlertFilterMetadata>
    (List) The metadata filters. Nested schema for metadata:
    ratioAlerts List<GetLogsAlertFilterRatioAlert>
    (List) The ratio alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for ratio_alerts:
    severities List<String>
    (List) The severity of the logs to filter.

    • Constraints: Allowable list items are: debug_or_unspecified, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
    text String
    (String) The text to filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    alias string
    (String) The alias of the filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    filterType string
    (String) The type of the filter.

    • Constraints: Allowable values are: text_or_unspecified, template, ratio, unique_count, time_relative, metric, flow.
    metadatas GetLogsAlertFilterMetadata[]
    (List) The metadata filters. Nested schema for metadata:
    ratioAlerts GetLogsAlertFilterRatioAlert[]
    (List) The ratio alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for ratio_alerts:
    severities string[]
    (List) The severity of the logs to filter.

    • Constraints: Allowable list items are: debug_or_unspecified, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
    text string
    (String) The text to filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    alias str
    (String) The alias of the filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    filter_type str
    (String) The type of the filter.

    • Constraints: Allowable values are: text_or_unspecified, template, ratio, unique_count, time_relative, metric, flow.
    metadatas Sequence[GetLogsAlertFilterMetadata]
    (List) The metadata filters. Nested schema for metadata:
    ratio_alerts Sequence[GetLogsAlertFilterRatioAlert]
    (List) The ratio alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for ratio_alerts:
    severities Sequence[str]
    (List) The severity of the logs to filter.

    • Constraints: Allowable list items are: debug_or_unspecified, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
    text str
    (String) The text to filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    alias String
    (String) The alias of the filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    filterType String
    (String) The type of the filter.

    • Constraints: Allowable values are: text_or_unspecified, template, ratio, unique_count, time_relative, metric, flow.
    metadatas List<Property Map>
    (List) The metadata filters. Nested schema for metadata:
    ratioAlerts List<Property Map>
    (List) The ratio alerts.

    • Constraints: The maximum length is 4096 items. The minimum length is 0 items. Nested schema for ratio_alerts:
    severities List<String>
    (List) The severity of the logs to filter.

    • Constraints: Allowable list items are: debug_or_unspecified, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
    text String
    (String) The text to filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.

    GetLogsAlertFilterMetadata

    Applications List<string>
    (List) The applications to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    Subsystems List<string>
    (List) The subsystems to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    Applications []string
    (List) The applications to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    Subsystems []string
    (List) The subsystems to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    applications List<String>
    (List) The applications to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    subsystems List<String>
    (List) The subsystems to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    applications string[]
    (List) The applications to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    subsystems string[]
    (List) The subsystems to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    applications Sequence[str]
    (List) The applications to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    subsystems Sequence[str]
    (List) The subsystems to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    applications List<String>
    (List) The applications to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    subsystems List<String>
    (List) The subsystems to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.

    GetLogsAlertFilterRatioAlert

    Alias string
    (String) The alias of the filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    Applications List<string>
    (List) The applications to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    GroupBies List<string>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    Severities List<string>
    (List) The severity of the logs to filter.

    • Constraints: Allowable list items are: debug_or_unspecified, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
    Subsystems List<string>
    (List) The subsystems to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    Text string
    (String) The text to filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    Alias string
    (String) The alias of the filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    Applications []string
    (List) The applications to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    GroupBies []string
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    Severities []string
    (List) The severity of the logs to filter.

    • Constraints: Allowable list items are: debug_or_unspecified, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
    Subsystems []string
    (List) The subsystems to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    Text string
    (String) The text to filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    alias String
    (String) The alias of the filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    applications List<String>
    (List) The applications to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    severities List<String>
    (List) The severity of the logs to filter.

    • Constraints: Allowable list items are: debug_or_unspecified, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
    subsystems List<String>
    (List) The subsystems to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    text String
    (String) The text to filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    alias string
    (String) The alias of the filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    applications string[]
    (List) The applications to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    groupBies string[]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    severities string[]
    (List) The severity of the logs to filter.

    • Constraints: Allowable list items are: debug_or_unspecified, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
    subsystems string[]
    (List) The subsystems to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    text string
    (String) The text to filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    alias str
    (String) The alias of the filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    applications Sequence[str]
    (List) The applications to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    group_bies Sequence[str]
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    severities Sequence[str]
    (List) The severity of the logs to filter.

    • Constraints: Allowable list items are: debug_or_unspecified, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
    subsystems Sequence[str]
    (List) The subsystems to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    text str
    (String) The text to filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    alias String
    (String) The alias of the filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    applications List<String>
    (List) The applications to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    groupBies List<String>
    (List) The group by fields.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    severities List<String>
    (List) The severity of the logs to filter.

    • Constraints: Allowable list items are: debug_or_unspecified, verbose, info, warning, error, critical. The maximum length is 4096 items. The minimum length is 0 items.
    subsystems List<String>
    (List) The subsystems to filter.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 100 items. The minimum length is 0 items.
    text String
    (String) The text to filter.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.

    GetLogsAlertIncidentSetting

    NotifyOn string
    (String) Notify on setting.

    • Constraints: Allowable values are: triggered_only, triggered_and_resolved.
    RetriggeringPeriodSeconds double
    (Integer) Retriggering period of the alert in seconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    UseAsNotificationSettings bool
    (Boolean) Use these settings for all notificaion webhook.
    NotifyOn string
    (String) Notify on setting.

    • Constraints: Allowable values are: triggered_only, triggered_and_resolved.
    RetriggeringPeriodSeconds float64
    (Integer) Retriggering period of the alert in seconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    UseAsNotificationSettings bool
    (Boolean) Use these settings for all notificaion webhook.
    notifyOn String
    (String) Notify on setting.

    • Constraints: Allowable values are: triggered_only, triggered_and_resolved.
    retriggeringPeriodSeconds Double
    (Integer) Retriggering period of the alert in seconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    useAsNotificationSettings Boolean
    (Boolean) Use these settings for all notificaion webhook.
    notifyOn string
    (String) Notify on setting.

    • Constraints: Allowable values are: triggered_only, triggered_and_resolved.
    retriggeringPeriodSeconds number
    (Integer) Retriggering period of the alert in seconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    useAsNotificationSettings boolean
    (Boolean) Use these settings for all notificaion webhook.
    notify_on str
    (String) Notify on setting.

    • Constraints: Allowable values are: triggered_only, triggered_and_resolved.
    retriggering_period_seconds float
    (Integer) Retriggering period of the alert in seconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    use_as_notification_settings bool
    (Boolean) Use these settings for all notificaion webhook.
    notifyOn String
    (String) Notify on setting.

    • Constraints: Allowable values are: triggered_only, triggered_and_resolved.
    retriggeringPeriodSeconds Number
    (Integer) Retriggering period of the alert in seconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    useAsNotificationSettings Boolean
    (Boolean) Use these settings for all notificaion webhook.

    GetLogsAlertMetaLabel

    Key string
    (String) The key of the label.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    Value string
    (String) The value of the label.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    Key string
    (String) The key of the label.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    Value string
    (String) The value of the label.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    key String
    (String) The key of the label.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    value String
    (String) The value of the label.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    key string
    (String) The key of the label.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    value string
    (String) The value of the label.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    key str
    (String) The key of the label.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    value str
    (String) The value of the label.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    key String
    (String) The key of the label.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.
    value String
    (String) The value of the label.

    • Constraints: The maximum length is 4096 characters. The minimum length is 1 character. The value must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$.

    GetLogsAlertNotificationGroup

    GroupByFields List<string>
    (List) Group by fields to group the values by.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 20 items. The minimum length is 0 items.
    Notifications List<GetLogsAlertNotificationGroupNotification>
    (List) Webhook target settings for the the notification.

    • Constraints: The maximum length is 20 items. The minimum length is 0 items. Nested schema for notifications:
    GroupByFields []string
    (List) Group by fields to group the values by.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 20 items. The minimum length is 0 items.
    Notifications []GetLogsAlertNotificationGroupNotification
    (List) Webhook target settings for the the notification.

    • Constraints: The maximum length is 20 items. The minimum length is 0 items. Nested schema for notifications:
    groupByFields List<String>
    (List) Group by fields to group the values by.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 20 items. The minimum length is 0 items.
    notifications List<GetLogsAlertNotificationGroupNotification>
    (List) Webhook target settings for the the notification.

    • Constraints: The maximum length is 20 items. The minimum length is 0 items. Nested schema for notifications:
    groupByFields string[]
    (List) Group by fields to group the values by.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 20 items. The minimum length is 0 items.
    notifications GetLogsAlertNotificationGroupNotification[]
    (List) Webhook target settings for the the notification.

    • Constraints: The maximum length is 20 items. The minimum length is 0 items. Nested schema for notifications:
    group_by_fields Sequence[str]
    (List) Group by fields to group the values by.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 20 items. The minimum length is 0 items.
    notifications Sequence[GetLogsAlertNotificationGroupNotification]
    (List) Webhook target settings for the the notification.

    • Constraints: The maximum length is 20 items. The minimum length is 0 items. Nested schema for notifications:
    groupByFields List<String>
    (List) Group by fields to group the values by.

    • Constraints: The list items must match regular expression ^[\\p{L}\\p{N}\\p{P}\\p{Z}\\p{S}\\p{M}]+$. The maximum length is 20 items. The minimum length is 0 items.
    notifications List<Property Map>
    (List) Webhook target settings for the the notification.

    • Constraints: The maximum length is 20 items. The minimum length is 0 items. Nested schema for notifications:

    GetLogsAlertNotificationGroupNotification

    IntegrationId double
    (Integer) Integration ID.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NotifyOn string
    (String) Notify on setting.

    • Constraints: Allowable values are: triggered_only, triggered_and_resolved.
    Recipients List<GetLogsAlertNotificationGroupNotificationRecipient>
    (List) Recipients. Nested schema for recipients:
    RetriggeringPeriodSeconds double
    (Integer) Retriggering period of the alert in seconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    IntegrationId float64
    (Integer) Integration ID.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    NotifyOn string
    (String) Notify on setting.

    • Constraints: Allowable values are: triggered_only, triggered_and_resolved.
    Recipients []GetLogsAlertNotificationGroupNotificationRecipient
    (List) Recipients. Nested schema for recipients:
    RetriggeringPeriodSeconds float64
    (Integer) Retriggering period of the alert in seconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    integrationId Double
    (Integer) Integration ID.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    notifyOn String
    (String) Notify on setting.

    • Constraints: Allowable values are: triggered_only, triggered_and_resolved.
    recipients List<GetLogsAlertNotificationGroupNotificationRecipient>
    (List) Recipients. Nested schema for recipients:
    retriggeringPeriodSeconds Double
    (Integer) Retriggering period of the alert in seconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    integrationId number
    (Integer) Integration ID.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    notifyOn string
    (String) Notify on setting.

    • Constraints: Allowable values are: triggered_only, triggered_and_resolved.
    recipients GetLogsAlertNotificationGroupNotificationRecipient[]
    (List) Recipients. Nested schema for recipients:
    retriggeringPeriodSeconds number
    (Integer) Retriggering period of the alert in seconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    integration_id float
    (Integer) Integration ID.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    notify_on str
    (String) Notify on setting.

    • Constraints: Allowable values are: triggered_only, triggered_and_resolved.
    recipients Sequence[GetLogsAlertNotificationGroupNotificationRecipient]
    (List) Recipients. Nested schema for recipients:
    retriggering_period_seconds float
    (Integer) Retriggering period of the alert in seconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    integrationId Number
    (Integer) Integration ID.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.
    notifyOn String
    (String) Notify on setting.

    • Constraints: Allowable values are: triggered_only, triggered_and_resolved.
    recipients List<Property Map>
    (List) Recipients. Nested schema for recipients:
    retriggeringPeriodSeconds Number
    (Integer) Retriggering period of the alert in seconds.

    • Constraints: The maximum value is 4294967295. The minimum value is 0.

    GetLogsAlertNotificationGroupNotificationRecipient

    Emails List<string>
    (List) Email addresses.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$/. The maximum length is 20 items. The minimum length is 0 items.
    Emails []string
    (List) Email addresses.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$/. The maximum length is 20 items. The minimum length is 0 items.
    emails List<String>
    (List) Email addresses.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$/. The maximum length is 20 items. The minimum length is 0 items.
    emails string[]
    (List) Email addresses.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$/. The maximum length is 20 items. The minimum length is 0 items.
    emails Sequence[str]
    (List) Email addresses.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$/. The maximum length is 20 items. The minimum length is 0 items.
    emails List<String>
    (List) Email addresses.

    • Constraints: The list items must match regular expression /^[a-zA-Z0-9._%+-]+@[a-zA-Z0-9.-]+\\.[a-zA-Z]{2,}$/. The maximum length is 20 items. The minimum length is 0 items.

    Package Details

    Repository
    ibm ibm-cloud/terraform-provider-ibm
    License
    Notes
    This Pulumi package is based on the ibm Terraform Provider.
    ibm logo
    ibm 1.78.0 published on Wednesday, Apr 30, 2025 by ibm-cloud