avi.Alertconfig
Explore with Pulumi AI
<!–
Copyright 2021 VMware, Inc.
SPDX-License-Identifier: Mozilla Public License 2.0
–>
layout: “avi”
page_title: “Avi: avi.Alertconfig” sidebar_current: “docs-avi-resource-alertconfig” description: |- Creates and manages Avi AlertConfig.
avi.Alertconfig
The AlertConfig resource allows the creation and management of Avi AlertConfig
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as avi from "@pulumi/avi";
const foo = new avi.Alertconfig("foo", {tenantRef: "/api/tenant/?name=admin"});
import pulumi
import pulumi_avi as avi
foo = avi.Alertconfig("foo", tenant_ref="/api/tenant/?name=admin")
package main
import (
"github.com/pulumi/pulumi-terraform-provider/sdks/go/avi/v31/avi"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := avi.NewAlertconfig(ctx, "foo", &avi.AlertconfigArgs{
TenantRef: pulumi.String("/api/tenant/?name=admin"),
})
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Avi = Pulumi.Avi;
return await Deployment.RunAsync(() =>
{
var foo = new Avi.Alertconfig("foo", new()
{
TenantRef = "/api/tenant/?name=admin",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.avi.Alertconfig;
import com.pulumi.avi.AlertconfigArgs;
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) {
var foo = new Alertconfig("foo", AlertconfigArgs.builder()
.tenantRef("/api/tenant/?name=admin")
.build());
}
}
resources:
foo:
type: avi:Alertconfig
properties:
tenantRef: /api/tenant/?name=admin
Create Alertconfig Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Alertconfig(name: string, args: AlertconfigArgs, opts?: CustomResourceOptions);
@overload
def Alertconfig(resource_name: str,
args: AlertconfigArgs,
opts: Optional[ResourceOptions] = None)
@overload
def Alertconfig(resource_name: str,
opts: Optional[ResourceOptions] = None,
category: Optional[str] = None,
alert_rules: Optional[Sequence[AlertconfigAlertRuleArgs]] = None,
source: Optional[str] = None,
obj_uuid: Optional[str] = None,
recommendation: Optional[str] = None,
configpb_attributes: Optional[Sequence[AlertconfigConfigpbAttributeArgs]] = None,
description: Optional[str] = None,
enabled: Optional[str] = None,
expiry_time: Optional[str] = None,
name: Optional[str] = None,
action_group_ref: Optional[str] = None,
object_type: Optional[str] = None,
autoscale_alert: Optional[str] = None,
rolling_window: Optional[str] = None,
alertconfig_id: Optional[str] = None,
summary: Optional[str] = None,
tenant_ref: Optional[str] = None,
threshold: Optional[str] = None,
throttle: Optional[str] = None,
uuid: Optional[str] = None)
func NewAlertconfig(ctx *Context, name string, args AlertconfigArgs, opts ...ResourceOption) (*Alertconfig, error)
public Alertconfig(string name, AlertconfigArgs args, CustomResourceOptions? opts = null)
public Alertconfig(String name, AlertconfigArgs args)
public Alertconfig(String name, AlertconfigArgs args, CustomResourceOptions options)
type: avi:Alertconfig
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args AlertconfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args AlertconfigArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args AlertconfigArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AlertconfigArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AlertconfigArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var alertconfigResource = new Avi.Alertconfig("alertconfigResource", new()
{
Category = "string",
AlertRules = new[]
{
new Avi.Inputs.AlertconfigAlertRuleArgs
{
ConnAppLogRules = new[]
{
new Avi.Inputs.AlertconfigAlertRuleConnAppLogRuleArgs
{
FilterString = "string",
FilterAction = "string",
},
},
EventMatchFilter = "string",
MetricsRules = new[]
{
new Avi.Inputs.AlertconfigAlertRuleMetricsRuleArgs
{
MetricThresholds = new[]
{
new Avi.Inputs.AlertconfigAlertRuleMetricsRuleMetricThresholdArgs
{
Comparator = "string",
Threshold = "string",
},
},
Duration = "string",
MetricId = "string",
},
},
Operator = "string",
SysEventRules = new[]
{
new Avi.Inputs.AlertconfigAlertRuleSysEventRuleArgs
{
EventDetails = new[]
{
new Avi.Inputs.AlertconfigAlertRuleSysEventRuleEventDetailArgs
{
Comparator = "string",
EventDetailsKey = "string",
EventDetailsValue = "string",
},
},
EventId = "string",
NotCond = "string",
},
},
},
},
Source = "string",
ObjUuid = "string",
Recommendation = "string",
ConfigpbAttributes = new[]
{
new Avi.Inputs.AlertconfigConfigpbAttributeArgs
{
Version = "string",
},
},
Description = "string",
Enabled = "string",
ExpiryTime = "string",
Name = "string",
ActionGroupRef = "string",
ObjectType = "string",
AutoscaleAlert = "string",
RollingWindow = "string",
AlertconfigId = "string",
Summary = "string",
TenantRef = "string",
Threshold = "string",
Throttle = "string",
Uuid = "string",
});
example, err := avi.NewAlertconfig(ctx, "alertconfigResource", &avi.AlertconfigArgs{
Category: pulumi.String("string"),
AlertRules: avi.AlertconfigAlertRuleArray{
&avi.AlertconfigAlertRuleArgs{
ConnAppLogRules: avi.AlertconfigAlertRuleConnAppLogRuleArray{
&avi.AlertconfigAlertRuleConnAppLogRuleArgs{
FilterString: pulumi.String("string"),
FilterAction: pulumi.String("string"),
},
},
EventMatchFilter: pulumi.String("string"),
MetricsRules: avi.AlertconfigAlertRuleMetricsRuleArray{
&avi.AlertconfigAlertRuleMetricsRuleArgs{
MetricThresholds: avi.AlertconfigAlertRuleMetricsRuleMetricThresholdArray{
&avi.AlertconfigAlertRuleMetricsRuleMetricThresholdArgs{
Comparator: pulumi.String("string"),
Threshold: pulumi.String("string"),
},
},
Duration: pulumi.String("string"),
MetricId: pulumi.String("string"),
},
},
Operator: pulumi.String("string"),
SysEventRules: avi.AlertconfigAlertRuleSysEventRuleArray{
&avi.AlertconfigAlertRuleSysEventRuleArgs{
EventDetails: avi.AlertconfigAlertRuleSysEventRuleEventDetailArray{
&avi.AlertconfigAlertRuleSysEventRuleEventDetailArgs{
Comparator: pulumi.String("string"),
EventDetailsKey: pulumi.String("string"),
EventDetailsValue: pulumi.String("string"),
},
},
EventId: pulumi.String("string"),
NotCond: pulumi.String("string"),
},
},
},
},
Source: pulumi.String("string"),
ObjUuid: pulumi.String("string"),
Recommendation: pulumi.String("string"),
ConfigpbAttributes: avi.AlertconfigConfigpbAttributeArray{
&avi.AlertconfigConfigpbAttributeArgs{
Version: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
Enabled: pulumi.String("string"),
ExpiryTime: pulumi.String("string"),
Name: pulumi.String("string"),
ActionGroupRef: pulumi.String("string"),
ObjectType: pulumi.String("string"),
AutoscaleAlert: pulumi.String("string"),
RollingWindow: pulumi.String("string"),
AlertconfigId: pulumi.String("string"),
Summary: pulumi.String("string"),
TenantRef: pulumi.String("string"),
Threshold: pulumi.String("string"),
Throttle: pulumi.String("string"),
Uuid: pulumi.String("string"),
})
var alertconfigResource = new Alertconfig("alertconfigResource", AlertconfigArgs.builder()
.category("string")
.alertRules(AlertconfigAlertRuleArgs.builder()
.connAppLogRules(AlertconfigAlertRuleConnAppLogRuleArgs.builder()
.filterString("string")
.filterAction("string")
.build())
.eventMatchFilter("string")
.metricsRules(AlertconfigAlertRuleMetricsRuleArgs.builder()
.metricThresholds(AlertconfigAlertRuleMetricsRuleMetricThresholdArgs.builder()
.comparator("string")
.threshold("string")
.build())
.duration("string")
.metricId("string")
.build())
.operator("string")
.sysEventRules(AlertconfigAlertRuleSysEventRuleArgs.builder()
.eventDetails(AlertconfigAlertRuleSysEventRuleEventDetailArgs.builder()
.comparator("string")
.eventDetailsKey("string")
.eventDetailsValue("string")
.build())
.eventId("string")
.notCond("string")
.build())
.build())
.source("string")
.objUuid("string")
.recommendation("string")
.configpbAttributes(AlertconfigConfigpbAttributeArgs.builder()
.version("string")
.build())
.description("string")
.enabled("string")
.expiryTime("string")
.name("string")
.actionGroupRef("string")
.objectType("string")
.autoscaleAlert("string")
.rollingWindow("string")
.alertconfigId("string")
.summary("string")
.tenantRef("string")
.threshold("string")
.throttle("string")
.uuid("string")
.build());
alertconfig_resource = avi.Alertconfig("alertconfigResource",
category="string",
alert_rules=[{
"conn_app_log_rules": [{
"filter_string": "string",
"filter_action": "string",
}],
"event_match_filter": "string",
"metrics_rules": [{
"metric_thresholds": [{
"comparator": "string",
"threshold": "string",
}],
"duration": "string",
"metric_id": "string",
}],
"operator": "string",
"sys_event_rules": [{
"event_details": [{
"comparator": "string",
"event_details_key": "string",
"event_details_value": "string",
}],
"event_id": "string",
"not_cond": "string",
}],
}],
source="string",
obj_uuid="string",
recommendation="string",
configpb_attributes=[{
"version": "string",
}],
description="string",
enabled="string",
expiry_time="string",
name="string",
action_group_ref="string",
object_type="string",
autoscale_alert="string",
rolling_window="string",
alertconfig_id="string",
summary="string",
tenant_ref="string",
threshold="string",
throttle="string",
uuid="string")
const alertconfigResource = new avi.Alertconfig("alertconfigResource", {
category: "string",
alertRules: [{
connAppLogRules: [{
filterString: "string",
filterAction: "string",
}],
eventMatchFilter: "string",
metricsRules: [{
metricThresholds: [{
comparator: "string",
threshold: "string",
}],
duration: "string",
metricId: "string",
}],
operator: "string",
sysEventRules: [{
eventDetails: [{
comparator: "string",
eventDetailsKey: "string",
eventDetailsValue: "string",
}],
eventId: "string",
notCond: "string",
}],
}],
source: "string",
objUuid: "string",
recommendation: "string",
configpbAttributes: [{
version: "string",
}],
description: "string",
enabled: "string",
expiryTime: "string",
name: "string",
actionGroupRef: "string",
objectType: "string",
autoscaleAlert: "string",
rollingWindow: "string",
alertconfigId: "string",
summary: "string",
tenantRef: "string",
threshold: "string",
throttle: "string",
uuid: "string",
});
type: avi:Alertconfig
properties:
actionGroupRef: string
alertRules:
- connAppLogRules:
- filterAction: string
filterString: string
eventMatchFilter: string
metricsRules:
- duration: string
metricId: string
metricThresholds:
- comparator: string
threshold: string
operator: string
sysEventRules:
- eventDetails:
- comparator: string
eventDetailsKey: string
eventDetailsValue: string
eventId: string
notCond: string
alertconfigId: string
autoscaleAlert: string
category: string
configpbAttributes:
- version: string
description: string
enabled: string
expiryTime: string
name: string
objUuid: string
objectType: string
recommendation: string
rollingWindow: string
source: string
summary: string
tenantRef: string
threshold: string
throttle: string
uuid: string
Alertconfig Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The Alertconfig resource accepts the following input properties:
- Alert
Rules List<AlertconfigAlert Rule> - List of filters matching on events or client logs used for triggering alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Category string
- Determines whether an alert is raised immediately when event occurs (realtime) or after specified number of events occurs within rolling time window. Enum options - REALTIME, ROLLINGWINDOW, WATERMARK. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Source string
- Signifies system events or the type of client logsused in this alert configuration. Enum options - CONN_LOGS, APP_LOGS, EVENT_LOGS, METRICS. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Action
Group stringRef - The alert config will trigger the selected alert action, which can send notifications and execute a controlscript. It is a reference to an object of type actiongroupconfig. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Alertconfig
Id string - Autoscale
Alert string - This alert config applies to auto scale alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes List<AlertconfigConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- A custom description field. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enabled string
- Enable or disable this alert config from generating new alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Expiry
Time string - An alert is expired and deleted after the expiry time has elapsed. The original event triggering the alert remains in the event's log. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the alert configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Obj
Uuid string - Instance of the resource for which alert was raised. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Object
Type string - The object type to which the alert config is associated with. Valid object types are - virtual service, pool, service engine. Enum options - VIRTUALSERVICE, POOL, HEALTHMONITOR, NETWORKPROFILE, APPLICATIONPROFILE, HTTPPOLICYSET, DNSPOLICY, SECURITYPOLICY, IPADDRGROUP, STRINGGROUP, SSLPROFILE, SSLKEYANDCERTIFICATE, NETWORKSECURITYPOLICY, APPLICATIONPERSISTENCEPROFILE, ANALYTICSPROFILE, VSDATASCRIPTSET, TENANT, PKIPROFILE, AUTHPROFILE, CLOUD... Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Recommendation string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Rolling
Window string - Only if the number of events is reached or exceeded within the time window will an alert be generated. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Summary string
- Summary of reason why alert is generated. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Threshold string
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Throttle string
- Alerts are suppressed (throttled) for this duration of time since the last alert was raised for this alert config. Allowed values are 0-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Alert
Rules []AlertconfigAlert Rule Args - List of filters matching on events or client logs used for triggering alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Category string
- Determines whether an alert is raised immediately when event occurs (realtime) or after specified number of events occurs within rolling time window. Enum options - REALTIME, ROLLINGWINDOW, WATERMARK. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Source string
- Signifies system events or the type of client logsused in this alert configuration. Enum options - CONN_LOGS, APP_LOGS, EVENT_LOGS, METRICS. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Action
Group stringRef - The alert config will trigger the selected alert action, which can send notifications and execute a controlscript. It is a reference to an object of type actiongroupconfig. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Alertconfig
Id string - Autoscale
Alert string - This alert config applies to auto scale alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []AlertconfigConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- A custom description field. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enabled string
- Enable or disable this alert config from generating new alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Expiry
Time string - An alert is expired and deleted after the expiry time has elapsed. The original event triggering the alert remains in the event's log. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the alert configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Obj
Uuid string - Instance of the resource for which alert was raised. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Object
Type string - The object type to which the alert config is associated with. Valid object types are - virtual service, pool, service engine. Enum options - VIRTUALSERVICE, POOL, HEALTHMONITOR, NETWORKPROFILE, APPLICATIONPROFILE, HTTPPOLICYSET, DNSPOLICY, SECURITYPOLICY, IPADDRGROUP, STRINGGROUP, SSLPROFILE, SSLKEYANDCERTIFICATE, NETWORKSECURITYPOLICY, APPLICATIONPERSISTENCEPROFILE, ANALYTICSPROFILE, VSDATASCRIPTSET, TENANT, PKIPROFILE, AUTHPROFILE, CLOUD... Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Recommendation string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Rolling
Window string - Only if the number of events is reached or exceeded within the time window will an alert be generated. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Summary string
- Summary of reason why alert is generated. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Threshold string
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Throttle string
- Alerts are suppressed (throttled) for this duration of time since the last alert was raised for this alert config. Allowed values are 0-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alert
Rules List<AlertconfigAlert Rule> - List of filters matching on events or client logs used for triggering alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- category String
- Determines whether an alert is raised immediately when event occurs (realtime) or after specified number of events occurs within rolling time window. Enum options - REALTIME, ROLLINGWINDOW, WATERMARK. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- source String
- Signifies system events or the type of client logsused in this alert configuration. Enum options - CONN_LOGS, APP_LOGS, EVENT_LOGS, METRICS. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- action
Group StringRef - The alert config will trigger the selected alert action, which can send notifications and execute a controlscript. It is a reference to an object of type actiongroupconfig. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertconfig
Id String - autoscale
Alert String - This alert config applies to auto scale alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<AlertconfigConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- A custom description field. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enabled String
- Enable or disable this alert config from generating new alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- expiry
Time String - An alert is expired and deleted after the expiry time has elapsed. The original event triggering the alert remains in the event's log. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the alert configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj
Uuid String - Instance of the resource for which alert was raised. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- object
Type String - The object type to which the alert config is associated with. Valid object types are - virtual service, pool, service engine. Enum options - VIRTUALSERVICE, POOL, HEALTHMONITOR, NETWORKPROFILE, APPLICATIONPROFILE, HTTPPOLICYSET, DNSPOLICY, SECURITYPOLICY, IPADDRGROUP, STRINGGROUP, SSLPROFILE, SSLKEYANDCERTIFICATE, NETWORKSECURITYPOLICY, APPLICATIONPERSISTENCEPROFILE, ANALYTICSPROFILE, VSDATASCRIPTSET, TENANT, PKIPROFILE, AUTHPROFILE, CLOUD... Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- recommendation String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- rolling
Window String - Only if the number of events is reached or exceeded within the time window will an alert be generated. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- summary String
- Summary of reason why alert is generated. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- threshold String
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- throttle String
- Alerts are suppressed (throttled) for this duration of time since the last alert was raised for this alert config. Allowed values are 0-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alert
Rules AlertconfigAlert Rule[] - List of filters matching on events or client logs used for triggering alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- category string
- Determines whether an alert is raised immediately when event occurs (realtime) or after specified number of events occurs within rolling time window. Enum options - REALTIME, ROLLINGWINDOW, WATERMARK. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- source string
- Signifies system events or the type of client logsused in this alert configuration. Enum options - CONN_LOGS, APP_LOGS, EVENT_LOGS, METRICS. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- action
Group stringRef - The alert config will trigger the selected alert action, which can send notifications and execute a controlscript. It is a reference to an object of type actiongroupconfig. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertconfig
Id string - autoscale
Alert string - This alert config applies to auto scale alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes AlertconfigConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- A custom description field. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enabled string
- Enable or disable this alert config from generating new alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- expiry
Time string - An alert is expired and deleted after the expiry time has elapsed. The original event triggering the alert remains in the event's log. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Name of the alert configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj
Uuid string - Instance of the resource for which alert was raised. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- object
Type string - The object type to which the alert config is associated with. Valid object types are - virtual service, pool, service engine. Enum options - VIRTUALSERVICE, POOL, HEALTHMONITOR, NETWORKPROFILE, APPLICATIONPROFILE, HTTPPOLICYSET, DNSPOLICY, SECURITYPOLICY, IPADDRGROUP, STRINGGROUP, SSLPROFILE, SSLKEYANDCERTIFICATE, NETWORKSECURITYPOLICY, APPLICATIONPERSISTENCEPROFILE, ANALYTICSPROFILE, VSDATASCRIPTSET, TENANT, PKIPROFILE, AUTHPROFILE, CLOUD... Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- recommendation string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- rolling
Window string - Only if the number of events is reached or exceeded within the time window will an alert be generated. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- summary string
- Summary of reason why alert is generated. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- threshold string
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- throttle string
- Alerts are suppressed (throttled) for this duration of time since the last alert was raised for this alert config. Allowed values are 0-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alert_
rules Sequence[AlertconfigAlert Rule Args] - List of filters matching on events or client logs used for triggering alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- category str
- Determines whether an alert is raised immediately when event occurs (realtime) or after specified number of events occurs within rolling time window. Enum options - REALTIME, ROLLINGWINDOW, WATERMARK. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- source str
- Signifies system events or the type of client logsused in this alert configuration. Enum options - CONN_LOGS, APP_LOGS, EVENT_LOGS, METRICS. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- action_
group_ strref - The alert config will trigger the selected alert action, which can send notifications and execute a controlscript. It is a reference to an object of type actiongroupconfig. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertconfig_
id str - autoscale_
alert str - This alert config applies to auto scale alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[AlertconfigConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- A custom description field. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enabled str
- Enable or disable this alert config from generating new alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- expiry_
time str - An alert is expired and deleted after the expiry time has elapsed. The original event triggering the alert remains in the event's log. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Name of the alert configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj_
uuid str - Instance of the resource for which alert was raised. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- object_
type str - The object type to which the alert config is associated with. Valid object types are - virtual service, pool, service engine. Enum options - VIRTUALSERVICE, POOL, HEALTHMONITOR, NETWORKPROFILE, APPLICATIONPROFILE, HTTPPOLICYSET, DNSPOLICY, SECURITYPOLICY, IPADDRGROUP, STRINGGROUP, SSLPROFILE, SSLKEYANDCERTIFICATE, NETWORKSECURITYPOLICY, APPLICATIONPERSISTENCEPROFILE, ANALYTICSPROFILE, VSDATASCRIPTSET, TENANT, PKIPROFILE, AUTHPROFILE, CLOUD... Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- recommendation str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- rolling_
window str - Only if the number of events is reached or exceeded within the time window will an alert be generated. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- summary str
- Summary of reason why alert is generated. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- threshold str
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- throttle str
- Alerts are suppressed (throttled) for this duration of time since the last alert was raised for this alert config. Allowed values are 0-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alert
Rules List<Property Map> - List of filters matching on events or client logs used for triggering alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- category String
- Determines whether an alert is raised immediately when event occurs (realtime) or after specified number of events occurs within rolling time window. Enum options - REALTIME, ROLLINGWINDOW, WATERMARK. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- source String
- Signifies system events or the type of client logsused in this alert configuration. Enum options - CONN_LOGS, APP_LOGS, EVENT_LOGS, METRICS. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- action
Group StringRef - The alert config will trigger the selected alert action, which can send notifications and execute a controlscript. It is a reference to an object of type actiongroupconfig. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertconfig
Id String - autoscale
Alert String - This alert config applies to auto scale alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- A custom description field. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enabled String
- Enable or disable this alert config from generating new alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- expiry
Time String - An alert is expired and deleted after the expiry time has elapsed. The original event triggering the alert remains in the event's log. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the alert configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj
Uuid String - Instance of the resource for which alert was raised. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- object
Type String - The object type to which the alert config is associated with. Valid object types are - virtual service, pool, service engine. Enum options - VIRTUALSERVICE, POOL, HEALTHMONITOR, NETWORKPROFILE, APPLICATIONPROFILE, HTTPPOLICYSET, DNSPOLICY, SECURITYPOLICY, IPADDRGROUP, STRINGGROUP, SSLPROFILE, SSLKEYANDCERTIFICATE, NETWORKSECURITYPOLICY, APPLICATIONPERSISTENCEPROFILE, ANALYTICSPROFILE, VSDATASCRIPTSET, TENANT, PKIPROFILE, AUTHPROFILE, CLOUD... Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- recommendation String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- rolling
Window String - Only if the number of events is reached or exceeded within the time window will an alert be generated. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- summary String
- Summary of reason why alert is generated. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- threshold String
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- throttle String
- Alerts are suppressed (throttled) for this duration of time since the last alert was raised for this alert config. Allowed values are 0-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Outputs
All input properties are implicitly available as output properties. Additionally, the Alertconfig resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- Id string
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
- id string
- The provider-assigned unique ID for this managed resource.
- id str
- The provider-assigned unique ID for this managed resource.
- id String
- The provider-assigned unique ID for this managed resource.
Look up Existing Alertconfig Resource
Get an existing Alertconfig resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: AlertconfigState, opts?: CustomResourceOptions): Alertconfig
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
action_group_ref: Optional[str] = None,
alert_rules: Optional[Sequence[AlertconfigAlertRuleArgs]] = None,
alertconfig_id: Optional[str] = None,
autoscale_alert: Optional[str] = None,
category: Optional[str] = None,
configpb_attributes: Optional[Sequence[AlertconfigConfigpbAttributeArgs]] = None,
description: Optional[str] = None,
enabled: Optional[str] = None,
expiry_time: Optional[str] = None,
name: Optional[str] = None,
obj_uuid: Optional[str] = None,
object_type: Optional[str] = None,
recommendation: Optional[str] = None,
rolling_window: Optional[str] = None,
source: Optional[str] = None,
summary: Optional[str] = None,
tenant_ref: Optional[str] = None,
threshold: Optional[str] = None,
throttle: Optional[str] = None,
uuid: Optional[str] = None) -> Alertconfig
func GetAlertconfig(ctx *Context, name string, id IDInput, state *AlertconfigState, opts ...ResourceOption) (*Alertconfig, error)
public static Alertconfig Get(string name, Input<string> id, AlertconfigState? state, CustomResourceOptions? opts = null)
public static Alertconfig get(String name, Output<String> id, AlertconfigState state, CustomResourceOptions options)
resources: _: type: avi:Alertconfig get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Action
Group stringRef - The alert config will trigger the selected alert action, which can send notifications and execute a controlscript. It is a reference to an object of type actiongroupconfig. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Alert
Rules List<AlertconfigAlert Rule> - List of filters matching on events or client logs used for triggering alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Alertconfig
Id string - Autoscale
Alert string - This alert config applies to auto scale alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Category string
- Determines whether an alert is raised immediately when event occurs (realtime) or after specified number of events occurs within rolling time window. Enum options - REALTIME, ROLLINGWINDOW, WATERMARK. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes List<AlertconfigConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- A custom description field. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enabled string
- Enable or disable this alert config from generating new alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Expiry
Time string - An alert is expired and deleted after the expiry time has elapsed. The original event triggering the alert remains in the event's log. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the alert configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Obj
Uuid string - Instance of the resource for which alert was raised. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Object
Type string - The object type to which the alert config is associated with. Valid object types are - virtual service, pool, service engine. Enum options - VIRTUALSERVICE, POOL, HEALTHMONITOR, NETWORKPROFILE, APPLICATIONPROFILE, HTTPPOLICYSET, DNSPOLICY, SECURITYPOLICY, IPADDRGROUP, STRINGGROUP, SSLPROFILE, SSLKEYANDCERTIFICATE, NETWORKSECURITYPOLICY, APPLICATIONPERSISTENCEPROFILE, ANALYTICSPROFILE, VSDATASCRIPTSET, TENANT, PKIPROFILE, AUTHPROFILE, CLOUD... Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Recommendation string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Rolling
Window string - Only if the number of events is reached or exceeded within the time window will an alert be generated. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Source string
- Signifies system events or the type of client logsused in this alert configuration. Enum options - CONN_LOGS, APP_LOGS, EVENT_LOGS, METRICS. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Summary string
- Summary of reason why alert is generated. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Threshold string
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Throttle string
- Alerts are suppressed (throttled) for this duration of time since the last alert was raised for this alert config. Allowed values are 0-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Action
Group stringRef - The alert config will trigger the selected alert action, which can send notifications and execute a controlscript. It is a reference to an object of type actiongroupconfig. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Alert
Rules []AlertconfigAlert Rule Args - List of filters matching on events or client logs used for triggering alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Alertconfig
Id string - Autoscale
Alert string - This alert config applies to auto scale alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Category string
- Determines whether an alert is raised immediately when event occurs (realtime) or after specified number of events occurs within rolling time window. Enum options - REALTIME, ROLLINGWINDOW, WATERMARK. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Configpb
Attributes []AlertconfigConfigpb Attribute Args - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Description string
- A custom description field. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Enabled string
- Enable or disable this alert config from generating new alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Expiry
Time string - An alert is expired and deleted after the expiry time has elapsed. The original event triggering the alert remains in the event's log. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Name string
- Name of the alert configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Obj
Uuid string - Instance of the resource for which alert was raised. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Object
Type string - The object type to which the alert config is associated with. Valid object types are - virtual service, pool, service engine. Enum options - VIRTUALSERVICE, POOL, HEALTHMONITOR, NETWORKPROFILE, APPLICATIONPROFILE, HTTPPOLICYSET, DNSPOLICY, SECURITYPOLICY, IPADDRGROUP, STRINGGROUP, SSLPROFILE, SSLKEYANDCERTIFICATE, NETWORKSECURITYPOLICY, APPLICATIONPERSISTENCEPROFILE, ANALYTICSPROFILE, VSDATASCRIPTSET, TENANT, PKIPROFILE, AUTHPROFILE, CLOUD... Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Recommendation string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Rolling
Window string - Only if the number of events is reached or exceeded within the time window will an alert be generated. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Source string
- Signifies system events or the type of client logsused in this alert configuration. Enum options - CONN_LOGS, APP_LOGS, EVENT_LOGS, METRICS. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Summary string
- Summary of reason why alert is generated. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Threshold string
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Throttle string
- Alerts are suppressed (throttled) for this duration of time since the last alert was raised for this alert config. Allowed values are 0-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- action
Group StringRef - The alert config will trigger the selected alert action, which can send notifications and execute a controlscript. It is a reference to an object of type actiongroupconfig. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alert
Rules List<AlertconfigAlert Rule> - List of filters matching on events or client logs used for triggering alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertconfig
Id String - autoscale
Alert String - This alert config applies to auto scale alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- category String
- Determines whether an alert is raised immediately when event occurs (realtime) or after specified number of events occurs within rolling time window. Enum options - REALTIME, ROLLINGWINDOW, WATERMARK. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<AlertconfigConfigpb Attribute> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- A custom description field. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enabled String
- Enable or disable this alert config from generating new alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- expiry
Time String - An alert is expired and deleted after the expiry time has elapsed. The original event triggering the alert remains in the event's log. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the alert configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj
Uuid String - Instance of the resource for which alert was raised. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- object
Type String - The object type to which the alert config is associated with. Valid object types are - virtual service, pool, service engine. Enum options - VIRTUALSERVICE, POOL, HEALTHMONITOR, NETWORKPROFILE, APPLICATIONPROFILE, HTTPPOLICYSET, DNSPOLICY, SECURITYPOLICY, IPADDRGROUP, STRINGGROUP, SSLPROFILE, SSLKEYANDCERTIFICATE, NETWORKSECURITYPOLICY, APPLICATIONPERSISTENCEPROFILE, ANALYTICSPROFILE, VSDATASCRIPTSET, TENANT, PKIPROFILE, AUTHPROFILE, CLOUD... Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- recommendation String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- rolling
Window String - Only if the number of events is reached or exceeded within the time window will an alert be generated. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- source String
- Signifies system events or the type of client logsused in this alert configuration. Enum options - CONN_LOGS, APP_LOGS, EVENT_LOGS, METRICS. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- summary String
- Summary of reason why alert is generated. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- threshold String
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- throttle String
- Alerts are suppressed (throttled) for this duration of time since the last alert was raised for this alert config. Allowed values are 0-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- action
Group stringRef - The alert config will trigger the selected alert action, which can send notifications and execute a controlscript. It is a reference to an object of type actiongroupconfig. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alert
Rules AlertconfigAlert Rule[] - List of filters matching on events or client logs used for triggering alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertconfig
Id string - autoscale
Alert string - This alert config applies to auto scale alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- category string
- Determines whether an alert is raised immediately when event occurs (realtime) or after specified number of events occurs within rolling time window. Enum options - REALTIME, ROLLINGWINDOW, WATERMARK. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes AlertconfigConfigpb Attribute[] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description string
- A custom description field. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enabled string
- Enable or disable this alert config from generating new alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- expiry
Time string - An alert is expired and deleted after the expiry time has elapsed. The original event triggering the alert remains in the event's log. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name string
- Name of the alert configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj
Uuid string - Instance of the resource for which alert was raised. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- object
Type string - The object type to which the alert config is associated with. Valid object types are - virtual service, pool, service engine. Enum options - VIRTUALSERVICE, POOL, HEALTHMONITOR, NETWORKPROFILE, APPLICATIONPROFILE, HTTPPOLICYSET, DNSPOLICY, SECURITYPOLICY, IPADDRGROUP, STRINGGROUP, SSLPROFILE, SSLKEYANDCERTIFICATE, NETWORKSECURITYPOLICY, APPLICATIONPERSISTENCEPROFILE, ANALYTICSPROFILE, VSDATASCRIPTSET, TENANT, PKIPROFILE, AUTHPROFILE, CLOUD... Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- recommendation string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- rolling
Window string - Only if the number of events is reached or exceeded within the time window will an alert be generated. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- source string
- Signifies system events or the type of client logsused in this alert configuration. Enum options - CONN_LOGS, APP_LOGS, EVENT_LOGS, METRICS. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- summary string
- Summary of reason why alert is generated. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref string - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- threshold string
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- throttle string
- Alerts are suppressed (throttled) for this duration of time since the last alert was raised for this alert config. Allowed values are 0-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid string
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- action_
group_ strref - The alert config will trigger the selected alert action, which can send notifications and execute a controlscript. It is a reference to an object of type actiongroupconfig. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alert_
rules Sequence[AlertconfigAlert Rule Args] - List of filters matching on events or client logs used for triggering alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertconfig_
id str - autoscale_
alert str - This alert config applies to auto scale alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- category str
- Determines whether an alert is raised immediately when event occurs (realtime) or after specified number of events occurs within rolling time window. Enum options - REALTIME, ROLLINGWINDOW, WATERMARK. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb_
attributes Sequence[AlertconfigConfigpb Attribute Args] - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description str
- A custom description field. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enabled str
- Enable or disable this alert config from generating new alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- expiry_
time str - An alert is expired and deleted after the expiry time has elapsed. The original event triggering the alert remains in the event's log. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name str
- Name of the alert configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj_
uuid str - Instance of the resource for which alert was raised. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- object_
type str - The object type to which the alert config is associated with. Valid object types are - virtual service, pool, service engine. Enum options - VIRTUALSERVICE, POOL, HEALTHMONITOR, NETWORKPROFILE, APPLICATIONPROFILE, HTTPPOLICYSET, DNSPOLICY, SECURITYPOLICY, IPADDRGROUP, STRINGGROUP, SSLPROFILE, SSLKEYANDCERTIFICATE, NETWORKSECURITYPOLICY, APPLICATIONPERSISTENCEPROFILE, ANALYTICSPROFILE, VSDATASCRIPTSET, TENANT, PKIPROFILE, AUTHPROFILE, CLOUD... Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- recommendation str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- rolling_
window str - Only if the number of events is reached or exceeded within the time window will an alert be generated. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- source str
- Signifies system events or the type of client logsused in this alert configuration. Enum options - CONN_LOGS, APP_LOGS, EVENT_LOGS, METRICS. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- summary str
- Summary of reason why alert is generated. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant_
ref str - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- threshold str
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- throttle str
- Alerts are suppressed (throttled) for this duration of time since the last alert was raised for this alert config. Allowed values are 0-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid str
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- action
Group StringRef - The alert config will trigger the selected alert action, which can send notifications and execute a controlscript. It is a reference to an object of type actiongroupconfig. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alert
Rules List<Property Map> - List of filters matching on events or client logs used for triggering alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- alertconfig
Id String - autoscale
Alert String - This alert config applies to auto scale alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- category String
- Determines whether an alert is raised immediately when event occurs (realtime) or after specified number of events occurs within rolling time window. Enum options - REALTIME, ROLLINGWINDOW, WATERMARK. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- configpb
Attributes List<Property Map> - Protobuf versioning for config pbs. Field introduced in 21.1.1. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- description String
- A custom description field. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- enabled String
- Enable or disable this alert config from generating new alerts. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- expiry
Time String - An alert is expired and deleted after the expiry time has elapsed. The original event triggering the alert remains in the event's log. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- name String
- Name of the alert configuration. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- obj
Uuid String - Instance of the resource for which alert was raised. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- object
Type String - The object type to which the alert config is associated with. Valid object types are - virtual service, pool, service engine. Enum options - VIRTUALSERVICE, POOL, HEALTHMONITOR, NETWORKPROFILE, APPLICATIONPROFILE, HTTPPOLICYSET, DNSPOLICY, SECURITYPOLICY, IPADDRGROUP, STRINGGROUP, SSLPROFILE, SSLKEYANDCERTIFICATE, NETWORKSECURITYPOLICY, APPLICATIONPERSISTENCEPROFILE, ANALYTICSPROFILE, VSDATASCRIPTSET, TENANT, PKIPROFILE, AUTHPROFILE, CLOUD... Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- recommendation String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- rolling
Window String - Only if the number of events is reached or exceeded within the time window will an alert be generated. Allowed values are 1-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- source String
- Signifies system events or the type of client logsused in this alert configuration. Enum options - CONN_LOGS, APP_LOGS, EVENT_LOGS, METRICS. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- summary String
- Summary of reason why alert is generated. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- tenant
Ref String - It is a reference to an object of type tenant. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- threshold String
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- throttle String
- Alerts are suppressed (throttled) for this duration of time since the last alert was raised for this alert config. Allowed values are 0-31536000. Unit is sec. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- uuid String
- Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
Supporting Types
AlertconfigAlertRule, AlertconfigAlertRuleArgs
AlertconfigAlertRuleConnAppLogRule, AlertconfigAlertRuleConnAppLogRuleArgs
- Filter
String string - Filter
Action string
- Filter
String string - Filter
Action string
- filter
String String - filter
Action String
- filter
String string - filter
Action string
- filter_
string str - filter_
action str
- filter
String String - filter
Action String
AlertconfigAlertRuleMetricsRule, AlertconfigAlertRuleMetricsRuleArgs
- metric
Thresholds List<Property Map> - duration String
- metric
Id String
AlertconfigAlertRuleMetricsRuleMetricThreshold, AlertconfigAlertRuleMetricsRuleMetricThresholdArgs
- Comparator string
- Threshold string
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- Comparator string
- Threshold string
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- comparator String
- threshold String
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- comparator string
- threshold string
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- comparator str
- threshold str
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
- comparator String
- threshold String
- An alert is created only when the number of events meets or exceeds this number within the chosen time frame. Allowed values are 1-65536. Allowed with any value in enterprise, essentials, basic, enterprise with cloud services edition.
AlertconfigAlertRuleSysEventRule, AlertconfigAlertRuleSysEventRuleArgs
- event
Details List<Property Map> - event
Id String - not
Cond String
AlertconfigAlertRuleSysEventRuleEventDetail, AlertconfigAlertRuleSysEventRuleEventDetailArgs
- Comparator string
- Event
Details stringKey - Event
Details stringValue
- Comparator string
- Event
Details stringKey - Event
Details stringValue
- comparator String
- event
Details StringKey - event
Details StringValue
- comparator string
- event
Details stringKey - event
Details stringValue
- comparator str
- event_
details_ strkey - event_
details_ strvalue
- comparator String
- event
Details StringKey - event
Details StringValue
AlertconfigConfigpbAttribute, AlertconfigConfigpbAttributeArgs
- Version string
- Version string
- version String
- version string
- version str
- version String
Package Details
- Repository
- avi vmware/terraform-provider-avi
- License
- Notes
- This Pulumi package is based on the
avi
Terraform Provider.