fortimanager.FmupdateServeraccesspriorities
Explore with Pulumi AI
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:
- Access
Public 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
. - Av
Ips string - Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Dynamic
Sort stringSubtable - 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 stringId - an identifier for the resource.
- Private
Servers List<FmupdateServeraccesspriorities Private Server> - Private-Server. The structure of
private_server
block is documented below. - Web
Spam 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 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
. - Av
Ips string - Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Dynamic
Sort stringSubtable - 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 stringId - an identifier for the resource.
- Private
Servers []FmupdateServeraccesspriorities Private Server Args - Private-Server. The structure of
private_server
block is documented below. - Web
Spam 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 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
. - av
Ips String - Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - dynamic
Sort StringSubtable - 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 StringId - an identifier for the resource.
- private
Servers List<FmupdateServeraccesspriorities Private Server> - Private-Server. The structure of
private_server
block is documented below. - web
Spam 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 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
. - av
Ips string - Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - dynamic
Sort stringSubtable - 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 stringId - an identifier for the resource.
- private
Servers FmupdateServeraccesspriorities Private Server[] - Private-Server. The structure of
private_server
block is documented below. - web
Spam 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_ strsubtable - 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_ strid - an identifier for the resource.
- private_
servers Sequence[FmupdateServeraccesspriorities Private Server Args] - 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
.
- access
Public 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
. - av
Ips String - Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - dynamic
Sort StringSubtable - 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 StringId - an identifier for the resource.
- private
Servers List<Property Map> - Private-Server. The structure of
private_server
block is documented below. - web
Spam 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.
- Access
Public 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
. - Av
Ips string - Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Dynamic
Sort stringSubtable - 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 stringId - an identifier for the resource.
- Private
Servers List<FmupdateServeraccesspriorities Private Server> - Private-Server. The structure of
private_server
block is documented below. - Web
Spam 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 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
. - Av
Ips string - Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - Dynamic
Sort stringSubtable - 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 stringId - an identifier for the resource.
- Private
Servers []FmupdateServeraccesspriorities Private Server Args - Private-Server. The structure of
private_server
block is documented below. - Web
Spam 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 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
. - av
Ips String - Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - dynamic
Sort StringSubtable - 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 StringId - an identifier for the resource.
- private
Servers List<FmupdateServeraccesspriorities Private Server> - Private-Server. The structure of
private_server
block is documented below. - web
Spam 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 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
. - av
Ips string - Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - dynamic
Sort stringSubtable - 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 stringId - an identifier for the resource.
- private
Servers FmupdateServeraccesspriorities Private Server[] - Private-Server. The structure of
private_server
block is documented below. - web
Spam 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_ strsubtable - 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_ strid - an identifier for the resource.
- private_
servers Sequence[FmupdateServeraccesspriorities Private Server Args] - 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
.
- access
Public 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
. - av
Ips String - Enable/disable Antivirus and IPS Update Service for Private Server(default = disable). disable - Disable setting. enable - Enable setting. Valid values:
disable
,enable
. - dynamic
Sort StringSubtable - 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 StringId - an identifier for the resource.
- private
Servers List<Property Map> - Private-Server. The structure of
private_server
block is documented below. - web
Spam 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
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.