fortios.system.Alarm
Explore with Pulumi AI
Configure alarm.
Create Alarm Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Alarm(name: string, args?: AlarmArgs, opts?: CustomResourceOptions);@overload
def Alarm(resource_name: str,
          args: Optional[AlarmArgs] = None,
          opts: Optional[ResourceOptions] = None)
@overload
def Alarm(resource_name: str,
          opts: Optional[ResourceOptions] = None,
          audible: Optional[str] = None,
          dynamic_sort_subtable: Optional[str] = None,
          get_all_tables: Optional[str] = None,
          groups: Optional[Sequence[AlarmGroupArgs]] = None,
          status: Optional[str] = None,
          vdomparam: Optional[str] = None)func NewAlarm(ctx *Context, name string, args *AlarmArgs, opts ...ResourceOption) (*Alarm, error)public Alarm(string name, AlarmArgs? args = null, CustomResourceOptions? opts = null)type: fortios:system:Alarm
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 AlarmArgs
- 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 AlarmArgs
- 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 AlarmArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args AlarmArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args AlarmArgs
- 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 alarmResource = new Fortios.System.Alarm("alarmResource", new()
{
    Audible = "string",
    DynamicSortSubtable = "string",
    GetAllTables = "string",
    Groups = new[]
    {
        new Fortios.System.Inputs.AlarmGroupArgs
        {
            AdminAuthFailureThreshold = 0,
            AdminAuthLockoutThreshold = 0,
            DecryptionFailureThreshold = 0,
            EncryptionFailureThreshold = 0,
            FwPolicyId = 0,
            FwPolicyIdThreshold = 0,
            FwPolicyViolations = new[]
            {
                new Fortios.System.Inputs.AlarmGroupFwPolicyViolationArgs
                {
                    DstIp = "string",
                    DstPort = 0,
                    Id = 0,
                    SrcIp = "string",
                    SrcPort = 0,
                    Threshold = 0,
                },
            },
            Id = 0,
            LogFullWarningThreshold = 0,
            Period = 0,
            ReplayAttemptThreshold = 0,
            SelfTestFailureThreshold = 0,
            UserAuthFailureThreshold = 0,
            UserAuthLockoutThreshold = 0,
        },
    },
    Status = "string",
    Vdomparam = "string",
});
example, err := system.NewAlarm(ctx, "alarmResource", &system.AlarmArgs{
	Audible:             pulumi.String("string"),
	DynamicSortSubtable: pulumi.String("string"),
	GetAllTables:        pulumi.String("string"),
	Groups: system.AlarmGroupArray{
		&system.AlarmGroupArgs{
			AdminAuthFailureThreshold:  pulumi.Int(0),
			AdminAuthLockoutThreshold:  pulumi.Int(0),
			DecryptionFailureThreshold: pulumi.Int(0),
			EncryptionFailureThreshold: pulumi.Int(0),
			FwPolicyId:                 pulumi.Int(0),
			FwPolicyIdThreshold:        pulumi.Int(0),
			FwPolicyViolations: system.AlarmGroupFwPolicyViolationArray{
				&system.AlarmGroupFwPolicyViolationArgs{
					DstIp:     pulumi.String("string"),
					DstPort:   pulumi.Int(0),
					Id:        pulumi.Int(0),
					SrcIp:     pulumi.String("string"),
					SrcPort:   pulumi.Int(0),
					Threshold: pulumi.Int(0),
				},
			},
			Id:                       pulumi.Int(0),
			LogFullWarningThreshold:  pulumi.Int(0),
			Period:                   pulumi.Int(0),
			ReplayAttemptThreshold:   pulumi.Int(0),
			SelfTestFailureThreshold: pulumi.Int(0),
			UserAuthFailureThreshold: pulumi.Int(0),
			UserAuthLockoutThreshold: pulumi.Int(0),
		},
	},
	Status:    pulumi.String("string"),
	Vdomparam: pulumi.String("string"),
})
var alarmResource = new Alarm("alarmResource", AlarmArgs.builder()
    .audible("string")
    .dynamicSortSubtable("string")
    .getAllTables("string")
    .groups(AlarmGroupArgs.builder()
        .adminAuthFailureThreshold(0)
        .adminAuthLockoutThreshold(0)
        .decryptionFailureThreshold(0)
        .encryptionFailureThreshold(0)
        .fwPolicyId(0)
        .fwPolicyIdThreshold(0)
        .fwPolicyViolations(AlarmGroupFwPolicyViolationArgs.builder()
            .dstIp("string")
            .dstPort(0)
            .id(0)
            .srcIp("string")
            .srcPort(0)
            .threshold(0)
            .build())
        .id(0)
        .logFullWarningThreshold(0)
        .period(0)
        .replayAttemptThreshold(0)
        .selfTestFailureThreshold(0)
        .userAuthFailureThreshold(0)
        .userAuthLockoutThreshold(0)
        .build())
    .status("string")
    .vdomparam("string")
    .build());
