1. Packages
  2. Fortimanager Provider
  3. API Docs
  4. ObjectWanoptProfileTcp
fortimanager 1.14.0 published on Tuesday, Apr 15, 2025 by fortinetdev

fortimanager.ObjectWanoptProfileTcp

Explore with Pulumi AI

Enable/disable TCP WAN Optimization and configure TCP WAN Optimization features.

This resource is a sub resource for variable tcp of resource fortimanager.ObjectWanoptProfile. Conflict and overwrite may occur if use both of them.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";

const trname5 = new fortimanager.ObjectWanoptProfile("trname5", {});
const trname = new fortimanager.ObjectWanoptProfileTcp("trname", {
    byteCaching: "enable",
    port: "12",
    ssl: "disable",
    profile: trname5.name,
}, {
    dependsOn: [trname5],
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname5 = fortimanager.ObjectWanoptProfile("trname5")
trname = fortimanager.ObjectWanoptProfileTcp("trname",
    byte_caching="enable",
    port="12",
    ssl="disable",
    profile=trname5.name,
    opts = pulumi.ResourceOptions(depends_on=[trname5]))
Copy
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 {
		trname5, err := fortimanager.NewObjectWanoptProfile(ctx, "trname5", nil)
		if err != nil {
			return err
		}
		_, err = fortimanager.NewObjectWanoptProfileTcp(ctx, "trname", &fortimanager.ObjectWanoptProfileTcpArgs{
			ByteCaching: pulumi.String("enable"),
			Port:        pulumi.String("12"),
			Ssl:         pulumi.String("disable"),
			Profile:     trname5.Name,
		}, pulumi.DependsOn([]pulumi.Resource{
			trname5,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;

return await Deployment.RunAsync(() => 
{
    var trname5 = new Fortimanager.ObjectWanoptProfile("trname5");

    var trname = new Fortimanager.ObjectWanoptProfileTcp("trname", new()
    {
        ByteCaching = "enable",
        Port = "12",
        Ssl = "disable",
        Profile = trname5.Name,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            trname5,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectWanoptProfile;
import com.pulumi.fortimanager.ObjectWanoptProfileTcp;
import com.pulumi.fortimanager.ObjectWanoptProfileTcpArgs;
import com.pulumi.resources.CustomResourceOptions;
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 trname5 = new ObjectWanoptProfile("trname5");

        var trname = new ObjectWanoptProfileTcp("trname", ObjectWanoptProfileTcpArgs.builder()
            .byteCaching("enable")
            .port(12)
            .ssl("disable")
            .profile(trname5.name())
            .build(), CustomResourceOptions.builder()
                .dependsOn(trname5)
                .build());

    }
}
Copy
resources:
  trname:
    type: fortimanager:ObjectWanoptProfileTcp
    properties:
      byteCaching: enable
      port: 12
      ssl: disable
      profile: ${trname5.name}
    options:
      dependsOn:
        - ${trname5}
  trname5:
    type: fortimanager:ObjectWanoptProfile
Copy

Create ObjectWanoptProfileTcp Resource

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

Constructor syntax

new ObjectWanoptProfileTcp(name: string, args: ObjectWanoptProfileTcpArgs, opts?: CustomResourceOptions);
@overload
def ObjectWanoptProfileTcp(resource_name: str,
                           args: ObjectWanoptProfileTcpInitArgs,
                           opts: Optional[ResourceOptions] = None)

@overload
def ObjectWanoptProfileTcp(resource_name: str,
                           opts: Optional[ResourceOptions] = None,
                           profile: Optional[str] = None,
                           log_traffic: Optional[str] = None,
                           byte_caching_opt: Optional[str] = None,
                           adom: Optional[str] = None,
                           object_wanopt_profile_tcp_id: Optional[str] = None,
                           port: Optional[str] = None,
                           byte_caching: Optional[str] = None,
                           scopetype: Optional[str] = None,
                           secure_tunnel: Optional[str] = None,
                           ssl: Optional[str] = None,
                           ssl_ports: Optional[Sequence[float]] = None,
                           status: Optional[str] = None,
                           tunnel_sharing: Optional[str] = None)
func NewObjectWanoptProfileTcp(ctx *Context, name string, args ObjectWanoptProfileTcpArgs, opts ...ResourceOption) (*ObjectWanoptProfileTcp, error)
public ObjectWanoptProfileTcp(string name, ObjectWanoptProfileTcpArgs args, CustomResourceOptions? opts = null)
public ObjectWanoptProfileTcp(String name, ObjectWanoptProfileTcpArgs args)
public ObjectWanoptProfileTcp(String name, ObjectWanoptProfileTcpArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWanoptProfileTcp
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ObjectWanoptProfileTcpArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ObjectWanoptProfileTcpInitArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ObjectWanoptProfileTcpArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ObjectWanoptProfileTcpArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ObjectWanoptProfileTcpArgs
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 objectWanoptProfileTcpResource = new Fortimanager.ObjectWanoptProfileTcp("objectWanoptProfileTcpResource", new()
{
    Profile = "string",
    LogTraffic = "string",
    ByteCachingOpt = "string",
    Adom = "string",
    ObjectWanoptProfileTcpId = "string",
    Port = "string",
    ByteCaching = "string",
    Scopetype = "string",
    SecureTunnel = "string",
    Ssl = "string",
    SslPorts = new[]
    {
        0,
    },
    Status = "string",
    TunnelSharing = "string",
});
Copy
example, err := fortimanager.NewObjectWanoptProfileTcp(ctx, "objectWanoptProfileTcpResource", &fortimanager.ObjectWanoptProfileTcpArgs{
Profile: pulumi.String("string"),
LogTraffic: pulumi.String("string"),
ByteCachingOpt: pulumi.String("string"),
Adom: pulumi.String("string"),
ObjectWanoptProfileTcpId: pulumi.String("string"),
Port: pulumi.String("string"),
ByteCaching: pulumi.String("string"),
Scopetype: pulumi.String("string"),
SecureTunnel: pulumi.String("string"),
Ssl: pulumi.String("string"),
SslPorts: pulumi.Float64Array{
pulumi.Float64(0),
},
Status: pulumi.String("string"),
TunnelSharing: pulumi.String("string"),
})
Copy
var objectWanoptProfileTcpResource = new ObjectWanoptProfileTcp("objectWanoptProfileTcpResource", ObjectWanoptProfileTcpArgs.builder()
    .profile("string")
    .logTraffic("string")
    .byteCachingOpt("string")
    .adom("string")
    .objectWanoptProfileTcpId("string")
    .port("string")
    .byteCaching("string")
    .scopetype("string")
    .secureTunnel("string")
    .ssl("string")
    .sslPorts(0)
    .status("string")
    .tunnelSharing("string")
    .build());
Copy
object_wanopt_profile_tcp_resource = fortimanager.ObjectWanoptProfileTcp("objectWanoptProfileTcpResource",
    profile="string",
    log_traffic="string",
    byte_caching_opt="string",
    adom="string",
    object_wanopt_profile_tcp_id="string",
    port="string",
    byte_caching="string",
    scopetype="string",
    secure_tunnel="string",
    ssl="string",
    ssl_ports=[0],
    status="string",
    tunnel_sharing="string")
Copy
const objectWanoptProfileTcpResource = new fortimanager.ObjectWanoptProfileTcp("objectWanoptProfileTcpResource", {
    profile: "string",
    logTraffic: "string",
    byteCachingOpt: "string",
    adom: "string",
    objectWanoptProfileTcpId: "string",
    port: "string",
    byteCaching: "string",
    scopetype: "string",
    secureTunnel: "string",
    ssl: "string",
    sslPorts: [0],
    status: "string",
    tunnelSharing: "string",
});
Copy
type: fortimanager:ObjectWanoptProfileTcp
properties:
    adom: string
    byteCaching: string
    byteCachingOpt: string
    logTraffic: string
    objectWanoptProfileTcpId: string
    port: string
    profile: string
    scopetype: string
    secureTunnel: string
    ssl: string
    sslPorts:
        - 0
    status: string
    tunnelSharing: string
Copy

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

Profile This property is required. string
Profile.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
ByteCaching string
Enable/disable byte-caching for HTTP. Byte caching reduces the amount of traffic by caching file data sent across the WAN and in future serving if from the cache. Valid values: disable, enable.
ByteCachingOpt string
Select whether TCP byte-caching uses system memory only or both memory and disk space. Valid values: mem-only, mem-disk.
LogTraffic string
Enable/disable logging. Valid values: disable, enable.
ObjectWanoptProfileTcpId string
an identifier for the resource.
Port string
Single port number or port number range for TCP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
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.
SecureTunnel string
Enable/disable securing the WAN Opt tunnel using SSL. Secure and non-secure tunnels use the same TCP port (7810). Valid values: disable, enable.
Ssl string
Enable/disable SSL/TLS offloading. Valid values: disable, enable.
SslPorts List<double>
Port on which to expect HTTPS traffic for SSL/TLS offloading.
Status string
Enable/disable HTTP WAN Optimization. Valid values: disable, enable.
TunnelSharing string
Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values: private, shared, express-shared.
Profile This property is required. string
Profile.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
ByteCaching string
Enable/disable byte-caching for HTTP. Byte caching reduces the amount of traffic by caching file data sent across the WAN and in future serving if from the cache. Valid values: disable, enable.
ByteCachingOpt string
Select whether TCP byte-caching uses system memory only or both memory and disk space. Valid values: mem-only, mem-disk.
LogTraffic string
Enable/disable logging. Valid values: disable, enable.
ObjectWanoptProfileTcpId string
an identifier for the resource.
Port string
Single port number or port number range for TCP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
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.
SecureTunnel string
Enable/disable securing the WAN Opt tunnel using SSL. Secure and non-secure tunnels use the same TCP port (7810). Valid values: disable, enable.
Ssl string
Enable/disable SSL/TLS offloading. Valid values: disable, enable.
SslPorts []float64
Port on which to expect HTTPS traffic for SSL/TLS offloading.
Status string
Enable/disable HTTP WAN Optimization. Valid values: disable, enable.
TunnelSharing string
Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values: private, shared, express-shared.
profile This property is required. String
Profile.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
byteCaching String
Enable/disable byte-caching for HTTP. Byte caching reduces the amount of traffic by caching file data sent across the WAN and in future serving if from the cache. Valid values: disable, enable.
byteCachingOpt String
Select whether TCP byte-caching uses system memory only or both memory and disk space. Valid values: mem-only, mem-disk.
logTraffic String
Enable/disable logging. Valid values: disable, enable.
objectWanoptProfileTcpId String
an identifier for the resource.
port String
Single port number or port number range for TCP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
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.
secureTunnel String
Enable/disable securing the WAN Opt tunnel using SSL. Secure and non-secure tunnels use the same TCP port (7810). Valid values: disable, enable.
ssl String
Enable/disable SSL/TLS offloading. Valid values: disable, enable.
sslPorts List<Double>
Port on which to expect HTTPS traffic for SSL/TLS offloading.
status String
Enable/disable HTTP WAN Optimization. Valid values: disable, enable.
tunnelSharing String
Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values: private, shared, express-shared.
profile This property is required. string
Profile.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
byteCaching string
Enable/disable byte-caching for HTTP. Byte caching reduces the amount of traffic by caching file data sent across the WAN and in future serving if from the cache. Valid values: disable, enable.
byteCachingOpt string
Select whether TCP byte-caching uses system memory only or both memory and disk space. Valid values: mem-only, mem-disk.
logTraffic string
Enable/disable logging. Valid values: disable, enable.
objectWanoptProfileTcpId string
an identifier for the resource.
port string
Single port number or port number range for TCP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
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.
secureTunnel string
Enable/disable securing the WAN Opt tunnel using SSL. Secure and non-secure tunnels use the same TCP port (7810). Valid values: disable, enable.
ssl string
Enable/disable SSL/TLS offloading. Valid values: disable, enable.
sslPorts number[]
Port on which to expect HTTPS traffic for SSL/TLS offloading.
status string
Enable/disable HTTP WAN Optimization. Valid values: disable, enable.
tunnelSharing string
Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values: private, shared, express-shared.
profile This property is required. str
Profile.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
byte_caching str
Enable/disable byte-caching for HTTP. Byte caching reduces the amount of traffic by caching file data sent across the WAN and in future serving if from the cache. Valid values: disable, enable.
byte_caching_opt str
Select whether TCP byte-caching uses system memory only or both memory and disk space. Valid values: mem-only, mem-disk.
log_traffic str
Enable/disable logging. Valid values: disable, enable.
object_wanopt_profile_tcp_id str
an identifier for the resource.
port str
Single port number or port number range for TCP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
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.
secure_tunnel str
Enable/disable securing the WAN Opt tunnel using SSL. Secure and non-secure tunnels use the same TCP port (7810). Valid values: disable, enable.
ssl str
Enable/disable SSL/TLS offloading. Valid values: disable, enable.
ssl_ports Sequence[float]
Port on which to expect HTTPS traffic for SSL/TLS offloading.
status str
Enable/disable HTTP WAN Optimization. Valid values: disable, enable.
tunnel_sharing str
Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values: private, shared, express-shared.
profile This property is required. String
Profile.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
byteCaching String
Enable/disable byte-caching for HTTP. Byte caching reduces the amount of traffic by caching file data sent across the WAN and in future serving if from the cache. Valid values: disable, enable.
byteCachingOpt String
Select whether TCP byte-caching uses system memory only or both memory and disk space. Valid values: mem-only, mem-disk.
logTraffic String
Enable/disable logging. Valid values: disable, enable.
objectWanoptProfileTcpId String
an identifier for the resource.
port String
Single port number or port number range for TCP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
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.
secureTunnel String
Enable/disable securing the WAN Opt tunnel using SSL. Secure and non-secure tunnels use the same TCP port (7810). Valid values: disable, enable.
ssl String
Enable/disable SSL/TLS offloading. Valid values: disable, enable.
sslPorts List<Number>
Port on which to expect HTTPS traffic for SSL/TLS offloading.
status String
Enable/disable HTTP WAN Optimization. Valid values: disable, enable.
tunnelSharing String
Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values: private, shared, express-shared.

Outputs

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

Get an existing ObjectWanoptProfileTcp 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?: ObjectWanoptProfileTcpState, opts?: CustomResourceOptions): ObjectWanoptProfileTcp
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        byte_caching: Optional[str] = None,
        byte_caching_opt: Optional[str] = None,
        log_traffic: Optional[str] = None,
        object_wanopt_profile_tcp_id: Optional[str] = None,
        port: Optional[str] = None,
        profile: Optional[str] = None,
        scopetype: Optional[str] = None,
        secure_tunnel: Optional[str] = None,
        ssl: Optional[str] = None,
        ssl_ports: Optional[Sequence[float]] = None,
        status: Optional[str] = None,
        tunnel_sharing: Optional[str] = None) -> ObjectWanoptProfileTcp
func GetObjectWanoptProfileTcp(ctx *Context, name string, id IDInput, state *ObjectWanoptProfileTcpState, opts ...ResourceOption) (*ObjectWanoptProfileTcp, error)
public static ObjectWanoptProfileTcp Get(string name, Input<string> id, ObjectWanoptProfileTcpState? state, CustomResourceOptions? opts = null)
public static ObjectWanoptProfileTcp get(String name, Output<String> id, ObjectWanoptProfileTcpState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectWanoptProfileTcp    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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 This property is required.
The unique name of the resulting resource.
id This property is required.
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.
ByteCaching string
Enable/disable byte-caching for HTTP. Byte caching reduces the amount of traffic by caching file data sent across the WAN and in future serving if from the cache. Valid values: disable, enable.
ByteCachingOpt string
Select whether TCP byte-caching uses system memory only or both memory and disk space. Valid values: mem-only, mem-disk.
LogTraffic string
Enable/disable logging. Valid values: disable, enable.
ObjectWanoptProfileTcpId string
an identifier for the resource.
Port string
Single port number or port number range for TCP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
Profile string
Profile.
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.
SecureTunnel string
Enable/disable securing the WAN Opt tunnel using SSL. Secure and non-secure tunnels use the same TCP port (7810). Valid values: disable, enable.
Ssl string
Enable/disable SSL/TLS offloading. Valid values: disable, enable.
SslPorts List<double>
Port on which to expect HTTPS traffic for SSL/TLS offloading.
Status string
Enable/disable HTTP WAN Optimization. Valid values: disable, enable.
TunnelSharing string
Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values: private, shared, express-shared.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
ByteCaching string
Enable/disable byte-caching for HTTP. Byte caching reduces the amount of traffic by caching file data sent across the WAN and in future serving if from the cache. Valid values: disable, enable.
ByteCachingOpt string
Select whether TCP byte-caching uses system memory only or both memory and disk space. Valid values: mem-only, mem-disk.
LogTraffic string
Enable/disable logging. Valid values: disable, enable.
ObjectWanoptProfileTcpId string
an identifier for the resource.
Port string
Single port number or port number range for TCP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
Profile string
Profile.
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.
SecureTunnel string
Enable/disable securing the WAN Opt tunnel using SSL. Secure and non-secure tunnels use the same TCP port (7810). Valid values: disable, enable.
Ssl string
Enable/disable SSL/TLS offloading. Valid values: disable, enable.
SslPorts []float64
Port on which to expect HTTPS traffic for SSL/TLS offloading.
Status string
Enable/disable HTTP WAN Optimization. Valid values: disable, enable.
TunnelSharing string
Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values: private, shared, express-shared.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
byteCaching String
Enable/disable byte-caching for HTTP. Byte caching reduces the amount of traffic by caching file data sent across the WAN and in future serving if from the cache. Valid values: disable, enable.
byteCachingOpt String
Select whether TCP byte-caching uses system memory only or both memory and disk space. Valid values: mem-only, mem-disk.
logTraffic String
Enable/disable logging. Valid values: disable, enable.
objectWanoptProfileTcpId String
an identifier for the resource.
port String
Single port number or port number range for TCP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
profile String
Profile.
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.
secureTunnel String
Enable/disable securing the WAN Opt tunnel using SSL. Secure and non-secure tunnels use the same TCP port (7810). Valid values: disable, enable.
ssl String
Enable/disable SSL/TLS offloading. Valid values: disable, enable.
sslPorts List<Double>
Port on which to expect HTTPS traffic for SSL/TLS offloading.
status String
Enable/disable HTTP WAN Optimization. Valid values: disable, enable.
tunnelSharing String
Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values: private, shared, express-shared.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
byteCaching string
Enable/disable byte-caching for HTTP. Byte caching reduces the amount of traffic by caching file data sent across the WAN and in future serving if from the cache. Valid values: disable, enable.
byteCachingOpt string
Select whether TCP byte-caching uses system memory only or both memory and disk space. Valid values: mem-only, mem-disk.
logTraffic string
Enable/disable logging. Valid values: disable, enable.
objectWanoptProfileTcpId string
an identifier for the resource.
port string
Single port number or port number range for TCP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
profile string
Profile.
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.
secureTunnel string
Enable/disable securing the WAN Opt tunnel using SSL. Secure and non-secure tunnels use the same TCP port (7810). Valid values: disable, enable.
ssl string
Enable/disable SSL/TLS offloading. Valid values: disable, enable.
sslPorts number[]
Port on which to expect HTTPS traffic for SSL/TLS offloading.
status string
Enable/disable HTTP WAN Optimization. Valid values: disable, enable.
tunnelSharing string
Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values: private, shared, express-shared.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
byte_caching str
Enable/disable byte-caching for HTTP. Byte caching reduces the amount of traffic by caching file data sent across the WAN and in future serving if from the cache. Valid values: disable, enable.
byte_caching_opt str
Select whether TCP byte-caching uses system memory only or both memory and disk space. Valid values: mem-only, mem-disk.
log_traffic str
Enable/disable logging. Valid values: disable, enable.
object_wanopt_profile_tcp_id str
an identifier for the resource.
port str
Single port number or port number range for TCP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
profile str
Profile.
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.
secure_tunnel str
Enable/disable securing the WAN Opt tunnel using SSL. Secure and non-secure tunnels use the same TCP port (7810). Valid values: disable, enable.
ssl str
Enable/disable SSL/TLS offloading. Valid values: disable, enable.
ssl_ports Sequence[float]
Port on which to expect HTTPS traffic for SSL/TLS offloading.
status str
Enable/disable HTTP WAN Optimization. Valid values: disable, enable.
tunnel_sharing str
Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values: private, shared, express-shared.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
byteCaching String
Enable/disable byte-caching for HTTP. Byte caching reduces the amount of traffic by caching file data sent across the WAN and in future serving if from the cache. Valid values: disable, enable.
byteCachingOpt String
Select whether TCP byte-caching uses system memory only or both memory and disk space. Valid values: mem-only, mem-disk.
logTraffic String
Enable/disable logging. Valid values: disable, enable.
objectWanoptProfileTcpId String
an identifier for the resource.
port String
Single port number or port number range for TCP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
profile String
Profile.
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.
secureTunnel String
Enable/disable securing the WAN Opt tunnel using SSL. Secure and non-secure tunnels use the same TCP port (7810). Valid values: disable, enable.
ssl String
Enable/disable SSL/TLS offloading. Valid values: disable, enable.
sslPorts List<Number>
Port on which to expect HTTPS traffic for SSL/TLS offloading.
status String
Enable/disable HTTP WAN Optimization. Valid values: disable, enable.
tunnelSharing String
Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values: private, shared, express-shared.

Import

ObjectWanopt ProfileTcp can be imported using any of these accepted formats:

Set import_options = [“profile=YOUR_VALUE”] in the provider section.

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectWanoptProfileTcp:ObjectWanoptProfileTcp labelname ObjectWanoptProfileTcp
Copy

$ 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.