fortimanager.ObjectFirewallSslsshprofileSslserver
Explore with Pulumi AI
SSL servers.
This resource is a sub resource for variable
ssl_server
of resourcefortimanager.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],
});
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]))
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
})
}
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,
},
});
});
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());
}
}
resources:
trnameObjectFirewallSslsshprofileSslserver:
type: fortimanager:ObjectFirewallSslsshprofileSslserver
properties:
sslSshProfile: ${trnameObjectFirewallSslsshprofile.name}
ftpsClientCertificate: bypass
httpsClientCertificate: block
fosid: 2
options:
dependsOn:
- ${trnameObjectFirewallSslsshprofile}
trnameObjectFirewallSslsshprofile:
type: fortimanager:ObjectFirewallSslsshprofile
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,
https_client_certificate: Optional[str] = None,
object_firewall_sslsshprofile_sslserver_id: Optional[str] = None,
https_client_cert_request: Optional[str] = None,
pop3s_client_cert_request: Optional[str] = None,
imaps_client_cert_request: Optional[str] = None,
imaps_client_certificate: Optional[str] = None,
pop3s_client_certificate: Optional[str] = None,
ftps_client_certificate: Optional[str] = None,
ftps_client_cert_request: Optional[str] = None,
adom: 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 string
- The unique name of the resource.
- args ObjectFirewallSslsshprofileSslserverArgs
- 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 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 string
- The unique name of the resource.
- args ObjectFirewallSslsshprofileSslserverArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ObjectFirewallSslsshprofileSslserverArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args 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",
HttpsClientCertificate = "string",
ObjectFirewallSslsshprofileSslserverId = "string",
HttpsClientCertRequest = "string",
Pop3sClientCertRequest = "string",
ImapsClientCertRequest = "string",
ImapsClientCertificate = "string",
Pop3sClientCertificate = "string",
FtpsClientCertificate = "string",
FtpsClientCertRequest = "string",
Adom = "string",
Scopetype = "string",
SmtpsClientCertRequest = "string",
SmtpsClientCertificate = "string",
SslOtherClientCertRequest = "string",
SslOtherClientCertificate = "string",
Fosid = 0,
});
example, err := fortimanager.NewObjectFirewallSslsshprofileSslserver(ctx, "objectFirewallSslsshprofileSslserverResource", &fortimanager.ObjectFirewallSslsshprofileSslserverArgs{
SslSshProfile: pulumi.String("string"),
Ip: pulumi.String("string"),
HttpsClientCertificate: pulumi.String("string"),
ObjectFirewallSslsshprofileSslserverId: pulumi.String("string"),
HttpsClientCertRequest: pulumi.String("string"),
Pop3sClientCertRequest: pulumi.String("string"),
ImapsClientCertRequest: pulumi.String("string"),
ImapsClientCertificate: pulumi.String("string"),
Pop3sClientCertificate: pulumi.String("string"),
FtpsClientCertificate: pulumi.String("string"),
FtpsClientCertRequest: pulumi.String("string"),
Adom: 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),
})
var objectFirewallSslsshprofileSslserverResource = new ObjectFirewallSslsshprofileSslserver("objectFirewallSslsshprofileSslserverResource", ObjectFirewallSslsshprofileSslserverArgs.builder()
.sslSshProfile("string")
.ip("string")
.httpsClientCertificate("string")
.objectFirewallSslsshprofileSslserverId("string")
.httpsClientCertRequest("string")
.pop3sClientCertRequest("string")
.imapsClientCertRequest("string")
.imapsClientCertificate("string")
.pop3sClientCertificate("string")
.ftpsClientCertificate("string")
.ftpsClientCertRequest("string")
.adom("string")
.scopetype("string")
.smtpsClientCertRequest("string")
.smtpsClientCertificate("string")
.sslOtherClientCertRequest("string")
.sslOtherClientCertificate("string")
.fosid(0)
.build());
object_firewall_sslsshprofile_sslserver_resource = fortimanager.ObjectFirewallSslsshprofileSslserver("objectFirewallSslsshprofileSslserverResource",
ssl_ssh_profile="string",
ip="string",
https_client_certificate="string",
object_firewall_sslsshprofile_sslserver_id="string",
https_client_cert_request="string",
pop3s_client_cert_request="string",
imaps_client_cert_request="string",
imaps_client_certificate="string",
pop3s_client_certificate="string",
ftps_client_certificate="string",
ftps_client_cert_request="string",
adom="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)
const objectFirewallSslsshprofileSslserverResource = new fortimanager.ObjectFirewallSslsshprofileSslserver("objectFirewallSslsshprofileSslserverResource", {
sslSshProfile: "string",
ip: "string",
httpsClientCertificate: "string",
objectFirewallSslsshprofileSslserverId: "string",
httpsClientCertRequest: "string",
pop3sClientCertRequest: "string",
imapsClientCertRequest: "string",
imapsClientCertificate: "string",
pop3sClientCertificate: "string",
ftpsClientCertificate: "string",
ftpsClientCertRequest: "string",
adom: "string",
scopetype: "string",
smtpsClientCertRequest: "string",
smtpsClientCertificate: "string",
sslOtherClientCertRequest: "string",
sslOtherClientCertificate: "string",
fosid: 0,
});
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
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:
- Ssl
Ssh stringProfile - Ssl Ssh Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid double
- SSL server ID.
- Ftps
Client stringCert Request - Action based on client certificate request during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - Ftps
Client stringCertificate - Action based on received client certificate during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - Https
Client stringCert Request - Action based on client certificate request during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - Https
Client stringCertificate - Action based on received client certificate during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - Imaps
Client stringCert Request - Action based on client certificate request during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - Imaps
Client stringCertificate - Action based on received client certificate during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - Ip string
- IPv4 address of the SSL server.
- Object
Firewall stringSslsshprofile Sslserver Id - an identifier for the resource with format {{fosid}}.
- Pop3s
Client stringCert Request - Action based on client certificate request during the POP3S handshake. Valid values:
bypass
,inspect
,block
. - Pop3s
Client stringCertificate - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Smtps
Client stringCert Request - Action based on client certificate request during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - Smtps
Client stringCertificate - Action based on received client certificate during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - Ssl
Other stringClient Cert Request - Action based on client certificate request during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - Ssl
Other stringClient Certificate - Action based on received client certificate during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
.
- Ssl
Ssh stringProfile - Ssl Ssh Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid float64
- SSL server ID.
- Ftps
Client stringCert Request - Action based on client certificate request during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - Ftps
Client stringCertificate - Action based on received client certificate during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - Https
Client stringCert Request - Action based on client certificate request during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - Https
Client stringCertificate - Action based on received client certificate during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - Imaps
Client stringCert Request - Action based on client certificate request during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - Imaps
Client stringCertificate - Action based on received client certificate during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - Ip string
- IPv4 address of the SSL server.
- Object
Firewall stringSslsshprofile Sslserver Id - an identifier for the resource with format {{fosid}}.
- Pop3s
Client stringCert Request - Action based on client certificate request during the POP3S handshake. Valid values:
bypass
,inspect
,block
. - Pop3s
Client stringCertificate - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Smtps
Client stringCert Request - Action based on client certificate request during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - Smtps
Client stringCertificate - Action based on received client certificate during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - Ssl
Other stringClient Cert Request - Action based on client certificate request during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - Ssl
Other stringClient Certificate - Action based on received client certificate during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
.
- ssl
Ssh StringProfile - Ssl Ssh Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Double
- SSL server ID.
- ftps
Client StringCert Request - Action based on client certificate request during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - ftps
Client StringCertificate - Action based on received client certificate during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - https
Client StringCert Request - Action based on client certificate request during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - https
Client StringCertificate - Action based on received client certificate during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - imaps
Client StringCert Request - Action based on client certificate request during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - imaps
Client StringCertificate - Action based on received client certificate during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - ip String
- IPv4 address of the SSL server.
- object
Firewall StringSslsshprofile Sslserver Id - an identifier for the resource with format {{fosid}}.
- pop3s
Client StringCert Request - Action based on client certificate request during the POP3S handshake. Valid values:
bypass
,inspect
,block
. - pop3s
Client StringCertificate - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - smtps
Client StringCert Request - Action based on client certificate request during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - smtps
Client StringCertificate - Action based on received client certificate during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - ssl
Other StringClient Cert Request - Action based on client certificate request during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - ssl
Other StringClient Certificate - Action based on received client certificate during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
.
- ssl
Ssh stringProfile - Ssl Ssh Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid number
- SSL server ID.
- ftps
Client stringCert Request - Action based on client certificate request during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - ftps
Client stringCertificate - Action based on received client certificate during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - https
Client stringCert Request - Action based on client certificate request during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - https
Client stringCertificate - Action based on received client certificate during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - imaps
Client stringCert Request - Action based on client certificate request during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - imaps
Client stringCertificate - Action based on received client certificate during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - ip string
- IPv4 address of the SSL server.
- object
Firewall stringSslsshprofile Sslserver Id - an identifier for the resource with format {{fosid}}.
- pop3s
Client stringCert Request - Action based on client certificate request during the POP3S handshake. Valid values:
bypass
,inspect
,block
. - pop3s
Client stringCertificate - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - smtps
Client stringCert Request - Action based on client certificate request during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - smtps
Client stringCertificate - Action based on received client certificate during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - ssl
Other stringClient Cert Request - Action based on client certificate request during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - ssl
Other stringClient Certificate - Action based on received client certificate during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
.
- ssl_
ssh_ strprofile - Ssl Ssh Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid float
- SSL server ID.
- ftps_
client_ strcert_ request - Action based on client certificate request during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - ftps_
client_ strcertificate - Action based on received client certificate during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - https_
client_ strcert_ request - Action based on client certificate request during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - https_
client_ strcertificate - Action based on received client certificate during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - imaps_
client_ strcert_ request - Action based on client certificate request during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - imaps_
client_ strcertificate - 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_ strsslsshprofile_ sslserver_ id - an identifier for the resource with format {{fosid}}.
- pop3s_
client_ strcert_ request - Action based on client certificate request during the POP3S handshake. Valid values:
bypass
,inspect
,block
. - pop3s_
client_ strcertificate - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - smtps_
client_ strcert_ request - Action based on client certificate request during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - smtps_
client_ strcertificate - Action based on received client certificate during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - ssl_
other_ strclient_ cert_ request - Action based on client certificate request during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - ssl_
other_ strclient_ certificate - Action based on received client certificate during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
.
- ssl
Ssh StringProfile - Ssl Ssh Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Number
- SSL server ID.
- ftps
Client StringCert Request - Action based on client certificate request during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - ftps
Client StringCertificate - Action based on received client certificate during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - https
Client StringCert Request - Action based on client certificate request during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - https
Client StringCertificate - Action based on received client certificate during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - imaps
Client StringCert Request - Action based on client certificate request during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - imaps
Client StringCertificate - Action based on received client certificate during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - ip String
- IPv4 address of the SSL server.
- object
Firewall StringSslsshprofile Sslserver Id - an identifier for the resource with format {{fosid}}.
- pop3s
Client StringCert Request - Action based on client certificate request during the POP3S handshake. Valid values:
bypass
,inspect
,block
. - pop3s
Client StringCertificate - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - smtps
Client StringCert Request - Action based on client certificate request during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - smtps
Client StringCertificate - Action based on received client certificate during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - ssl
Other StringClient Cert Request - Action based on client certificate request during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - ssl
Other StringClient Certificate - 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
- 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. - Fosid double
- SSL server ID.
- Ftps
Client stringCert Request - Action based on client certificate request during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - Ftps
Client stringCertificate - Action based on received client certificate during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - Https
Client stringCert Request - Action based on client certificate request during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - Https
Client stringCertificate - Action based on received client certificate during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - Imaps
Client stringCert Request - Action based on client certificate request during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - Imaps
Client stringCertificate - Action based on received client certificate during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - Ip string
- IPv4 address of the SSL server.
- Object
Firewall stringSslsshprofile Sslserver Id - an identifier for the resource with format {{fosid}}.
- Pop3s
Client stringCert Request - Action based on client certificate request during the POP3S handshake. Valid values:
bypass
,inspect
,block
. - Pop3s
Client stringCertificate - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Smtps
Client stringCert Request - Action based on client certificate request during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - Smtps
Client stringCertificate - Action based on received client certificate during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - Ssl
Other stringClient Cert Request - Action based on client certificate request during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - Ssl
Other stringClient Certificate - Action based on received client certificate during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - Ssl
Ssh stringProfile - Ssl Ssh Profile.
- Adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - Fosid float64
- SSL server ID.
- Ftps
Client stringCert Request - Action based on client certificate request during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - Ftps
Client stringCertificate - Action based on received client certificate during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - Https
Client stringCert Request - Action based on client certificate request during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - Https
Client stringCertificate - Action based on received client certificate during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - Imaps
Client stringCert Request - Action based on client certificate request during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - Imaps
Client stringCertificate - Action based on received client certificate during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - Ip string
- IPv4 address of the SSL server.
- Object
Firewall stringSslsshprofile Sslserver Id - an identifier for the resource with format {{fosid}}.
- Pop3s
Client stringCert Request - Action based on client certificate request during the POP3S handshake. Valid values:
bypass
,inspect
,block
. - Pop3s
Client stringCertificate - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - Smtps
Client stringCert Request - Action based on client certificate request during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - Smtps
Client stringCertificate - Action based on received client certificate during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - Ssl
Other stringClient Cert Request - Action based on client certificate request during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - Ssl
Other stringClient Certificate - Action based on received client certificate during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - Ssl
Ssh stringProfile - Ssl Ssh Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Double
- SSL server ID.
- ftps
Client StringCert Request - Action based on client certificate request during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - ftps
Client StringCertificate - Action based on received client certificate during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - https
Client StringCert Request - Action based on client certificate request during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - https
Client StringCertificate - Action based on received client certificate during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - imaps
Client StringCert Request - Action based on client certificate request during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - imaps
Client StringCertificate - Action based on received client certificate during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - ip String
- IPv4 address of the SSL server.
- object
Firewall StringSslsshprofile Sslserver Id - an identifier for the resource with format {{fosid}}.
- pop3s
Client StringCert Request - Action based on client certificate request during the POP3S handshake. Valid values:
bypass
,inspect
,block
. - pop3s
Client StringCertificate - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - smtps
Client StringCert Request - Action based on client certificate request during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - smtps
Client StringCertificate - Action based on received client certificate during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - ssl
Other StringClient Cert Request - Action based on client certificate request during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - ssl
Other StringClient Certificate - Action based on received client certificate during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - ssl
Ssh StringProfile - Ssl Ssh Profile.
- adom string
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid number
- SSL server ID.
- ftps
Client stringCert Request - Action based on client certificate request during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - ftps
Client stringCertificate - Action based on received client certificate during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - https
Client stringCert Request - Action based on client certificate request during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - https
Client stringCertificate - Action based on received client certificate during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - imaps
Client stringCert Request - Action based on client certificate request during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - imaps
Client stringCertificate - Action based on received client certificate during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - ip string
- IPv4 address of the SSL server.
- object
Firewall stringSslsshprofile Sslserver Id - an identifier for the resource with format {{fosid}}.
- pop3s
Client stringCert Request - Action based on client certificate request during the POP3S handshake. Valid values:
bypass
,inspect
,block
. - pop3s
Client stringCertificate - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - smtps
Client stringCert Request - Action based on client certificate request during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - smtps
Client stringCertificate - Action based on received client certificate during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - ssl
Other stringClient Cert Request - Action based on client certificate request during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - ssl
Other stringClient Certificate - Action based on received client certificate during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - ssl
Ssh stringProfile - Ssl Ssh Profile.
- adom str
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid float
- SSL server ID.
- ftps_
client_ strcert_ request - Action based on client certificate request during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - ftps_
client_ strcertificate - Action based on received client certificate during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - https_
client_ strcert_ request - Action based on client certificate request during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - https_
client_ strcertificate - Action based on received client certificate during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - imaps_
client_ strcert_ request - Action based on client certificate request during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - imaps_
client_ strcertificate - 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_ strsslsshprofile_ sslserver_ id - an identifier for the resource with format {{fosid}}.
- pop3s_
client_ strcert_ request - Action based on client certificate request during the POP3S handshake. Valid values:
bypass
,inspect
,block
. - pop3s_
client_ strcertificate - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - smtps_
client_ strcert_ request - Action based on client certificate request during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - smtps_
client_ strcertificate - Action based on received client certificate during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - ssl_
other_ strclient_ cert_ request - Action based on client certificate request during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - ssl_
other_ strclient_ certificate - Action based on received client certificate during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - ssl_
ssh_ strprofile - Ssl Ssh Profile.
- adom String
- Adom. This value is valid only when the
scopetype
isadom
, otherwise the value of adom in the provider will be inherited. - fosid Number
- SSL server ID.
- ftps
Client StringCert Request - Action based on client certificate request during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - ftps
Client StringCertificate - Action based on received client certificate during the FTPS handshake. Valid values:
bypass
,inspect
,block
. - https
Client StringCert Request - Action based on client certificate request during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - https
Client StringCertificate - Action based on received client certificate during the HTTPS handshake. Valid values:
bypass
,inspect
,block
. - imaps
Client StringCert Request - Action based on client certificate request during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - imaps
Client StringCertificate - Action based on received client certificate during the IMAPS handshake. Valid values:
bypass
,inspect
,block
. - ip String
- IPv4 address of the SSL server.
- object
Firewall StringSslsshprofile Sslserver Id - an identifier for the resource with format {{fosid}}.
- pop3s
Client StringCert Request - Action based on client certificate request during the POP3S handshake. Valid values:
bypass
,inspect
,block
. - pop3s
Client StringCertificate - 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
. Theinherit
means that the scopetype of the provider will be inherited, and adom will also be inherited. The default value isinherit
. - smtps
Client StringCert Request - Action based on client certificate request during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - smtps
Client StringCertificate - Action based on received client certificate during the SMTPS handshake. Valid values:
bypass
,inspect
,block
. - ssl
Other StringClient Cert Request - Action based on client certificate request during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - ssl
Other StringClient Certificate - Action based on received client certificate during an SSL protocol handshake. Valid values:
bypass
,inspect
,block
. - ssl
Ssh StringProfile - 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}}
$ 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.