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

fortimanager.FmupdateServeraccesspriorities

Explore with Pulumi AI

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

    Configure priorities for FortiGate units accessing antivirus updates and web filtering services.

    The following variables have sub resource. Avoid using them together, otherwise conflicts and overwrites may occur.

    • private_server: fortimanager_fmupdate_serveraccesspriorities_privateserver

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.FmupdateServeraccesspriorities("trname", {
        accessPublic: "enable",
        avIps: "enable",
        privateServers: [{
            id: 1,
            ip: "192.168.1.1",
        }],
        webSpam: "enable",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.FmupdateServeraccesspriorities("trname",
        access_public="enable",
        av_ips="enable",
        private_servers=[{
            "id": 1,
            "ip": "192.168.1.1",
        }],
        web_spam="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.NewFmupdateServeraccesspriorities(ctx, "trname", &fortimanager.FmupdateServeraccessprioritiesArgs{
    			AccessPublic: pulumi.String("enable"),
    			AvIps:        pulumi.String("enable"),
    			PrivateServers: fortimanager.FmupdateServeraccessprioritiesPrivateServerArray{
    				&fortimanager.FmupdateServeraccessprioritiesPrivateServerArgs{
    					Id: pulumi.Float64(1),
    					Ip: pulumi.String("192.168.1.1"),
    				},
    			},
    			WebSpam: 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.FmupdateServeraccesspriorities("trname", new()
        {
            AccessPublic = "enable",
            AvIps = "enable",
            PrivateServers = new[]
            {
                new Fortimanager.Inputs.FmupdateServeraccessprioritiesPrivateServerArgs
                {
                    Id = 1,
                    Ip = "192.168.1.1",
                },
            },
            WebSpam = "enable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.FmupdateServeraccesspriorities;
    import com.pulumi.fortimanager.FmupdateServeraccessprioritiesArgs;
    import com.pulumi.fortimanager.inputs.FmupdateServeraccessprioritiesPrivateServerArgs;
    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 FmupdateServeraccesspriorities("trname", FmupdateServeraccessprioritiesArgs.builder()
                .accessPublic("enable")
                .avIps("enable")
                .privateServers(FmupdateServeraccessprioritiesPrivateServerArgs.builder()
                    .id("1")
                    .ip("192.168.1.1")
                    .build())
                .webSpam("enable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:FmupdateServeraccesspriorities
        properties:
          accessPublic: enable
          avIps: enable
          privateServers:
            - id: '1'
              ip: 192.168.1.1
          webSpam: enable
    

    Create FmupdateServeraccesspriorities Resource

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

    Constructor syntax

    new FmupdateServeraccesspriorities(name: string, args?: FmupdateServeraccessprioritiesArgs, opts?: CustomResourceOptions);
    @overload
    def FmupdateServeraccesspriorities(resource_name: str,
                                       args: Optional[FmupdateServeraccessprioritiesArgs] = None,
                                       opts: Optional[ResourceOptions] = None)
    
    @overload
    def FmupdateServeraccesspriorities(resource_name: str,
                                       opts: Optional[ResourceOptions] = None,
                                       access_public: Optional[str] = None,
                                       av_ips: Optional[str] = None,
                                       dynamic_sort_subtable: Optional[str] = None,
                                       fmupdate_serveraccesspriorities_id: Optional[str] = None,
                                       private_servers: Optional[Sequence[FmupdateServeraccessprioritiesPrivateServerArgs]] = None,
                                       web_spam: Optional[str] = None)
    func NewFmupdateServeraccesspriorities(ctx *Context, name string, args *FmupdateServeraccessprioritiesArgs, opts ...ResourceOption) (*FmupdateServeraccesspriorities, error)
    public FmupdateServeraccesspriorities(string name, FmupdateServeraccessprioritiesArgs? args = null, CustomResourceOptions? opts = null)
    public FmupdateServeraccesspriorities(String name, FmupdateServeraccessprioritiesArgs args)
    public FmupdateServeraccesspriorities(String name, FmupdateServeraccessprioritiesArgs args, CustomResourceOptions options)
    
    type: fortimanager:FmupdateServeraccesspriorities
    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 FmupdateServeraccessprioritiesArgs
    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 FmupdateServeraccessprioritiesArgs
    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 FmupdateServeraccessprioritiesArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FmupdateServeraccessprioritiesArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FmupdateServeraccessprioritiesArgs
    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 fmupdateServeraccessprioritiesResource = new Fortimanager.FmupdateServeraccesspriorities("fmupdateServeraccessprioritiesResource", new()
    {
        AccessPublic = "string",
        AvIps = "string",
        DynamicSortSubtable = "string",
        FmupdateServeraccessprioritiesId = "string",
        PrivateServers = new[]
        {
            new Fortimanager.Inputs.FmupdateServeraccessprioritiesPrivateServerArgs
            {
                Id = 0,
                Ip = "string",
                Ip6 = "string",
                TimeZone = 0,
            },
        },
        WebSpam = "string",
    });
    
    example, err := fortimanager.NewFmupdateServeraccesspriorities(ctx, "fmupdateServeraccessprioritiesResource", &fortimanager.FmupdateServeraccessprioritiesArgs{
    AccessPublic: pulumi.String("string"),
    AvIps: pulumi.String("string"),
    DynamicSortSubtable: pulumi.String("string"),
    FmupdateServeraccessprioritiesId: pulumi.String("string"),
    PrivateServers: .FmupdateServeraccessprioritiesPrivateServerArray{
    &.FmupdateServeraccessprioritiesPrivateServerArgs{
    Id: pulumi.Float64(0),
    Ip: pulumi.String("string"),
    Ip6: pulumi.String("string"),
    TimeZone: pulumi.Float64(0),
    },
    },
    WebSpam: pulumi.String("string"),
    })
    
    var fmupdateServeraccessprioritiesResource = new FmupdateServeraccesspriorities("fmupdateServeraccessprioritiesResource", FmupdateServeraccessprioritiesArgs.builder()
        .accessPublic("string")
        .avIps("string")
        .dynamicSortSubtable("string")
        .fmupdateServeraccessprioritiesId("string")
        .privateServers(FmupdateServeraccessprioritiesPrivateServerArgs.builder()
            .id(0)
            .ip("string")
            .ip6("string")
            .timeZone(0)
            .build())
        .webSpam("string")
        .build());
    
    fmupdate_serveraccesspriorities_resource = fortimanager.FmupdateServeraccesspriorities("fmupdateServeraccessprioritiesResource",
        access_public="string",
        av_ips="string",
        dynamic_sort_subtable="string",
        fmupdate_serveraccesspriorities_id="string",
        private_servers=[{
            "id": 0,
            "ip": "string",
            "ip6": "string",
            "time_zone": 0,
        }],
        web_spam="string")
    
    const fmupdateServeraccessprioritiesResource = new fortimanager.FmupdateServeraccesspriorities("fmupdateServeraccessprioritiesResource", {
        accessPublic: "string",
        avIps: "string",
        dynamicSortSubtable: "string",
        fmupdateServeraccessprioritiesId: "string",
        privateServers: [{
            id: 0,
            ip: "string",
            ip6: "string",
            timeZone: 0,
        }],
        webSpam: "string",
    });
    
    type: fortimanager:FmupdateServeraccesspriorities
    properties:
        accessPublic: string
        avIps: string
        dynamicSortSubtable: string
        fmupdateServeraccessprioritiesId: string
        privateServers:
            - id: 0
              ip: string
              ip6: string
              timeZone: 0
        webSpam: string
    

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

    AccessPublic string
    Enable/disable FortiGates to Access Public FortiGuard Servers when Private Servers are Unavailable (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    AvIps string
    Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    FmupdateServeraccessprioritiesId string
    an identifier for the resource.
    PrivateServers List<FmupdateServeraccessprioritiesPrivateServer>
    Private-Server. The structure of private_server block is documented below.
    WebSpam string
    Enable/disable Web Filter and Email Filter Update Service for Private Server (default = enable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    AccessPublic string
    Enable/disable FortiGates to Access Public FortiGuard Servers when Private Servers are Unavailable (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    AvIps string
    Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    FmupdateServeraccessprioritiesId string
    an identifier for the resource.
    PrivateServers []FmupdateServeraccessprioritiesPrivateServerArgs
    Private-Server. The structure of private_server block is documented below.
    WebSpam string
    Enable/disable Web Filter and Email Filter Update Service for Private Server (default = enable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    accessPublic String
    Enable/disable FortiGates to Access Public FortiGuard Servers when Private Servers are Unavailable (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    avIps String
    Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fmupdateServeraccessprioritiesId String
    an identifier for the resource.
    privateServers List<FmupdateServeraccessprioritiesPrivateServer>
    Private-Server. The structure of private_server block is documented below.
    webSpam String
    Enable/disable Web Filter and Email Filter Update Service for Private Server (default = enable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    accessPublic string
    Enable/disable FortiGates to Access Public FortiGuard Servers when Private Servers are Unavailable (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    avIps string
    Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fmupdateServeraccessprioritiesId string
    an identifier for the resource.
    privateServers FmupdateServeraccessprioritiesPrivateServer[]
    Private-Server. The structure of private_server block is documented below.
    webSpam string
    Enable/disable Web Filter and Email Filter Update Service for Private Server (default = enable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    access_public str
    Enable/disable FortiGates to Access Public FortiGuard Servers when Private Servers are Unavailable (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    av_ips str
    Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fmupdate_serveraccesspriorities_id str
    an identifier for the resource.
    private_servers Sequence[FmupdateServeraccessprioritiesPrivateServerArgs]
    Private-Server. The structure of private_server block is documented below.
    web_spam str
    Enable/disable Web Filter and Email Filter Update Service for Private Server (default = enable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    accessPublic String
    Enable/disable FortiGates to Access Public FortiGuard Servers when Private Servers are Unavailable (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    avIps String
    Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fmupdateServeraccessprioritiesId String
    an identifier for the resource.
    privateServers List<Property Map>
    Private-Server. The structure of private_server block is documented below.
    webSpam String
    Enable/disable Web Filter and Email Filter Update Service for Private Server (default = enable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.

    Outputs

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

    Get an existing FmupdateServeraccesspriorities 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?: FmupdateServeraccessprioritiesState, opts?: CustomResourceOptions): FmupdateServeraccesspriorities
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            access_public: Optional[str] = None,
            av_ips: Optional[str] = None,
            dynamic_sort_subtable: Optional[str] = None,
            fmupdate_serveraccesspriorities_id: Optional[str] = None,
            private_servers: Optional[Sequence[FmupdateServeraccessprioritiesPrivateServerArgs]] = None,
            web_spam: Optional[str] = None) -> FmupdateServeraccesspriorities
    func GetFmupdateServeraccesspriorities(ctx *Context, name string, id IDInput, state *FmupdateServeraccessprioritiesState, opts ...ResourceOption) (*FmupdateServeraccesspriorities, error)
    public static FmupdateServeraccesspriorities Get(string name, Input<string> id, FmupdateServeraccessprioritiesState? state, CustomResourceOptions? opts = null)
    public static FmupdateServeraccesspriorities get(String name, Output<String> id, FmupdateServeraccessprioritiesState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:FmupdateServeraccesspriorities    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:
    AccessPublic string
    Enable/disable FortiGates to Access Public FortiGuard Servers when Private Servers are Unavailable (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    AvIps string
    Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    FmupdateServeraccessprioritiesId string
    an identifier for the resource.
    PrivateServers List<FmupdateServeraccessprioritiesPrivateServer>
    Private-Server. The structure of private_server block is documented below.
    WebSpam string
    Enable/disable Web Filter and Email Filter Update Service for Private Server (default = enable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    AccessPublic string
    Enable/disable FortiGates to Access Public FortiGuard Servers when Private Servers are Unavailable (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    AvIps string
    Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    DynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    FmupdateServeraccessprioritiesId string
    an identifier for the resource.
    PrivateServers []FmupdateServeraccessprioritiesPrivateServerArgs
    Private-Server. The structure of private_server block is documented below.
    WebSpam string
    Enable/disable Web Filter and Email Filter Update Service for Private Server (default = enable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    accessPublic String
    Enable/disable FortiGates to Access Public FortiGuard Servers when Private Servers are Unavailable (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    avIps String
    Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fmupdateServeraccessprioritiesId String
    an identifier for the resource.
    privateServers List<FmupdateServeraccessprioritiesPrivateServer>
    Private-Server. The structure of private_server block is documented below.
    webSpam String
    Enable/disable Web Filter and Email Filter Update Service for Private Server (default = enable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    accessPublic string
    Enable/disable FortiGates to Access Public FortiGuard Servers when Private Servers are Unavailable (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    avIps string
    Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    dynamicSortSubtable string
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fmupdateServeraccessprioritiesId string
    an identifier for the resource.
    privateServers FmupdateServeraccessprioritiesPrivateServer[]
    Private-Server. The structure of private_server block is documented below.
    webSpam string
    Enable/disable Web Filter and Email Filter Update Service for Private Server (default = enable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    access_public str
    Enable/disable FortiGates to Access Public FortiGuard Servers when Private Servers are Unavailable (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    av_ips str
    Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    dynamic_sort_subtable str
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fmupdate_serveraccesspriorities_id str
    an identifier for the resource.
    private_servers Sequence[FmupdateServeraccessprioritiesPrivateServerArgs]
    Private-Server. The structure of private_server block is documented below.
    web_spam str
    Enable/disable Web Filter and Email Filter Update Service for Private Server (default = enable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    accessPublic String
    Enable/disable FortiGates to Access Public FortiGuard Servers when Private Servers are Unavailable (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    avIps String
    Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    dynamicSortSubtable String
    true or false, set this parameter to true when using dynamic for_each + toset to configure and sort sub-tables, please do not set this parameter when configuring static sub-tables.
    fmupdateServeraccessprioritiesId String
    an identifier for the resource.
    privateServers List<Property Map>
    Private-Server. The structure of private_server block is documented below.
    webSpam String
    Enable/disable Web Filter and Email Filter Update Service for Private Server (default = enable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.

    Supporting Types

    FmupdateServeraccessprioritiesPrivateServer, FmupdateServeraccessprioritiesPrivateServerArgs

    Id double
    Private server ID (1 - 10).
    Ip string
    IPv4 address of the FortiManager unit or private server.
    Ip6 string
    IPv6 address of the FortiManager unit or private server.
    TimeZone double
    Time zone of the private server (-24 = local time zone, default = -24).
    Id float64
    Private server ID (1 - 10).
    Ip string
    IPv4 address of the FortiManager unit or private server.
    Ip6 string
    IPv6 address of the FortiManager unit or private server.
    TimeZone float64
    Time zone of the private server (-24 = local time zone, default = -24).
    id Double
    Private server ID (1 - 10).
    ip String
    IPv4 address of the FortiManager unit or private server.
    ip6 String
    IPv6 address of the FortiManager unit or private server.
    timeZone Double
    Time zone of the private server (-24 = local time zone, default = -24).
    id number
    Private server ID (1 - 10).
    ip string
    IPv4 address of the FortiManager unit or private server.
    ip6 string
    IPv6 address of the FortiManager unit or private server.
    timeZone number
    Time zone of the private server (-24 = local time zone, default = -24).
    id float
    Private server ID (1 - 10).
    ip str
    IPv4 address of the FortiManager unit or private server.
    ip6 str
    IPv6 address of the FortiManager unit or private server.
    time_zone float
    Time zone of the private server (-24 = local time zone, default = -24).
    id Number
    Private server ID (1 - 10).
    ip String
    IPv4 address of the FortiManager unit or private server.
    ip6 String
    IPv6 address of the FortiManager unit or private server.
    timeZone Number
    Time zone of the private server (-24 = local time zone, default = -24).

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/fmupdateServeraccesspriorities:FmupdateServeraccesspriorities labelname FmupdateServerAccessPriorities
    

    $ 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