fortimanager.ObjectWanoptProfileFtp
Explore with Pulumi AI
Enable/disable FTP WAN Optimization and configure FTP WAN Optimization features.
This resource is a sub resource for variable
ftp
of resourcefortimanager.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 trname2 = new fortimanager.ObjectWanoptProfile("trname2", {});
const trname = new fortimanager.ObjectWanoptProfileFtp("trname", {
byteCaching: "enable",
logTraffic: "enable",
profile: trname2.name,
}, {
dependsOn: [trname2],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname2 = fortimanager.ObjectWanoptProfile("trname2")
trname = fortimanager.ObjectWanoptProfileFtp("trname",
byte_caching="enable",
log_traffic="enable",
profile=trname2.name,
opts = pulumi.ResourceOptions(depends_on=[trname2]))
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 {
trname2, err := fortimanager.NewObjectWanoptProfile(ctx, "trname2", nil)
if err != nil {
return err
}
_, err = fortimanager.NewObjectWanoptProfileFtp(ctx, "trname", &fortimanager.ObjectWanoptProfileFtpArgs{
ByteCaching: pulumi.String("enable"),
LogTraffic: pulumi.String("enable"),
Profile: trname2.Name,
}, pulumi.DependsOn([]pulumi.Resource{
trname2,
}))
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 trname2 = new Fortimanager.ObjectWanoptProfile("trname2");
var trname = new Fortimanager.ObjectWanoptProfileFtp("trname", new()
{
ByteCaching = "enable",
LogTraffic = "enable",
Profile = trname2.Name,
}, new CustomResourceOptions
{
DependsOn =
{
trname2,
},
});
});
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.ObjectWanoptProfileFtp;
import com.pulumi.fortimanager.ObjectWanoptProfileFtpArgs;
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 trname2 = new ObjectWanoptProfile("trname2");
var trname = new ObjectWanoptProfileFtp("trname", ObjectWanoptProfileFtpArgs.builder()
.byteCaching("enable")
.logTraffic("enable")
.profile(trname2.name())
.build(), CustomResourceOptions.builder()
.dependsOn(trname2)
.build());
}
}
resources:
trname:
type: fortimanager:ObjectWanoptProfileFtp
properties:
byteCaching: enable
logTraffic: enable
profile: ${trname2.name}
options:
dependsOn:
- ${trname2}
trname2:
type: fortimanager:ObjectWanoptProfile
Create ObjectWanoptProfileFtp Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectWanoptProfileFtp(name: string, args: ObjectWanoptProfileFtpArgs, opts?: CustomResourceOptions);
@overload
def ObjectWanoptProfileFtp(resource_name: str,
args: ObjectWanoptProfileFtpInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectWanoptProfileFtp(resource_name: str,
opts: Optional[ResourceOptions] = None,
profile: Optional[str] = None,
object_wanopt_profile_ftp_id: Optional[str] = None,
log_traffic: Optional[str] = None,
adom: Optional[str] = None,
ports: Optional[Sequence[float]] = None,
prefer_chunking: Optional[str] = None,
byte_caching: Optional[str] = None,
protocol_opt: Optional[str] = None,
scopetype: Optional[str] = None,
secure_tunnel: Optional[str] = None,
ssl: Optional[str] = None,
status: Optional[str] = None,
tunnel_sharing: Optional[str] = None)
func NewObjectWanoptProfileFtp(ctx *Context, name string, args ObjectWanoptProfileFtpArgs, opts ...ResourceOption) (*ObjectWanoptProfileFtp, error)
public ObjectWanoptProfileFtp(string name, ObjectWanoptProfileFtpArgs args, CustomResourceOptions? opts = null)
public ObjectWanoptProfileFtp(String name, ObjectWanoptProfileFtpArgs args)
public ObjectWanoptProfileFtp(String name, ObjectWanoptProfileFtpArgs args, CustomResourceOptions options)
type: fortimanager:ObjectWanoptProfileFtp
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 ObjectWanoptProfileFtpArgs
- 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 ObjectWanoptProfileFtpInitArgs
- 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 ObjectWanoptProfileFtpArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectWanoptProfileFtpArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectWanoptProfileFtpArgs
- 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 objectWanoptProfileFtpResource = new Fortimanager.ObjectWanoptProfileFtp("objectWanoptProfileFtpResource", new()
{
Profile = "string",
ObjectWanoptProfileFtpId = "string",
LogTraffic = "string",
Adom = "string",
Ports = new[]
{
0,
},
PreferChunking = "string",
ByteCaching = "string",
ProtocolOpt = "string",
Scopetype = "string",
SecureTunnel = "string",
Ssl = "string",
Status = "string",
TunnelSharing = "string",
});
example, err := fortimanager.NewObjectWanoptProfileFtp(ctx, "objectWanoptProfileFtpResource", &fortimanager.ObjectWanoptProfileFtpArgs{
Profile: pulumi.String("string"),
ObjectWanoptProfileFtpId: pulumi.String("string"),
LogTraffic: pulumi.String("string"),
Adom: pulumi.String("string"),
Ports: pulumi.Float64Array{
pulumi.Float64(0),
},
PreferChunking: pulumi.String("string"),
ByteCaching: pulumi.String("string"),
ProtocolOpt: pulumi.String("string"),
Scopetype: pulumi.String("string"),
SecureTunnel: pulumi.String("string"),
Ssl: pulumi.String("string"),
Status: pulumi.String("string"),
TunnelSharing: pulumi.String("string"),
})
var objectWanoptProfileFtpResource = new ObjectWanoptProfileFtp("objectWanoptProfileFtpResource", ObjectWanoptProfileFtpArgs.builder()
.profile("string")
.objectWanoptProfileFtpId("string")
.logTraffic("string")
.adom("string")
.ports(0)
.preferChunking("string")
.byteCaching("string")
.protocolOpt("string")
.scopetype("string")
.secureTunnel("string")
.ssl("string")
.status("string")
.tunnelSharing("string")
.build());
object_wanopt_profile_ftp_resource = fortimanager.ObjectWanoptProfileFtp("objectWanoptProfileFtpResource",
profile="string",
object_wanopt_profile_ftp_id="string",
log_traffic="string",
adom="string",
ports=[0],
prefer_chunking="string",
byte_caching="string",
protocol_opt="string",
scopetype="string",
secure_tunnel="string",
ssl="string",
status="string",
tunnel_sharing="string")
const objectWanoptProfileFtpResource = new fortimanager.ObjectWanoptProfileFtp("objectWanoptProfileFtpResource", {
profile: "string",
objectWanoptProfileFtpId: "string",
logTraffic: "string",
adom: "string",
ports: [0],
preferChunking: "string",
byteCaching: "string",
protocolOpt: "string",
scopetype: "string",
secureTunnel: "string",
ssl: "string",
status: "string",
tunnelSharing: "string",
});
type: fortimanager:ObjectWanoptProfileFtp
properties:
adom: string
byteCaching: string
logTraffic: string
objectWanoptProfileFtpId: string
ports:
- 0
preferChunking: string
profile: string
protocolOpt: string
scopetype: string
secureTunnel: string
ssl: string
status: string
tunnelSharing: string
ObjectWanoptProfileFtp 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 ObjectWanoptProfileFtp resource accepts the following input properties:
- Profile string
- Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Byte
Caching 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
. - Log
Traffic string - Enable/disable logging. Valid values:
disable
,enable
. - Object
Wanopt stringProfile Ftp Id - an identifier for the resource.
- Ports List<double>
- Single port number or port number range for FTP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
- Prefer
Chunking string - Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values:
dynamic
,fix
. - Protocol
Opt string - Select Protocol specific optimitation or generic TCP optimization. Valid values:
protocol
,tcp
. - 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
. - Secure
Tunnel 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 (hardware acceleration) for traffic in this tunnel. Valid values:
disable
,enable
. - Status string
- Enable/disable HTTP WAN Optimization. Valid values:
disable
,enable
. - Tunnel
Sharing string - Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values:
private
,shared
,express-shared
.
- Profile string
- Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Byte
Caching 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
. - Log
Traffic string - Enable/disable logging. Valid values:
disable
,enable
. - Object
Wanopt stringProfile Ftp Id - an identifier for the resource.
- Ports []float64
- Single port number or port number range for FTP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
- Prefer
Chunking string - Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values:
dynamic
,fix
. - Protocol
Opt string - Select Protocol specific optimitation or generic TCP optimization. Valid values:
protocol
,tcp
. - 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
. - Secure
Tunnel 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 (hardware acceleration) for traffic in this tunnel. Valid values:
disable
,enable
. - Status string
- Enable/disable HTTP WAN Optimization. Valid values:
disable
,enable
. - Tunnel
Sharing string - Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values:
private
,shared
,express-shared
.
- profile String
- Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - byte
Caching 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
. - log
Traffic String - Enable/disable logging. Valid values:
disable
,enable
. - object
Wanopt StringProfile Ftp Id - an identifier for the resource.
- ports List<Double>
- Single port number or port number range for FTP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
- prefer
Chunking String - Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values:
dynamic
,fix
. - protocol
Opt String - Select Protocol specific optimitation or generic TCP optimization. Valid values:
protocol
,tcp
. - 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
. - secure
Tunnel 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 (hardware acceleration) for traffic in this tunnel. Valid values:
disable
,enable
. - status String
- Enable/disable HTTP WAN Optimization. Valid values:
disable
,enable
. - tunnel
Sharing String - Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values:
private
,shared
,express-shared
.
- profile string
- Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - byte
Caching 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
. - log
Traffic string - Enable/disable logging. Valid values:
disable
,enable
. - object
Wanopt stringProfile Ftp Id - an identifier for the resource.
- ports number[]
- Single port number or port number range for FTP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
- prefer
Chunking string - Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values:
dynamic
,fix
. - protocol
Opt string - Select Protocol specific optimitation or generic TCP optimization. Valid values:
protocol
,tcp
. - 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
. - secure
Tunnel 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 (hardware acceleration) for traffic in this tunnel. Valid values:
disable
,enable
. - status string
- Enable/disable HTTP WAN Optimization. Valid values:
disable
,enable
. - tunnel
Sharing string - Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values:
private
,shared
,express-shared
.
- profile str
- Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, 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
. - log_
traffic str - Enable/disable logging. Valid values:
disable
,enable
. - object_
wanopt_ strprofile_ ftp_ id - an identifier for the resource.
- ports Sequence[float]
- Single port number or port number range for FTP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
- prefer_
chunking str - Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values:
dynamic
,fix
. - protocol_
opt str - Select Protocol specific optimitation or generic TCP optimization. Valid values:
protocol
,tcp
. - 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
. - 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 (hardware acceleration) for traffic in this tunnel. Valid values:
disable
,enable
. - 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 String
- Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - byte
Caching 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
. - log
Traffic String - Enable/disable logging. Valid values:
disable
,enable
. - object
Wanopt StringProfile Ftp Id - an identifier for the resource.
- ports List<Number>
- Single port number or port number range for FTP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
- prefer
Chunking String - Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values:
dynamic
,fix
. - protocol
Opt String - Select Protocol specific optimitation or generic TCP optimization. Valid values:
protocol
,tcp
. - 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
. - secure
Tunnel 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 (hardware acceleration) for traffic in this tunnel. Valid values:
disable
,enable
. - status String
- Enable/disable HTTP WAN Optimization. Valid values:
disable
,enable
. - tunnel
Sharing 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 ObjectWanoptProfileFtp 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 ObjectWanoptProfileFtp Resource
Get an existing ObjectWanoptProfileFtp 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?: ObjectWanoptProfileFtpState, opts?: CustomResourceOptions): ObjectWanoptProfileFtp
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
byte_caching: Optional[str] = None,
log_traffic: Optional[str] = None,
object_wanopt_profile_ftp_id: Optional[str] = None,
ports: Optional[Sequence[float]] = None,
prefer_chunking: Optional[str] = None,
profile: Optional[str] = None,
protocol_opt: Optional[str] = None,
scopetype: Optional[str] = None,
secure_tunnel: Optional[str] = None,
ssl: Optional[str] = None,
status: Optional[str] = None,
tunnel_sharing: Optional[str] = None) -> ObjectWanoptProfileFtp
func GetObjectWanoptProfileFtp(ctx *Context, name string, id IDInput, state *ObjectWanoptProfileFtpState, opts ...ResourceOption) (*ObjectWanoptProfileFtp, error)
public static ObjectWanoptProfileFtp Get(string name, Input<string> id, ObjectWanoptProfileFtpState? state, CustomResourceOptions? opts = null)
public static ObjectWanoptProfileFtp get(String name, Output<String> id, ObjectWanoptProfileFtpState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectWanoptProfileFtp 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. - Byte
Caching 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
. - Log
Traffic string - Enable/disable logging. Valid values:
disable
,enable
. - Object
Wanopt stringProfile Ftp Id - an identifier for the resource.
- Ports List<double>
- Single port number or port number range for FTP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
- Prefer
Chunking string - Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values:
dynamic
,fix
. - Profile string
- Profile.
- Protocol
Opt string - Select Protocol specific optimitation or generic TCP optimization. Valid values:
protocol
,tcp
. - 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
. - Secure
Tunnel 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 (hardware acceleration) for traffic in this tunnel. Valid values:
disable
,enable
. - Status string
- Enable/disable HTTP WAN Optimization. Valid values:
disable
,enable
. - Tunnel
Sharing 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
isadom
, otherwise the value of adom in the provider will be inherited. - Byte
Caching 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
. - Log
Traffic string - Enable/disable logging. Valid values:
disable
,enable
. - Object
Wanopt stringProfile Ftp Id - an identifier for the resource.
- Ports []float64
- Single port number or port number range for FTP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
- Prefer
Chunking string - Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values:
dynamic
,fix
. - Profile string
- Profile.
- Protocol
Opt string - Select Protocol specific optimitation or generic TCP optimization. Valid values:
protocol
,tcp
. - 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
. - Secure
Tunnel 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 (hardware acceleration) for traffic in this tunnel. Valid values:
disable
,enable
. - Status string
- Enable/disable HTTP WAN Optimization. Valid values:
disable
,enable
. - Tunnel
Sharing 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
isadom
, otherwise the value of adom in the provider will be inherited. - byte
Caching 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
. - log
Traffic String - Enable/disable logging. Valid values:
disable
,enable
. - object
Wanopt StringProfile Ftp Id - an identifier for the resource.
- ports List<Double>
- Single port number or port number range for FTP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
- prefer
Chunking String - Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values:
dynamic
,fix
. - profile String
- Profile.
- protocol
Opt String - Select Protocol specific optimitation or generic TCP optimization. Valid values:
protocol
,tcp
. - 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
. - secure
Tunnel 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 (hardware acceleration) for traffic in this tunnel. Valid values:
disable
,enable
. - status String
- Enable/disable HTTP WAN Optimization. Valid values:
disable
,enable
. - tunnel
Sharing 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
isadom
, otherwise the value of adom in the provider will be inherited. - byte
Caching 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
. - log
Traffic string - Enable/disable logging. Valid values:
disable
,enable
. - object
Wanopt stringProfile Ftp Id - an identifier for the resource.
- ports number[]
- Single port number or port number range for FTP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
- prefer
Chunking string - Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values:
dynamic
,fix
. - profile string
- Profile.
- protocol
Opt string - Select Protocol specific optimitation or generic TCP optimization. Valid values:
protocol
,tcp
. - 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
. - secure
Tunnel 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 (hardware acceleration) for traffic in this tunnel. Valid values:
disable
,enable
. - status string
- Enable/disable HTTP WAN Optimization. Valid values:
disable
,enable
. - tunnel
Sharing 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
isadom
, 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
. - log_
traffic str - Enable/disable logging. Valid values:
disable
,enable
. - object_
wanopt_ strprofile_ ftp_ id - an identifier for the resource.
- ports Sequence[float]
- Single port number or port number range for FTP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
- prefer_
chunking str - Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values:
dynamic
,fix
. - profile str
- Profile.
- protocol_
opt str - Select Protocol specific optimitation or generic TCP optimization. Valid values:
protocol
,tcp
. - 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
. - 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 (hardware acceleration) for traffic in this tunnel. Valid values:
disable
,enable
. - 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
isadom
, otherwise the value of adom in the provider will be inherited. - byte
Caching 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
. - log
Traffic String - Enable/disable logging. Valid values:
disable
,enable
. - object
Wanopt StringProfile Ftp Id - an identifier for the resource.
- ports List<Number>
- Single port number or port number range for FTP. Only packets with a destination port number that matches this port number or range are accepted by this profile.
- prefer
Chunking String - Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values:
dynamic
,fix
. - profile String
- Profile.
- protocol
Opt String - Select Protocol specific optimitation or generic TCP optimization. Valid values:
protocol
,tcp
. - 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
. - secure
Tunnel 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 (hardware acceleration) for traffic in this tunnel. Valid values:
disable
,enable
. - status String
- Enable/disable HTTP WAN Optimization. Valid values:
disable
,enable
. - tunnel
Sharing String - Tunnel sharing mode for aggressive/non-aggressive and/or interactive/non-interactive protocols. Valid values:
private
,shared
,express-shared
.
Import
ObjectWanopt ProfileFtp 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/objectWanoptProfileFtp:ObjectWanoptProfileFtp labelname ObjectWanoptProfileFtp
$ 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.