1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. SystemLogIoc
fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev

fortimanager.SystemLogIoc

Explore with Pulumi AI

IoC settings.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";

const trname = new fortimanager.SystemLogIoc("trname", {
    rescanStatus: "disable",
    status: "enable",
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname = fortimanager.SystemLogIoc("trname",
    rescan_status="disable",
    status="enable")
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := fortimanager.NewSystemLogIoc(ctx, "trname", &fortimanager.SystemLogIocArgs{
			RescanStatus: pulumi.String("disable"),
			Status:       pulumi.String("enable"),
		})
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;

return await Deployment.RunAsync(() => 
{
    var trname = new Fortimanager.SystemLogIoc("trname", new()
    {
        RescanStatus = "disable",
        Status = "enable",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.SystemLogIoc;
import com.pulumi.fortimanager.SystemLogIocArgs;
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 trname = new SystemLogIoc("trname", SystemLogIocArgs.builder()
            .rescanStatus("disable")
            .status("enable")
            .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:SystemLogIoc
    properties:
      rescanStatus: disable
      status: enable
Copy

Create SystemLogIoc Resource

Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

Constructor syntax

new SystemLogIoc(name: string, args?: SystemLogIocArgs, opts?: CustomResourceOptions);
@overload
def SystemLogIoc(resource_name: str,
                 args: Optional[SystemLogIocArgs] = None,
                 opts: Optional[ResourceOptions] = None)

@overload
def SystemLogIoc(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 notification: Optional[str] = None,
                 notification_throttle: Optional[float] = None,
                 rescan_max_runner: Optional[float] = None,
                 rescan_run_at: Optional[float] = None,
                 rescan_status: Optional[str] = None,
                 status: Optional[str] = None,
                 system_log_ioc_id: Optional[str] = None)
func NewSystemLogIoc(ctx *Context, name string, args *SystemLogIocArgs, opts ...ResourceOption) (*SystemLogIoc, error)
public SystemLogIoc(string name, SystemLogIocArgs? args = null, CustomResourceOptions? opts = null)
public SystemLogIoc(String name, SystemLogIocArgs args)
public SystemLogIoc(String name, SystemLogIocArgs args, CustomResourceOptions options)
type: fortimanager:SystemLogIoc
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args SystemLogIocArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args SystemLogIocArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args SystemLogIocArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args SystemLogIocArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. SystemLogIocArgs
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 systemLogIocResource = new Fortimanager.SystemLogIoc("systemLogIocResource", new()
{
    Notification = "string",
    NotificationThrottle = 0,
    RescanMaxRunner = 0,
    RescanRunAt = 0,
    RescanStatus = "string",
    Status = "string",
    SystemLogIocId = "string",
});
Copy
example, err := fortimanager.NewSystemLogIoc(ctx, "systemLogIocResource", &fortimanager.SystemLogIocArgs{
Notification: pulumi.String("string"),
NotificationThrottle: pulumi.Float64(0),
RescanMaxRunner: pulumi.Float64(0),
RescanRunAt: pulumi.Float64(0),
RescanStatus: pulumi.String("string"),
Status: pulumi.String("string"),
SystemLogIocId: pulumi.String("string"),
})
Copy
var systemLogIocResource = new SystemLogIoc("systemLogIocResource", SystemLogIocArgs.builder()
    .notification("string")
    .notificationThrottle(0)
    .rescanMaxRunner(0)
    .rescanRunAt(0)
    .rescanStatus("string")
    .status("string")
    .systemLogIocId("string")
    .build());
Copy
system_log_ioc_resource = fortimanager.SystemLogIoc("systemLogIocResource",
    notification="string",
    notification_throttle=0,
    rescan_max_runner=0,
    rescan_run_at=0,
    rescan_status="string",
    status="string",
    system_log_ioc_id="string")
Copy
const systemLogIocResource = new fortimanager.SystemLogIoc("systemLogIocResource", {
    notification: "string",
    notificationThrottle: 0,
    rescanMaxRunner: 0,
    rescanRunAt: 0,
    rescanStatus: "string",
    status: "string",
    systemLogIocId: "string",
});
Copy
type: fortimanager:SystemLogIoc
properties:
    notification: string
    notificationThrottle: 0
    rescanMaxRunner: 0
    rescanRunAt: 0
    rescanStatus: string
    status: string
    systemLogIocId: string
Copy

SystemLogIoc 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 SystemLogIoc resource accepts the following input properties:

Notification string
Disable/Enable IoC notification. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
NotificationThrottle double
Minute value for throttling the rate of IoC notifications.
RescanMaxRunner double
Max count of cocurrent runner of IoC rescan.
RescanRunAt double
When to run IoC rescan.
RescanStatus string
Disable/Enable IoC rescan. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
Status string
Disable/Enable IoC feature. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
SystemLogIocId string
an identifier for the resource.
Notification string
Disable/Enable IoC notification. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
NotificationThrottle float64
Minute value for throttling the rate of IoC notifications.
RescanMaxRunner float64
Max count of cocurrent runner of IoC rescan.
RescanRunAt float64
When to run IoC rescan.
RescanStatus string
Disable/Enable IoC rescan. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
Status string
Disable/Enable IoC feature. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
SystemLogIocId string
an identifier for the resource.
notification String
Disable/Enable IoC notification. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
notificationThrottle Double
Minute value for throttling the rate of IoC notifications.
rescanMaxRunner Double
Max count of cocurrent runner of IoC rescan.
rescanRunAt Double
When to run IoC rescan.
rescanStatus String
Disable/Enable IoC rescan. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
status String
Disable/Enable IoC feature. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
systemLogIocId String
an identifier for the resource.
notification string
Disable/Enable IoC notification. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
notificationThrottle number
Minute value for throttling the rate of IoC notifications.
rescanMaxRunner number
Max count of cocurrent runner of IoC rescan.
rescanRunAt number
When to run IoC rescan.
rescanStatus string
Disable/Enable IoC rescan. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
status string
Disable/Enable IoC feature. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
systemLogIocId string
an identifier for the resource.
notification str
Disable/Enable IoC notification. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
notification_throttle float
Minute value for throttling the rate of IoC notifications.
rescan_max_runner float
Max count of cocurrent runner of IoC rescan.
rescan_run_at float
When to run IoC rescan.
rescan_status str
Disable/Enable IoC rescan. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
status str
Disable/Enable IoC feature. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
system_log_ioc_id str
an identifier for the resource.
notification String
Disable/Enable IoC notification. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
notificationThrottle Number
Minute value for throttling the rate of IoC notifications.
rescanMaxRunner Number
Max count of cocurrent runner of IoC rescan.
rescanRunAt Number
When to run IoC rescan.
rescanStatus String
Disable/Enable IoC rescan. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
status String
Disable/Enable IoC feature. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
systemLogIocId String
an identifier for the resource.

Outputs

All input properties are implicitly available as output properties. Additionally, the SystemLogIoc 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 SystemLogIoc Resource

Get an existing SystemLogIoc 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?: SystemLogIocState, opts?: CustomResourceOptions): SystemLogIoc
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        notification: Optional[str] = None,
        notification_throttle: Optional[float] = None,
        rescan_max_runner: Optional[float] = None,
        rescan_run_at: Optional[float] = None,
        rescan_status: Optional[str] = None,
        status: Optional[str] = None,
        system_log_ioc_id: Optional[str] = None) -> SystemLogIoc
func GetSystemLogIoc(ctx *Context, name string, id IDInput, state *SystemLogIocState, opts ...ResourceOption) (*SystemLogIoc, error)
public static SystemLogIoc Get(string name, Input<string> id, SystemLogIocState? state, CustomResourceOptions? opts = null)
public static SystemLogIoc get(String name, Output<String> id, SystemLogIocState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:SystemLogIoc    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
The following state arguments are supported:
Notification string
Disable/Enable IoC notification. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
NotificationThrottle double
Minute value for throttling the rate of IoC notifications.
RescanMaxRunner double
Max count of cocurrent runner of IoC rescan.
RescanRunAt double
When to run IoC rescan.
RescanStatus string
Disable/Enable IoC rescan. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
Status string
Disable/Enable IoC feature. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
SystemLogIocId string
an identifier for the resource.
Notification string
Disable/Enable IoC notification. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
NotificationThrottle float64
Minute value for throttling the rate of IoC notifications.
RescanMaxRunner float64
Max count of cocurrent runner of IoC rescan.
RescanRunAt float64
When to run IoC rescan.
RescanStatus string
Disable/Enable IoC rescan. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
Status string
Disable/Enable IoC feature. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
SystemLogIocId string
an identifier for the resource.
notification String
Disable/Enable IoC notification. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
notificationThrottle Double
Minute value for throttling the rate of IoC notifications.
rescanMaxRunner Double
Max count of cocurrent runner of IoC rescan.
rescanRunAt Double
When to run IoC rescan.
rescanStatus String
Disable/Enable IoC rescan. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
status String
Disable/Enable IoC feature. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
systemLogIocId String
an identifier for the resource.
notification string
Disable/Enable IoC notification. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
notificationThrottle number
Minute value for throttling the rate of IoC notifications.
rescanMaxRunner number
Max count of cocurrent runner of IoC rescan.
rescanRunAt number
When to run IoC rescan.
rescanStatus string
Disable/Enable IoC rescan. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
status string
Disable/Enable IoC feature. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
systemLogIocId string
an identifier for the resource.
notification str
Disable/Enable IoC notification. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
notification_throttle float
Minute value for throttling the rate of IoC notifications.
rescan_max_runner float
Max count of cocurrent runner of IoC rescan.
rescan_run_at float
When to run IoC rescan.
rescan_status str
Disable/Enable IoC rescan. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
status str
Disable/Enable IoC feature. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
system_log_ioc_id str
an identifier for the resource.
notification String
Disable/Enable IoC notification. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
notificationThrottle Number
Minute value for throttling the rate of IoC notifications.
rescanMaxRunner Number
Max count of cocurrent runner of IoC rescan.
rescanRunAt Number
When to run IoC rescan.
rescanStatus String
Disable/Enable IoC rescan. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
status String
Disable/Enable IoC feature. disable - Disable IoC feature. enable - Enable IoC feature. Valid values: disable, enable.
systemLogIocId String
an identifier for the resource.

Import

System LogIoc can be imported using any of these accepted formats:

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/systemLogIoc:SystemLogIoc labelname SystemLogIoc
Copy

$ unset “FORTIMANAGER_IMPORT_TABLE”

To learn more about importing existing cloud resources, see Importing resources.

Package Details

Repository
fortimanager fortinetdev/terraform-provider-fortimanager
License
Notes
This Pulumi package is based on the fortimanager Terraform Provider.