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

fortimanager.ObjectWanoptProfileCifs

Explore with Pulumi AI

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

    Enable/disable CIFS (Windows sharing) WAN Optimization and configure CIFS WAN Optimization features.

    This resource is a sub resource for variable cifs 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 trnameObjectWanoptProfile = new fortimanager.ObjectWanoptProfile("trnameObjectWanoptProfile", {});
    const trnameObjectWanoptProfileCifs = new fortimanager.ObjectWanoptProfileCifs("trnameObjectWanoptProfileCifs", {
        byteCaching: "enable",
        logTraffic: "enable",
        profile: trnameObjectWanoptProfile.name,
    }, {
        dependsOn: [trnameObjectWanoptProfile],
    });
    
    import pulumi
    import pulumi_fortimanager as fortimanager
    
    trname_object_wanopt_profile = fortimanager.ObjectWanoptProfile("trnameObjectWanoptProfile")
    trname_object_wanopt_profile_cifs = fortimanager.ObjectWanoptProfileCifs("trnameObjectWanoptProfileCifs",
        byte_caching="enable",
        log_traffic="enable",
        profile=trname_object_wanopt_profile.name,
        opts = pulumi.ResourceOptions(depends_on=[trname_object_wanopt_profile]))
    
    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 {
    		trnameObjectWanoptProfile, err := fortimanager.NewObjectWanoptProfile(ctx, "trnameObjectWanoptProfile", nil)
    		if err != nil {
    			return err
    		}
    		_, err = fortimanager.NewObjectWanoptProfileCifs(ctx, "trnameObjectWanoptProfileCifs", &fortimanager.ObjectWanoptProfileCifsArgs{
    			ByteCaching: pulumi.String("enable"),
    			LogTraffic:  pulumi.String("enable"),
    			Profile:     trnameObjectWanoptProfile.Name,
    		}, pulumi.DependsOn([]pulumi.Resource{
    			trnameObjectWanoptProfile,
    		}))
    		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 trnameObjectWanoptProfile = new Fortimanager.ObjectWanoptProfile("trnameObjectWanoptProfile");
    
        var trnameObjectWanoptProfileCifs = new Fortimanager.ObjectWanoptProfileCifs("trnameObjectWanoptProfileCifs", new()
        {
            ByteCaching = "enable",
            LogTraffic = "enable",
            Profile = trnameObjectWanoptProfile.Name,
        }, new CustomResourceOptions
        {
            DependsOn =
            {
                trnameObjectWanoptProfile,
            },
        });
    
    });
    
    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.ObjectWanoptProfileCifs;
    import com.pulumi.fortimanager.ObjectWanoptProfileCifsArgs;
    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 trnameObjectWanoptProfile = new ObjectWanoptProfile("trnameObjectWanoptProfile");
    
            var trnameObjectWanoptProfileCifs = new ObjectWanoptProfileCifs("trnameObjectWanoptProfileCifs", ObjectWanoptProfileCifsArgs.builder()
                .byteCaching("enable")
                .logTraffic("enable")
                .profile(trnameObjectWanoptProfile.name())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(trnameObjectWanoptProfile)
                    .build());
    
        }
    }
    
    resources:
      trnameObjectWanoptProfileCifs:
        type: fortimanager:ObjectWanoptProfileCifs
        properties:
          byteCaching: enable
          logTraffic: enable
          profile: ${trnameObjectWanoptProfile.name}
        options:
          dependsOn:
            - ${trnameObjectWanoptProfile}
      trnameObjectWanoptProfile:
        type: fortimanager:ObjectWanoptProfile
    

    Create ObjectWanoptProfileCifs Resource

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

    Constructor syntax

    new ObjectWanoptProfileCifs(name: string, args: ObjectWanoptProfileCifsArgs, opts?: CustomResourceOptions);
    @overload
    def ObjectWanoptProfileCifs(resource_name: str,
                                args: ObjectWanoptProfileCifsInitArgs,
                                opts: Optional[ResourceOptions] = None)
    
    @overload
    def ObjectWanoptProfileCifs(resource_name: str,
                                opts: Optional[ResourceOptions] = None,
                                profile: Optional[str] = None,
                                adom: Optional[str] = None,
                                byte_caching: Optional[str] = None,
                                log_traffic: Optional[str] = None,
                                object_wanopt_profile_cifs_id: Optional[str] = None,
                                ports: Optional[Sequence[float]] = None,
                                prefer_chunking: Optional[str] = None,
                                protocol_opt: Optional[str] = None,
                                scopetype: Optional[str] = None,
                                secure_tunnel: Optional[str] = None,
                                status: Optional[str] = None,
                                tunnel_sharing: Optional[str] = None)
    func NewObjectWanoptProfileCifs(ctx *Context, name string, args ObjectWanoptProfileCifsArgs, opts ...ResourceOption) (*ObjectWanoptProfileCifs, error)
    public ObjectWanoptProfileCifs(string name, ObjectWanoptProfileCifsArgs args, CustomResourceOptions? opts = null)
    public ObjectWanoptProfileCifs(String name, ObjectWanoptProfileCifsArgs args)
    public ObjectWanoptProfileCifs(String name, ObjectWanoptProfileCifsArgs args, CustomResourceOptions options)
    
    type: fortimanager:ObjectWanoptProfileCifs
    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 ObjectWanoptProfileCifsArgs
    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 ObjectWanoptProfileCifsInitArgs
    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 ObjectWanoptProfileCifsArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ObjectWanoptProfileCifsArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ObjectWanoptProfileCifsArgs
    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 objectWanoptProfileCifsResource = new Fortimanager.ObjectWanoptProfileCifs("objectWanoptProfileCifsResource", new()
    {
        Profile = "string",
        Adom = "string",
        ByteCaching = "string",
        LogTraffic = "string",
        ObjectWanoptProfileCifsId = "string",
        Ports = new[]
        {
            0,
        },
        PreferChunking = "string",
        ProtocolOpt = "string",
        Scopetype = "string",
        SecureTunnel = "string",
        Status = "string",
        TunnelSharing = "string",
    });
    
    example, err := fortimanager.NewObjectWanoptProfileCifs(ctx, "objectWanoptProfileCifsResource", &fortimanager.ObjectWanoptProfileCifsArgs{
    Profile: pulumi.String("string"),
    Adom: pulumi.String("string"),
    ByteCaching: pulumi.String("string"),
    LogTraffic: pulumi.String("string"),
    ObjectWanoptProfileCifsId: pulumi.String("string"),
    Ports: pulumi.Float64Array{
    pulumi.Float64(0),
    },
    PreferChunking: pulumi.String("string"),
    ProtocolOpt: pulumi.String("string"),
    Scopetype: pulumi.String("string"),
    SecureTunnel: pulumi.String("string"),
    Status: pulumi.String("string"),
    TunnelSharing: pulumi.String("string"),
    })
    
    var objectWanoptProfileCifsResource = new ObjectWanoptProfileCifs("objectWanoptProfileCifsResource", ObjectWanoptProfileCifsArgs.builder()
        .profile("string")
        .adom("string")
        .byteCaching("string")
        .logTraffic("string")
        .objectWanoptProfileCifsId("string")
        .ports(0)
        .preferChunking("string")
        .protocolOpt("string")
        .scopetype("string")
        .secureTunnel("string")
        .status("string")
        .tunnelSharing("string")
        .build());
    
    object_wanopt_profile_cifs_resource = fortimanager.ObjectWanoptProfileCifs("objectWanoptProfileCifsResource",
        profile="string",
        adom="string",
        byte_caching="string",
        log_traffic="string",
        object_wanopt_profile_cifs_id="string",
        ports=[0],
        prefer_chunking="string",
        protocol_opt="string",
        scopetype="string",
        secure_tunnel="string",
        status="string",
        tunnel_sharing="string")
    
    const objectWanoptProfileCifsResource = new fortimanager.ObjectWanoptProfileCifs("objectWanoptProfileCifsResource", {
        profile: "string",
        adom: "string",
        byteCaching: "string",
        logTraffic: "string",
        objectWanoptProfileCifsId: "string",
        ports: [0],
        preferChunking: "string",
        protocolOpt: "string",
        scopetype: "string",
        secureTunnel: "string",
        status: "string",
        tunnelSharing: "string",
    });
    
    type: fortimanager:ObjectWanoptProfileCifs
    properties:
        adom: string
        byteCaching: string
        logTraffic: string
        objectWanoptProfileCifsId: string
        ports:
            - 0
        preferChunking: string
        profile: string
        protocolOpt: string
        scopetype: string
        secureTunnel: string
        status: string
        tunnelSharing: string
    

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

    Profile 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.
    LogTraffic string
    Enable/disable logging. Valid values: disable, enable.
    ObjectWanoptProfileCifsId string
    an identifier for the resource.
    Ports List<double>
    Single port number or port number range for CIFS. Only packets with a destination port number that matches this port number or range are accepted by this profile.
    PreferChunking string
    Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values: dynamic, fix.
    ProtocolOpt 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. 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.
    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 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.
    LogTraffic string
    Enable/disable logging. Valid values: disable, enable.
    ObjectWanoptProfileCifsId string
    an identifier for the resource.
    Ports []float64
    Single port number or port number range for CIFS. Only packets with a destination port number that matches this port number or range are accepted by this profile.
    PreferChunking string
    Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values: dynamic, fix.
    ProtocolOpt 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. 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.
    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 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.
    logTraffic String
    Enable/disable logging. Valid values: disable, enable.
    objectWanoptProfileCifsId String
    an identifier for the resource.
    ports List<Double>
    Single port number or port number range for CIFS. Only packets with a destination port number that matches this port number or range are accepted by this profile.
    preferChunking String
    Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values: dynamic, fix.
    protocolOpt 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. 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.
    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 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.
    logTraffic string
    Enable/disable logging. Valid values: disable, enable.
    objectWanoptProfileCifsId string
    an identifier for the resource.
    ports number[]
    Single port number or port number range for CIFS. Only packets with a destination port number that matches this port number or range are accepted by this profile.
    preferChunking string
    Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values: dynamic, fix.
    protocolOpt 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. 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.
    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 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.
    log_traffic str
    Enable/disable logging. Valid values: disable, enable.
    object_wanopt_profile_cifs_id str
    an identifier for the resource.
    ports Sequence[float]
    Single port number or port number range for CIFS. 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. 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.
    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 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.
    logTraffic String
    Enable/disable logging. Valid values: disable, enable.
    objectWanoptProfileCifsId String
    an identifier for the resource.
    ports List<Number>
    Single port number or port number range for CIFS. Only packets with a destination port number that matches this port number or range are accepted by this profile.
    preferChunking String
    Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values: dynamic, fix.
    protocolOpt 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. 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.
    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 ObjectWanoptProfileCifs 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 ObjectWanoptProfileCifs Resource

    Get an existing ObjectWanoptProfileCifs 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?: ObjectWanoptProfileCifsState, opts?: CustomResourceOptions): ObjectWanoptProfileCifs
    @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_cifs_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,
            status: Optional[str] = None,
            tunnel_sharing: Optional[str] = None) -> ObjectWanoptProfileCifs
    func GetObjectWanoptProfileCifs(ctx *Context, name string, id IDInput, state *ObjectWanoptProfileCifsState, opts ...ResourceOption) (*ObjectWanoptProfileCifs, error)
    public static ObjectWanoptProfileCifs Get(string name, Input<string> id, ObjectWanoptProfileCifsState? state, CustomResourceOptions? opts = null)
    public static ObjectWanoptProfileCifs get(String name, Output<String> id, ObjectWanoptProfileCifsState state, CustomResourceOptions options)
    resources:  _:    type: fortimanager:ObjectWanoptProfileCifs    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.
    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.
    LogTraffic string
    Enable/disable logging. Valid values: disable, enable.
    ObjectWanoptProfileCifsId string
    an identifier for the resource.
    Ports List<double>
    Single port number or port number range for CIFS. Only packets with a destination port number that matches this port number or range are accepted by this profile.
    PreferChunking string
    Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values: dynamic, fix.
    Profile string
    Profile.
    ProtocolOpt 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. 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.
    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.
    LogTraffic string
    Enable/disable logging. Valid values: disable, enable.
    ObjectWanoptProfileCifsId string
    an identifier for the resource.
    Ports []float64
    Single port number or port number range for CIFS. Only packets with a destination port number that matches this port number or range are accepted by this profile.
    PreferChunking string
    Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values: dynamic, fix.
    Profile string
    Profile.
    ProtocolOpt 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. 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.
    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.
    logTraffic String
    Enable/disable logging. Valid values: disable, enable.
    objectWanoptProfileCifsId String
    an identifier for the resource.
    ports List<Double>
    Single port number or port number range for CIFS. Only packets with a destination port number that matches this port number or range are accepted by this profile.
    preferChunking String
    Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values: dynamic, fix.
    profile String
    Profile.
    protocolOpt 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. 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.
    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.
    logTraffic string
    Enable/disable logging. Valid values: disable, enable.
    objectWanoptProfileCifsId string
    an identifier for the resource.
    ports number[]
    Single port number or port number range for CIFS. Only packets with a destination port number that matches this port number or range are accepted by this profile.
    preferChunking string
    Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values: dynamic, fix.
    profile string
    Profile.
    protocolOpt 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. 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.
    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.
    log_traffic str
    Enable/disable logging. Valid values: disable, enable.
    object_wanopt_profile_cifs_id str
    an identifier for the resource.
    ports Sequence[float]
    Single port number or port number range for CIFS. 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. 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.
    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.
    logTraffic String
    Enable/disable logging. Valid values: disable, enable.
    objectWanoptProfileCifsId String
    an identifier for the resource.
    ports List<Number>
    Single port number or port number range for CIFS. Only packets with a destination port number that matches this port number or range are accepted by this profile.
    preferChunking String
    Select dynamic or fixed-size data chunking for HTTP WAN Optimization. Valid values: dynamic, fix.
    profile String
    Profile.
    protocolOpt 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. 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.
    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 ProfileCifs 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/objectWanoptProfileCifs:ObjectWanoptProfileCifs labelname ObjectWanoptProfileCifs
    

    $ 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