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

fortimanager.FmupdateAvipsWebproxy

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.FmupdateAvipsWebproxy("trname", {
        address: "192.168.1.1",
        mode: "proxy",
        passwords: ["fortinet"],
        status: "enable",
        username: "admin",
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.FmupdateAvipsWebproxy("trname",
        address="192.168.1.1",
        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.NewFmupdateAvipsWebproxy(ctx, "trname", &fortimanager.FmupdateAvipsWebproxyArgs{
    			Address: pulumi.String("192.168.1.1"),
    			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.FmupdateAvipsWebproxy("trname", new()
        {
            Address = "192.168.1.1",
            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.FmupdateAvipsWebproxy;
    import com.pulumi.fortimanager.FmupdateAvipsWebproxyArgs;
    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 FmupdateAvipsWebproxy("trname", FmupdateAvipsWebproxyArgs.builder()
                .address("192.168.1.1")
                .mode("proxy")
                .passwords("fortinet")
                .status("enable")
                .username("admin")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:FmupdateAvipsWebproxy
        properties:
          address: 192.168.1.1
          mode: proxy
          passwords:
            - fortinet
          status: enable
          username: admin
    

    Create FmupdateAvipsWebproxy Resource

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

    Constructor syntax

    new FmupdateAvipsWebproxy(name: string, args?: FmupdateAvipsWebproxyArgs, opts?: CustomResourceOptions);
    @overload
    def FmupdateAvipsWebproxy(resource_name: str,
                              args: Optional[FmupdateAvipsWebproxyArgs] = None,
                              opts: Optional[ResourceOptions] = None)
    
    @overload
    def FmupdateAvipsWebproxy(resource_name: str,
                              opts: Optional[ResourceOptions] = None,
                              address: Optional[str] = None,
                              fmupdate_avips_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 NewFmupdateAvipsWebproxy(ctx *Context, name string, args *FmupdateAvipsWebproxyArgs, opts ...ResourceOption) (*FmupdateAvipsWebproxy, error)
    public FmupdateAvipsWebproxy(string name, FmupdateAvipsWebproxyArgs? args = null, CustomResourceOptions? opts = null)
    public FmupdateAvipsWebproxy(String name, FmupdateAvipsWebproxyArgs args)
    public FmupdateAvipsWebproxy(String name, FmupdateAvipsWebproxyArgs args, CustomResourceOptions options)
    
    type: fortimanager:FmupdateAvipsWebproxy
    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 FmupdateAvipsWebproxyArgs
    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 FmupdateAvipsWebproxyArgs
    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 FmupdateAvipsWebproxyArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FmupdateAvipsWebproxyArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FmupdateAvipsWebproxyArgs
    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 fmupdateAvipsWebproxyResource = new Fortimanager.FmupdateAvipsWebproxy("fmupdateAvipsWebproxyResource", new()
    {
        Address = "string",
        FmupdateAvipsWebproxyId = "string",
        Mode = "string",
        Passwords = new[]
        {
            "string",
        },
        Port = 0,
        Status = "string",
        Username = "string",
    });
    
    example, err := fortimanager.NewFmupdateAvipsWebproxy(ctx, "fmupdateAvipsWebproxyResource", &fortimanager.FmupdateAvipsWebproxyArgs{
    Address: pulumi.String("string"),
    FmupdateAvipsWebproxyId: 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 fmupdateAvipsWebproxyResource = new FmupdateAvipsWebproxy("fmupdateAvipsWebproxyResource", FmupdateAvipsWebproxyArgs.builder()
        .address("string")
        .fmupdateAvipsWebproxyId("string")
        .mode("string")
        .passwords("string")
        .port(0)
        .status("string")
        .username("string")
        .build());
    
    fmupdate_avips_webproxy_resource = fortimanager.FmupdateAvipsWebproxy("fmupdateAvipsWebproxyResource",
        address="string",
        fmupdate_avips_webproxy_id="string",
        mode="string",
        passwords=["string"],
        port=0,
        status="string",
        username="string")
    
    const fmupdateAvipsWebproxyResource = new fortimanager.FmupdateAvipsWebproxy("fmupdateAvipsWebproxyResource", {
        address: "string",
        fmupdateAvipsWebproxyId: "string",
        mode: "string",
        passwords: ["string"],
        port: 0,
        status: "string",
        username: "string",
    });
    
    type: fortimanager:FmupdateAvipsWebproxy
    properties:
        address: string
        fmupdateAvipsWebproxyId: string
        mode: string
        passwords:
            - string
        port: 0
        status: string
        username: string
    

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

    Address string
    web proxy address.
    FmupdateAvipsWebproxyId 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.
    FmupdateAvipsWebproxyId 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.
    fmupdateAvipsWebproxyId 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.
    fmupdateAvipsWebproxyId 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_avips_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.
    fmupdateAvipsWebproxyId 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 FmupdateAvipsWebproxy 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 FmupdateAvipsWebproxy Resource

    Get an existing FmupdateAvipsWebproxy 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?: FmupdateAvipsWebproxyState, opts?: CustomResourceOptions): FmupdateAvipsWebproxy
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            address: Optional[str] = None,
            fmupdate_avips_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) -> FmupdateAvipsWebproxy
    func GetFmupdateAvipsWebproxy(ctx *Context, name string, id IDInput, state *FmupdateAvipsWebproxyState, opts ...ResourceOption) (*FmupdateAvipsWebproxy, error)
    public static FmupdateAvipsWebproxy Get(string name, Input<string> id, FmupdateAvipsWebproxyState? state, CustomResourceOptions? opts = null)
    public static FmupdateAvipsWebproxy get(String name, Output<String> id, FmupdateAvipsWebproxyState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:FmupdateAvipsWebproxy    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.
    FmupdateAvipsWebproxyId 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.
    FmupdateAvipsWebproxyId 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.
    fmupdateAvipsWebproxyId 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.
    fmupdateAvipsWebproxyId 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_avips_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.
    fmupdateAvipsWebproxyId 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 AvIpsWebProxy can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/fmupdateAvipsWebproxy:FmupdateAvipsWebproxy labelname FmupdateAvIpsWebProxy
    

    $ 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