1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. SystemFortiviewSetting
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

fortimanager.SystemFortiviewSetting

Explore with Pulumi AI

fortimanager logo
fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev

    FortiView settings.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystemFortiviewSetting("trname", {
        notScannedApps: "exclude",
        resolveIp: "enable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystemFortiviewSetting("trname",
        not_scanned_apps="exclude",
        resolve_ip="enable")
    
    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.NewSystemFortiviewSetting(ctx, "trname", &fortimanager.SystemFortiviewSettingArgs{
    			NotScannedApps: pulumi.String("exclude"),
    			ResolveIp:      pulumi.String("enable"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortimanager = Pulumi.Fortimanager;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortimanager.SystemFortiviewSetting("trname", new()
        {
            NotScannedApps = "exclude",
            ResolveIp = "enable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemFortiviewSetting;
    import com.pulumi.fortimanager.SystemFortiviewSettingArgs;
    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 SystemFortiviewSetting("trname", SystemFortiviewSettingArgs.builder()
                .notScannedApps("exclude")
                .resolveIp("enable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystemFortiviewSetting
        properties:
          notScannedApps: exclude
          resolveIp: enable
    

    Create SystemFortiviewSetting Resource

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

    Constructor syntax

    new SystemFortiviewSetting(name: string, args?: SystemFortiviewSettingArgs, opts?: CustomResourceOptions);
    @overload
    def SystemFortiviewSetting(resource_name: str,
                               args: Optional[SystemFortiviewSettingArgs] = None,
                               opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemFortiviewSetting(resource_name: str,
                               opts: Optional[ResourceOptions] = None,
                               data_source: Optional[str] = None,
                               not_scanned_apps: Optional[str] = None,
                               resolve_ip: Optional[str] = None,
                               system_fortiview_setting_id: Optional[str] = None)
    func NewSystemFortiviewSetting(ctx *Context, name string, args *SystemFortiviewSettingArgs, opts ...ResourceOption) (*SystemFortiviewSetting, error)
    public SystemFortiviewSetting(string name, SystemFortiviewSettingArgs? args = null, CustomResourceOptions? opts = null)
    public SystemFortiviewSetting(String name, SystemFortiviewSettingArgs args)
    public SystemFortiviewSetting(String name, SystemFortiviewSettingArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemFortiviewSetting
    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 SystemFortiviewSettingArgs
    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 SystemFortiviewSettingArgs
    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 SystemFortiviewSettingArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemFortiviewSettingArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemFortiviewSettingArgs
    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 systemFortiviewSettingResource = new Fortimanager.SystemFortiviewSetting("systemFortiviewSettingResource", new()
    {
        DataSource = "string",
        NotScannedApps = "string",
        ResolveIp = "string",
        SystemFortiviewSettingId = "string",
    });
    
    example, err := fortimanager.NewSystemFortiviewSetting(ctx, "systemFortiviewSettingResource", &fortimanager.SystemFortiviewSettingArgs{
    DataSource: pulumi.String("string"),
    NotScannedApps: pulumi.String("string"),
    ResolveIp: pulumi.String("string"),
    SystemFortiviewSettingId: pulumi.String("string"),
    })
    
    var systemFortiviewSettingResource = new SystemFortiviewSetting("systemFortiviewSettingResource", SystemFortiviewSettingArgs.builder()
        .dataSource("string")
        .notScannedApps("string")
        .resolveIp("string")
        .systemFortiviewSettingId("string")
        .build());
    
    system_fortiview_setting_resource = fortimanager.SystemFortiviewSetting("systemFortiviewSettingResource",
        data_source="string",
        not_scanned_apps="string",
        resolve_ip="string",
        system_fortiview_setting_id="string")
    
    const systemFortiviewSettingResource = new fortimanager.SystemFortiviewSetting("systemFortiviewSettingResource", {
        dataSource: "string",
        notScannedApps: "string",
        resolveIp: "string",
        systemFortiviewSettingId: "string",
    });
    
    type: fortimanager:SystemFortiviewSetting
    properties:
        dataSource: string
        notScannedApps: string
        resolveIp: string
        systemFortiviewSettingId: string
    

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

    DataSource string
    Data soure of the fortiview query. auto - Data from hcache, and from logs in a flexible way. cache-only - Data from hcache only. log-and-cache - Data from logs and hcache. Valid values: auto, cache-only, log-and-cache.
    NotScannedApps string
    Include/Exclude 'Not.Scanned' applications in FortiView. Set as 'exclude' if you want to filter out never scanned applications. exclude - Exclude 'Not.Scanned' applications in FortiView. include - Include 'Not.Scanned' applications in FortiView. Valid values: exclude, include.
    ResolveIp string
    Enable or disable resolving IP address to hostname in FortiView. disable - Disable resolving IP address to hostname. enable - Enable resolving IP address to hostname. Valid values: disable, enable.
    SystemFortiviewSettingId string
    an identifier for the resource.
    DataSource string
    Data soure of the fortiview query. auto - Data from hcache, and from logs in a flexible way. cache-only - Data from hcache only. log-and-cache - Data from logs and hcache. Valid values: auto, cache-only, log-and-cache.
    NotScannedApps string
    Include/Exclude 'Not.Scanned' applications in FortiView. Set as 'exclude' if you want to filter out never scanned applications. exclude - Exclude 'Not.Scanned' applications in FortiView. include - Include 'Not.Scanned' applications in FortiView. Valid values: exclude, include.
    ResolveIp string
    Enable or disable resolving IP address to hostname in FortiView. disable - Disable resolving IP address to hostname. enable - Enable resolving IP address to hostname. Valid values: disable, enable.
    SystemFortiviewSettingId string
    an identifier for the resource.
    dataSource String
    Data soure of the fortiview query. auto - Data from hcache, and from logs in a flexible way. cache-only - Data from hcache only. log-and-cache - Data from logs and hcache. Valid values: auto, cache-only, log-and-cache.
    notScannedApps String
    Include/Exclude 'Not.Scanned' applications in FortiView. Set as 'exclude' if you want to filter out never scanned applications. exclude - Exclude 'Not.Scanned' applications in FortiView. include - Include 'Not.Scanned' applications in FortiView. Valid values: exclude, include.
    resolveIp String
    Enable or disable resolving IP address to hostname in FortiView. disable - Disable resolving IP address to hostname. enable - Enable resolving IP address to hostname. Valid values: disable, enable.
    systemFortiviewSettingId String
    an identifier for the resource.
    dataSource string
    Data soure of the fortiview query. auto - Data from hcache, and from logs in a flexible way. cache-only - Data from hcache only. log-and-cache - Data from logs and hcache. Valid values: auto, cache-only, log-and-cache.
    notScannedApps string
    Include/Exclude 'Not.Scanned' applications in FortiView. Set as 'exclude' if you want to filter out never scanned applications. exclude - Exclude 'Not.Scanned' applications in FortiView. include - Include 'Not.Scanned' applications in FortiView. Valid values: exclude, include.
    resolveIp string
    Enable or disable resolving IP address to hostname in FortiView. disable - Disable resolving IP address to hostname. enable - Enable resolving IP address to hostname. Valid values: disable, enable.
    systemFortiviewSettingId string
    an identifier for the resource.
    data_source str
    Data soure of the fortiview query. auto - Data from hcache, and from logs in a flexible way. cache-only - Data from hcache only. log-and-cache - Data from logs and hcache. Valid values: auto, cache-only, log-and-cache.
    not_scanned_apps str
    Include/Exclude 'Not.Scanned' applications in FortiView. Set as 'exclude' if you want to filter out never scanned applications. exclude - Exclude 'Not.Scanned' applications in FortiView. include - Include 'Not.Scanned' applications in FortiView. Valid values: exclude, include.
    resolve_ip str
    Enable or disable resolving IP address to hostname in FortiView. disable - Disable resolving IP address to hostname. enable - Enable resolving IP address to hostname. Valid values: disable, enable.
    system_fortiview_setting_id str
    an identifier for the resource.
    dataSource String
    Data soure of the fortiview query. auto - Data from hcache, and from logs in a flexible way. cache-only - Data from hcache only. log-and-cache - Data from logs and hcache. Valid values: auto, cache-only, log-and-cache.
    notScannedApps String
    Include/Exclude 'Not.Scanned' applications in FortiView. Set as 'exclude' if you want to filter out never scanned applications. exclude - Exclude 'Not.Scanned' applications in FortiView. include - Include 'Not.Scanned' applications in FortiView. Valid values: exclude, include.
    resolveIp String
    Enable or disable resolving IP address to hostname in FortiView. disable - Disable resolving IP address to hostname. enable - Enable resolving IP address to hostname. Valid values: disable, enable.
    systemFortiviewSettingId String
    an identifier for the resource.

    Outputs

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

    Get an existing SystemFortiviewSetting 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?: SystemFortiviewSettingState, opts?: CustomResourceOptions): SystemFortiviewSetting
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            data_source: Optional[str] = None,
            not_scanned_apps: Optional[str] = None,
            resolve_ip: Optional[str] = None,
            system_fortiview_setting_id: Optional[str] = None) -> SystemFortiviewSetting
    func GetSystemFortiviewSetting(ctx *Context, name string, id IDInput, state *SystemFortiviewSettingState, opts ...ResourceOption) (*SystemFortiviewSetting, error)
    public static SystemFortiviewSetting Get(string name, Input<string> id, SystemFortiviewSettingState? state, CustomResourceOptions? opts = null)
    public static SystemFortiviewSetting get(String name, Output<String> id, SystemFortiviewSettingState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemFortiviewSetting    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.
    The following state arguments are supported:
    DataSource string
    Data soure of the fortiview query. auto - Data from hcache, and from logs in a flexible way. cache-only - Data from hcache only. log-and-cache - Data from logs and hcache. Valid values: auto, cache-only, log-and-cache.
    NotScannedApps string
    Include/Exclude 'Not.Scanned' applications in FortiView. Set as 'exclude' if you want to filter out never scanned applications. exclude - Exclude 'Not.Scanned' applications in FortiView. include - Include 'Not.Scanned' applications in FortiView. Valid values: exclude, include.
    ResolveIp string
    Enable or disable resolving IP address to hostname in FortiView. disable - Disable resolving IP address to hostname. enable - Enable resolving IP address to hostname. Valid values: disable, enable.
    SystemFortiviewSettingId string
    an identifier for the resource.
    DataSource string
    Data soure of the fortiview query. auto - Data from hcache, and from logs in a flexible way. cache-only - Data from hcache only. log-and-cache - Data from logs and hcache. Valid values: auto, cache-only, log-and-cache.
    NotScannedApps string
    Include/Exclude 'Not.Scanned' applications in FortiView. Set as 'exclude' if you want to filter out never scanned applications. exclude - Exclude 'Not.Scanned' applications in FortiView. include - Include 'Not.Scanned' applications in FortiView. Valid values: exclude, include.
    ResolveIp string
    Enable or disable resolving IP address to hostname in FortiView. disable - Disable resolving IP address to hostname. enable - Enable resolving IP address to hostname. Valid values: disable, enable.
    SystemFortiviewSettingId string
    an identifier for the resource.
    dataSource String
    Data soure of the fortiview query. auto - Data from hcache, and from logs in a flexible way. cache-only - Data from hcache only. log-and-cache - Data from logs and hcache. Valid values: auto, cache-only, log-and-cache.
    notScannedApps String
    Include/Exclude 'Not.Scanned' applications in FortiView. Set as 'exclude' if you want to filter out never scanned applications. exclude - Exclude 'Not.Scanned' applications in FortiView. include - Include 'Not.Scanned' applications in FortiView. Valid values: exclude, include.
    resolveIp String
    Enable or disable resolving IP address to hostname in FortiView. disable - Disable resolving IP address to hostname. enable - Enable resolving IP address to hostname. Valid values: disable, enable.
    systemFortiviewSettingId String
    an identifier for the resource.
    dataSource string
    Data soure of the fortiview query. auto - Data from hcache, and from logs in a flexible way. cache-only - Data from hcache only. log-and-cache - Data from logs and hcache. Valid values: auto, cache-only, log-and-cache.
    notScannedApps string
    Include/Exclude 'Not.Scanned' applications in FortiView. Set as 'exclude' if you want to filter out never scanned applications. exclude - Exclude 'Not.Scanned' applications in FortiView. include - Include 'Not.Scanned' applications in FortiView. Valid values: exclude, include.
    resolveIp string
    Enable or disable resolving IP address to hostname in FortiView. disable - Disable resolving IP address to hostname. enable - Enable resolving IP address to hostname. Valid values: disable, enable.
    systemFortiviewSettingId string
    an identifier for the resource.
    data_source str
    Data soure of the fortiview query. auto - Data from hcache, and from logs in a flexible way. cache-only - Data from hcache only. log-and-cache - Data from logs and hcache. Valid values: auto, cache-only, log-and-cache.
    not_scanned_apps str
    Include/Exclude 'Not.Scanned' applications in FortiView. Set as 'exclude' if you want to filter out never scanned applications. exclude - Exclude 'Not.Scanned' applications in FortiView. include - Include 'Not.Scanned' applications in FortiView. Valid values: exclude, include.
    resolve_ip str
    Enable or disable resolving IP address to hostname in FortiView. disable - Disable resolving IP address to hostname. enable - Enable resolving IP address to hostname. Valid values: disable, enable.
    system_fortiview_setting_id str
    an identifier for the resource.
    dataSource String
    Data soure of the fortiview query. auto - Data from hcache, and from logs in a flexible way. cache-only - Data from hcache only. log-and-cache - Data from logs and hcache. Valid values: auto, cache-only, log-and-cache.
    notScannedApps String
    Include/Exclude 'Not.Scanned' applications in FortiView. Set as 'exclude' if you want to filter out never scanned applications. exclude - Exclude 'Not.Scanned' applications in FortiView. include - Include 'Not.Scanned' applications in FortiView. Valid values: exclude, include.
    resolveIp String
    Enable or disable resolving IP address to hostname in FortiView. disable - Disable resolving IP address to hostname. enable - Enable resolving IP address to hostname. Valid values: disable, enable.
    systemFortiviewSettingId String
    an identifier for the resource.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemFortiviewSetting:SystemFortiviewSetting labelname SystemFortiviewSetting
    

    $ 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.
    fortimanager logo
    fortimanager 1.13.0 published on Thursday, Mar 13, 2025 by fortinetdev