1. Packages
  2. Fortios
  3. API Docs
  4. system
  5. Fortisandbox
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

fortios.system.Fortisandbox

Explore with Pulumi AI

fortios logo
Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse

    Configure FortiSandbox.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as fortios from "@pulumiverse/fortios";
    
    const trname = new fortios.system.Fortisandbox("trname", {
        encAlgorithm: "default",
        sslMinProtoVersion: "default",
        status: "disable",
    });
    
    import pulumi
    import pulumiverse_fortios as fortios
    
    trname = fortios.system.Fortisandbox("trname",
        enc_algorithm="default",
        ssl_min_proto_version="default",
        status="disable")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/pulumiverse/pulumi-fortios/sdk/go/fortios/system"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := system.NewFortisandbox(ctx, "trname", &system.FortisandboxArgs{
    			EncAlgorithm:       pulumi.String("default"),
    			SslMinProtoVersion: pulumi.String("default"),
    			Status:             pulumi.String("disable"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Fortios = Pulumiverse.Fortios;
    
    return await Deployment.RunAsync(() => 
    {
        var trname = new Fortios.System.Fortisandbox("trname", new()
        {
            EncAlgorithm = "default",
            SslMinProtoVersion = "default",
            Status = "disable",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.fortios.system.Fortisandbox;
    import com.pulumi.fortios.system.FortisandboxArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var trname = new Fortisandbox("trname", FortisandboxArgs.builder()
                .encAlgorithm("default")
                .sslMinProtoVersion("default")
                .status("disable")
                .build());
    
        }
    }
    
    resources:
      trname:
        type: fortios:system:Fortisandbox
        properties:
          encAlgorithm: default
          sslMinProtoVersion: default
          status: disable
    

    Create Fortisandbox Resource

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

    Constructor syntax

    new Fortisandbox(name: string, args?: FortisandboxArgs, opts?: CustomResourceOptions);
    @overload
    def Fortisandbox(resource_name: str,
                     args: Optional[FortisandboxArgs] = None,
                     opts: Optional[ResourceOptions] = None)
    
    @overload
    def Fortisandbox(resource_name: str,
                     opts: Optional[ResourceOptions] = None,
                     email: Optional[str] = None,
                     enc_algorithm: Optional[str] = None,
                     forticloud: Optional[str] = None,
                     inline_scan: Optional[str] = None,
                     interface: Optional[str] = None,
                     interface_select_method: Optional[str] = None,
                     server: Optional[str] = None,
                     source_ip: Optional[str] = None,
                     ssl_min_proto_version: Optional[str] = None,
                     status: Optional[str] = None,
                     vdomparam: Optional[str] = None)
    func NewFortisandbox(ctx *Context, name string, args *FortisandboxArgs, opts ...ResourceOption) (*Fortisandbox, error)
    public Fortisandbox(string name, FortisandboxArgs? args = null, CustomResourceOptions? opts = null)
    public Fortisandbox(String name, FortisandboxArgs args)
    public Fortisandbox(String name, FortisandboxArgs args, CustomResourceOptions options)
    
    type: fortios:system:Fortisandbox
    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 FortisandboxArgs
    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 FortisandboxArgs
    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 FortisandboxArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args FortisandboxArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args FortisandboxArgs
    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 fortisandboxResource = new Fortios.System.Fortisandbox("fortisandboxResource", new()
    {
        Email = "string",
        EncAlgorithm = "string",
        Forticloud = "string",
        InlineScan = "string",
        Interface = "string",
        InterfaceSelectMethod = "string",
        Server = "string",
        SourceIp = "string",
        SslMinProtoVersion = "string",
        Status = "string",
        Vdomparam = "string",
    });
    
    example, err := system.NewFortisandbox(ctx, "fortisandboxResource", &system.FortisandboxArgs{
    	Email:                 pulumi.String("string"),
    	EncAlgorithm:          pulumi.String("string"),
    	Forticloud:            pulumi.String("string"),
    	InlineScan:            pulumi.String("string"),
    	Interface:             pulumi.String("string"),
    	InterfaceSelectMethod: pulumi.String("string"),
    	Server:                pulumi.String("string"),
    	SourceIp:              pulumi.String("string"),
    	SslMinProtoVersion:    pulumi.String("string"),
    	Status:                pulumi.String("string"),
    	Vdomparam:             pulumi.String("string"),
    })
    
    var fortisandboxResource = new Fortisandbox("fortisandboxResource", FortisandboxArgs.builder()
        .email("string")
        .encAlgorithm("string")
        .forticloud("string")
        .inlineScan("string")
        .interface_("string")
        .interfaceSelectMethod("string")
        .server("string")
        .sourceIp("string")
        .sslMinProtoVersion("string")
        .status("string")
        .vdomparam("string")
        .build());
    
    fortisandbox_resource = fortios.system.Fortisandbox("fortisandboxResource",
        email="string",
        enc_algorithm="string",
        forticloud="string",
        inline_scan="string",
        interface="string",
        interface_select_method="string",
        server="string",
        source_ip="string",
        ssl_min_proto_version="string",
        status="string",
        vdomparam="string")
    
    const fortisandboxResource = new fortios.system.Fortisandbox("fortisandboxResource", {
        email: "string",
        encAlgorithm: "string",
        forticloud: "string",
        inlineScan: "string",
        "interface": "string",
        interfaceSelectMethod: "string",
        server: "string",
        sourceIp: "string",
        sslMinProtoVersion: "string",
        status: "string",
        vdomparam: "string",
    });
    
    type: fortios:system:Fortisandbox
    properties:
        email: string
        encAlgorithm: string
        forticloud: string
        inlineScan: string
        interface: string
        interfaceSelectMethod: string
        server: string
        sourceIp: string
        sslMinProtoVersion: string
        status: string
        vdomparam: string
    

    Fortisandbox Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Fortisandbox resource accepts the following input properties:

    Email string
    Notifier email address.
    EncAlgorithm string
    Configure the level of SSL protection for secure communication with FortiSandbox. Valid values: default, high, low.
    Forticloud string
    Enable/disable FortiSandbox Cloud. Valid values: enable, disable.
    InlineScan string
    Enable/disable FortiSandbox inline scan. Valid values: enable, disable.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    Server string
    IPv4 or IPv6 address of the remote FortiSandbox.
    SourceIp string
    Source IP address for communications to FortiSandbox.
    SslMinProtoVersion string
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting).
    Status string
    Enable/disable FortiSandbox. Valid values: enable, disable.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Email string
    Notifier email address.
    EncAlgorithm string
    Configure the level of SSL protection for secure communication with FortiSandbox. Valid values: default, high, low.
    Forticloud string
    Enable/disable FortiSandbox Cloud. Valid values: enable, disable.
    InlineScan string
    Enable/disable FortiSandbox inline scan. Valid values: enable, disable.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    Server string
    IPv4 or IPv6 address of the remote FortiSandbox.
    SourceIp string
    Source IP address for communications to FortiSandbox.
    SslMinProtoVersion string
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting).
    Status string
    Enable/disable FortiSandbox. Valid values: enable, disable.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    email String
    Notifier email address.
    encAlgorithm String
    Configure the level of SSL protection for secure communication with FortiSandbox. Valid values: default, high, low.
    forticloud String
    Enable/disable FortiSandbox Cloud. Valid values: enable, disable.
    inlineScan String
    Enable/disable FortiSandbox inline scan. Valid values: enable, disable.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interface_ String
    Specify outgoing interface to reach server.
    server String
    IPv4 or IPv6 address of the remote FortiSandbox.
    sourceIp String
    Source IP address for communications to FortiSandbox.
    sslMinProtoVersion String
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting).
    status String
    Enable/disable FortiSandbox. Valid values: enable, disable.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    email string
    Notifier email address.
    encAlgorithm string
    Configure the level of SSL protection for secure communication with FortiSandbox. Valid values: default, high, low.
    forticloud string
    Enable/disable FortiSandbox Cloud. Valid values: enable, disable.
    inlineScan string
    Enable/disable FortiSandbox inline scan. Valid values: enable, disable.
    interface string
    Specify outgoing interface to reach server.
    interfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    server string
    IPv4 or IPv6 address of the remote FortiSandbox.
    sourceIp string
    Source IP address for communications to FortiSandbox.
    sslMinProtoVersion string
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting).
    status string
    Enable/disable FortiSandbox. Valid values: enable, disable.
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    email str
    Notifier email address.
    enc_algorithm str
    Configure the level of SSL protection for secure communication with FortiSandbox. Valid values: default, high, low.
    forticloud str
    Enable/disable FortiSandbox Cloud. Valid values: enable, disable.
    inline_scan str
    Enable/disable FortiSandbox inline scan. Valid values: enable, disable.
    interface str
    Specify outgoing interface to reach server.
    interface_select_method str
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    server str
    IPv4 or IPv6 address of the remote FortiSandbox.
    source_ip str
    Source IP address for communications to FortiSandbox.
    ssl_min_proto_version str
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting).
    status str
    Enable/disable FortiSandbox. Valid values: enable, disable.
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    email String
    Notifier email address.
    encAlgorithm String
    Configure the level of SSL protection for secure communication with FortiSandbox. Valid values: default, high, low.
    forticloud String
    Enable/disable FortiSandbox Cloud. Valid values: enable, disable.
    inlineScan String
    Enable/disable FortiSandbox inline scan. Valid values: enable, disable.
    interface String
    Specify outgoing interface to reach server.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    server String
    IPv4 or IPv6 address of the remote FortiSandbox.
    sourceIp String
    Source IP address for communications to FortiSandbox.
    sslMinProtoVersion String
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting).
    status String
    Enable/disable FortiSandbox. Valid values: enable, disable.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

    Outputs

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

    Get an existing Fortisandbox 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?: FortisandboxState, opts?: CustomResourceOptions): Fortisandbox
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            email: Optional[str] = None,
            enc_algorithm: Optional[str] = None,
            forticloud: Optional[str] = None,
            inline_scan: Optional[str] = None,
            interface: Optional[str] = None,
            interface_select_method: Optional[str] = None,
            server: Optional[str] = None,
            source_ip: Optional[str] = None,
            ssl_min_proto_version: Optional[str] = None,
            status: Optional[str] = None,
            vdomparam: Optional[str] = None) -> Fortisandbox
    func GetFortisandbox(ctx *Context, name string, id IDInput, state *FortisandboxState, opts ...ResourceOption) (*Fortisandbox, error)
    public static Fortisandbox Get(string name, Input<string> id, FortisandboxState? state, CustomResourceOptions? opts = null)
    public static Fortisandbox get(String name, Output<String> id, FortisandboxState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    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:
    Email string
    Notifier email address.
    EncAlgorithm string
    Configure the level of SSL protection for secure communication with FortiSandbox. Valid values: default, high, low.
    Forticloud string
    Enable/disable FortiSandbox Cloud. Valid values: enable, disable.
    InlineScan string
    Enable/disable FortiSandbox inline scan. Valid values: enable, disable.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    Server string
    IPv4 or IPv6 address of the remote FortiSandbox.
    SourceIp string
    Source IP address for communications to FortiSandbox.
    SslMinProtoVersion string
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting).
    Status string
    Enable/disable FortiSandbox. Valid values: enable, disable.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    Email string
    Notifier email address.
    EncAlgorithm string
    Configure the level of SSL protection for secure communication with FortiSandbox. Valid values: default, high, low.
    Forticloud string
    Enable/disable FortiSandbox Cloud. Valid values: enable, disable.
    InlineScan string
    Enable/disable FortiSandbox inline scan. Valid values: enable, disable.
    Interface string
    Specify outgoing interface to reach server.
    InterfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    Server string
    IPv4 or IPv6 address of the remote FortiSandbox.
    SourceIp string
    Source IP address for communications to FortiSandbox.
    SslMinProtoVersion string
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting).
    Status string
    Enable/disable FortiSandbox. Valid values: enable, disable.
    Vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    email String
    Notifier email address.
    encAlgorithm String
    Configure the level of SSL protection for secure communication with FortiSandbox. Valid values: default, high, low.
    forticloud String
    Enable/disable FortiSandbox Cloud. Valid values: enable, disable.
    inlineScan String
    Enable/disable FortiSandbox inline scan. Valid values: enable, disable.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    interface_ String
    Specify outgoing interface to reach server.
    server String
    IPv4 or IPv6 address of the remote FortiSandbox.
    sourceIp String
    Source IP address for communications to FortiSandbox.
    sslMinProtoVersion String
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting).
    status String
    Enable/disable FortiSandbox. Valid values: enable, disable.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    email string
    Notifier email address.
    encAlgorithm string
    Configure the level of SSL protection for secure communication with FortiSandbox. Valid values: default, high, low.
    forticloud string
    Enable/disable FortiSandbox Cloud. Valid values: enable, disable.
    inlineScan string
    Enable/disable FortiSandbox inline scan. Valid values: enable, disable.
    interface string
    Specify outgoing interface to reach server.
    interfaceSelectMethod string
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    server string
    IPv4 or IPv6 address of the remote FortiSandbox.
    sourceIp string
    Source IP address for communications to FortiSandbox.
    sslMinProtoVersion string
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting).
    status string
    Enable/disable FortiSandbox. Valid values: enable, disable.
    vdomparam string
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    email str
    Notifier email address.
    enc_algorithm str
    Configure the level of SSL protection for secure communication with FortiSandbox. Valid values: default, high, low.
    forticloud str
    Enable/disable FortiSandbox Cloud. Valid values: enable, disable.
    inline_scan str
    Enable/disable FortiSandbox inline scan. Valid values: enable, disable.
    interface str
    Specify outgoing interface to reach server.
    interface_select_method str
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    server str
    IPv4 or IPv6 address of the remote FortiSandbox.
    source_ip str
    Source IP address for communications to FortiSandbox.
    ssl_min_proto_version str
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting).
    status str
    Enable/disable FortiSandbox. Valid values: enable, disable.
    vdomparam str
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.
    email String
    Notifier email address.
    encAlgorithm String
    Configure the level of SSL protection for secure communication with FortiSandbox. Valid values: default, high, low.
    forticloud String
    Enable/disable FortiSandbox Cloud. Valid values: enable, disable.
    inlineScan String
    Enable/disable FortiSandbox inline scan. Valid values: enable, disable.
    interface String
    Specify outgoing interface to reach server.
    interfaceSelectMethod String
    Specify how to select outgoing interface to reach server. Valid values: auto, sdwan, specify.
    server String
    IPv4 or IPv6 address of the remote FortiSandbox.
    sourceIp String
    Source IP address for communications to FortiSandbox.
    sslMinProtoVersion String
    Minimum supported protocol version for SSL/TLS connections (default is to follow system global setting).
    status String
    Enable/disable FortiSandbox. Valid values: enable, disable.
    vdomparam String
    Specifies the vdom to which the resource will be applied when the FortiGate unit is running in VDOM mode. Only one vdom can be specified. If you want to inherit the vdom configuration of the provider, please do not set this parameter.

    Import

    System Fortisandbox can be imported using any of these accepted formats:

    $ pulumi import fortios:system/fortisandbox:Fortisandbox labelname SystemFortisandbox
    

    If you do not want to import arguments of block:

    $ export “FORTIOS_IMPORT_TABLE”=“false”

    $ pulumi import fortios:system/fortisandbox:Fortisandbox labelname SystemFortisandbox
    

    $ unset “FORTIOS_IMPORT_TABLE”

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    fortios pulumiverse/pulumi-fortios
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the fortios Terraform Provider.
    fortios logo
    Fortios v0.0.6 published on Tuesday, Jul 9, 2024 by pulumiverse