alarm_resource = fortios.system.Alarm("alarmResource",
    audible="string",
    dynamic_sort_subtable="string",
    get_all_tables="string",
    groups=[{
        "admin_auth_failure_threshold": 0,
        "admin_auth_lockout_threshold": 0,
        "decryption_failure_threshold": 0,
        "encryption_failure_threshold": 0,
        "fw_policy_id": 0,
        "fw_policy_id_threshold": 0,
        "fw_policy_violations": [{
            "dst_ip": "string",
            "dst_port": 0,
            "id": 0,
            "src_ip": "string",
            "src_port": 0,
            "threshold": 0,
        }],
        "id": 0,
        "log_full_warning_threshold": 0,
        "period": 0,
        "replay_attempt_threshold": 0,
        "self_test_failure_threshold": 0,
        "user_auth_failure_threshold": 0,
        "user_auth_lockout_threshold": 0,
    }],
    status="string",
    vdomparam="string")
const alarmResource = new fortios.system.Alarm("alarmResource", {
    audible: "string",
    dynamicSortSubtable: "string",
    getAllTables: "string",
    groups: [{
        adminAuthFailureThreshold: 0,
        adminAuthLockoutThreshold: 0,
        decryptionFailureThreshold: 0,
        encryptionFailureThreshold: 0,
        fwPolicyId: 0,
        fwPolicyIdThreshold: 0,
        fwPolicyViolations: [{
            dstIp: "string",
            dstPort: 0,
            id: 0,
            srcIp: "string",
            srcPort: 0,
            threshold: 0,
        }],
        id: 0,
        logFullWarningThreshold: 0,
        period: 0,
        replayAttemptThreshold: 0,
        selfTestFailureThreshold: 0,
        userAuthFailureThreshold: 0,
        userAuthLockoutThreshold: 0,
    }],
    status: "string",
    vdomparam: "string",
});
type: fortios:system:Alarm
properties:
    audible: string
    dynamicSortSubtable: string
    getAllTables: string
    groups:
        - adminAuthFailureThreshold: 0
          adminAuthLockoutThreshold: 0
          decryptionFailureThreshold: 0
          encryptionFailureThreshold: 0
          fwPolicyId: 0
          fwPolicyIdThreshold: 0
          fwPolicyViolations:
            - dstIp: string
              dstPort: 0
              id: 0
              srcIp: string
              srcPort: 0
              threshold: 0
          id: 0
          logFullWarningThreshold: 0
          period: 0
          replayAttemptThreshold: 0
          selfTestFailureThreshold: 0
          userAuthFailureThreshold: 0
          userAuthLockoutThreshold: 0
    status: string
    vdomparam: string
