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

fortimanager.FmupdateAvipsAdvancedlog

Explore with Pulumi AI

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

    Enable/disable logging of FortiGuard antivirus and IPS update packages received by FortiManager’s built-in FortiGuard.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.FmupdateAvipsAdvancedlog("trname", {
        logFortigate: "enable",
        logServer: "enable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.FmupdateAvipsAdvancedlog("trname",
        log_fortigate="enable",
        log_server="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.NewFmupdateAvipsAdvancedlog(ctx, "trname", &fortimanager.FmupdateAvipsAdvancedlogArgs{
    			LogFortigate: pulumi.String("enable"),
    			LogServer:    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.FmupdateAvipsAdvancedlog("trname", new()
        {
            LogFortigate = "enable",
            LogServer = "enable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.FmupdateAvipsAdvancedlog;
    import com.pulumi.fortimanager.FmupdateAvipsAdvancedlogArgs;
    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 FmupdateAvipsAdvancedlog("trname", FmupdateAvipsAdvancedlogArgs.builder()
                .logFortigate("enable")
                .logServer("enable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:FmupdateAvipsAdvancedlog
        properties:
          logFortigate: enable
          logServer: enable
    

    Create FmupdateAvipsAdvancedlog Resource

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

    Constructor syntax

    new FmupdateAvipsAdvancedlog(name: string, args?: FmupdateAvipsAdvancedlogArgs, opts?: CustomResourceOptions);
    @overload
    def FmupdateAvipsAdvancedlog(resource_name: str,
                                 args: Optional[FmupdateAvipsAdvancedlogArgs] = None,
                                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def FmupdateAvipsAdvancedlog(resource_name: str,
                                 opts: Optional[ResourceOptions] = None,
                                 fmupdate_avips_advancedlog_id: Optional[str] = None,
                                 log_fortigate: Optional[str] = None,
                                 log_server: Optional[str] = None)
    func NewFmupdateAvipsAdvancedlog(ctx *Context, name string, args *FmupdateAvipsAdvancedlogArgs, opts ...ResourceOption) (*FmupdateAvipsAdvancedlog, error)
    public FmupdateAvipsAdvancedlog(string name, FmupdateAvipsAdvancedlogArgs? args = null, CustomResourceOptions? opts = null)
    public FmupdateAvipsAdvancedlog(String name, FmupdateAvipsAdvancedlogArgs args)
    public FmupdateAvipsAdvancedlog(String name, FmupdateAvipsAdvancedlogArgs args, CustomResourceOptions options)
    
    type: fortimanager:FmupdateAvipsAdvancedlog
    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 FmupdateAvipsAdvancedlogArgs
    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 FmupdateAvipsAdvancedlogArgs
    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 FmupdateAvipsAdvancedlogArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FmupdateAvipsAdvancedlogArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FmupdateAvipsAdvancedlogArgs
    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 fmupdateAvipsAdvancedlogResource = new Fortimanager.FmupdateAvipsAdvancedlog("fmupdateAvipsAdvancedlogResource", new()
    {
        FmupdateAvipsAdvancedlogId = "string",
        LogFortigate = "string",
        LogServer = "string",
    });
    
    example, err := fortimanager.NewFmupdateAvipsAdvancedlog(ctx, "fmupdateAvipsAdvancedlogResource", &fortimanager.FmupdateAvipsAdvancedlogArgs{
    FmupdateAvipsAdvancedlogId: pulumi.String("string"),
    LogFortigate: pulumi.String("string"),
    LogServer: pulumi.String("string"),
    })
    
    var fmupdateAvipsAdvancedlogResource = new FmupdateAvipsAdvancedlog("fmupdateAvipsAdvancedlogResource", FmupdateAvipsAdvancedlogArgs.builder()
        .fmupdateAvipsAdvancedlogId("string")
        .logFortigate("string")
        .logServer("string")
        .build());
    
    fmupdate_avips_advancedlog_resource = fortimanager.FmupdateAvipsAdvancedlog("fmupdateAvipsAdvancedlogResource",
        fmupdate_avips_advancedlog_id="string",
        log_fortigate="string",
        log_server="string")
    
    const fmupdateAvipsAdvancedlogResource = new fortimanager.FmupdateAvipsAdvancedlog("fmupdateAvipsAdvancedlogResource", {
        fmupdateAvipsAdvancedlogId: "string",
        logFortigate: "string",
        logServer: "string",
    });
    
    type: fortimanager:FmupdateAvipsAdvancedlog
    properties:
        fmupdateAvipsAdvancedlogId: string
        logFortigate: string
        logServer: string
    

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

    FmupdateAvipsAdvancedlogId string
    an identifier for the resource.
    LogFortigate string
    Enable/disable logging of FortiGuard antivirus and IPS service updates of FortiGate devices (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    LogServer string
    Enable/disable logging of update packages received by the build-in FortiGuard server (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    FmupdateAvipsAdvancedlogId string
    an identifier for the resource.
    LogFortigate string
    Enable/disable logging of FortiGuard antivirus and IPS service updates of FortiGate devices (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    LogServer string
    Enable/disable logging of update packages received by the build-in FortiGuard server (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fmupdateAvipsAdvancedlogId String
    an identifier for the resource.
    logFortigate String
    Enable/disable logging of FortiGuard antivirus and IPS service updates of FortiGate devices (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    logServer String
    Enable/disable logging of update packages received by the build-in FortiGuard server (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fmupdateAvipsAdvancedlogId string
    an identifier for the resource.
    logFortigate string
    Enable/disable logging of FortiGuard antivirus and IPS service updates of FortiGate devices (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    logServer string
    Enable/disable logging of update packages received by the build-in FortiGuard server (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fmupdate_avips_advancedlog_id str
    an identifier for the resource.
    log_fortigate str
    Enable/disable logging of FortiGuard antivirus and IPS service updates of FortiGate devices (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    log_server str
    Enable/disable logging of update packages received by the build-in FortiGuard server (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fmupdateAvipsAdvancedlogId String
    an identifier for the resource.
    logFortigate String
    Enable/disable logging of FortiGuard antivirus and IPS service updates of FortiGate devices (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    logServer String
    Enable/disable logging of update packages received by the build-in FortiGuard server (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.

    Outputs

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

    Get an existing FmupdateAvipsAdvancedlog 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?: FmupdateAvipsAdvancedlogState, opts?: CustomResourceOptions): FmupdateAvipsAdvancedlog
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            fmupdate_avips_advancedlog_id: Optional[str] = None,
            log_fortigate: Optional[str] = None,
            log_server: Optional[str] = None) -> FmupdateAvipsAdvancedlog
    func GetFmupdateAvipsAdvancedlog(ctx *Context, name string, id IDInput, state *FmupdateAvipsAdvancedlogState, opts ...ResourceOption) (*FmupdateAvipsAdvancedlog, error)
    public static FmupdateAvipsAdvancedlog Get(string name, Input<string> id, FmupdateAvipsAdvancedlogState? state, CustomResourceOptions? opts = null)
    public static FmupdateAvipsAdvancedlog get(String name, Output<String> id, FmupdateAvipsAdvancedlogState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:FmupdateAvipsAdvancedlog    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:
    FmupdateAvipsAdvancedlogId string
    an identifier for the resource.
    LogFortigate string
    Enable/disable logging of FortiGuard antivirus and IPS service updates of FortiGate devices (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    LogServer string
    Enable/disable logging of update packages received by the build-in FortiGuard server (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    FmupdateAvipsAdvancedlogId string
    an identifier for the resource.
    LogFortigate string
    Enable/disable logging of FortiGuard antivirus and IPS service updates of FortiGate devices (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    LogServer string
    Enable/disable logging of update packages received by the build-in FortiGuard server (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fmupdateAvipsAdvancedlogId String
    an identifier for the resource.
    logFortigate String
    Enable/disable logging of FortiGuard antivirus and IPS service updates of FortiGate devices (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    logServer String
    Enable/disable logging of update packages received by the build-in FortiGuard server (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fmupdateAvipsAdvancedlogId string
    an identifier for the resource.
    logFortigate string
    Enable/disable logging of FortiGuard antivirus and IPS service updates of FortiGate devices (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    logServer string
    Enable/disable logging of update packages received by the build-in FortiGuard server (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fmupdate_avips_advancedlog_id str
    an identifier for the resource.
    log_fortigate str
    Enable/disable logging of FortiGuard antivirus and IPS service updates of FortiGate devices (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    log_server str
    Enable/disable logging of update packages received by the build-in FortiGuard server (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    fmupdateAvipsAdvancedlogId String
    an identifier for the resource.
    logFortigate String
    Enable/disable logging of FortiGuard antivirus and IPS service updates of FortiGate devices (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    logServer String
    Enable/disable logging of update packages received by the build-in FortiGuard server (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.

    Import

    Fmupdate AvIpsAdvancedLog can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/fmupdateAvipsAdvancedlog:FmupdateAvipsAdvancedlog labelname FmupdateAvIpsAdvancedLog
    

    $ 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