fortimanager.ObjectFirewallProfileprotocoloptionsSsh
Explore with Pulumi AI
Configure SFTP and SCP protocol options.
This resource is a sub resource for variable
ssh
of resourcefortimanager.ObjectFirewallProfileprotocoloptions
. 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 trnameObjectFirewallProfileprotocoloptions = new fortimanager.ObjectFirewallProfileprotocoloptions("trnameObjectFirewallProfileprotocoloptions", {});
const trnameObjectFirewallProfileprotocoloptionsSsh = new fortimanager.ObjectFirewallProfileprotocoloptionsSsh("trnameObjectFirewallProfileprotocoloptionsSsh", {
profileProtocolOptions: trnameObjectFirewallProfileprotocoloptions.name,
comfortAmount: 200,
comfortInterval: 20,
oversizeLimit: 200,
}, {
dependsOn: [trnameObjectFirewallProfileprotocoloptions],
});
import pulumi
import pulumi_fortimanager as fortimanager
trname_object_firewall_profileprotocoloptions = fortimanager.ObjectFirewallProfileprotocoloptions("trnameObjectFirewallProfileprotocoloptions")
trname_object_firewall_profileprotocoloptions_ssh = fortimanager.ObjectFirewallProfileprotocoloptionsSsh("trnameObjectFirewallProfileprotocoloptionsSsh",
profile_protocol_options=trname_object_firewall_profileprotocoloptions.name,
comfort_amount=200,
comfort_interval=20,
oversize_limit=200,
opts = pulumi.ResourceOptions(depends_on=[trname_object_firewall_profileprotocoloptions]))
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 {
trnameObjectFirewallProfileprotocoloptions, err := fortimanager.NewObjectFirewallProfileprotocoloptions(ctx, "trnameObjectFirewallProfileprotocoloptions", nil)
if err != nil {
return err
}
_, err = fortimanager.NewObjectFirewallProfileprotocoloptionsSsh(ctx, "trnameObjectFirewallProfileprotocoloptionsSsh", &fortimanager.ObjectFirewallProfileprotocoloptionsSshArgs{
ProfileProtocolOptions: trnameObjectFirewallProfileprotocoloptions.Name,
ComfortAmount: pulumi.Float64(200),
ComfortInterval: pulumi.Float64(20),
OversizeLimit: pulumi.Float64(200),
}, pulumi.DependsOn([]pulumi.Resource{
trnameObjectFirewallProfileprotocoloptions,
}))
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 trnameObjectFirewallProfileprotocoloptions = new Fortimanager.ObjectFirewallProfileprotocoloptions("trnameObjectFirewallProfileprotocoloptions");
var trnameObjectFirewallProfileprotocoloptionsSsh = new Fortimanager.ObjectFirewallProfileprotocoloptionsSsh("trnameObjectFirewallProfileprotocoloptionsSsh", new()
{
ProfileProtocolOptions = trnameObjectFirewallProfileprotocoloptions.Name,
ComfortAmount = 200,
ComfortInterval = 20,
OversizeLimit = 200,
}, new CustomResourceOptions
{
DependsOn =
{
trnameObjectFirewallProfileprotocoloptions,
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallProfileprotocoloptions;
import com.pulumi.fortimanager.ObjectFirewallProfileprotocoloptionsSsh;
import com.pulumi.fortimanager.ObjectFirewallProfileprotocoloptionsSshArgs;
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 trnameObjectFirewallProfileprotocoloptions = new ObjectFirewallProfileprotocoloptions("trnameObjectFirewallProfileprotocoloptions");
var trnameObjectFirewallProfileprotocoloptionsSsh = new ObjectFirewallProfileprotocoloptionsSsh("trnameObjectFirewallProfileprotocoloptionsSsh", ObjectFirewallProfileprotocoloptionsSshArgs.builder()
.profileProtocolOptions(trnameObjectFirewallProfileprotocoloptions.name())
.comfortAmount(200)
.comfortInterval(20)
.oversizeLimit(200)
.build(), CustomResourceOptions.builder()
.dependsOn(trnameObjectFirewallProfileprotocoloptions)
.build());
}
}
resources:
trnameObjectFirewallProfileprotocoloptionsSsh:
type: fortimanager:ObjectFirewallProfileprotocoloptionsSsh
properties:
profileProtocolOptions: ${trnameObjectFirewallProfileprotocoloptions.name}
comfortAmount: 200
comfortInterval: 20
oversizeLimit: 200
options:
dependsOn:
- ${trnameObjectFirewallProfileprotocoloptions}
trnameObjectFirewallProfileprotocoloptions:
type: fortimanager:ObjectFirewallProfileprotocoloptions
Create ObjectFirewallProfileprotocoloptionsSsh Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new ObjectFirewallProfileprotocoloptionsSsh(name: string, args: ObjectFirewallProfileprotocoloptionsSshArgs, opts?: CustomResourceOptions);
@overload
def ObjectFirewallProfileprotocoloptionsSsh(resource_name: str,
args: ObjectFirewallProfileprotocoloptionsSshInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def ObjectFirewallProfileprotocoloptionsSsh(resource_name: str,
opts: Optional[ResourceOptions] = None,
profile_protocol_options: Optional[str] = None,
scopetype: Optional[str] = None,
scan_bzip2: Optional[str] = None,
object_firewall_profileprotocoloptions_ssh_id: Optional[str] = None,
options: Optional[Sequence[str]] = None,
ssl_offloaded: Optional[str] = None,
comfort_amount: Optional[float] = None,
comfort_interval: Optional[float] = None,
adom: Optional[str] = None,
oversize_limit: Optional[float] = None,
stream_based_uncompressed_limit: Optional[float] = None,
tcp_window_maximum: Optional[float] = None,
tcp_window_minimum: Optional[float] = None,
tcp_window_size: Optional[float] = None,
tcp_window_type: Optional[str] = None,
uncompressed_nest_limit: Optional[float] = None,
uncompressed_oversize_limit: Optional[float] = None)
func NewObjectFirewallProfileprotocoloptionsSsh(ctx *Context, name string, args ObjectFirewallProfileprotocoloptionsSshArgs, opts ...ResourceOption) (*ObjectFirewallProfileprotocoloptionsSsh, error)
public ObjectFirewallProfileprotocoloptionsSsh(string name, ObjectFirewallProfileprotocoloptionsSshArgs args, CustomResourceOptions? opts = null)
public ObjectFirewallProfileprotocoloptionsSsh(String name, ObjectFirewallProfileprotocoloptionsSshArgs args)
public ObjectFirewallProfileprotocoloptionsSsh(String name, ObjectFirewallProfileprotocoloptionsSshArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallProfileprotocoloptionsSsh
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 ObjectFirewallProfileprotocoloptionsSshArgs
- 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 ObjectFirewallProfileprotocoloptionsSshInitArgs
- 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 ObjectFirewallProfileprotocoloptionsSshArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallProfileprotocoloptionsSshArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ObjectFirewallProfileprotocoloptionsSshArgs
- 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 objectFirewallProfileprotocoloptionsSshResource = new Fortimanager.ObjectFirewallProfileprotocoloptionsSsh("objectFirewallProfileprotocoloptionsSshResource", new()
{
ProfileProtocolOptions = "string",
Scopetype = "string",
ScanBzip2 = "string",
ObjectFirewallProfileprotocoloptionsSshId = "string",
Options = new[]
{
"string",
},
SslOffloaded = "string",
ComfortAmount = 0,
ComfortInterval = 0,
Adom = "string",
OversizeLimit = 0,
StreamBasedUncompressedLimit = 0,
TcpWindowMaximum = 0,
TcpWindowMinimum = 0,
TcpWindowSize = 0,
TcpWindowType = "string",
UncompressedNestLimit = 0,
UncompressedOversizeLimit = 0,
});
example, err := fortimanager.NewObjectFirewallProfileprotocoloptionsSsh(ctx, "objectFirewallProfileprotocoloptionsSshResource", &fortimanager.ObjectFirewallProfileprotocoloptionsSshArgs{
ProfileProtocolOptions: pulumi.String("string"),
Scopetype: pulumi.String("string"),
ScanBzip2: pulumi.String("string"),
ObjectFirewallProfileprotocoloptionsSshId: pulumi.String("string"),
Options: pulumi.StringArray{
pulumi.String("string"),
},
SslOffloaded: pulumi.String("string"),
ComfortAmount: pulumi.Float64(0),
ComfortInterval: pulumi.Float64(0),
Adom: pulumi.String("string"),
OversizeLimit: pulumi.Float64(0),
StreamBasedUncompressedLimit: pulumi.Float64(0),
TcpWindowMaximum: pulumi.Float64(0),
TcpWindowMinimum: pulumi.Float64(0),
TcpWindowSize: pulumi.Float64(0),
TcpWindowType: pulumi.String("string"),
UncompressedNestLimit: pulumi.Float64(0),
UncompressedOversizeLimit: pulumi.Float64(0),
})
var objectFirewallProfileprotocoloptionsSshResource = new ObjectFirewallProfileprotocoloptionsSsh("objectFirewallProfileprotocoloptionsSshResource", ObjectFirewallProfileprotocoloptionsSshArgs.builder()
.profileProtocolOptions("string")
.scopetype("string")
.scanBzip2("string")
.objectFirewallProfileprotocoloptionsSshId("string")
.options("string")
.sslOffloaded("string")
.comfortAmount(0)
.comfortInterval(0)
.adom("string")
.oversizeLimit(0)
.streamBasedUncompressedLimit(0)
.tcpWindowMaximum(0)
.tcpWindowMinimum(0)
.tcpWindowSize(0)
.tcpWindowType("string")
.uncompressedNestLimit(0)
.uncompressedOversizeLimit(0)
.build());
object_firewall_profileprotocoloptions_ssh_resource = fortimanager.ObjectFirewallProfileprotocoloptionsSsh("objectFirewallProfileprotocoloptionsSshResource",
profile_protocol_options="string",
scopetype="string",
scan_bzip2="string",
object_firewall_profileprotocoloptions_ssh_id="string",
options=["string"],
ssl_offloaded="string",
comfort_amount=0,
comfort_interval=0,
adom="string",
oversize_limit=0,
stream_based_uncompressed_limit=0,
tcp_window_maximum=0,
tcp_window_minimum=0,
tcp_window_size=0,
tcp_window_type="string",
uncompressed_nest_limit=0,
uncompressed_oversize_limit=0)
const objectFirewallProfileprotocoloptionsSshResource = new fortimanager.ObjectFirewallProfileprotocoloptionsSsh("objectFirewallProfileprotocoloptionsSshResource", {
profileProtocolOptions: "string",
scopetype: "string",
scanBzip2: "string",
objectFirewallProfileprotocoloptionsSshId: "string",
options: ["string"],
sslOffloaded: "string",
comfortAmount: 0,
comfortInterval: 0,
adom: "string",
oversizeLimit: 0,
streamBasedUncompressedLimit: 0,
tcpWindowMaximum: 0,
tcpWindowMinimum: 0,
tcpWindowSize: 0,
tcpWindowType: "string",
uncompressedNestLimit: 0,
uncompressedOversizeLimit: 0,
});
type: fortimanager:ObjectFirewallProfileprotocoloptionsSsh
properties:
adom: string
comfortAmount: 0
comfortInterval: 0
objectFirewallProfileprotocoloptionsSshId: string
options:
- string
oversizeLimit: 0
profileProtocolOptions: string
scanBzip2: string
scopetype: string
sslOffloaded: string
streamBasedUncompressedLimit: 0
tcpWindowMaximum: 0
tcpWindowMinimum: 0
tcpWindowSize: 0
tcpWindowType: string
uncompressedNestLimit: 0
uncompressedOversizeLimit: 0
ObjectFirewallProfileprotocoloptionsSsh 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 ObjectFirewallProfileprotocoloptionsSsh resource accepts the following input properties:
- Profile
Protocol stringOptions - Profile Protocol Options.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comfort
Amount double - Amount of data to send in a transmission for client comforting (1 - 65535 bytes, default = 1).
- Comfort
Interval double - Period of time between start, or last transmission, and the next client comfort transmission of data (1 - 900 sec, default = 10).
- Object
Firewall stringProfileprotocoloptions Ssh Id - an identifier for the resource.
- Options List<string>
- One or more options that can be applied to the session. Valid values:
oversize
,clientcomfort
,servercomfort
. - Oversize
Limit double - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- Scan
Bzip2 string - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - 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
. - Ssl
Offloaded string - SSL decryption and encryption performed by an external device. Valid values:
no
,yes
. - Stream
Based doubleUncompressed Limit - Maximum stream-based uncompressed data size that will be scanned (MB, 0 = unlimited (default). Stream-based uncompression used only under certain conditions.).
- Tcp
Window doubleMaximum - Maximum dynamic TCP window size.
- Tcp
Window doubleMinimum - Minimum dynamic TCP window size.
- Tcp
Window doubleSize - Set TCP static window size.
- Tcp
Window stringType - TCP window type to use for this protocol. Valid values:
system
,static
,dynamic
. - Uncompressed
Nest doubleLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- Uncompressed
Oversize doubleLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- Profile
Protocol stringOptions - Profile Protocol Options.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comfort
Amount float64 - Amount of data to send in a transmission for client comforting (1 - 65535 bytes, default = 1).
- Comfort
Interval float64 - Period of time between start, or last transmission, and the next client comfort transmission of data (1 - 900 sec, default = 10).
- Object
Firewall stringProfileprotocoloptions Ssh Id - an identifier for the resource.
- Options []string
- One or more options that can be applied to the session. Valid values:
oversize
,clientcomfort
,servercomfort
. - Oversize
Limit float64 - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- Scan
Bzip2 string - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - 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
. - Ssl
Offloaded string - SSL decryption and encryption performed by an external device. Valid values:
no
,yes
. - Stream
Based float64Uncompressed Limit - Maximum stream-based uncompressed data size that will be scanned (MB, 0 = unlimited (default). Stream-based uncompression used only under certain conditions.).
- Tcp
Window float64Maximum - Maximum dynamic TCP window size.
- Tcp
Window float64Minimum - Minimum dynamic TCP window size.
- Tcp
Window float64Size - Set TCP static window size.
- Tcp
Window stringType - TCP window type to use for this protocol. Valid values:
system
,static
,dynamic
. - Uncompressed
Nest float64Limit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- Uncompressed
Oversize float64Limit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- profile
Protocol StringOptions - Profile Protocol Options.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comfort
Amount Double - Amount of data to send in a transmission for client comforting (1 - 65535 bytes, default = 1).
- comfort
Interval Double - Period of time between start, or last transmission, and the next client comfort transmission of data (1 - 900 sec, default = 10).
- object
Firewall StringProfileprotocoloptions Ssh Id - an identifier for the resource.
- options List<String>
- One or more options that can be applied to the session. Valid values:
oversize
,clientcomfort
,servercomfort
. - oversize
Limit Double - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- scan
Bzip2 String - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - 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
. - ssl
Offloaded String - SSL decryption and encryption performed by an external device. Valid values:
no
,yes
. - stream
Based DoubleUncompressed Limit - Maximum stream-based uncompressed data size that will be scanned (MB, 0 = unlimited (default). Stream-based uncompression used only under certain conditions.).
- tcp
Window DoubleMaximum - Maximum dynamic TCP window size.
- tcp
Window DoubleMinimum - Minimum dynamic TCP window size.
- tcp
Window DoubleSize - Set TCP static window size.
- tcp
Window StringType - TCP window type to use for this protocol. Valid values:
system
,static
,dynamic
. - uncompressed
Nest DoubleLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed
Oversize DoubleLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- profile
Protocol stringOptions - Profile Protocol Options.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comfort
Amount number - Amount of data to send in a transmission for client comforting (1 - 65535 bytes, default = 1).
- comfort
Interval number - Period of time between start, or last transmission, and the next client comfort transmission of data (1 - 900 sec, default = 10).
- object
Firewall stringProfileprotocoloptions Ssh Id - an identifier for the resource.
- options string[]
- One or more options that can be applied to the session. Valid values:
oversize
,clientcomfort
,servercomfort
. - oversize
Limit number - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- scan
Bzip2 string - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - 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
. - ssl
Offloaded string - SSL decryption and encryption performed by an external device. Valid values:
no
,yes
. - stream
Based numberUncompressed Limit - Maximum stream-based uncompressed data size that will be scanned (MB, 0 = unlimited (default). Stream-based uncompression used only under certain conditions.).
- tcp
Window numberMaximum - Maximum dynamic TCP window size.
- tcp
Window numberMinimum - Minimum dynamic TCP window size.
- tcp
Window numberSize - Set TCP static window size.
- tcp
Window stringType - TCP window type to use for this protocol. Valid values:
system
,static
,dynamic
. - uncompressed
Nest numberLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed
Oversize numberLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- profile_
protocol_ stroptions - Profile Protocol Options.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comfort_
amount float - Amount of data to send in a transmission for client comforting (1 - 65535 bytes, default = 1).
- comfort_
interval float - Period of time between start, or last transmission, and the next client comfort transmission of data (1 - 900 sec, default = 10).
- object_
firewall_ strprofileprotocoloptions_ ssh_ id - an identifier for the resource.
- options Sequence[str]
- One or more options that can be applied to the session. Valid values:
oversize
,clientcomfort
,servercomfort
. - oversize_
limit float - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- scan_
bzip2 str - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - 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
. - ssl_
offloaded str - SSL decryption and encryption performed by an external device. Valid values:
no
,yes
. - stream_
based_ floatuncompressed_ limit - Maximum stream-based uncompressed data size that will be scanned (MB, 0 = unlimited (default). Stream-based uncompression used only under certain conditions.).
- tcp_
window_ floatmaximum - Maximum dynamic TCP window size.
- tcp_
window_ floatminimum - Minimum dynamic TCP window size.
- tcp_
window_ floatsize - Set TCP static window size.
- tcp_
window_ strtype - TCP window type to use for this protocol. Valid values:
system
,static
,dynamic
. - uncompressed_
nest_ floatlimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed_
oversize_ floatlimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- profile
Protocol StringOptions - Profile Protocol Options.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comfort
Amount Number - Amount of data to send in a transmission for client comforting (1 - 65535 bytes, default = 1).
- comfort
Interval Number - Period of time between start, or last transmission, and the next client comfort transmission of data (1 - 900 sec, default = 10).
- object
Firewall StringProfileprotocoloptions Ssh Id - an identifier for the resource.
- options List<String>
- One or more options that can be applied to the session. Valid values:
oversize
,clientcomfort
,servercomfort
. - oversize
Limit Number - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- scan
Bzip2 String - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - 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
. - ssl
Offloaded String - SSL decryption and encryption performed by an external device. Valid values:
no
,yes
. - stream
Based NumberUncompressed Limit - Maximum stream-based uncompressed data size that will be scanned (MB, 0 = unlimited (default). Stream-based uncompression used only under certain conditions.).
- tcp
Window NumberMaximum - Maximum dynamic TCP window size.
- tcp
Window NumberMinimum - Minimum dynamic TCP window size.
- tcp
Window NumberSize - Set TCP static window size.
- tcp
Window StringType - TCP window type to use for this protocol. Valid values:
system
,static
,dynamic
. - uncompressed
Nest NumberLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed
Oversize NumberLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
Outputs
All input properties are implicitly available as output properties. Additionally, the ObjectFirewallProfileprotocoloptionsSsh 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 ObjectFirewallProfileprotocoloptionsSsh Resource
Get an existing ObjectFirewallProfileprotocoloptionsSsh 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?: ObjectFirewallProfileprotocoloptionsSshState, opts?: CustomResourceOptions): ObjectFirewallProfileprotocoloptionsSsh
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
adom: Optional[str] = None,
comfort_amount: Optional[float] = None,
comfort_interval: Optional[float] = None,
object_firewall_profileprotocoloptions_ssh_id: Optional[str] = None,
options: Optional[Sequence[str]] = None,
oversize_limit: Optional[float] = None,
profile_protocol_options: Optional[str] = None,
scan_bzip2: Optional[str] = None,
scopetype: Optional[str] = None,
ssl_offloaded: Optional[str] = None,
stream_based_uncompressed_limit: Optional[float] = None,
tcp_window_maximum: Optional[float] = None,
tcp_window_minimum: Optional[float] = None,
tcp_window_size: Optional[float] = None,
tcp_window_type: Optional[str] = None,
uncompressed_nest_limit: Optional[float] = None,
uncompressed_oversize_limit: Optional[float] = None) -> ObjectFirewallProfileprotocoloptionsSsh
func GetObjectFirewallProfileprotocoloptionsSsh(ctx *Context, name string, id IDInput, state *ObjectFirewallProfileprotocoloptionsSshState, opts ...ResourceOption) (*ObjectFirewallProfileprotocoloptionsSsh, error)
public static ObjectFirewallProfileprotocoloptionsSsh Get(string name, Input<string> id, ObjectFirewallProfileprotocoloptionsSshState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallProfileprotocoloptionsSsh get(String name, Output<String> id, ObjectFirewallProfileprotocoloptionsSshState state, CustomResourceOptions options)
resources: _: type: fortimanager:ObjectFirewallProfileprotocoloptionsSsh 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. - Comfort
Amount double - Amount of data to send in a transmission for client comforting (1 - 65535 bytes, default = 1).
- Comfort
Interval double - Period of time between start, or last transmission, and the next client comfort transmission of data (1 - 900 sec, default = 10).
- Object
Firewall stringProfileprotocoloptions Ssh Id - an identifier for the resource.
- Options List<string>
- One or more options that can be applied to the session. Valid values:
oversize
,clientcomfort
,servercomfort
. - Oversize
Limit double - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- Profile
Protocol stringOptions - Profile Protocol Options.
- Scan
Bzip2 string - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - 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
. - Ssl
Offloaded string - SSL decryption and encryption performed by an external device. Valid values:
no
,yes
. - Stream
Based doubleUncompressed Limit - Maximum stream-based uncompressed data size that will be scanned (MB, 0 = unlimited (default). Stream-based uncompression used only under certain conditions.).
- Tcp
Window doubleMaximum - Maximum dynamic TCP window size.
- Tcp
Window doubleMinimum - Minimum dynamic TCP window size.
- Tcp
Window doubleSize - Set TCP static window size.
- Tcp
Window stringType - TCP window type to use for this protocol. Valid values:
system
,static
,dynamic
. - Uncompressed
Nest doubleLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- Uncompressed
Oversize doubleLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Comfort
Amount float64 - Amount of data to send in a transmission for client comforting (1 - 65535 bytes, default = 1).
- Comfort
Interval float64 - Period of time between start, or last transmission, and the next client comfort transmission of data (1 - 900 sec, default = 10).
- Object
Firewall stringProfileprotocoloptions Ssh Id - an identifier for the resource.
- Options []string
- One or more options that can be applied to the session. Valid values:
oversize
,clientcomfort
,servercomfort
. - Oversize
Limit float64 - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- Profile
Protocol stringOptions - Profile Protocol Options.
- Scan
Bzip2 string - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - 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
. - Ssl
Offloaded string - SSL decryption and encryption performed by an external device. Valid values:
no
,yes
. - Stream
Based float64Uncompressed Limit - Maximum stream-based uncompressed data size that will be scanned (MB, 0 = unlimited (default). Stream-based uncompression used only under certain conditions.).
- Tcp
Window float64Maximum - Maximum dynamic TCP window size.
- Tcp
Window float64Minimum - Minimum dynamic TCP window size.
- Tcp
Window float64Size - Set TCP static window size.
- Tcp
Window stringType - TCP window type to use for this protocol. Valid values:
system
,static
,dynamic
. - Uncompressed
Nest float64Limit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- Uncompressed
Oversize float64Limit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comfort
Amount Double - Amount of data to send in a transmission for client comforting (1 - 65535 bytes, default = 1).
- comfort
Interval Double - Period of time between start, or last transmission, and the next client comfort transmission of data (1 - 900 sec, default = 10).
- object
Firewall StringProfileprotocoloptions Ssh Id - an identifier for the resource.
- options List<String>
- One or more options that can be applied to the session. Valid values:
oversize
,clientcomfort
,servercomfort
. - oversize
Limit Double - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- profile
Protocol StringOptions - Profile Protocol Options.
- scan
Bzip2 String - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - 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
. - ssl
Offloaded String - SSL decryption and encryption performed by an external device. Valid values:
no
,yes
. - stream
Based DoubleUncompressed Limit - Maximum stream-based uncompressed data size that will be scanned (MB, 0 = unlimited (default). Stream-based uncompression used only under certain conditions.).
- tcp
Window DoubleMaximum - Maximum dynamic TCP window size.
- tcp
Window DoubleMinimum - Minimum dynamic TCP window size.
- tcp
Window DoubleSize - Set TCP static window size.
- tcp
Window StringType - TCP window type to use for this protocol. Valid values:
system
,static
,dynamic
. - uncompressed
Nest DoubleLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed
Oversize DoubleLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comfort
Amount number - Amount of data to send in a transmission for client comforting (1 - 65535 bytes, default = 1).
- comfort
Interval number - Period of time between start, or last transmission, and the next client comfort transmission of data (1 - 900 sec, default = 10).
- object
Firewall stringProfileprotocoloptions Ssh Id - an identifier for the resource.
- options string[]
- One or more options that can be applied to the session. Valid values:
oversize
,clientcomfort
,servercomfort
. - oversize
Limit number - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- profile
Protocol stringOptions - Profile Protocol Options.
- scan
Bzip2 string - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - 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
. - ssl
Offloaded string - SSL decryption and encryption performed by an external device. Valid values:
no
,yes
. - stream
Based numberUncompressed Limit - Maximum stream-based uncompressed data size that will be scanned (MB, 0 = unlimited (default). Stream-based uncompression used only under certain conditions.).
- tcp
Window numberMaximum - Maximum dynamic TCP window size.
- tcp
Window numberMinimum - Minimum dynamic TCP window size.
- tcp
Window numberSize - Set TCP static window size.
- tcp
Window stringType - TCP window type to use for this protocol. Valid values:
system
,static
,dynamic
. - uncompressed
Nest numberLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed
Oversize numberLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comfort_
amount float - Amount of data to send in a transmission for client comforting (1 - 65535 bytes, default = 1).
- comfort_
interval float - Period of time between start, or last transmission, and the next client comfort transmission of data (1 - 900 sec, default = 10).
- object_
firewall_ strprofileprotocoloptions_ ssh_ id - an identifier for the resource.
- options Sequence[str]
- One or more options that can be applied to the session. Valid values:
oversize
,clientcomfort
,servercomfort
. - oversize_
limit float - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- profile_
protocol_ stroptions - Profile Protocol Options.
- scan_
bzip2 str - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - 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
. - ssl_
offloaded str - SSL decryption and encryption performed by an external device. Valid values:
no
,yes
. - stream_
based_ floatuncompressed_ limit - Maximum stream-based uncompressed data size that will be scanned (MB, 0 = unlimited (default). Stream-based uncompression used only under certain conditions.).
- tcp_
window_ floatmaximum - Maximum dynamic TCP window size.
- tcp_
window_ floatminimum - Minimum dynamic TCP window size.
- tcp_
window_ floatsize - Set TCP static window size.
- tcp_
window_ strtype - TCP window type to use for this protocol. Valid values:
system
,static
,dynamic
. - uncompressed_
nest_ floatlimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed_
oversize_ floatlimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - comfort
Amount Number - Amount of data to send in a transmission for client comforting (1 - 65535 bytes, default = 1).
- comfort
Interval Number - Period of time between start, or last transmission, and the next client comfort transmission of data (1 - 900 sec, default = 10).
- object
Firewall StringProfileprotocoloptions Ssh Id - an identifier for the resource.
- options List<String>
- One or more options that can be applied to the session. Valid values:
oversize
,clientcomfort
,servercomfort
. - oversize
Limit Number - Maximum in-memory file size that can be scanned (1 - 383 MB, default = 10).
- profile
Protocol StringOptions - Profile Protocol Options.
- scan
Bzip2 String - Enable/disable scanning of BZip2 compressed files. Valid values:
disable
,enable
. - 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
. - ssl
Offloaded String - SSL decryption and encryption performed by an external device. Valid values:
no
,yes
. - stream
Based NumberUncompressed Limit - Maximum stream-based uncompressed data size that will be scanned (MB, 0 = unlimited (default). Stream-based uncompression used only under certain conditions.).
- tcp
Window NumberMaximum - Maximum dynamic TCP window size.
- tcp
Window NumberMinimum - Minimum dynamic TCP window size.
- tcp
Window NumberSize - Set TCP static window size.
- tcp
Window StringType - TCP window type to use for this protocol. Valid values:
system
,static
,dynamic
. - uncompressed
Nest NumberLimit - Maximum nested levels of compression that can be uncompressed and scanned (2 - 100, default = 12).
- uncompressed
Oversize NumberLimit - Maximum in-memory uncompressed file size that can be scanned (0 - 383 MB, 0 = unlimited, default = 10).
Import
ObjectFirewall ProfileProtocolOptionsSsh can be imported using any of these accepted formats:
Set import_options = [“profile_protocol_options=YOUR_VALUE”] in the provider section.
$ export “FORTIMANAGER_IMPORT_TABLE”=“true”
$ pulumi import fortimanager:index/objectFirewallProfileprotocoloptionsSsh:ObjectFirewallProfileprotocoloptionsSsh labelname ObjectFirewallProfileProtocolOptionsSsh
$ 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.