Alarm 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 Alarm resource accepts the following input properties:
- Audible string
- Enable/disable audible alarm. Valid values: enable,disable.
- DynamicSort stringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Groups
List<Pulumiverse.Fortios. System. Inputs. Alarm Group> 
- Alarm groups. The structure of groupsblock is documented below.
- Status string
- Enable/disable alarm. Valid values: enable,disable.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Audible string
- Enable/disable audible alarm. Valid values: enable,disable.
- DynamicSort stringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Groups
[]AlarmGroup Args 
- Alarm groups. The structure of groupsblock is documented below.
- Status string
- Enable/disable alarm. Valid values: enable,disable.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- audible String
- Enable/disable audible alarm. Valid values: enable,disable.
- dynamicSort StringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- groups
List<AlarmGroup> 
- Alarm groups. The structure of groupsblock is documented below.
- status String
- Enable/disable alarm. Valid values: enable,disable.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- audible string
- Enable/disable audible alarm. Valid values: enable,disable.
- dynamicSort stringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- getAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- groups
AlarmGroup[] 
- Alarm groups. The structure of groupsblock is documented below.
- status string
- Enable/disable alarm. Valid values: enable,disable.
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- audible str
- Enable/disable audible alarm. Valid values: enable,disable.
- dynamic_sort_ strsubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- get_all_ strtables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- groups
Sequence[AlarmGroup Args] 
- Alarm groups. The structure of groupsblock is documented below.
- status str
- Enable/disable alarm. Valid values: enable,disable.
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- audible String
- Enable/disable audible alarm. Valid values: enable,disable.
- dynamicSort StringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- groups List<Property Map>
- Alarm groups. The structure of groupsblock is documented below.
- status String
- Enable/disable alarm. Valid values: enable,disable.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Outputs
All input properties are implicitly available as output properties. Additionally, the Alarm 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 Alarm Resource
Get an existing Alarm 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?: AlarmState, opts?: CustomResourceOptions): Alarm@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        audible: Optional[str] = None,
        dynamic_sort_subtable: Optional[str] = None,
        get_all_tables: Optional[str] = None,
        groups: Optional[Sequence[AlarmGroupArgs]] = None,
        status: Optional[str] = None,
        vdomparam: Optional[str] = None) -> Alarmfunc GetAlarm(ctx *Context, name string, id IDInput, state *AlarmState, opts ...ResourceOption) (*Alarm, error)public static Alarm Get(string name, Input<string> id, AlarmState? state, CustomResourceOptions? opts = null)public static Alarm get(String name, Output<String> id, AlarmState state, CustomResourceOptions options)resources:  _:    type: fortios:system:Alarm    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.
