fortimanager.ObjectWebproxyWisp
Explore with Pulumi AI
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
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Max
Connections double - Maximum number of web proxy WISP connections (4 - 4096, default = 64).
- Name string
- Server name.
- Object
Webproxy stringWisp Id - an identifier for the resource with format {{name}}.
- Outgoing
Ip string - WISP outgoing IP address.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Ip string - WISP server IP address.
- Server
Port 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
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Max
Connections float64 - Maximum number of web proxy WISP connections (4 - 4096, default = 64).
- Name string
- Server name.
- Object
Webproxy stringWisp Id - an identifier for the resource with format {{name}}.
- Outgoing
Ip string - WISP outgoing IP address.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Ip string - WISP server IP address.
- Server
Port 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
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- max
Connections Double - Maximum number of web proxy WISP connections (4 - 4096, default = 64).
- name String
- Server name.
- object
Webproxy StringWisp Id - an identifier for the resource with format {{name}}.
- outgoing
Ip String - WISP outgoing IP address.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Ip String - WISP server IP address.
- server
Port 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
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Comment.
- max
Connections number - Maximum number of web proxy WISP connections (4 - 4096, default = 64).
- name string
- Server name.
- object
Webproxy stringWisp Id - an identifier for the resource with format {{name}}.
- outgoing
Ip string - WISP outgoing IP address.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Ip string - WISP server IP address.
- server
Port 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
isadom
, 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_ strwisp_ id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- max
Connections Number - Maximum number of web proxy WISP connections (4 - 4096, default = 64).
- name String
- Server name.
- object
Webproxy StringWisp Id - an identifier for the resource with format {{name}}.
- outgoing
Ip String - WISP outgoing IP address.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Ip String - WISP server IP address.
- server
Port 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.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Max
Connections double - Maximum number of web proxy WISP connections (4 - 4096, default = 64).
- Name string
- Server name.
- Object
Webproxy stringWisp Id - an identifier for the resource with format {{name}}.
- Outgoing
Ip string - WISP outgoing IP address.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Ip string - WISP server IP address.
- Server
Port 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
isadom
, otherwise the value of adom in the provider will be inherited. - Comment string
- Comment.
- Max
Connections float64 - Maximum number of web proxy WISP connections (4 - 4096, default = 64).
- Name string
- Server name.
- Object
Webproxy stringWisp Id - an identifier for the resource with format {{name}}.
- Outgoing
Ip string - WISP outgoing IP address.
- Scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Server
Ip string - WISP server IP address.
- Server
Port 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
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- max
Connections Double - Maximum number of web proxy WISP connections (4 - 4096, default = 64).
- name String
- Server name.
- object
Webproxy StringWisp Id - an identifier for the resource with format {{name}}.
- outgoing
Ip String - WISP outgoing IP address.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Ip String - WISP server IP address.
- server
Port 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
isadom
, otherwise the value of adom in the provider will be inherited. - comment string
- Comment.
- max
Connections number - Maximum number of web proxy WISP connections (4 - 4096, default = 64).
- name string
- Server name.
- object
Webproxy stringWisp Id - an identifier for the resource with format {{name}}.
- outgoing
Ip string - WISP outgoing IP address.
- scopetype string
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Ip string - WISP server IP address.
- server
Port 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
isadom
, 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_ strwisp_ id - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - 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
isadom
, otherwise the value of adom in the provider will be inherited. - comment String
- Comment.
- max
Connections Number - Maximum number of web proxy WISP connections (4 - 4096, default = 64).
- name String
- Server name.
- object
Webproxy StringWisp Id - an identifier for the resource with format {{name}}.
- outgoing
Ip String - WISP outgoing IP address.
- scopetype String
- The scope of application of the resource. Valid values:
inherit
,adom
,global
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - server
Ip String - WISP server IP address.
- server
Port 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.