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

fortimanager.FmupdateWebspamWebproxy

Explore with Pulumi AI

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

    Configure the web proxy for use with FortiGuard antivirus and IPS updates.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.FmupdateWebspamWebproxy("trname", {
        mode: "proxy",
        passwords: ["fortinet"],
        status: "enable",
        username: "admin",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.FmupdateWebspamWebproxy("trname",
        mode="proxy",
        passwords=["fortinet"],
        status="enable",
        username="admin")
    
    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.NewFmupdateWebspamWebproxy(ctx, "trname", &fortimanager.FmupdateWebspamWebproxyArgs{
    			Mode: pulumi.String("proxy"),
    			Passwords: pulumi.StringArray{
    				pulumi.String("fortinet"),
    			},
    			Status:   pulumi.String("enable"),
    			Username: pulumi.String("admin"),
    		})
    		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.FmupdateWebspamWebproxy("trname", new()
        {
            Mode = "proxy",
            Passwords = new[]
            {
                "fortinet",
            },
            Status = "enable",
            Username = "admin",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.FmupdateWebspamWebproxy;
    import com.pulumi.fortimanager.FmupdateWebspamWebproxyArgs;
    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 FmupdateWebspamWebproxy("trname", FmupdateWebspamWebproxyArgs.builder()
                .mode("proxy")
                .passwords("fortinet")
                .status("enable")
                .username("admin")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:FmupdateWebspamWebproxy
        properties:
          mode: proxy
          passwords:
            - fortinet
          status: enable
          username: admin
    

    Create FmupdateWebspamWebproxy Resource

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

    Constructor syntax

    new FmupdateWebspamWebproxy(name: string, args?: FmupdateWebspamWebproxyArgs, opts?: CustomResourceOptions);
    @overload
    def FmupdateWebspamWebproxy(resource_name: str,
                                args: Optional[FmupdateWebspamWebproxyArgs] = None,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def FmupdateWebspamWebproxy(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                address: Optional[str] = None,
                                fmupdate_webspam_webproxy_id: Optional[str] = None,
                                mode: Optional[str] = None,
                                passwords: Optional[Sequence[str]] = None,
                                port: Optional[float] = None,
                                status: Optional[str] = None,
                                username: Optional[str] = None)
    func NewFmupdateWebspamWebproxy(ctx *Context, name string, args *FmupdateWebspamWebproxyArgs, opts ...ResourceOption) (*FmupdateWebspamWebproxy, error)
    public FmupdateWebspamWebproxy(string name, FmupdateWebspamWebproxyArgs? args = null, CustomResourceOptions? opts = null)
    public FmupdateWebspamWebproxy(String name, FmupdateWebspamWebproxyArgs args)
    public FmupdateWebspamWebproxy(String name, FmupdateWebspamWebproxyArgs args, CustomResourceOptions options)
    
    type: fortimanager:FmupdateWebspamWebproxy
    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 FmupdateWebspamWebproxyArgs
    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 FmupdateWebspamWebproxyArgs
    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 FmupdateWebspamWebproxyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FmupdateWebspamWebproxyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FmupdateWebspamWebproxyArgs
    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 fmupdateWebspamWebproxyResource = new Fortimanager.FmupdateWebspamWebproxy("fmupdateWebspamWebproxyResource", new()
    {
        Address = "string",
        FmupdateWebspamWebproxyId = "string",
        Mode = "string",
        Passwords = new[]
        {
            "string",
        },
        Port = 0,
        Status = "string",
        Username = "string",
    });
    
    example, err := fortimanager.NewFmupdateWebspamWebproxy(ctx, "fmupdateWebspamWebproxyResource", &fortimanager.FmupdateWebspamWebproxyArgs{
    Address: pulumi.String("string"),
    FmupdateWebspamWebproxyId: pulumi.String("string"),
    Mode: pulumi.String("string"),
    Passwords: pulumi.StringArray{
    pulumi.String("string"),
    },
    Port: pulumi.Float64(0),
    Status: pulumi.String("string"),
    Username: pulumi.String("string"),
    })
    
    var fmupdateWebspamWebproxyResource = new FmupdateWebspamWebproxy("fmupdateWebspamWebproxyResource", FmupdateWebspamWebproxyArgs.builder()
        .address("string")
        .fmupdateWebspamWebproxyId("string")
        .mode("string")
        .passwords("string")
        .port(0)
        .status("string")
        .username("string")
        .build());
    
    fmupdate_webspam_webproxy_resource = fortimanager.FmupdateWebspamWebproxy("fmupdateWebspamWebproxyResource",
        address="string",
        fmupdate_webspam_webproxy_id="string",
        mode="string",
        passwords=["string"],
        port=0,
        status="string",
        username="string")
    
    const fmupdateWebspamWebproxyResource = new fortimanager.FmupdateWebspamWebproxy("fmupdateWebspamWebproxyResource", {
        address: "string",
        fmupdateWebspamWebproxyId: "string",
        mode: "string",
        passwords: ["string"],
        port: 0,
        status: "string",
        username: "string",
    });
    
    type: fortimanager:FmupdateWebspamWebproxy
    properties:
        address: string
        fmupdateWebspamWebproxyId: string
        mode: string
        passwords:
            - string
        port: 0
        status: string
        username: string
    

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

    Address string
    web proxy address.
    FmupdateWebspamWebproxyId string
    an identifier for the resource.
    Mode string
    Web proxy mode proxy - HTTP proxy mode tunnel - HTTP tunnel mode (default) Valid values: proxy, tunnel.
    Passwords List<string>
    The password for the user name used for authentication.
    Port double
    The port number of the web proxy (1 - 65535, default = 80).
    Status string
    Enable/disable connections through the web proxy (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    Username string
    The user name used for authentication.
    Address string
    web proxy address.
    FmupdateWebspamWebproxyId string
    an identifier for the resource.
    Mode string
    Web proxy mode proxy - HTTP proxy mode tunnel - HTTP tunnel mode (default) Valid values: proxy, tunnel.
    Passwords []string
    The password for the user name used for authentication.
    Port float64
    The port number of the web proxy (1 - 65535, default = 80).
    Status string
    Enable/disable connections through the web proxy (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    Username string
    The user name used for authentication.
    address String
    web proxy address.
    fmupdateWebspamWebproxyId String
    an identifier for the resource.
    mode String
    Web proxy mode proxy - HTTP proxy mode tunnel - HTTP tunnel mode (default) Valid values: proxy, tunnel.
    passwords List<String>
    The password for the user name used for authentication.
    port Double
    The port number of the web proxy (1 - 65535, default = 80).
    status String
    Enable/disable connections through the web proxy (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    username String
    The user name used for authentication.
    address string
    web proxy address.
    fmupdateWebspamWebproxyId string
    an identifier for the resource.
    mode string
    Web proxy mode proxy - HTTP proxy mode tunnel - HTTP tunnel mode (default) Valid values: proxy, tunnel.
    passwords string[]
    The password for the user name used for authentication.
    port number
    The port number of the web proxy (1 - 65535, default = 80).
    status string
    Enable/disable connections through the web proxy (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    username string
    The user name used for authentication.
    address str
    web proxy address.
    fmupdate_webspam_webproxy_id str
    an identifier for the resource.
    mode str
    Web proxy mode proxy - HTTP proxy mode tunnel - HTTP tunnel mode (default) Valid values: proxy, tunnel.
    passwords Sequence[str]
    The password for the user name used for authentication.
    port float
    The port number of the web proxy (1 - 65535, default = 80).
    status str
    Enable/disable connections through the web proxy (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    username str
    The user name used for authentication.
    address String
    web proxy address.
    fmupdateWebspamWebproxyId String
    an identifier for the resource.
    mode String
    Web proxy mode proxy - HTTP proxy mode tunnel - HTTP tunnel mode (default) Valid values: proxy, tunnel.
    passwords List<String>
    The password for the user name used for authentication.
    port Number
    The port number of the web proxy (1 - 65535, default = 80).
    status String
    Enable/disable connections through the web proxy (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    username String
    The user name used for authentication.

    Outputs

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

    Get an existing FmupdateWebspamWebproxy 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?: FmupdateWebspamWebproxyState, opts?: CustomResourceOptions): FmupdateWebspamWebproxy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            address: Optional[str] = None,
            fmupdate_webspam_webproxy_id: Optional[str] = None,
            mode: Optional[str] = None,
            passwords: Optional[Sequence[str]] = None,
            port: Optional[float] = None,
            status: Optional[str] = None,
            username: Optional[str] = None) -> FmupdateWebspamWebproxy
    func GetFmupdateWebspamWebproxy(ctx *Context, name string, id IDInput, state *FmupdateWebspamWebproxyState, opts ...ResourceOption) (*FmupdateWebspamWebproxy, error)
    public static FmupdateWebspamWebproxy Get(string name, Input<string> id, FmupdateWebspamWebproxyState? state, CustomResourceOptions? opts = null)
    public static FmupdateWebspamWebproxy get(String name, Output<String> id, FmupdateWebspamWebproxyState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:FmupdateWebspamWebproxy    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:
    Address string
    web proxy address.
    FmupdateWebspamWebproxyId string
    an identifier for the resource.
    Mode string
    Web proxy mode proxy - HTTP proxy mode tunnel - HTTP tunnel mode (default) Valid values: proxy, tunnel.
    Passwords List<string>
    The password for the user name used for authentication.
    Port double
    The port number of the web proxy (1 - 65535, default = 80).
    Status string
    Enable/disable connections through the web proxy (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    Username string
    The user name used for authentication.
    Address string
    web proxy address.
    FmupdateWebspamWebproxyId string
    an identifier for the resource.
    Mode string
    Web proxy mode proxy - HTTP proxy mode tunnel - HTTP tunnel mode (default) Valid values: proxy, tunnel.
    Passwords []string
    The password for the user name used for authentication.
    Port float64
    The port number of the web proxy (1 - 65535, default = 80).
    Status string
    Enable/disable connections through the web proxy (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    Username string
    The user name used for authentication.
    address String
    web proxy address.
    fmupdateWebspamWebproxyId String
    an identifier for the resource.
    mode String
    Web proxy mode proxy - HTTP proxy mode tunnel - HTTP tunnel mode (default) Valid values: proxy, tunnel.
    passwords List<String>
    The password for the user name used for authentication.
    port Double
    The port number of the web proxy (1 - 65535, default = 80).
    status String
    Enable/disable connections through the web proxy (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    username String
    The user name used for authentication.
    address string
    web proxy address.
    fmupdateWebspamWebproxyId string
    an identifier for the resource.
    mode string
    Web proxy mode proxy - HTTP proxy mode tunnel - HTTP tunnel mode (default) Valid values: proxy, tunnel.
    passwords string[]
    The password for the user name used for authentication.
    port number
    The port number of the web proxy (1 - 65535, default = 80).
    status string
    Enable/disable connections through the web proxy (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    username string
    The user name used for authentication.
    address str
    web proxy address.
    fmupdate_webspam_webproxy_id str
    an identifier for the resource.
    mode str
    Web proxy mode proxy - HTTP proxy mode tunnel - HTTP tunnel mode (default) Valid values: proxy, tunnel.
    passwords Sequence[str]
    The password for the user name used for authentication.
    port float
    The port number of the web proxy (1 - 65535, default = 80).
    status str
    Enable/disable connections through the web proxy (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    username str
    The user name used for authentication.
    address String
    web proxy address.
    fmupdateWebspamWebproxyId String
    an identifier for the resource.
    mode String
    Web proxy mode proxy - HTTP proxy mode tunnel - HTTP tunnel mode (default) Valid values: proxy, tunnel.
    passwords List<String>
    The password for the user name used for authentication.
    port Number
    The port number of the web proxy (1 - 65535, default = 80).
    status String
    Enable/disable connections through the web proxy (default = disable). disable - Disable setting. enable - Enable setting. Valid values: disable, enable.
    username String
    The user name used for authentication.

    Import

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

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/fmupdateWebspamWebproxy:FmupdateWebspamWebproxy labelname FmupdateWebSpamWebProxy
    

    $ 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