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

fortimanager.ObjectWebproxyWisp

Explore with Pulumi AI

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

    Configure Wireless Internet service provider (WISP) servers.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortimanager from "@pulumi/fortimanager";
    
    const trname = new fortimanager.ObjectWebproxyWisp("trname", {
        comment: "This is a Terraform example",
        maxConnections: 64,
        outgoingIp: "192.168.1.1",
        serverIp: "192.168.1.2",
        serverPort: 15868,
        timeout: 5,
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname = fortimanager.ObjectWebproxyWisp("trname",
        comment="This is a Terraform example",
        max_connections=64,
        outgoing_ip="192.168.1.1",
        server_ip="192.168.1.2",
        server_port=15868,
        timeout=5)
    
    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.NewObjectWebproxyWisp(ctx, "trname", &fortimanager.ObjectWebproxyWispArgs{
    			Comment:        pulumi.String("This is a Terraform example"),
    			MaxConnections: pulumi.Float64(64),
    			OutgoingIp:     pulumi.String("192.168.1.1"),
    			ServerIp:       pulumi.String("192.168.1.2"),
    			ServerPort:     pulumi.Float64(15868),
    			Timeout:        pulumi.Float64(5),
    		})
    		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.ObjectWebproxyWisp("trname", new()
        {
            Comment = "This is a Terraform example",
            MaxConnections = 64,
            OutgoingIp = "192.168.1.1",
            ServerIp = "192.168.1.2",
            ServerPort = 15868,
            Timeout = 5,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortimanager.ObjectWebproxyWisp;
    import com.pulumi.fortimanager.ObjectWebproxyWispArgs;
    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 ObjectWebproxyWisp("trname", ObjectWebproxyWispArgs.builder()
                .comment("This is a Terraform example")
                .maxConnections(64)
                .outgoingIp("192.168.1.1")
                .serverIp("192.168.1.2")
                .serverPort(15868)
                .timeout(5)
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortimanager:ObjectWebproxyWisp
        properties:
          comment: This is a Terraform example
          maxConnections: 64
          outgoingIp: 192.168.1.1
          serverIp: 192.168.1.2
          serverPort: 15868
          timeout: 5
    

    Create ObjectWebproxyWisp Resource

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

    Constructor syntax

    new ObjectWebproxyWisp(name: string, args?: ObjectWebproxyWispArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWebproxyWisp(resource_name: str,
                           args: Optional[ObjectWebproxyWispArgs] = None,
                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWebproxyWisp(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           adom: Optional[str] = None,
                           comment: Optional[str] = None,
                           max_connections: Optional[float] = None,
                           name: Optional[str] = None,
                           object_webproxy_wisp_id: Optional[str] = None,
                           outgoing_ip: Optional[str] = None,
                           scopetype: Optional[str] = None,
                           server_ip: Optional[str] = None,
                           server_port: Optional[float] = None,
                           timeout: Optional[float] = None)
    func NewObjectWebproxyWisp(ctx *Context, name string, args *ObjectWebproxyWispArgs, opts ...ResourceOption) (*ObjectWebproxyWisp, error)
    public ObjectWebproxyWisp(string name, ObjectWebproxyWispArgs? args = null, CustomResourceOptions? opts = null)
    public ObjectWebproxyWisp(String name, ObjectWebproxyWispArgs args)
    public ObjectWebproxyWisp(String name, ObjectWebproxyWispArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWebproxyWisp
    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 ObjectWebproxyWispArgs
    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 ObjectWebproxyWispArgs
    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 ObjectWebproxyWispArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWebproxyWispArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWebproxyWispArgs
    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 objectWebproxyWispResource = new Fortimanager.ObjectWebproxyWisp("objectWebproxyWispResource", new()
    {
        Adom = "string",
        Comment = "string",
        MaxConnections = 0,
        Name = "string",
        ObjectWebproxyWispId = "string",
        OutgoingIp = "string",
        Scopetype = "string",
        ServerIp = "string",
        ServerPort = 0,
        Timeout = 0,
    });
    
    example, err := fortimanager.NewObjectWebproxyWisp(ctx, "objectWebproxyWispResource", &fortimanager.ObjectWebproxyWispArgs{
    Adom: pulumi.String("string"),
    Comment: pulumi.String("string"),
    MaxConnections: pulumi.Float64(0),
    Name: pulumi.String("string"),
    ObjectWebproxyWispId: pulumi.String("string"),
    OutgoingIp: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    ServerIp: pulumi.String("string"),
    ServerPort: pulumi.Float64(0),
    Timeout: pulumi.Float64(0),
    })
    
    var objectWebproxyWispResource = new ObjectWebproxyWisp("objectWebproxyWispResource", ObjectWebproxyWispArgs.builder()
        .adom("string")
        .comment("string")
        .maxConnections(0)
        .name("string")
        .objectWebproxyWispId("string")
        .outgoingIp("string")
        .scopetype("string")
        .serverIp("string")
        .serverPort(0)
        .timeout(0)
        .build());
    
    object_webproxy_wisp_resource = fortimanager.ObjectWebproxyWisp("objectWebproxyWispResource",
        adom="string",
        comment="string",
        max_connections=0,
        name="string",
        object_webproxy_wisp_id="string",
        outgoing_ip="string",
        scopetype="string",
        server_ip="string",
        server_port=0,
        timeout=0)
    
    const objectWebproxyWispResource = new fortimanager.ObjectWebproxyWisp("objectWebproxyWispResource", {
        adom: "string",
        comment: "string",
        maxConnections: 0,
        name: "string",
        objectWebproxyWispId: "string",
        outgoingIp: "string",
        scopetype: "string",
        serverIp: "string",
        serverPort: 0,
        timeout: 0,
    });
    
    type: fortimanager:ObjectWebproxyWisp
    properties:
        adom: string
        comment: string
        maxConnections: 0
        name: string
        objectWebproxyWispId: string
        outgoingIp: string
        scopetype: string
        serverIp: string
        serverPort: 0
        timeout: 0
    

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

    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    MaxConnections double
    Maximum number of web proxy WISP connections (4 - 4096, default = 64).
    Name string
    Server name.
    ObjectWebproxyWispId string
    an identifier for the resource with format {{name}}.
    OutgoingIp string
    WISP outgoing IP address.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    ServerIp string
    WISP server IP address.
    ServerPort double
    WISP server port (1 - 65535, default = 15868).
    Timeout double
    Period of time before WISP requests time out (1 - 15 sec, default = 5).
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    MaxConnections float64
    Maximum number of web proxy WISP connections (4 - 4096, default = 64).
    Name string
    Server name.
    ObjectWebproxyWispId string
    an identifier for the resource with format {{name}}.
    OutgoingIp string
    WISP outgoing IP address.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    ServerIp string
    WISP server IP address.
    ServerPort float64
    WISP server port (1 - 65535, default = 15868).
    Timeout float64
    Period of time before WISP requests time out (1 - 15 sec, default = 5).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    maxConnections Double
    Maximum number of web proxy WISP connections (4 - 4096, default = 64).
    name String
    Server name.
    objectWebproxyWispId String
    an identifier for the resource with format {{name}}.
    outgoingIp String
    WISP outgoing IP address.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    serverIp String
    WISP server IP address.
    serverPort Double
    WISP server port (1 - 65535, default = 15868).
    timeout Double
    Period of time before WISP requests time out (1 - 15 sec, default = 5).
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment string
    Comment.
    maxConnections number
    Maximum number of web proxy WISP connections (4 - 4096, default = 64).
    name string
    Server name.
    objectWebproxyWispId string
    an identifier for the resource with format {{name}}.
    outgoingIp string
    WISP outgoing IP address.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    serverIp string
    WISP server IP address.
    serverPort number
    WISP server port (1 - 65535, default = 15868).
    timeout number
    Period of time before WISP requests time out (1 - 15 sec, default = 5).
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment str
    Comment.
    max_connections float
    Maximum number of web proxy WISP connections (4 - 4096, default = 64).
    name str
    Server name.
    object_webproxy_wisp_id str
    an identifier for the resource with format {{name}}.
    outgoing_ip str
    WISP outgoing IP address.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server_ip str
    WISP server IP address.
    server_port float
    WISP server port (1 - 65535, default = 15868).
    timeout float
    Period of time before WISP requests time out (1 - 15 sec, default = 5).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    maxConnections Number
    Maximum number of web proxy WISP connections (4 - 4096, default = 64).
    name String
    Server name.
    objectWebproxyWispId String
    an identifier for the resource with format {{name}}.
    outgoingIp String
    WISP outgoing IP address.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    serverIp String
    WISP server IP address.
    serverPort Number
    WISP server port (1 - 65535, default = 15868).
    timeout Number
    Period of time before WISP requests time out (1 - 15 sec, default = 5).

    Outputs

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

    Get an existing ObjectWebproxyWisp 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?: ObjectWebproxyWispState, opts?: CustomResourceOptions): ObjectWebproxyWisp
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            adom: Optional[str] = None,
            comment: Optional[str] = None,
            max_connections: Optional[float] = None,
            name: Optional[str] = None,
            object_webproxy_wisp_id: Optional[str] = None,
            outgoing_ip: Optional[str] = None,
            scopetype: Optional[str] = None,
            server_ip: Optional[str] = None,
            server_port: Optional[float] = None,
            timeout: Optional[float] = None) -> ObjectWebproxyWisp
    func GetObjectWebproxyWisp(ctx *Context, name string, id IDInput, state *ObjectWebproxyWispState, opts ...ResourceOption) (*ObjectWebproxyWisp, error)
    public static ObjectWebproxyWisp Get(string name, Input<string> id, ObjectWebproxyWispState? state, CustomResourceOptions? opts = null)
    public static ObjectWebproxyWisp get(String name, Output<String> id, ObjectWebproxyWispState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWebproxyWisp    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:
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    MaxConnections double
    Maximum number of web proxy WISP connections (4 - 4096, default = 64).
    Name string
    Server name.
    ObjectWebproxyWispId string
    an identifier for the resource with format {{name}}.
    OutgoingIp string
    WISP outgoing IP address.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    ServerIp string
    WISP server IP address.
    ServerPort double
    WISP server port (1 - 65535, default = 15868).
    Timeout double
    Period of time before WISP requests time out (1 - 15 sec, default = 5).
    Adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    Comment string
    Comment.
    MaxConnections float64
    Maximum number of web proxy WISP connections (4 - 4096, default = 64).
    Name string
    Server name.
    ObjectWebproxyWispId string
    an identifier for the resource with format {{name}}.
    OutgoingIp string
    WISP outgoing IP address.
    Scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    ServerIp string
    WISP server IP address.
    ServerPort float64
    WISP server port (1 - 65535, default = 15868).
    Timeout float64
    Period of time before WISP requests time out (1 - 15 sec, default = 5).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    maxConnections Double
    Maximum number of web proxy WISP connections (4 - 4096, default = 64).
    name String
    Server name.
    objectWebproxyWispId String
    an identifier for the resource with format {{name}}.
    outgoingIp String
    WISP outgoing IP address.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    serverIp String
    WISP server IP address.
    serverPort Double
    WISP server port (1 - 65535, default = 15868).
    timeout Double
    Period of time before WISP requests time out (1 - 15 sec, default = 5).
    adom string
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment string
    Comment.
    maxConnections number
    Maximum number of web proxy WISP connections (4 - 4096, default = 64).
    name string
    Server name.
    objectWebproxyWispId string
    an identifier for the resource with format {{name}}.
    outgoingIp string
    WISP outgoing IP address.
    scopetype string
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    serverIp string
    WISP server IP address.
    serverPort number
    WISP server port (1 - 65535, default = 15868).
    timeout number
    Period of time before WISP requests time out (1 - 15 sec, default = 5).
    adom str
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment str
    Comment.
    max_connections float
    Maximum number of web proxy WISP connections (4 - 4096, default = 64).
    name str
    Server name.
    object_webproxy_wisp_id str
    an identifier for the resource with format {{name}}.
    outgoing_ip str
    WISP outgoing IP address.
    scopetype str
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    server_ip str
    WISP server IP address.
    server_port float
    WISP server port (1 - 65535, default = 15868).
    timeout float
    Period of time before WISP requests time out (1 - 15 sec, default = 5).
    adom String
    Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
    comment String
    Comment.
    maxConnections Number
    Maximum number of web proxy WISP connections (4 - 4096, default = 64).
    name String
    Server name.
    objectWebproxyWispId String
    an identifier for the resource with format {{name}}.
    outgoingIp String
    WISP outgoing IP address.
    scopetype String
    The scope of application of the resource. Valid values: inherit, adom, global. The inherit means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value is inherit.
    serverIp String
    WISP server IP address.
    serverPort Number
    WISP server port (1 - 65535, default = 15868).
    timeout Number
    Period of time before WISP requests time out (1 - 15 sec, default = 5).

    Import

    ObjectWebProxy Wisp can be imported using any of these accepted formats:

    $ export “FORTIMANAGER_IMPORT_TABLE”=“true”

    $ pulumi import fortimanager:index/objectWebproxyWisp:ObjectWebproxyWisp labelname {{name}}
    

    $ unset “FORTIMANAGER_IMPORT_TABLE”

    -> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

    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