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

fortimanager.ObjectFirewallSslsshprofileSslserver

Explore with Pulumi AI

SSL servers.

This resource is a sub resource for variable ssl_server of resource fortimanager.ObjectFirewallSslsshprofile. 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 trnameObjectFirewallSslsshprofile = new fortimanager.ObjectFirewallSslsshprofile("trnameObjectFirewallSslsshprofile", {});
const trnameObjectFirewallSslsshprofileSslserver = new fortimanager.ObjectFirewallSslsshprofileSslserver("trnameObjectFirewallSslsshprofileSslserver", {
    sslSshProfile: trnameObjectFirewallSslsshprofile.name,
    ftpsClientCertificate: "bypass",
    httpsClientCertificate: "block",
    fosid: 2,
}, {
    dependsOn: [trnameObjectFirewallSslsshprofile],
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

trname_object_firewall_sslsshprofile = fortimanager.ObjectFirewallSslsshprofile("trnameObjectFirewallSslsshprofile")
trname_object_firewall_sslsshprofile_sslserver = fortimanager.ObjectFirewallSslsshprofileSslserver("trnameObjectFirewallSslsshprofileSslserver",
    ssl_ssh_profile=trname_object_firewall_sslsshprofile.name,
    ftps_client_certificate="bypass",
    https_client_certificate="block",
    fosid=2,
    opts = pulumi.ResourceOptions(depends_on=[trname_object_firewall_sslsshprofile]))
Copy
package main

import (
	"github.com/pulumi/pulumi-terraform-provider/sdks/go/fortimanager/fortimanager"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		trnameObjectFirewallSslsshprofile, err := fortimanager.NewObjectFirewallSslsshprofile(ctx, "trnameObjectFirewallSslsshprofile", nil)
		if err != nil {
			return err
		}
		_, err = fortimanager.NewObjectFirewallSslsshprofileSslserver(ctx, "trnameObjectFirewallSslsshprofileSslserver", &fortimanager.ObjectFirewallSslsshprofileSslserverArgs{
			SslSshProfile:          trnameObjectFirewallSslsshprofile.Name,
			FtpsClientCertificate:  pulumi.String("bypass"),
			HttpsClientCertificate: pulumi.String("block"),
			Fosid:                  pulumi.Float64(2),
		}, pulumi.DependsOn([]pulumi.Resource{
			trnameObjectFirewallSslsshprofile,
		}))
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Fortimanager = Pulumi.Fortimanager;

return await Deployment.RunAsync(() => 
{
    var trnameObjectFirewallSslsshprofile = new Fortimanager.ObjectFirewallSslsshprofile("trnameObjectFirewallSslsshprofile");

    var trnameObjectFirewallSslsshprofileSslserver = new Fortimanager.ObjectFirewallSslsshprofileSslserver("trnameObjectFirewallSslsshprofileSslserver", new()
    {
        SslSshProfile = trnameObjectFirewallSslsshprofile.Name,
        FtpsClientCertificate = "bypass",
        HttpsClientCertificate = "block",
        Fosid = 2,
    }, new CustomResourceOptions
    {
        DependsOn =
        {
            trnameObjectFirewallSslsshprofile,
        },
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectFirewallSslsshprofile;
import com.pulumi.fortimanager.ObjectFirewallSslsshprofileSslserver;
import com.pulumi.fortimanager.ObjectFirewallSslsshprofileSslserverArgs;
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 trnameObjectFirewallSslsshprofile = new ObjectFirewallSslsshprofile("trnameObjectFirewallSslsshprofile");

        var trnameObjectFirewallSslsshprofileSslserver = new ObjectFirewallSslsshprofileSslserver("trnameObjectFirewallSslsshprofileSslserver", ObjectFirewallSslsshprofileSslserverArgs.builder()
            .sslSshProfile(trnameObjectFirewallSslsshprofile.name())
            .ftpsClientCertificate("bypass")
            .httpsClientCertificate("block")
            .fosid(2)
            .build(), CustomResourceOptions.builder()
                .dependsOn(trnameObjectFirewallSslsshprofile)
                .build());

    }
}
Copy
resources:
  trnameObjectFirewallSslsshprofileSslserver:
    type: fortimanager:ObjectFirewallSslsshprofileSslserver
    properties:
      sslSshProfile: ${trnameObjectFirewallSslsshprofile.name}
      ftpsClientCertificate: bypass
      httpsClientCertificate: block
      fosid: 2
    options:
      dependsOn:
        - ${trnameObjectFirewallSslsshprofile}
  trnameObjectFirewallSslsshprofile:
    type: fortimanager:ObjectFirewallSslsshprofile
Copy

Create ObjectFirewallSslsshprofileSslserver Resource

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

Constructor syntax

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

@overload
def ObjectFirewallSslsshprofileSslserver(resource_name: str,
                                         opts: Optional[ResourceOptions] = None,
                                         ssl_ssh_profile: Optional[str] = None,
                                         ip: Optional[str] = None,
                                         pop3s_client_cert_request: Optional[str] = None,
                                         ftps_client_certificate: Optional[str] = None,
                                         https_client_cert_request: Optional[str] = None,
                                         https_client_certificate: Optional[str] = None,
                                         imaps_client_cert_request: Optional[str] = None,
                                         imaps_client_certificate: Optional[str] = None,
                                         adom: Optional[str] = None,
                                         ftps_client_cert_request: Optional[str] = None,
                                         pop3s_client_certificate: Optional[str] = None,
                                         object_firewall_sslsshprofile_sslserver_id: Optional[str] = None,
                                         scopetype: Optional[str] = None,
                                         smtps_client_cert_request: Optional[str] = None,
                                         smtps_client_certificate: Optional[str] = None,
                                         ssl_other_client_cert_request: Optional[str] = None,
                                         ssl_other_client_certificate: Optional[str] = None,
                                         fosid: Optional[float] = None)
func NewObjectFirewallSslsshprofileSslserver(ctx *Context, name string, args ObjectFirewallSslsshprofileSslserverArgs, opts ...ResourceOption) (*ObjectFirewallSslsshprofileSslserver, error)
public ObjectFirewallSslsshprofileSslserver(string name, ObjectFirewallSslsshprofileSslserverArgs args, CustomResourceOptions? opts = null)
public ObjectFirewallSslsshprofileSslserver(String name, ObjectFirewallSslsshprofileSslserverArgs args)
public ObjectFirewallSslsshprofileSslserver(String name, ObjectFirewallSslsshprofileSslserverArgs args, CustomResourceOptions options)
type: fortimanager:ObjectFirewallSslsshprofileSslserver
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.

Parameters

name This property is required. string
The unique name of the resource.
args This property is required. ObjectFirewallSslsshprofileSslserverArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
resource_name This property is required. str
The unique name of the resource.
args This property is required. ObjectFirewallSslsshprofileSslserverArgs
The arguments to resource properties.
opts ResourceOptions
Bag of options to control resource's behavior.
ctx Context
Context object for the current deployment.
name This property is required. string
The unique name of the resource.
args This property is required. ObjectFirewallSslsshprofileSslserverArgs
The arguments to resource properties.
opts ResourceOption
Bag of options to control resource's behavior.
name This property is required. string
The unique name of the resource.
args This property is required. ObjectFirewallSslsshprofileSslserverArgs
The arguments to resource properties.
opts CustomResourceOptions
Bag of options to control resource's behavior.
name This property is required. String
The unique name of the resource.
args This property is required. ObjectFirewallSslsshprofileSslserverArgs
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 objectFirewallSslsshprofileSslserverResource = new Fortimanager.ObjectFirewallSslsshprofileSslserver("objectFirewallSslsshprofileSslserverResource", new()
{
    SslSshProfile = "string",
    Ip = "string",
    Pop3sClientCertRequest = "string",
    FtpsClientCertificate = "string",
    HttpsClientCertRequest = "string",
    HttpsClientCertificate = "string",
    ImapsClientCertRequest = "string",
    ImapsClientCertificate = "string",
    Adom = "string",
    FtpsClientCertRequest = "string",
    Pop3sClientCertificate = "string",
    ObjectFirewallSslsshprofileSslserverId = "string",
    Scopetype = "string",
    SmtpsClientCertRequest = "string",
    SmtpsClientCertificate = "string",
    SslOtherClientCertRequest = "string",
    SslOtherClientCertificate = "string",
    Fosid = 0,
});
Copy
example, err := fortimanager.NewObjectFirewallSslsshprofileSslserver(ctx, "objectFirewallSslsshprofileSslserverResource", &fortimanager.ObjectFirewallSslsshprofileSslserverArgs{
	SslSshProfile:                          pulumi.String("string"),
	Ip:                                     pulumi.String("string"),
	Pop3sClientCertRequest:                 pulumi.String("string"),
	FtpsClientCertificate:                  pulumi.String("string"),
	HttpsClientCertRequest:                 pulumi.String("string"),
	HttpsClientCertificate:                 pulumi.String("string"),
	ImapsClientCertRequest:                 pulumi.String("string"),
	ImapsClientCertificate:                 pulumi.String("string"),
	Adom:                                   pulumi.String("string"),
	FtpsClientCertRequest:                  pulumi.String("string"),
	Pop3sClientCertificate:                 pulumi.String("string"),
	ObjectFirewallSslsshprofileSslserverId: pulumi.String("string"),
	Scopetype:                              pulumi.String("string"),
	SmtpsClientCertRequest:                 pulumi.String("string"),
	SmtpsClientCertificate:                 pulumi.String("string"),
	SslOtherClientCertRequest:              pulumi.String("string"),
	SslOtherClientCertificate:              pulumi.String("string"),
	Fosid:                                  pulumi.Float64(0),
})
Copy
var objectFirewallSslsshprofileSslserverResource = new ObjectFirewallSslsshprofileSslserver("objectFirewallSslsshprofileSslserverResource", ObjectFirewallSslsshprofileSslserverArgs.builder()
    .sslSshProfile("string")
    .ip("string")
    .pop3sClientCertRequest("string")
    .ftpsClientCertificate("string")
    .httpsClientCertRequest("string")
    .httpsClientCertificate("string")
    .imapsClientCertRequest("string")
    .imapsClientCertificate("string")
    .adom("string")
    .ftpsClientCertRequest("string")
    .pop3sClientCertificate("string")
    .objectFirewallSslsshprofileSslserverId("string")
    .scopetype("string")
    .smtpsClientCertRequest("string")
    .smtpsClientCertificate("string")
    .sslOtherClientCertRequest("string")
    .sslOtherClientCertificate("string")
    .fosid(0)
    .build());
Copy
object_firewall_sslsshprofile_sslserver_resource = fortimanager.ObjectFirewallSslsshprofileSslserver("objectFirewallSslsshprofileSslserverResource",
    ssl_ssh_profile="string",
    ip="string",
    pop3s_client_cert_request="string",
    ftps_client_certificate="string",
    https_client_cert_request="string",
    https_client_certificate="string",
    imaps_client_cert_request="string",
    imaps_client_certificate="string",
    adom="string",
    ftps_client_cert_request="string",
    pop3s_client_certificate="string",
    object_firewall_sslsshprofile_sslserver_id="string",
    scopetype="string",
    smtps_client_cert_request="string",
    smtps_client_certificate="string",
    ssl_other_client_cert_request="string",
    ssl_other_client_certificate="string",
    fosid=0)
Copy
const objectFirewallSslsshprofileSslserverResource = new fortimanager.ObjectFirewallSslsshprofileSslserver("objectFirewallSslsshprofileSslserverResource", {
    sslSshProfile: "string",
    ip: "string",
    pop3sClientCertRequest: "string",
    ftpsClientCertificate: "string",
    httpsClientCertRequest: "string",
    httpsClientCertificate: "string",
    imapsClientCertRequest: "string",
    imapsClientCertificate: "string",
    adom: "string",
    ftpsClientCertRequest: "string",
    pop3sClientCertificate: "string",
    objectFirewallSslsshprofileSslserverId: "string",
    scopetype: "string",
    smtpsClientCertRequest: "string",
    smtpsClientCertificate: "string",
    sslOtherClientCertRequest: "string",
    sslOtherClientCertificate: "string",
    fosid: 0,
});
Copy
type: fortimanager:ObjectFirewallSslsshprofileSslserver
properties:
    adom: string
    fosid: 0
    ftpsClientCertRequest: string
    ftpsClientCertificate: string
    httpsClientCertRequest: string
    httpsClientCertificate: string
    imapsClientCertRequest: string
    imapsClientCertificate: string
    ip: string
    objectFirewallSslsshprofileSslserverId: string
    pop3sClientCertRequest: string
    pop3sClientCertificate: string
    scopetype: string
    smtpsClientCertRequest: string
    smtpsClientCertificate: string
    sslOtherClientCertRequest: string
    sslOtherClientCertificate: string
    sslSshProfile: string
Copy

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

SslSshProfile This property is required. string
Ssl Ssh 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.
Fosid double
SSL server ID.
FtpsClientCertRequest string
Action based on client certificate request during the FTPS handshake. Valid values: bypass, inspect, block.
FtpsClientCertificate string
Action based on received client certificate during the FTPS handshake. Valid values: bypass, inspect, block.
HttpsClientCertRequest string
Action based on client certificate request during the HTTPS handshake. Valid values: bypass, inspect, block.
HttpsClientCertificate string
Action based on received client certificate during the HTTPS handshake. Valid values: bypass, inspect, block.
ImapsClientCertRequest string
Action based on client certificate request during the IMAPS handshake. Valid values: bypass, inspect, block.
ImapsClientCertificate string
Action based on received client certificate during the IMAPS handshake. Valid values: bypass, inspect, block.
Ip string
IPv4 address of the SSL server.
ObjectFirewallSslsshprofileSslserverId string
an identifier for the resource with format {{fosid}}.
Pop3sClientCertRequest string
Action based on client certificate request during the POP3S handshake. Valid values: bypass, inspect, block.
Pop3sClientCertificate string
Action based on received client certificate during the POP3S handshake. Valid values: bypass, inspect, block.
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.
SmtpsClientCertRequest string
Action based on client certificate request during the SMTPS handshake. Valid values: bypass, inspect, block.
SmtpsClientCertificate string
Action based on received client certificate during the SMTPS handshake. Valid values: bypass, inspect, block.
SslOtherClientCertRequest string
Action based on client certificate request during an SSL protocol handshake. Valid values: bypass, inspect, block.
SslOtherClientCertificate string
Action based on received client certificate during an SSL protocol handshake. Valid values: bypass, inspect, block.
SslSshProfile This property is required. string
Ssl Ssh 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.
Fosid float64
SSL server ID.
FtpsClientCertRequest string
Action based on client certificate request during the FTPS handshake. Valid values: bypass, inspect, block.
FtpsClientCertificate string
Action based on received client certificate during the FTPS handshake. Valid values: bypass, inspect, block.
HttpsClientCertRequest string
Action based on client certificate request during the HTTPS handshake. Valid values: bypass, inspect, block.
HttpsClientCertificate string
Action based on received client certificate during the HTTPS handshake. Valid values: bypass, inspect, block.
ImapsClientCertRequest string
Action based on client certificate request during the IMAPS handshake. Valid values: bypass, inspect, block.
ImapsClientCertificate string
Action based on received client certificate during the IMAPS handshake. Valid values: bypass, inspect, block.
Ip string
IPv4 address of the SSL server.
ObjectFirewallSslsshprofileSslserverId string
an identifier for the resource with format {{fosid}}.
Pop3sClientCertRequest string
Action based on client certificate request during the POP3S handshake. Valid values: bypass, inspect, block.
Pop3sClientCertificate string
Action based on received client certificate during the POP3S handshake. Valid values: bypass, inspect, block.
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.
SmtpsClientCertRequest string
Action based on client certificate request during the SMTPS handshake. Valid values: bypass, inspect, block.
SmtpsClientCertificate string
Action based on received client certificate during the SMTPS handshake. Valid values: bypass, inspect, block.
SslOtherClientCertRequest string
Action based on client certificate request during an SSL protocol handshake. Valid values: bypass, inspect, block.
SslOtherClientCertificate string
Action based on received client certificate during an SSL protocol handshake. Valid values: bypass, inspect, block.
sslSshProfile This property is required. String
Ssl Ssh 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.
fosid Double
SSL server ID.
ftpsClientCertRequest String
Action based on client certificate request during the FTPS handshake. Valid values: bypass, inspect, block.
ftpsClientCertificate String
Action based on received client certificate during the FTPS handshake. Valid values: bypass, inspect, block.
httpsClientCertRequest String
Action based on client certificate request during the HTTPS handshake. Valid values: bypass, inspect, block.
httpsClientCertificate String
Action based on received client certificate during the HTTPS handshake. Valid values: bypass, inspect, block.
imapsClientCertRequest String
Action based on client certificate request during the IMAPS handshake. Valid values: bypass, inspect, block.
imapsClientCertificate String
Action based on received client certificate during the IMAPS handshake. Valid values: bypass, inspect, block.
ip String
IPv4 address of the SSL server.
objectFirewallSslsshprofileSslserverId String
an identifier for the resource with format {{fosid}}.
pop3sClientCertRequest String
Action based on client certificate request during the POP3S handshake. Valid values: bypass, inspect, block.
pop3sClientCertificate String
Action based on received client certificate during the POP3S handshake. Valid values: bypass, inspect, block.
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.
smtpsClientCertRequest String
Action based on client certificate request during the SMTPS handshake. Valid values: bypass, inspect, block.
smtpsClientCertificate String
Action based on received client certificate during the SMTPS handshake. Valid values: bypass, inspect, block.
sslOtherClientCertRequest String
Action based on client certificate request during an SSL protocol handshake. Valid values: bypass, inspect, block.
sslOtherClientCertificate String
Action based on received client certificate during an SSL protocol handshake. Valid values: bypass, inspect, block.
sslSshProfile This property is required. string
Ssl Ssh 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.
fosid number
SSL server ID.
ftpsClientCertRequest string
Action based on client certificate request during the FTPS handshake. Valid values: bypass, inspect, block.
ftpsClientCertificate string
Action based on received client certificate during the FTPS handshake. Valid values: bypass, inspect, block.
httpsClientCertRequest string
Action based on client certificate request during the HTTPS handshake. Valid values: bypass, inspect, block.
httpsClientCertificate string
Action based on received client certificate during the HTTPS handshake. Valid values: bypass, inspect, block.
imapsClientCertRequest string
Action based on client certificate request during the IMAPS handshake. Valid values: bypass, inspect, block.
imapsClientCertificate string
Action based on received client certificate during the IMAPS handshake. Valid values: bypass, inspect, block.
ip string
IPv4 address of the SSL server.
objectFirewallSslsshprofileSslserverId string
an identifier for the resource with format {{fosid}}.
pop3sClientCertRequest string
Action based on client certificate request during the POP3S handshake. Valid values: bypass, inspect, block.
pop3sClientCertificate string
Action based on received client certificate during the POP3S handshake. Valid values: bypass, inspect, block.
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.
smtpsClientCertRequest string
Action based on client certificate request during the SMTPS handshake. Valid values: bypass, inspect, block.
smtpsClientCertificate string
Action based on received client certificate during the SMTPS handshake. Valid values: bypass, inspect, block.
sslOtherClientCertRequest string
Action based on client certificate request during an SSL protocol handshake. Valid values: bypass, inspect, block.
sslOtherClientCertificate string
Action based on received client certificate during an SSL protocol handshake. Valid values: bypass, inspect, block.
ssl_ssh_profile This property is required. str
Ssl Ssh 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.
fosid float
SSL server ID.
ftps_client_cert_request str
Action based on client certificate request during the FTPS handshake. Valid values: bypass, inspect, block.
ftps_client_certificate str
Action based on received client certificate during the FTPS handshake. Valid values: bypass, inspect, block.
https_client_cert_request str
Action based on client certificate request during the HTTPS handshake. Valid values: bypass, inspect, block.
https_client_certificate str
Action based on received client certificate during the HTTPS handshake. Valid values: bypass, inspect, block.
imaps_client_cert_request str
Action based on client certificate request during the IMAPS handshake. Valid values: bypass, inspect, block.
imaps_client_certificate str
Action based on received client certificate during the IMAPS handshake. Valid values: bypass, inspect, block.
ip str
IPv4 address of the SSL server.
object_firewall_sslsshprofile_sslserver_id str
an identifier for the resource with format {{fosid}}.
pop3s_client_cert_request str
Action based on client certificate request during the POP3S handshake. Valid values: bypass, inspect, block.
pop3s_client_certificate str
Action based on received client certificate during the POP3S handshake. Valid values: bypass, inspect, block.
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.
smtps_client_cert_request str
Action based on client certificate request during the SMTPS handshake. Valid values: bypass, inspect, block.
smtps_client_certificate str
Action based on received client certificate during the SMTPS handshake. Valid values: bypass, inspect, block.
ssl_other_client_cert_request str
Action based on client certificate request during an SSL protocol handshake. Valid values: bypass, inspect, block.
ssl_other_client_certificate str
Action based on received client certificate during an SSL protocol handshake. Valid values: bypass, inspect, block.
sslSshProfile This property is required. String
Ssl Ssh 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.
fosid Number
SSL server ID.
ftpsClientCertRequest String
Action based on client certificate request during the FTPS handshake. Valid values: bypass, inspect, block.
ftpsClientCertificate String
Action based on received client certificate during the FTPS handshake. Valid values: bypass, inspect, block.
httpsClientCertRequest String
Action based on client certificate request during the HTTPS handshake. Valid values: bypass, inspect, block.
httpsClientCertificate String
Action based on received client certificate during the HTTPS handshake. Valid values: bypass, inspect, block.
imapsClientCertRequest String
Action based on client certificate request during the IMAPS handshake. Valid values: bypass, inspect, block.
imapsClientCertificate String
Action based on received client certificate during the IMAPS handshake. Valid values: bypass, inspect, block.
ip String
IPv4 address of the SSL server.
objectFirewallSslsshprofileSslserverId String
an identifier for the resource with format {{fosid}}.
pop3sClientCertRequest String
Action based on client certificate request during the POP3S handshake. Valid values: bypass, inspect, block.
pop3sClientCertificate String
Action based on received client certificate during the POP3S handshake. Valid values: bypass, inspect, block.
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.
smtpsClientCertRequest String
Action based on client certificate request during the SMTPS handshake. Valid values: bypass, inspect, block.
smtpsClientCertificate String
Action based on received client certificate during the SMTPS handshake. Valid values: bypass, inspect, block.
sslOtherClientCertRequest String
Action based on client certificate request during an SSL protocol handshake. Valid values: bypass, inspect, block.
sslOtherClientCertificate String
Action based on received client certificate during an SSL protocol handshake. Valid values: bypass, inspect, block.

Outputs

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

Get an existing ObjectFirewallSslsshprofileSslserver 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?: ObjectFirewallSslsshprofileSslserverState, opts?: CustomResourceOptions): ObjectFirewallSslsshprofileSslserver
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        adom: Optional[str] = None,
        fosid: Optional[float] = None,
        ftps_client_cert_request: Optional[str] = None,
        ftps_client_certificate: Optional[str] = None,
        https_client_cert_request: Optional[str] = None,
        https_client_certificate: Optional[str] = None,
        imaps_client_cert_request: Optional[str] = None,
        imaps_client_certificate: Optional[str] = None,
        ip: Optional[str] = None,
        object_firewall_sslsshprofile_sslserver_id: Optional[str] = None,
        pop3s_client_cert_request: Optional[str] = None,
        pop3s_client_certificate: Optional[str] = None,
        scopetype: Optional[str] = None,
        smtps_client_cert_request: Optional[str] = None,
        smtps_client_certificate: Optional[str] = None,
        ssl_other_client_cert_request: Optional[str] = None,
        ssl_other_client_certificate: Optional[str] = None,
        ssl_ssh_profile: Optional[str] = None) -> ObjectFirewallSslsshprofileSslserver
func GetObjectFirewallSslsshprofileSslserver(ctx *Context, name string, id IDInput, state *ObjectFirewallSslsshprofileSslserverState, opts ...ResourceOption) (*ObjectFirewallSslsshprofileSslserver, error)
public static ObjectFirewallSslsshprofileSslserver Get(string name, Input<string> id, ObjectFirewallSslsshprofileSslserverState? state, CustomResourceOptions? opts = null)
public static ObjectFirewallSslsshprofileSslserver get(String name, Output<String> id, ObjectFirewallSslsshprofileSslserverState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectFirewallSslsshprofileSslserver    get:      id: ${id}
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
resource_name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
name This property is required.
The unique name of the resulting resource.
id This property is required.
The unique provider ID of the resource to lookup.
state
Any extra arguments used during the lookup.
opts
A bag of options that control this resource's behavior.
The following state arguments are supported:
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
Fosid double
SSL server ID.
FtpsClientCertRequest string
Action based on client certificate request during the FTPS handshake. Valid values: bypass, inspect, block.
FtpsClientCertificate string
Action based on received client certificate during the FTPS handshake. Valid values: bypass, inspect, block.
HttpsClientCertRequest string
Action based on client certificate request during the HTTPS handshake. Valid values: bypass, inspect, block.
HttpsClientCertificate string
Action based on received client certificate during the HTTPS handshake. Valid values: bypass, inspect, block.
ImapsClientCertRequest string
Action based on client certificate request during the IMAPS handshake. Valid values: bypass, inspect, block.
ImapsClientCertificate string
Action based on received client certificate during the IMAPS handshake. Valid values: bypass, inspect, block.
Ip string
IPv4 address of the SSL server.
ObjectFirewallSslsshprofileSslserverId string
an identifier for the resource with format {{fosid}}.
Pop3sClientCertRequest string
Action based on client certificate request during the POP3S handshake. Valid values: bypass, inspect, block.
Pop3sClientCertificate string
Action based on received client certificate during the POP3S handshake. Valid values: bypass, inspect, block.
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.
SmtpsClientCertRequest string
Action based on client certificate request during the SMTPS handshake. Valid values: bypass, inspect, block.
SmtpsClientCertificate string
Action based on received client certificate during the SMTPS handshake. Valid values: bypass, inspect, block.
SslOtherClientCertRequest string
Action based on client certificate request during an SSL protocol handshake. Valid values: bypass, inspect, block.
SslOtherClientCertificate string
Action based on received client certificate during an SSL protocol handshake. Valid values: bypass, inspect, block.
SslSshProfile string
Ssl Ssh 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.
Fosid float64
SSL server ID.
FtpsClientCertRequest string
Action based on client certificate request during the FTPS handshake. Valid values: bypass, inspect, block.
FtpsClientCertificate string
Action based on received client certificate during the FTPS handshake. Valid values: bypass, inspect, block.
HttpsClientCertRequest string
Action based on client certificate request during the HTTPS handshake. Valid values: bypass, inspect, block.
HttpsClientCertificate string
Action based on received client certificate during the HTTPS handshake. Valid values: bypass, inspect, block.
ImapsClientCertRequest string
Action based on client certificate request during the IMAPS handshake. Valid values: bypass, inspect, block.
ImapsClientCertificate string
Action based on received client certificate during the IMAPS handshake. Valid values: bypass, inspect, block.
Ip string
IPv4 address of the SSL server.
ObjectFirewallSslsshprofileSslserverId string
an identifier for the resource with format {{fosid}}.
Pop3sClientCertRequest string
Action based on client certificate request during the POP3S handshake. Valid values: bypass, inspect, block.
Pop3sClientCertificate string
Action based on received client certificate during the POP3S handshake. Valid values: bypass, inspect, block.
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.
SmtpsClientCertRequest string
Action based on client certificate request during the SMTPS handshake. Valid values: bypass, inspect, block.
SmtpsClientCertificate string
Action based on received client certificate during the SMTPS handshake. Valid values: bypass, inspect, block.
SslOtherClientCertRequest string
Action based on client certificate request during an SSL protocol handshake. Valid values: bypass, inspect, block.
SslOtherClientCertificate string
Action based on received client certificate during an SSL protocol handshake. Valid values: bypass, inspect, block.
SslSshProfile string
Ssl Ssh 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.
fosid Double
SSL server ID.
ftpsClientCertRequest String
Action based on client certificate request during the FTPS handshake. Valid values: bypass, inspect, block.
ftpsClientCertificate String
Action based on received client certificate during the FTPS handshake. Valid values: bypass, inspect, block.
httpsClientCertRequest String
Action based on client certificate request during the HTTPS handshake. Valid values: bypass, inspect, block.
httpsClientCertificate String
Action based on received client certificate during the HTTPS handshake. Valid values: bypass, inspect, block.
imapsClientCertRequest String
Action based on client certificate request during the IMAPS handshake. Valid values: bypass, inspect, block.
imapsClientCertificate String
Action based on received client certificate during the IMAPS handshake. Valid values: bypass, inspect, block.
ip String
IPv4 address of the SSL server.
objectFirewallSslsshprofileSslserverId String
an identifier for the resource with format {{fosid}}.
pop3sClientCertRequest String
Action based on client certificate request during the POP3S handshake. Valid values: bypass, inspect, block.
pop3sClientCertificate String
Action based on received client certificate during the POP3S handshake. Valid values: bypass, inspect, block.
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.
smtpsClientCertRequest String
Action based on client certificate request during the SMTPS handshake. Valid values: bypass, inspect, block.
smtpsClientCertificate String
Action based on received client certificate during the SMTPS handshake. Valid values: bypass, inspect, block.
sslOtherClientCertRequest String
Action based on client certificate request during an SSL protocol handshake. Valid values: bypass, inspect, block.
sslOtherClientCertificate String
Action based on received client certificate during an SSL protocol handshake. Valid values: bypass, inspect, block.
sslSshProfile String
Ssl Ssh 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.
fosid number
SSL server ID.
ftpsClientCertRequest string
Action based on client certificate request during the FTPS handshake. Valid values: bypass, inspect, block.
ftpsClientCertificate string
Action based on received client certificate during the FTPS handshake. Valid values: bypass, inspect, block.
httpsClientCertRequest string
Action based on client certificate request during the HTTPS handshake. Valid values: bypass, inspect, block.
httpsClientCertificate string
Action based on received client certificate during the HTTPS handshake. Valid values: bypass, inspect, block.
imapsClientCertRequest string
Action based on client certificate request during the IMAPS handshake. Valid values: bypass, inspect, block.
imapsClientCertificate string
Action based on received client certificate during the IMAPS handshake. Valid values: bypass, inspect, block.
ip string
IPv4 address of the SSL server.
objectFirewallSslsshprofileSslserverId string
an identifier for the resource with format {{fosid}}.
pop3sClientCertRequest string
Action based on client certificate request during the POP3S handshake. Valid values: bypass, inspect, block.
pop3sClientCertificate string
Action based on received client certificate during the POP3S handshake. Valid values: bypass, inspect, block.
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.
smtpsClientCertRequest string
Action based on client certificate request during the SMTPS handshake. Valid values: bypass, inspect, block.
smtpsClientCertificate string
Action based on received client certificate during the SMTPS handshake. Valid values: bypass, inspect, block.
sslOtherClientCertRequest string
Action based on client certificate request during an SSL protocol handshake. Valid values: bypass, inspect, block.
sslOtherClientCertificate string
Action based on received client certificate during an SSL protocol handshake. Valid values: bypass, inspect, block.
sslSshProfile string
Ssl Ssh 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.
fosid float
SSL server ID.
ftps_client_cert_request str
Action based on client certificate request during the FTPS handshake. Valid values: bypass, inspect, block.
ftps_client_certificate str
Action based on received client certificate during the FTPS handshake. Valid values: bypass, inspect, block.
https_client_cert_request str
Action based on client certificate request during the HTTPS handshake. Valid values: bypass, inspect, block.
https_client_certificate str
Action based on received client certificate during the HTTPS handshake. Valid values: bypass, inspect, block.
imaps_client_cert_request str
Action based on client certificate request during the IMAPS handshake. Valid values: bypass, inspect, block.
imaps_client_certificate str
Action based on received client certificate during the IMAPS handshake. Valid values: bypass, inspect, block.
ip str
IPv4 address of the SSL server.
object_firewall_sslsshprofile_sslserver_id str
an identifier for the resource with format {{fosid}}.
pop3s_client_cert_request str
Action based on client certificate request during the POP3S handshake. Valid values: bypass, inspect, block.
pop3s_client_certificate str
Action based on received client certificate during the POP3S handshake. Valid values: bypass, inspect, block.
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.
smtps_client_cert_request str
Action based on client certificate request during the SMTPS handshake. Valid values: bypass, inspect, block.
smtps_client_certificate str
Action based on received client certificate during the SMTPS handshake. Valid values: bypass, inspect, block.
ssl_other_client_cert_request str
Action based on client certificate request during an SSL protocol handshake. Valid values: bypass, inspect, block.
ssl_other_client_certificate str
Action based on received client certificate during an SSL protocol handshake. Valid values: bypass, inspect, block.
ssl_ssh_profile str
Ssl Ssh 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.
fosid Number
SSL server ID.
ftpsClientCertRequest String
Action based on client certificate request during the FTPS handshake. Valid values: bypass, inspect, block.
ftpsClientCertificate String
Action based on received client certificate during the FTPS handshake. Valid values: bypass, inspect, block.
httpsClientCertRequest String
Action based on client certificate request during the HTTPS handshake. Valid values: bypass, inspect, block.
httpsClientCertificate String
Action based on received client certificate during the HTTPS handshake. Valid values: bypass, inspect, block.
imapsClientCertRequest String
Action based on client certificate request during the IMAPS handshake. Valid values: bypass, inspect, block.
imapsClientCertificate String
Action based on received client certificate during the IMAPS handshake. Valid values: bypass, inspect, block.
ip String
IPv4 address of the SSL server.
objectFirewallSslsshprofileSslserverId String
an identifier for the resource with format {{fosid}}.
pop3sClientCertRequest String
Action based on client certificate request during the POP3S handshake. Valid values: bypass, inspect, block.
pop3sClientCertificate String
Action based on received client certificate during the POP3S handshake. Valid values: bypass, inspect, block.
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.
smtpsClientCertRequest String
Action based on client certificate request during the SMTPS handshake. Valid values: bypass, inspect, block.
smtpsClientCertificate String
Action based on received client certificate during the SMTPS handshake. Valid values: bypass, inspect, block.
sslOtherClientCertRequest String
Action based on client certificate request during an SSL protocol handshake. Valid values: bypass, inspect, block.
sslOtherClientCertificate String
Action based on received client certificate during an SSL protocol handshake. Valid values: bypass, inspect, block.
sslSshProfile String
Ssl Ssh Profile.

Import

ObjectFirewall SslSshProfileSslServer can be imported using any of these accepted formats:

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

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectFirewallSslsshprofileSslserver:ObjectFirewallSslsshprofileSslserver labelname {{fosid}}
Copy

$ unset “FORTIMANAGER_IMPORT_TABLE”

-> Hint: The scopetype and adom for import will directly inherit the scopetype and adom configuration of the provider.

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

Package Details

Repository
fortimanager fortinetdev/terraform-provider-fortimanager
License
Notes
This Pulumi package is based on the fortimanager Terraform Provider.