fortimanager.SystempDeviceProfileFortiguard
Explore with Pulumi AI
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
isadom
, otherwise the value of adom in the provider will be inherited. - Auto
Firmware stringUpgrade - Auto-Firmware-Upgrade. Valid values:
disable
,enable
. - Auto
Firmware List<string>Upgrade Days - Auto-Firmware-Upgrade-Day. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - Auto
Firmware doubleUpgrade Delay - Auto-Firmware-Upgrade-Delay.
- Auto
Firmware doubleUpgrade End Hour - Auto-Firmware-Upgrade-End-Hour.
- Auto
Firmware doubleUpgrade Start Hour - Auto-Firmware-Upgrade-Start-Hour.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Systemp
Device stringProfile Fortiguard Id - an identifier for the resource.
- Target string
- Target. Valid values:
none
,direct
,this-fmg
. - Target
Ip string - Target-Ip.
- Devprof string
- Devprof.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auto
Firmware stringUpgrade - Auto-Firmware-Upgrade. Valid values:
disable
,enable
. - Auto
Firmware []stringUpgrade Days - Auto-Firmware-Upgrade-Day. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - Auto
Firmware float64Upgrade Delay - Auto-Firmware-Upgrade-Delay.
- Auto
Firmware float64Upgrade End Hour - Auto-Firmware-Upgrade-End-Hour.
- Auto
Firmware float64Upgrade Start Hour - Auto-Firmware-Upgrade-Start-Hour.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Systemp
Device stringProfile Fortiguard Id - an identifier for the resource.
- Target string
- Target. Valid values:
none
,direct
,this-fmg
. - Target
Ip string - Target-Ip.
- devprof String
- Devprof.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Firmware StringUpgrade - Auto-Firmware-Upgrade. Valid values:
disable
,enable
. - auto
Firmware List<String>Upgrade Days - Auto-Firmware-Upgrade-Day. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto
Firmware DoubleUpgrade Delay - Auto-Firmware-Upgrade-Delay.
- auto
Firmware DoubleUpgrade End Hour - Auto-Firmware-Upgrade-End-Hour.
- auto
Firmware DoubleUpgrade Start Hour - Auto-Firmware-Upgrade-Start-Hour.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - systemp
Device StringProfile Fortiguard Id - an identifier for the resource.
- target String
- Target. Valid values:
none
,direct
,this-fmg
. - target
Ip String - Target-Ip.
- devprof string
- Devprof.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Firmware stringUpgrade - Auto-Firmware-Upgrade. Valid values:
disable
,enable
. - auto
Firmware string[]Upgrade Days - Auto-Firmware-Upgrade-Day. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto
Firmware numberUpgrade Delay - Auto-Firmware-Upgrade-Delay.
- auto
Firmware numberUpgrade End Hour - Auto-Firmware-Upgrade-End-Hour.
- auto
Firmware numberUpgrade Start Hour - Auto-Firmware-Upgrade-Start-Hour.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - systemp
Device stringProfile Fortiguard Id - an identifier for the resource.
- target string
- Target. Valid values:
none
,direct
,this-fmg
. - target
Ip string - Target-Ip.
- devprof str
- Devprof.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto_
firmware_ strupgrade - Auto-Firmware-Upgrade. Valid values:
disable
,enable
. - auto_
firmware_ Sequence[str]upgrade_ days - Auto-Firmware-Upgrade-Day. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto_
firmware_ floatupgrade_ delay - Auto-Firmware-Upgrade-Delay.
- auto_
firmware_ floatupgrade_ end_ hour - Auto-Firmware-Upgrade-End-Hour.
- auto_
firmware_ floatupgrade_ start_ hour - Auto-Firmware-Upgrade-Start-Hour.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - systemp_
device_ strprofile_ fortiguard_ id - 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
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Firmware StringUpgrade - Auto-Firmware-Upgrade. Valid values:
disable
,enable
. - auto
Firmware List<String>Upgrade Days - Auto-Firmware-Upgrade-Day. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto
Firmware NumberUpgrade Delay - Auto-Firmware-Upgrade-Delay.
- auto
Firmware NumberUpgrade End Hour - Auto-Firmware-Upgrade-End-Hour.
- auto
Firmware NumberUpgrade Start Hour - Auto-Firmware-Upgrade-Start-Hour.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - systemp
Device StringProfile Fortiguard Id - an identifier for the resource.
- target String
- Target. Valid values:
none
,direct
,this-fmg
. - target
Ip 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auto
Firmware stringUpgrade - Auto-Firmware-Upgrade. Valid values:
disable
,enable
. - Auto
Firmware List<string>Upgrade Days - Auto-Firmware-Upgrade-Day. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - Auto
Firmware doubleUpgrade Delay - Auto-Firmware-Upgrade-Delay.
- Auto
Firmware doubleUpgrade End Hour - Auto-Firmware-Upgrade-End-Hour.
- Auto
Firmware doubleUpgrade Start Hour - Auto-Firmware-Upgrade-Start-Hour.
- Devprof string
- Devprof.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Systemp
Device stringProfile Fortiguard Id - an identifier for the resource.
- Target string
- Target. Valid values:
none
,direct
,this-fmg
. - Target
Ip string - Target-Ip.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Auto
Firmware stringUpgrade - Auto-Firmware-Upgrade. Valid values:
disable
,enable
. - Auto
Firmware []stringUpgrade Days - Auto-Firmware-Upgrade-Day. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - Auto
Firmware float64Upgrade Delay - Auto-Firmware-Upgrade-Delay.
- Auto
Firmware float64Upgrade End Hour - Auto-Firmware-Upgrade-End-Hour.
- Auto
Firmware float64Upgrade Start Hour - Auto-Firmware-Upgrade-Start-Hour.
- Devprof string
- Devprof.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Systemp
Device stringProfile Fortiguard Id - an identifier for the resource.
- Target string
- Target. Valid values:
none
,direct
,this-fmg
. - Target
Ip string - Target-Ip.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Firmware StringUpgrade - Auto-Firmware-Upgrade. Valid values:
disable
,enable
. - auto
Firmware List<String>Upgrade Days - Auto-Firmware-Upgrade-Day. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto
Firmware DoubleUpgrade Delay - Auto-Firmware-Upgrade-Delay.
- auto
Firmware DoubleUpgrade End Hour - Auto-Firmware-Upgrade-End-Hour.
- auto
Firmware DoubleUpgrade Start Hour - Auto-Firmware-Upgrade-Start-Hour.
- devprof String
- Devprof.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - systemp
Device StringProfile Fortiguard Id - an identifier for the resource.
- target String
- Target. Valid values:
none
,direct
,this-fmg
. - target
Ip String - Target-Ip.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Firmware stringUpgrade - Auto-Firmware-Upgrade. Valid values:
disable
,enable
. - auto
Firmware string[]Upgrade Days - Auto-Firmware-Upgrade-Day. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto
Firmware numberUpgrade Delay - Auto-Firmware-Upgrade-Delay.
- auto
Firmware numberUpgrade End Hour - Auto-Firmware-Upgrade-End-Hour.
- auto
Firmware numberUpgrade Start Hour - Auto-Firmware-Upgrade-Start-Hour.
- devprof string
- Devprof.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - systemp
Device stringProfile Fortiguard Id - an identifier for the resource.
- target string
- Target. Valid values:
none
,direct
,this-fmg
. - target
Ip string - Target-Ip.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - auto_
firmware_ strupgrade - Auto-Firmware-Upgrade. Valid values:
disable
,enable
. - auto_
firmware_ Sequence[str]upgrade_ days - Auto-Firmware-Upgrade-Day. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto_
firmware_ floatupgrade_ delay - Auto-Firmware-Upgrade-Delay.
- auto_
firmware_ floatupgrade_ end_ hour - Auto-Firmware-Upgrade-End-Hour.
- auto_
firmware_ floatupgrade_ start_ hour - Auto-Firmware-Upgrade-Start-Hour.
- devprof str
- Devprof.
- scopetype str
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - systemp_
device_ strprofile_ fortiguard_ id - 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
isadom
, otherwise the value of adom in the provider will be inherited. - auto
Firmware StringUpgrade - Auto-Firmware-Upgrade. Valid values:
disable
,enable
. - auto
Firmware List<String>Upgrade Days - Auto-Firmware-Upgrade-Day. Valid values:
sunday
,monday
,tuesday
,wednesday
,thursday
,friday
,saturday
. - auto
Firmware NumberUpgrade Delay - Auto-Firmware-Upgrade-Delay.
- auto
Firmware NumberUpgrade End Hour - Auto-Firmware-Upgrade-End-Hour.
- auto
Firmware NumberUpgrade Start Hour - Auto-Firmware-Upgrade-Start-Hour.
- devprof String
- Devprof.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - systemp
Device StringProfile Fortiguard Id - an identifier for the resource.
- target String
- Target. Valid values:
none
,direct
,this-fmg
. - target
Ip 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.