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

fortimanager.SystemGuiact

Explore with Pulumi AI

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

    System settings through GUI.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.SystemGuiact("trname", {backupConf: "enable"});
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.SystemGuiact("trname", backup_conf="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.NewSystemGuiact(ctx, "trname", &fortimanager.SystemGuiactArgs{
    			BackupConf: 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.SystemGuiact("trname", new()
        {
            BackupConf = "enable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.SystemGuiact;
    import com.pulumi.fortimanager.SystemGuiactArgs;
    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 SystemGuiact("trname", SystemGuiactArgs.builder()
                .backupConf("enable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:SystemGuiact
        properties:
          backupConf: enable
    

    Create SystemGuiact Resource

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

    Constructor syntax

    new SystemGuiact(name: string, args?: SystemGuiactArgs, opts?: CustomResourceOptions);
    @overload
    def SystemGuiact(resource_name: str,
                     args: Optional[SystemGuiactArgs] = None,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def SystemGuiact(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     backup_all: Optional[str] = None,
                     backup_conf: Optional[str] = None,
                     eventlog_msg: Optional[str] = None,
                     eventlog_path: Optional[str] = None,
                     reboot: Optional[float] = None,
                     reset2default: Optional[float] = None,
                     restore_all: Optional[str] = None,
                     restore_conf: Optional[str] = None,
                     system_guiact_id: Optional[str] = None,
                     time: Optional[str] = None)
    func NewSystemGuiact(ctx *Context, name string, args *SystemGuiactArgs, opts ...ResourceOption) (*SystemGuiact, error)
    public SystemGuiact(string name, SystemGuiactArgs? args = null, CustomResourceOptions? opts = null)
    public SystemGuiact(String name, SystemGuiactArgs args)
    public SystemGuiact(String name, SystemGuiactArgs args, CustomResourceOptions options)
    
    type: fortimanager:SystemGuiact
    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 SystemGuiactArgs
    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 SystemGuiactArgs
    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 SystemGuiactArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SystemGuiactArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SystemGuiactArgs
    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 systemGuiactResource = new Fortimanager.SystemGuiact("systemGuiactResource", new()
    {
        BackupAll = "string",
        BackupConf = "string",
        EventlogMsg = "string",
        EventlogPath = "string",
        Reboot = 0,
        Reset2default = 0,
        RestoreAll = "string",
        RestoreConf = "string",
        SystemGuiactId = "string",
        Time = "string",
    });
    
    example, err := fortimanager.NewSystemGuiact(ctx, "systemGuiactResource", &fortimanager.SystemGuiactArgs{
    BackupAll: pulumi.String("string"),
    BackupConf: pulumi.String("string"),
    EventlogMsg: pulumi.String("string"),
    EventlogPath: pulumi.String("string"),
    Reboot: pulumi.Float64(0),
    Reset2default: pulumi.Float64(0),
    RestoreAll: pulumi.String("string"),
    RestoreConf: pulumi.String("string"),
    SystemGuiactId: pulumi.String("string"),
    Time: pulumi.String("string"),
    })
    
    var systemGuiactResource = new SystemGuiact("systemGuiactResource", SystemGuiactArgs.builder()
        .backupAll("string")
        .backupConf("string")
        .eventlogMsg("string")
        .eventlogPath("string")
        .reboot(0)
        .reset2default(0)
        .restoreAll("string")
        .restoreConf("string")
        .systemGuiactId("string")
        .time("string")
        .build());
    
    system_guiact_resource = fortimanager.SystemGuiact("systemGuiactResource",
        backup_all="string",
        backup_conf="string",
        eventlog_msg="string",
        eventlog_path="string",
        reboot=0,
        reset2default=0,
        restore_all="string",
        restore_conf="string",
        system_guiact_id="string",
        time="string")
    
    const systemGuiactResource = new fortimanager.SystemGuiact("systemGuiactResource", {
        backupAll: "string",
        backupConf: "string",
        eventlogMsg: "string",
        eventlogPath: "string",
        reboot: 0,
        reset2default: 0,
        restoreAll: "string",
        restoreConf: "string",
        systemGuiactId: "string",
        time: "string",
    });
    
    type: fortimanager:SystemGuiact
    properties:
        backupAll: string
        backupConf: string
        eventlogMsg: string
        eventlogPath: string
        reboot: 0
        reset2default: 0
        restoreAll: string
        restoreConf: string
        systemGuiactId: string
        time: string
    

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

    BackupAll string
    Backup all settings.
    BackupConf string
    Backup config file.
    EventlogMsg string
    Write event log.
    EventlogPath string
    Event log path.
    Reboot double
    Reboot system.
    Reset2default double
    Reset to factory default.
    RestoreAll string
    Restore all settings.
    RestoreConf string
    Restore config file.
    SystemGuiactId string
    an identifier for the resource.
    Time string
    Time.
    BackupAll string
    Backup all settings.
    BackupConf string
    Backup config file.
    EventlogMsg string
    Write event log.
    EventlogPath string
    Event log path.
    Reboot float64
    Reboot system.
    Reset2default float64
    Reset to factory default.
    RestoreAll string
    Restore all settings.
    RestoreConf string
    Restore config file.
    SystemGuiactId string
    an identifier for the resource.
    Time string
    Time.
    backupAll String
    Backup all settings.
    backupConf String
    Backup config file.
    eventlogMsg String
    Write event log.
    eventlogPath String
    Event log path.
    reboot Double
    Reboot system.
    reset2default Double
    Reset to factory default.
    restoreAll String
    Restore all settings.
    restoreConf String
    Restore config file.
    systemGuiactId String
    an identifier for the resource.
    time String
    Time.
    backupAll string
    Backup all settings.
    backupConf string
    Backup config file.
    eventlogMsg string
    Write event log.
    eventlogPath string
    Event log path.
    reboot number
    Reboot system.
    reset2default number
    Reset to factory default.
    restoreAll string
    Restore all settings.
    restoreConf string
    Restore config file.
    systemGuiactId string
    an identifier for the resource.
    time string
    Time.
    backup_all str
    Backup all settings.
    backup_conf str
    Backup config file.
    eventlog_msg str
    Write event log.
    eventlog_path str
    Event log path.
    reboot float
    Reboot system.
    reset2default float
    Reset to factory default.
    restore_all str
    Restore all settings.
    restore_conf str
    Restore config file.
    system_guiact_id str
    an identifier for the resource.
    time str
    Time.
    backupAll String
    Backup all settings.
    backupConf String
    Backup config file.
    eventlogMsg String
    Write event log.
    eventlogPath String
    Event log path.
    reboot Number
    Reboot system.
    reset2default Number
    Reset to factory default.
    restoreAll String
    Restore all settings.
    restoreConf String
    Restore config file.
    systemGuiactId String
    an identifier for the resource.
    time String
    Time.

    Outputs

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

    Get an existing SystemGuiact 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?: SystemGuiactState, opts?: CustomResourceOptions): SystemGuiact
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            backup_all: Optional[str] = None,
            backup_conf: Optional[str] = None,
            eventlog_msg: Optional[str] = None,
            eventlog_path: Optional[str] = None,
            reboot: Optional[float] = None,
            reset2default: Optional[float] = None,
            restore_all: Optional[str] = None,
            restore_conf: Optional[str] = None,
            system_guiact_id: Optional[str] = None,
            time: Optional[str] = None) -> SystemGuiact
    func GetSystemGuiact(ctx *Context, name string, id IDInput, state *SystemGuiactState, opts ...ResourceOption) (*SystemGuiact, error)
    public static SystemGuiact Get(string name, Input<string> id, SystemGuiactState? state, CustomResourceOptions? opts = null)
    public static SystemGuiact get(String name, Output<String> id, SystemGuiactState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:SystemGuiact    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:
    BackupAll string
    Backup all settings.
    BackupConf string
    Backup config file.
    EventlogMsg string
    Write event log.
    EventlogPath string
    Event log path.
    Reboot double
    Reboot system.
    Reset2default double
    Reset to factory default.
    RestoreAll string
    Restore all settings.
    RestoreConf string
    Restore config file.
    SystemGuiactId string
    an identifier for the resource.
    Time string
    Time.
    BackupAll string
    Backup all settings.
    BackupConf string
    Backup config file.
    EventlogMsg string
    Write event log.
    EventlogPath string
    Event log path.
    Reboot float64
    Reboot system.
    Reset2default float64
    Reset to factory default.
    RestoreAll string
    Restore all settings.
    RestoreConf string
    Restore config file.
    SystemGuiactId string
    an identifier for the resource.
    Time string
    Time.
    backupAll String
    Backup all settings.
    backupConf String
    Backup config file.
    eventlogMsg String
    Write event log.
    eventlogPath String
    Event log path.
    reboot Double
    Reboot system.
    reset2default Double
    Reset to factory default.
    restoreAll String
    Restore all settings.
    restoreConf String
    Restore config file.
    systemGuiactId String
    an identifier for the resource.
    time String
    Time.
    backupAll string
    Backup all settings.
    backupConf string
    Backup config file.
    eventlogMsg string
    Write event log.
    eventlogPath string
    Event log path.
    reboot number
    Reboot system.
    reset2default number
    Reset to factory default.
    restoreAll string
    Restore all settings.
    restoreConf string
    Restore config file.
    systemGuiactId string
    an identifier for the resource.
    time string
    Time.
    backup_all str
    Backup all settings.
    backup_conf str
    Backup config file.
    eventlog_msg str
    Write event log.
    eventlog_path str
    Event log path.
    reboot float
    Reboot system.
    reset2default float
    Reset to factory default.
    restore_all str
    Restore all settings.
    restore_conf str
    Restore config file.
    system_guiact_id str
    an identifier for the resource.
    time str
    Time.
    backupAll String
    Backup all settings.
    backupConf String
    Backup config file.
    eventlogMsg String
    Write event log.
    eventlogPath String
    Event log path.
    reboot Number
    Reboot system.
    reset2default Number
    Reset to factory default.
    restoreAll String
    Restore all settings.
    restoreConf String
    Restore config file.
    systemGuiactId String
    an identifier for the resource.
    time String
    Time.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/systemGuiact:SystemGuiact labelname SystemGuiact
    

    $ 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