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

fortimanager.SystempDeviceProfileFortiguard

Explore with Pulumi AI

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

    Systemp DeviceProfileFortiguard

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystempDeviceProfileFortiguard("trname", {
        autoFirmwareUpgrade: "disable",
        devprof: "default",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystempDeviceProfileFortiguard("trname",
        auto_firmware_upgrade="disable",
        devprof="default")
    
    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.NewSystempDeviceProfileFortiguard(ctx, "trname", &fortimanager.SystempDeviceProfileFortiguardArgs{
    			AutoFirmwareUpgrade: pulumi.String("disable"),
    			Devprof:             pulumi.String("default"),
    		})
    		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.SystempDeviceProfileFortiguard("trname", new()
        {
            AutoFirmwareUpgrade = "disable",
            Devprof = "default",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystempDeviceProfileFortiguard;
    import com.pulumi.fortimanager.SystempDeviceProfileFortiguardArgs;
    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 SystempDeviceProfileFortiguard("trname", SystempDeviceProfileFortiguardArgs.builder()
                .autoFirmwareUpgrade("disable")
                .devprof("default")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystempDeviceProfileFortiguard
        properties:
          autoFirmwareUpgrade: disable
          devprof: default
    

    Create SystempDeviceProfileFortiguard Resource

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

    Constructor syntax

    new SystempDeviceProfileFortiguard(name: string, args: SystempDeviceProfileFortiguardArgs, opts?: CustomResourceOptions);
    @overload
    def SystempDeviceProfileFortiguard(resource_name: str,
                                       args: SystempDeviceProfileFortiguardArgs,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystempDeviceProfileFortiguard(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       devprof: Optional[str] = None,
                                       adom: Optional[str] = None,
                                       auto_firmware_upgrade: Optional[str] = None,
                                       auto_firmware_upgrade_days: Optional[Sequence[str]] = None,
                                       auto_firmware_upgrade_delay: Optional[float] = None,
                                       auto_firmware_upgrade_end_hour: Optional[float] = None,
                                       auto_firmware_upgrade_start_hour: Optional[float] = None,
                                       scopetype: Optional[str] = None,
                                       systemp_device_profile_fortiguard_id: Optional[str] = None,
                                       target: Optional[str] = None,
                                       target_ip: Optional[str] = None)
    func NewSystempDeviceProfileFortiguard(ctx *Context, name string, args SystempDeviceProfileFortiguardArgs, opts ...ResourceOption) (*SystempDeviceProfileFortiguard, error)
    public SystempDeviceProfileFortiguard(string name, SystempDeviceProfileFortiguardArgs args, CustomResourceOptions? opts = null)
    public SystempDeviceProfileFortiguard(String name, SystempDeviceProfileFortiguardArgs args)
    public SystempDeviceProfileFortiguard(String name, SystempDeviceProfileFortiguardArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystempDeviceProfileFortiguard
    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 SystempDeviceProfileFortiguardArgs
    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 SystempDeviceProfileFortiguardArgs
    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 SystempDeviceProfileFortiguardArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystempDeviceProfileFortiguardArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystempDeviceProfileFortiguardArgs
    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 systempDeviceProfileFortiguardResource = new Fortimanager.SystempDeviceProfileFortiguard("systempDeviceProfileFortiguardResource", new()
    {
        Devprof = "string",
        Adom = "string",
        AutoFirmwareUpgrade = "string",
        AutoFirmwareUpgradeDays = new[]
        {
            "string",
        },
        AutoFirmwareUpgradeDelay = 0,
        AutoFirmwareUpgradeEndHour = 0,
        AutoFirmwareUpgradeStartHour = 0,
        Scopetype = "string",
        SystempDeviceProfileFortiguardId = "string",
        Target = "string",
        TargetIp = "string",
    });
    
    example, err := fortimanager.NewSystempDeviceProfileFortiguard(ctx, "systempDeviceProfileFortiguardResource", &fortimanager.SystempDeviceProfileFortiguardArgs{
    Devprof: pulumi.String("string"),
    Adom: pulumi.String("string"),
    AutoFirmwareUpgrade: pulumi.String("string"),
    AutoFirmwareUpgradeDays: pulumi.StringArray{
    pulumi.String("string"),
    },
    AutoFirmwareUpgradeDelay: pulumi.Float64(0),
    AutoFirmwareUpgradeEndHour: pulumi.Float64(0),
    AutoFirmwareUpgradeStartHour: pulumi.Float64(0),
    Scopetype: pulumi.String("string"),
    SystempDeviceProfileFortiguardId: pulumi.String("string"),
    Target: pulumi.String("string"),
    TargetIp: pulumi.String("string"),
    })
    
    var systempDeviceProfileFortiguardResource = new SystempDeviceProfileFortiguard("systempDeviceProfileFortiguardResource", SystempDeviceProfileFortiguardArgs.builder()
        .devprof("string")
        .adom("string")
        .autoFirmwareUpgrade("string")
        .autoFirmwareUpgradeDays("string")
        .autoFirmwareUpgradeDelay(0)
        .autoFirmwareUpgradeEndHour(0)
        .autoFirmwareUpgradeStartHour(0)
        .scopetype("string")
        .systempDeviceProfileFortiguardId("string")
        .target("string")
        .targetIp("string")
        .build());
    
    systemp_device_profile_fortiguard_resource = fortimanager.SystempDeviceProfileFortiguard("systempDeviceProfileFortiguardResource",
        devprof="string",
        adom="string",
        auto_firmware_upgrade="string",
        auto_firmware_upgrade_days=["string"],
        auto_firmware_upgrade_delay=0,
        auto_firmware_upgrade_end_hour=0,
        auto_firmware_upgrade_start_hour=0,
        scopetype="string",
        systemp_device_profile_fortiguard_id="string",
        target="string",
        target_ip="string")
    
    const systempDeviceProfileFortiguardResource = new fortimanager.SystempDeviceProfileFortiguard("systempDeviceProfileFortiguardResource", {
        devprof: "string",
        adom: "string",
        autoFirmwareUpgrade: "string",
        autoFirmwareUpgradeDays: ["string"],
        autoFirmwareUpgradeDelay: 0,
        autoFirmwareUpgradeEndHour: 0,
        autoFirmwareUpgradeStartHour: 0,
        scopetype: "string",
        systempDeviceProfileFortiguardId: "string",
        target: "string",
        targetIp: "string",
    });
    
    type: fortimanager:SystempDeviceProfileFortiguard
    properties:
        adom: string
        autoFirmwareUpgrade: string
        autoFirmwareUpgradeDays:
            - string
        autoFirmwareUpgradeDelay: 0
        autoFirmwareUpgradeEndHour: 0
        autoFirmwareUpgradeStartHour: 0
        devprof: string
        scopetype: string
        systempDeviceProfileFortiguardId: string
        target: string
        targetIp: string
    

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

    Devprof string
    Devprof.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AutoFirmwareUpgrade string
    Auto-Firmware-Upgrade. Valid values: disable, enable.
    AutoFirmwareUpgradeDays List<string>
    Auto-Firmware-Upgrade-Day. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    AutoFirmwareUpgradeDelay double
    Auto-Firmware-Upgrade-Delay.
    AutoFirmwareUpgradeEndHour double
    Auto-Firmware-Upgrade-End-Hour.
    AutoFirmwareUpgradeStartHour double
    Auto-Firmware-Upgrade-Start-Hour.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SystempDeviceProfileFortiguardId string
    an identifier for the resource.
    Target string
    Target. Valid values: none, direct, this-fmg.
    TargetIp string
    Target-Ip.
    Devprof string
    Devprof.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AutoFirmwareUpgrade string
    Auto-Firmware-Upgrade. Valid values: disable, enable.
    AutoFirmwareUpgradeDays []string
    Auto-Firmware-Upgrade-Day. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    AutoFirmwareUpgradeDelay float64
    Auto-Firmware-Upgrade-Delay.
    AutoFirmwareUpgradeEndHour float64
    Auto-Firmware-Upgrade-End-Hour.
    AutoFirmwareUpgradeStartHour float64
    Auto-Firmware-Upgrade-Start-Hour.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SystempDeviceProfileFortiguardId string
    an identifier for the resource.
    Target string
    Target. Valid values: none, direct, this-fmg.
    TargetIp string
    Target-Ip.
    devprof String
    Devprof.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoFirmwareUpgrade String
    Auto-Firmware-Upgrade. Valid values: disable, enable.
    autoFirmwareUpgradeDays List<String>
    Auto-Firmware-Upgrade-Day. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    autoFirmwareUpgradeDelay Double
    Auto-Firmware-Upgrade-Delay.
    autoFirmwareUpgradeEndHour Double
    Auto-Firmware-Upgrade-End-Hour.
    autoFirmwareUpgradeStartHour Double
    Auto-Firmware-Upgrade-Start-Hour.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systempDeviceProfileFortiguardId String
    an identifier for the resource.
    target String
    Target. Valid values: none, direct, this-fmg.
    targetIp String
    Target-Ip.
    devprof string
    Devprof.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoFirmwareUpgrade string
    Auto-Firmware-Upgrade. Valid values: disable, enable.
    autoFirmwareUpgradeDays string[]
    Auto-Firmware-Upgrade-Day. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    autoFirmwareUpgradeDelay number
    Auto-Firmware-Upgrade-Delay.
    autoFirmwareUpgradeEndHour number
    Auto-Firmware-Upgrade-End-Hour.
    autoFirmwareUpgradeStartHour number
    Auto-Firmware-Upgrade-Start-Hour.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systempDeviceProfileFortiguardId string
    an identifier for the resource.
    target string
    Target. Valid values: none, direct, this-fmg.
    targetIp string
    Target-Ip.
    devprof str
    Devprof.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    auto_firmware_upgrade str
    Auto-Firmware-Upgrade. Valid values: disable, enable.
    auto_firmware_upgrade_days Sequence[str]
    Auto-Firmware-Upgrade-Day. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    auto_firmware_upgrade_delay float
    Auto-Firmware-Upgrade-Delay.
    auto_firmware_upgrade_end_hour float
    Auto-Firmware-Upgrade-End-Hour.
    auto_firmware_upgrade_start_hour float
    Auto-Firmware-Upgrade-Start-Hour.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systemp_device_profile_fortiguard_id str
    an identifier for the resource.
    target str
    Target. Valid values: none, direct, this-fmg.
    target_ip str
    Target-Ip.
    devprof String
    Devprof.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoFirmwareUpgrade String
    Auto-Firmware-Upgrade. Valid values: disable, enable.
    autoFirmwareUpgradeDays List<String>
    Auto-Firmware-Upgrade-Day. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    autoFirmwareUpgradeDelay Number
    Auto-Firmware-Upgrade-Delay.
    autoFirmwareUpgradeEndHour Number
    Auto-Firmware-Upgrade-End-Hour.
    autoFirmwareUpgradeStartHour Number
    Auto-Firmware-Upgrade-Start-Hour.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systempDeviceProfileFortiguardId String
    an identifier for the resource.
    target String
    Target. Valid values: none, direct, this-fmg.
    targetIp String
    Target-Ip.

    Outputs

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

    Get an existing SystempDeviceProfileFortiguard 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?: SystempDeviceProfileFortiguardState, opts?: CustomResourceOptions): SystempDeviceProfileFortiguard
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            auto_firmware_upgrade: Optional[str] = None,
            auto_firmware_upgrade_days: Optional[Sequence[str]] = None,
            auto_firmware_upgrade_delay: Optional[float] = None,
            auto_firmware_upgrade_end_hour: Optional[float] = None,
            auto_firmware_upgrade_start_hour: Optional[float] = None,
            devprof: Optional[str] = None,
            scopetype: Optional[str] = None,
            systemp_device_profile_fortiguard_id: Optional[str] = None,
            target: Optional[str] = None,
            target_ip: Optional[str] = None) -> SystempDeviceProfileFortiguard
    func GetSystempDeviceProfileFortiguard(ctx *Context, name string, id IDInput, state *SystempDeviceProfileFortiguardState, opts ...ResourceOption) (*SystempDeviceProfileFortiguard, error)
    public static SystempDeviceProfileFortiguard Get(string name, Input<string> id, SystempDeviceProfileFortiguardState? state, CustomResourceOptions? opts = null)
    public static SystempDeviceProfileFortiguard get(String name, Output<String> id, SystempDeviceProfileFortiguardState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystempDeviceProfileFortiguard    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:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AutoFirmwareUpgrade string
    Auto-Firmware-Upgrade. Valid values: disable, enable.
    AutoFirmwareUpgradeDays List<string>
    Auto-Firmware-Upgrade-Day. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    AutoFirmwareUpgradeDelay double
    Auto-Firmware-Upgrade-Delay.
    AutoFirmwareUpgradeEndHour double
    Auto-Firmware-Upgrade-End-Hour.
    AutoFirmwareUpgradeStartHour double
    Auto-Firmware-Upgrade-Start-Hour.
    Devprof string
    Devprof.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SystempDeviceProfileFortiguardId string
    an identifier for the resource.
    Target string
    Target. Valid values: none, direct, this-fmg.
    TargetIp string
    Target-Ip.
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    AutoFirmwareUpgrade string
    Auto-Firmware-Upgrade. Valid values: disable, enable.
    AutoFirmwareUpgradeDays []string
    Auto-Firmware-Upgrade-Day. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    AutoFirmwareUpgradeDelay float64
    Auto-Firmware-Upgrade-Delay.
    AutoFirmwareUpgradeEndHour float64
    Auto-Firmware-Upgrade-End-Hour.
    AutoFirmwareUpgradeStartHour float64
    Auto-Firmware-Upgrade-Start-Hour.
    Devprof string
    Devprof.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    SystempDeviceProfileFortiguardId string
    an identifier for the resource.
    Target string
    Target. Valid values: none, direct, this-fmg.
    TargetIp string
    Target-Ip.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoFirmwareUpgrade String
    Auto-Firmware-Upgrade. Valid values: disable, enable.
    autoFirmwareUpgradeDays List<String>
    Auto-Firmware-Upgrade-Day. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    autoFirmwareUpgradeDelay Double
    Auto-Firmware-Upgrade-Delay.
    autoFirmwareUpgradeEndHour Double
    Auto-Firmware-Upgrade-End-Hour.
    autoFirmwareUpgradeStartHour Double
    Auto-Firmware-Upgrade-Start-Hour.
    devprof String
    Devprof.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systempDeviceProfileFortiguardId String
    an identifier for the resource.
    target String
    Target. Valid values: none, direct, this-fmg.
    targetIp String
    Target-Ip.
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoFirmwareUpgrade string
    Auto-Firmware-Upgrade. Valid values: disable, enable.
    autoFirmwareUpgradeDays string[]
    Auto-Firmware-Upgrade-Day. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    autoFirmwareUpgradeDelay number
    Auto-Firmware-Upgrade-Delay.
    autoFirmwareUpgradeEndHour number
    Auto-Firmware-Upgrade-End-Hour.
    autoFirmwareUpgradeStartHour number
    Auto-Firmware-Upgrade-Start-Hour.
    devprof string
    Devprof.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systempDeviceProfileFortiguardId string
    an identifier for the resource.
    target string
    Target. Valid values: none, direct, this-fmg.
    targetIp string
    Target-Ip.
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    auto_firmware_upgrade str
    Auto-Firmware-Upgrade. Valid values: disable, enable.
    auto_firmware_upgrade_days Sequence[str]
    Auto-Firmware-Upgrade-Day. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    auto_firmware_upgrade_delay float
    Auto-Firmware-Upgrade-Delay.
    auto_firmware_upgrade_end_hour float
    Auto-Firmware-Upgrade-End-Hour.
    auto_firmware_upgrade_start_hour float
    Auto-Firmware-Upgrade-Start-Hour.
    devprof str
    Devprof.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systemp_device_profile_fortiguard_id str
    an identifier for the resource.
    target str
    Target. Valid values: none, direct, this-fmg.
    target_ip str
    Target-Ip.
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    autoFirmwareUpgrade String
    Auto-Firmware-Upgrade. Valid values: disable, enable.
    autoFirmwareUpgradeDays List<String>
    Auto-Firmware-Upgrade-Day. Valid values: sunday, monday, tuesday, wednesday, thursday, friday, saturday.
    autoFirmwareUpgradeDelay Number
    Auto-Firmware-Upgrade-Delay.
    autoFirmwareUpgradeEndHour Number
    Auto-Firmware-Upgrade-End-Hour.
    autoFirmwareUpgradeStartHour Number
    Auto-Firmware-Upgrade-Start-Hour.
    devprof String
    Devprof.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    systempDeviceProfileFortiguardId String
    an identifier for the resource.
    target String
    Target. Valid values: none, direct, this-fmg.
    targetIp String
    Target-Ip.

    Import

    Systemp DeviceProfileFortiguard can be imported using any of these accepted formats:

    Set import_options = [“devprof=YOUR_VALUE”] in the provider section.

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systempDeviceProfileFortiguard:SystempDeviceProfileFortiguard labelname SystempDeviceProfileFortiguard
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    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