- Audible string
- Enable/disable audible alarm. Valid values: enable,disable.
- DynamicSort stringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Groups
List<Pulumiverse.Fortios. System. Inputs. Alarm Group> 
- Alarm groups. The structure of groupsblock is documented below.
- Status string
- Enable/disable alarm. Valid values: enable,disable.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- Audible string
- Enable/disable audible alarm. Valid values: enable,disable.
- DynamicSort stringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- GetAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- Groups
[]AlarmGroup Args 
- Alarm groups. The structure of groupsblock is documented below.
- Status string
- Enable/disable alarm. Valid values: enable,disable.
- Vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- audible String
- Enable/disable audible alarm. Valid values: enable,disable.
- dynamicSort StringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- groups
List<AlarmGroup> 
- Alarm groups. The structure of groupsblock is documented below.
- status String
- Enable/disable alarm. Valid values: enable,disable.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- audible string
- Enable/disable audible alarm. Valid values: enable,disable.
- dynamicSort stringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- getAll stringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- groups
AlarmGroup[] 
- Alarm groups. The structure of groupsblock is documented below.
- status string
- Enable/disable alarm. Valid values: enable,disable.
- vdomparam string
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- audible str
- Enable/disable audible alarm. Valid values: enable,disable.
- dynamic_sort_ strsubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- get_all_ strtables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- groups
Sequence[AlarmGroup Args] 
- Alarm groups. The structure of groupsblock is documented below.
- status str
- Enable/disable alarm. Valid values: enable,disable.
- vdomparam str
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
- audible String
- Enable/disable audible alarm. Valid values: enable,disable.
- dynamicSort StringSubtable 
- Sort sub-tables, please do not set this parameter when configuring static sub-tables. Options: [ false, true, natural, alphabetical ]. false: Default value, do not sort tables; true/natural: sort tables in natural order. For example: [ a10, a2 ] -> [ a2, a10 ]; alphabetical: sort tables in alphabetical order. For example: [ a10, a2 ] -> [ a10, a2 ].
- getAll StringTables 
- Get all sub-tables including unconfigured tables. Do not set this variable to true if you configure sub-table in another resource, otherwise, conflicts and overwrite will occur. Options: [ false, true ]. false: Default value, do not get unconfigured tables; true: get all tables including unconfigured tables.
- groups List<Property Map>
- Alarm groups. The structure of groupsblock is documented below.
- status String
- Enable/disable alarm. Valid values: enable,disable.
- vdomparam String
- Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
Supporting Types
AlarmGroup, AlarmGroupArgs    
- AdminAuth intFailure Threshold 
- Admin authentication failure threshold.
- AdminAuth intLockout Threshold 
- Admin authentication lockout threshold.
- DecryptionFailure intThreshold 
- Decryption failure threshold.
- EncryptionFailure intThreshold 
- Encryption failure threshold.
- FwPolicy intId 
- Firewall policy ID.
- FwPolicy intId Threshold 
- Firewall policy ID threshold.
- FwPolicy List<Pulumiverse.Violations Fortios. System. Inputs. Alarm Group Fw Policy Violation> 
- Firewall policy violations. The structure of fw_policy_violationsblock is documented below.
- Id int
- Group ID.
- LogFull intWarning Threshold 
- Log full warning threshold.
- Period int
- Time period in seconds (0 = from start up).
- ReplayAttempt intThreshold 
- Replay attempt threshold.
- SelfTest intFailure Threshold 
- Self-test failure threshold.
- UserAuth intFailure Threshold 
- User authentication failure threshold.
- UserAuth intLockout Threshold 
- User authentication lockout threshold.
- AdminAuth intFailure Threshold 
- Admin authentication failure threshold.
- AdminAuth intLockout Threshold 
- Admin authentication lockout threshold.
- DecryptionFailure intThreshold 
- Decryption failure threshold.
- EncryptionFailure intThreshold 
- Encryption failure threshold.
- FwPolicy intId 
- Firewall policy ID.
- FwPolicy intId Threshold 
- Firewall policy ID threshold.
- FwPolicy []AlarmViolations Group Fw Policy Violation 
- Firewall policy violations. The structure of fw_policy_violationsblock is documented below.
- Id int
- Group ID.
- LogFull intWarning Threshold 
- Log full warning threshold.
- Period int
- Time period in seconds (0 = from start up).
- ReplayAttempt intThreshold 
- Replay attempt threshold.
- SelfTest intFailure Threshold 
- Self-test failure threshold.
- UserAuth intFailure Threshold 
- User authentication failure threshold.
- UserAuth intLockout Threshold 
- User authentication lockout threshold.
- adminAuth IntegerFailure Threshold 
- Admin authentication failure threshold.
- adminAuth IntegerLockout Threshold 
- Admin authentication lockout threshold.
- decryptionFailure IntegerThreshold 
- Decryption failure threshold.
- encryptionFailure IntegerThreshold 
- Encryption failure threshold.
- fwPolicy IntegerId 
- Firewall policy ID.
- fwPolicy IntegerId Threshold 
- Firewall policy ID threshold.
- fwPolicy List<AlarmViolations Group Fw Policy Violation> 
- Firewall policy violations. The structure of fw_policy_violationsblock is documented below.
- id Integer
- Group ID.
- logFull IntegerWarning Threshold 
- Log full warning threshold.
- period Integer
- Time period in seconds (0 = from start up).
- replayAttempt IntegerThreshold 
- Replay attempt threshold.
- selfTest IntegerFailure Threshold 
- Self-test failure threshold.
- userAuth IntegerFailure Threshold 
- User authentication failure threshold.
- userAuth IntegerLockout Threshold 
- User authentication lockout threshold.
- adminAuth numberFailure Threshold 
- Admin authentication failure threshold.
- adminAuth numberLockout Threshold 
- Admin authentication lockout threshold.
- decryptionFailure numberThreshold 
- Decryption failure threshold.
- encryptionFailure numberThreshold 
- Encryption failure threshold.
- fwPolicy numberId 
- Firewall policy ID.
- fwPolicy numberId Threshold 
- Firewall policy ID threshold.
- fwPolicy AlarmViolations Group Fw Policy Violation[] 
- Firewall policy violations. The structure of fw_policy_violationsblock is documented below.
- id number
- Group ID.
- logFull numberWarning Threshold 
- Log full warning threshold.
- period number
- Time period in seconds (0 = from start up).
- replayAttempt numberThreshold 
- Replay attempt threshold.
- selfTest numberFailure Threshold 
- Self-test failure threshold.
- userAuth numberFailure Threshold 
- User authentication failure threshold.
- userAuth numberLockout Threshold 
- User authentication lockout threshold.
- admin_auth_ intfailure_ threshold 
- Admin authentication failure threshold.
- admin_auth_ intlockout_ threshold 
- Admin authentication lockout threshold.
- decryption_failure_ intthreshold 
- Decryption failure threshold.
- encryption_failure_ intthreshold 
- Encryption failure threshold.
- fw_policy_ intid 
- Firewall policy ID.
- fw_policy_ intid_ threshold 
- Firewall policy ID threshold.
- fw_policy_ Sequence[Alarmviolations Group Fw Policy Violation] 
- Firewall policy violations. The structure of fw_policy_violationsblock is documented below.
- id int
- Group ID.
- log_full_ intwarning_ threshold 
- Log full warning threshold.
- period int
- Time period in seconds (0 = from start up).
- replay_attempt_ intthreshold 
- Replay attempt threshold.
- self_test_ intfailure_ threshold 
- Self-test failure threshold.
- user_auth_ intfailure_ threshold 
- User authentication failure threshold.
- user_auth_ intlockout_ threshold 
- User authentication lockout threshold.
- adminAuth NumberFailure Threshold 
- Admin authentication failure threshold.
- adminAuth NumberLockout Threshold 
- Admin authentication lockout threshold.
- decryptionFailure NumberThreshold 
- Decryption failure threshold.
- encryptionFailure NumberThreshold 
- Encryption failure threshold.
- fwPolicy NumberId 
- Firewall policy ID.
- fwPolicy NumberId Threshold 
- Firewall policy ID threshold.
- fwPolicy List<Property Map>Violations 
- Firewall policy violations. The structure of fw_policy_violationsblock is documented below.
- id Number
- Group ID.
- logFull NumberWarning Threshold 
- Log full warning threshold.
- period Number
- Time period in seconds (0 = from start up).
- replayAttempt NumberThreshold 
- Replay attempt threshold.
- selfTest NumberFailure Threshold 
- Self-test failure threshold.
- userAuth NumberFailure Threshold 
- User authentication failure threshold.
- userAuth NumberLockout Threshold 
- User authentication lockout threshold.
AlarmGroupFwPolicyViolation, AlarmGroupFwPolicyViolationArgs          
Import
System Alarm can be imported using any of these accepted formats:
$ pulumi import fortios:system/alarm:Alarm labelname SystemAlarm
If you do not want to import arguments of block:
$ export “FORTIOS_IMPORT_TABLE”=“false”
$ pulumi import fortios:system/alarm:Alarm labelname SystemAlarm
$ unset “FORTIOS_IMPORT_TABLE”
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- fortios pulumiverse/pulumi-fortios
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the fortiosTerraform Provider.
