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

fortimanager.ObjectUserExchange

Explore with Pulumi AI

Configure MS Exchange server entries.

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as fortimanager from "@pulumi/fortimanager";

const labelname = new fortimanager.ObjectUserExchange("labelname", {
    authLevel: "privacy",
    authType: "ntlm",
    autoDiscoverKdc: "enable",
    connectProtocol: "rpc-over-https",
    domainName: "sien.com",
    httpAuthType: "basic",
    ip: "22.22.2.2",
    passwords: ["fdafd"],
    sslMinProtoVersion: "default",
});
Copy
import pulumi
import pulumi_fortimanager as fortimanager

labelname = fortimanager.ObjectUserExchange("labelname",
    auth_level="privacy",
    auth_type="ntlm",
    auto_discover_kdc="enable",
    connect_protocol="rpc-over-https",
    domain_name="sien.com",
    http_auth_type="basic",
    ip="22.22.2.2",
    passwords=["fdafd"],
    ssl_min_proto_version="default")
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 {
		_, err := fortimanager.NewObjectUserExchange(ctx, "labelname", &fortimanager.ObjectUserExchangeArgs{
			AuthLevel:       pulumi.String("privacy"),
			AuthType:        pulumi.String("ntlm"),
			AutoDiscoverKdc: pulumi.String("enable"),
			ConnectProtocol: pulumi.String("rpc-over-https"),
			DomainName:      pulumi.String("sien.com"),
			HttpAuthType:    pulumi.String("basic"),
			Ip:              pulumi.String("22.22.2.2"),
			Passwords: pulumi.StringArray{
				pulumi.String("fdafd"),
			},
			SslMinProtoVersion: pulumi.String("default"),
		})
		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 labelname = new Fortimanager.ObjectUserExchange("labelname", new()
    {
        AuthLevel = "privacy",
        AuthType = "ntlm",
        AutoDiscoverKdc = "enable",
        ConnectProtocol = "rpc-over-https",
        DomainName = "sien.com",
        HttpAuthType = "basic",
        Ip = "22.22.2.2",
        Passwords = new[]
        {
            "fdafd",
        },
        SslMinProtoVersion = "default",
    });

});
Copy
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.fortimanager.ObjectUserExchange;
import com.pulumi.fortimanager.ObjectUserExchangeArgs;
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 labelname = new ObjectUserExchange("labelname", ObjectUserExchangeArgs.builder()
            .authLevel("privacy")
            .authType("ntlm")
            .autoDiscoverKdc("enable")
            .connectProtocol("rpc-over-https")
            .domainName("sien.com")
            .httpAuthType("basic")
            .ip("22.22.2.2")
            .passwords("fdafd")
            .sslMinProtoVersion("default")
            .build());

    }
}
Copy
resources:
  labelname:
    type: fortimanager:ObjectUserExchange
    properties:
      authLevel: privacy
      authType: ntlm
      autoDiscoverKdc: enable
      connectProtocol: rpc-over-https
      domainName: sien.com
      httpAuthType: basic
      ip: 22.22.2.2
      passwords:
        - fdafd
      sslMinProtoVersion: default
Copy

Create ObjectUserExchange Resource

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

Constructor syntax

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

@overload
def ObjectUserExchange(resource_name: str,
                       opts: Optional[ResourceOptions] = None,
                       addr_type: Optional[str] = None,
                       adom: Optional[str] = None,
                       auth_level: Optional[str] = None,
                       auth_type: Optional[str] = None,
                       auto_discover_kdc: Optional[str] = None,
                       connect_protocol: Optional[str] = None,
                       domain_name: Optional[str] = None,
                       http_auth_type: Optional[str] = None,
                       ip: Optional[str] = None,
                       ip6: Optional[str] = None,
                       kdc_ips: Optional[Sequence[str]] = None,
                       name: Optional[str] = None,
                       object_user_exchange_id: Optional[str] = None,
                       passwords: Optional[Sequence[str]] = None,
                       scopetype: Optional[str] = None,
                       server_name: Optional[str] = None,
                       ssl_min_proto_version: Optional[str] = None,
                       username: Optional[str] = None)
func NewObjectUserExchange(ctx *Context, name string, args *ObjectUserExchangeArgs, opts ...ResourceOption) (*ObjectUserExchange, error)
public ObjectUserExchange(string name, ObjectUserExchangeArgs? args = null, CustomResourceOptions? opts = null)
public ObjectUserExchange(String name, ObjectUserExchangeArgs args)
public ObjectUserExchange(String name, ObjectUserExchangeArgs args, CustomResourceOptions options)
type: fortimanager:ObjectUserExchange
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 ObjectUserExchangeArgs
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 ObjectUserExchangeArgs
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 ObjectUserExchangeArgs
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 ObjectUserExchangeArgs
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. ObjectUserExchangeArgs
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 objectUserExchangeResource = new Fortimanager.ObjectUserExchange("objectUserExchangeResource", new()
{
    AddrType = "string",
    Adom = "string",
    AuthLevel = "string",
    AuthType = "string",
    AutoDiscoverKdc = "string",
    ConnectProtocol = "string",
    DomainName = "string",
    HttpAuthType = "string",
    Ip = "string",
    Ip6 = "string",
    KdcIps = new[]
    {
        "string",
    },
    Name = "string",
    ObjectUserExchangeId = "string",
    Passwords = new[]
    {
        "string",
    },
    Scopetype = "string",
    ServerName = "string",
    SslMinProtoVersion = "string",
    Username = "string",
});
Copy
example, err := fortimanager.NewObjectUserExchange(ctx, "objectUserExchangeResource", &fortimanager.ObjectUserExchangeArgs{
AddrType: pulumi.String("string"),
Adom: pulumi.String("string"),
AuthLevel: pulumi.String("string"),
AuthType: pulumi.String("string"),
AutoDiscoverKdc: pulumi.String("string"),
ConnectProtocol: pulumi.String("string"),
DomainName: pulumi.String("string"),
HttpAuthType: pulumi.String("string"),
Ip: pulumi.String("string"),
Ip6: pulumi.String("string"),
KdcIps: pulumi.StringArray{
pulumi.String("string"),
},
Name: pulumi.String("string"),
ObjectUserExchangeId: pulumi.String("string"),
Passwords: pulumi.StringArray{
pulumi.String("string"),
},
Scopetype: pulumi.String("string"),
ServerName: pulumi.String("string"),
SslMinProtoVersion: pulumi.String("string"),
Username: pulumi.String("string"),
})
Copy
var objectUserExchangeResource = new ObjectUserExchange("objectUserExchangeResource", ObjectUserExchangeArgs.builder()
    .addrType("string")
    .adom("string")
    .authLevel("string")
    .authType("string")
    .autoDiscoverKdc("string")
    .connectProtocol("string")
    .domainName("string")
    .httpAuthType("string")
    .ip("string")
    .ip6("string")
    .kdcIps("string")
    .name("string")
    .objectUserExchangeId("string")
    .passwords("string")
    .scopetype("string")
    .serverName("string")
    .sslMinProtoVersion("string")
    .username("string")
    .build());
Copy
object_user_exchange_resource = fortimanager.ObjectUserExchange("objectUserExchangeResource",
    addr_type="string",
    adom="string",
    auth_level="string",
    auth_type="string",
    auto_discover_kdc="string",
    connect_protocol="string",
    domain_name="string",
    http_auth_type="string",
    ip="string",
    ip6="string",
    kdc_ips=["string"],
    name="string",
    object_user_exchange_id="string",
    passwords=["string"],
    scopetype="string",
    server_name="string",
    ssl_min_proto_version="string",
    username="string")
Copy
const objectUserExchangeResource = new fortimanager.ObjectUserExchange("objectUserExchangeResource", {
    addrType: "string",
    adom: "string",
    authLevel: "string",
    authType: "string",
    autoDiscoverKdc: "string",
    connectProtocol: "string",
    domainName: "string",
    httpAuthType: "string",
    ip: "string",
    ip6: "string",
    kdcIps: ["string"],
    name: "string",
    objectUserExchangeId: "string",
    passwords: ["string"],
    scopetype: "string",
    serverName: "string",
    sslMinProtoVersion: "string",
    username: "string",
});
Copy
type: fortimanager:ObjectUserExchange
properties:
    addrType: string
    adom: string
    authLevel: string
    authType: string
    autoDiscoverKdc: string
    connectProtocol: string
    domainName: string
    httpAuthType: string
    ip: string
    ip6: string
    kdcIps:
        - string
    name: string
    objectUserExchangeId: string
    passwords:
        - string
    scopetype: string
    serverName: string
    sslMinProtoVersion: string
    username: string
Copy

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

AddrType string
Addr-Type. Valid values: ipv4, ipv6.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AuthLevel string
Authentication security level used for the RPC protocol layer. Valid values: low, medium, normal, high, connect, call, packet, integrity, privacy.
AuthType string
Authentication security type used for the RPC protocol layer. Valid values: spnego, ntlm, kerberos.
AutoDiscoverKdc string
Enable/disable automatic discovery of KDC IP addresses. Valid values: disable, enable.
ConnectProtocol string
Connection protocol used to connect to MS Exchange service. Valid values: rpc-over-tcp, rpc-over-http, rpc-over-https.
DomainName string
MS Exchange server fully qualified domain name.
HttpAuthType string
Authentication security type used for the HTTP transport. Valid values: ntlm, basic.
Ip string
Server IPv4 address.
Ip6 string
Ip6.
KdcIps List<string>
KDC IPv4 addresses for Kerberos authentication.
Name string
MS Exchange server entry name.
ObjectUserExchangeId string
an identifier for the resource with format {{name}}.
Passwords List<string>
Password for the specified username.
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.
ServerName string
MS Exchange server hostname.
SslMinProtoVersion string
Minimum SSL/TLS protocol version for HTTPS transport (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
Username string
User name used to sign in to the server. Must have proper permissions for service.
AddrType string
Addr-Type. Valid values: ipv4, ipv6.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AuthLevel string
Authentication security level used for the RPC protocol layer. Valid values: low, medium, normal, high, connect, call, packet, integrity, privacy.
AuthType string
Authentication security type used for the RPC protocol layer. Valid values: spnego, ntlm, kerberos.
AutoDiscoverKdc string
Enable/disable automatic discovery of KDC IP addresses. Valid values: disable, enable.
ConnectProtocol string
Connection protocol used to connect to MS Exchange service. Valid values: rpc-over-tcp, rpc-over-http, rpc-over-https.
DomainName string
MS Exchange server fully qualified domain name.
HttpAuthType string
Authentication security type used for the HTTP transport. Valid values: ntlm, basic.
Ip string
Server IPv4 address.
Ip6 string
Ip6.
KdcIps []string
KDC IPv4 addresses for Kerberos authentication.
Name string
MS Exchange server entry name.
ObjectUserExchangeId string
an identifier for the resource with format {{name}}.
Passwords []string
Password for the specified username.
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.
ServerName string
MS Exchange server hostname.
SslMinProtoVersion string
Minimum SSL/TLS protocol version for HTTPS transport (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
Username string
User name used to sign in to the server. Must have proper permissions for service.
addrType String
Addr-Type. Valid values: ipv4, ipv6.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
authLevel String
Authentication security level used for the RPC protocol layer. Valid values: low, medium, normal, high, connect, call, packet, integrity, privacy.
authType String
Authentication security type used for the RPC protocol layer. Valid values: spnego, ntlm, kerberos.
autoDiscoverKdc String
Enable/disable automatic discovery of KDC IP addresses. Valid values: disable, enable.
connectProtocol String
Connection protocol used to connect to MS Exchange service. Valid values: rpc-over-tcp, rpc-over-http, rpc-over-https.
domainName String
MS Exchange server fully qualified domain name.
httpAuthType String
Authentication security type used for the HTTP transport. Valid values: ntlm, basic.
ip String
Server IPv4 address.
ip6 String
Ip6.
kdcIps List<String>
KDC IPv4 addresses for Kerberos authentication.
name String
MS Exchange server entry name.
objectUserExchangeId String
an identifier for the resource with format {{name}}.
passwords List<String>
Password for the specified username.
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.
serverName String
MS Exchange server hostname.
sslMinProtoVersion String
Minimum SSL/TLS protocol version for HTTPS transport (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
username String
User name used to sign in to the server. Must have proper permissions for service.
addrType string
Addr-Type. Valid values: ipv4, ipv6.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
authLevel string
Authentication security level used for the RPC protocol layer. Valid values: low, medium, normal, high, connect, call, packet, integrity, privacy.
authType string
Authentication security type used for the RPC protocol layer. Valid values: spnego, ntlm, kerberos.
autoDiscoverKdc string
Enable/disable automatic discovery of KDC IP addresses. Valid values: disable, enable.
connectProtocol string
Connection protocol used to connect to MS Exchange service. Valid values: rpc-over-tcp, rpc-over-http, rpc-over-https.
domainName string
MS Exchange server fully qualified domain name.
httpAuthType string
Authentication security type used for the HTTP transport. Valid values: ntlm, basic.
ip string
Server IPv4 address.
ip6 string
Ip6.
kdcIps string[]
KDC IPv4 addresses for Kerberos authentication.
name string
MS Exchange server entry name.
objectUserExchangeId string
an identifier for the resource with format {{name}}.
passwords string[]
Password for the specified username.
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.
serverName string
MS Exchange server hostname.
sslMinProtoVersion string
Minimum SSL/TLS protocol version for HTTPS transport (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
username string
User name used to sign in to the server. Must have proper permissions for service.
addr_type str
Addr-Type. Valid values: ipv4, ipv6.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
auth_level str
Authentication security level used for the RPC protocol layer. Valid values: low, medium, normal, high, connect, call, packet, integrity, privacy.
auth_type str
Authentication security type used for the RPC protocol layer. Valid values: spnego, ntlm, kerberos.
auto_discover_kdc str
Enable/disable automatic discovery of KDC IP addresses. Valid values: disable, enable.
connect_protocol str
Connection protocol used to connect to MS Exchange service. Valid values: rpc-over-tcp, rpc-over-http, rpc-over-https.
domain_name str
MS Exchange server fully qualified domain name.
http_auth_type str
Authentication security type used for the HTTP transport. Valid values: ntlm, basic.
ip str
Server IPv4 address.
ip6 str
Ip6.
kdc_ips Sequence[str]
KDC IPv4 addresses for Kerberos authentication.
name str
MS Exchange server entry name.
object_user_exchange_id str
an identifier for the resource with format {{name}}.
passwords Sequence[str]
Password for the specified username.
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.
server_name str
MS Exchange server hostname.
ssl_min_proto_version str
Minimum SSL/TLS protocol version for HTTPS transport (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
username str
User name used to sign in to the server. Must have proper permissions for service.
addrType String
Addr-Type. Valid values: ipv4, ipv6.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
authLevel String
Authentication security level used for the RPC protocol layer. Valid values: low, medium, normal, high, connect, call, packet, integrity, privacy.
authType String
Authentication security type used for the RPC protocol layer. Valid values: spnego, ntlm, kerberos.
autoDiscoverKdc String
Enable/disable automatic discovery of KDC IP addresses. Valid values: disable, enable.
connectProtocol String
Connection protocol used to connect to MS Exchange service. Valid values: rpc-over-tcp, rpc-over-http, rpc-over-https.
domainName String
MS Exchange server fully qualified domain name.
httpAuthType String
Authentication security type used for the HTTP transport. Valid values: ntlm, basic.
ip String
Server IPv4 address.
ip6 String
Ip6.
kdcIps List<String>
KDC IPv4 addresses for Kerberos authentication.
name String
MS Exchange server entry name.
objectUserExchangeId String
an identifier for the resource with format {{name}}.
passwords List<String>
Password for the specified username.
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.
serverName String
MS Exchange server hostname.
sslMinProtoVersion String
Minimum SSL/TLS protocol version for HTTPS transport (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
username String
User name used to sign in to the server. Must have proper permissions for service.

Outputs

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

Get an existing ObjectUserExchange 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?: ObjectUserExchangeState, opts?: CustomResourceOptions): ObjectUserExchange
@staticmethod
def get(resource_name: str,
        id: str,
        opts: Optional[ResourceOptions] = None,
        addr_type: Optional[str] = None,
        adom: Optional[str] = None,
        auth_level: Optional[str] = None,
        auth_type: Optional[str] = None,
        auto_discover_kdc: Optional[str] = None,
        connect_protocol: Optional[str] = None,
        domain_name: Optional[str] = None,
        http_auth_type: Optional[str] = None,
        ip: Optional[str] = None,
        ip6: Optional[str] = None,
        kdc_ips: Optional[Sequence[str]] = None,
        name: Optional[str] = None,
        object_user_exchange_id: Optional[str] = None,
        passwords: Optional[Sequence[str]] = None,
        scopetype: Optional[str] = None,
        server_name: Optional[str] = None,
        ssl_min_proto_version: Optional[str] = None,
        username: Optional[str] = None) -> ObjectUserExchange
func GetObjectUserExchange(ctx *Context, name string, id IDInput, state *ObjectUserExchangeState, opts ...ResourceOption) (*ObjectUserExchange, error)
public static ObjectUserExchange Get(string name, Input<string> id, ObjectUserExchangeState? state, CustomResourceOptions? opts = null)
public static ObjectUserExchange get(String name, Output<String> id, ObjectUserExchangeState state, CustomResourceOptions options)
resources:  _:    type: fortimanager:ObjectUserExchange    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:
AddrType string
Addr-Type. Valid values: ipv4, ipv6.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AuthLevel string
Authentication security level used for the RPC protocol layer. Valid values: low, medium, normal, high, connect, call, packet, integrity, privacy.
AuthType string
Authentication security type used for the RPC protocol layer. Valid values: spnego, ntlm, kerberos.
AutoDiscoverKdc string
Enable/disable automatic discovery of KDC IP addresses. Valid values: disable, enable.
ConnectProtocol string
Connection protocol used to connect to MS Exchange service. Valid values: rpc-over-tcp, rpc-over-http, rpc-over-https.
DomainName string
MS Exchange server fully qualified domain name.
HttpAuthType string
Authentication security type used for the HTTP transport. Valid values: ntlm, basic.
Ip string
Server IPv4 address.
Ip6 string
Ip6.
KdcIps List<string>
KDC IPv4 addresses for Kerberos authentication.
Name string
MS Exchange server entry name.
ObjectUserExchangeId string
an identifier for the resource with format {{name}}.
Passwords List<string>
Password for the specified username.
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.
ServerName string
MS Exchange server hostname.
SslMinProtoVersion string
Minimum SSL/TLS protocol version for HTTPS transport (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
Username string
User name used to sign in to the server. Must have proper permissions for service.
AddrType string
Addr-Type. Valid values: ipv4, ipv6.
Adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
AuthLevel string
Authentication security level used for the RPC protocol layer. Valid values: low, medium, normal, high, connect, call, packet, integrity, privacy.
AuthType string
Authentication security type used for the RPC protocol layer. Valid values: spnego, ntlm, kerberos.
AutoDiscoverKdc string
Enable/disable automatic discovery of KDC IP addresses. Valid values: disable, enable.
ConnectProtocol string
Connection protocol used to connect to MS Exchange service. Valid values: rpc-over-tcp, rpc-over-http, rpc-over-https.
DomainName string
MS Exchange server fully qualified domain name.
HttpAuthType string
Authentication security type used for the HTTP transport. Valid values: ntlm, basic.
Ip string
Server IPv4 address.
Ip6 string
Ip6.
KdcIps []string
KDC IPv4 addresses for Kerberos authentication.
Name string
MS Exchange server entry name.
ObjectUserExchangeId string
an identifier for the resource with format {{name}}.
Passwords []string
Password for the specified username.
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.
ServerName string
MS Exchange server hostname.
SslMinProtoVersion string
Minimum SSL/TLS protocol version for HTTPS transport (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
Username string
User name used to sign in to the server. Must have proper permissions for service.
addrType String
Addr-Type. Valid values: ipv4, ipv6.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
authLevel String
Authentication security level used for the RPC protocol layer. Valid values: low, medium, normal, high, connect, call, packet, integrity, privacy.
authType String
Authentication security type used for the RPC protocol layer. Valid values: spnego, ntlm, kerberos.
autoDiscoverKdc String
Enable/disable automatic discovery of KDC IP addresses. Valid values: disable, enable.
connectProtocol String
Connection protocol used to connect to MS Exchange service. Valid values: rpc-over-tcp, rpc-over-http, rpc-over-https.
domainName String
MS Exchange server fully qualified domain name.
httpAuthType String
Authentication security type used for the HTTP transport. Valid values: ntlm, basic.
ip String
Server IPv4 address.
ip6 String
Ip6.
kdcIps List<String>
KDC IPv4 addresses for Kerberos authentication.
name String
MS Exchange server entry name.
objectUserExchangeId String
an identifier for the resource with format {{name}}.
passwords List<String>
Password for the specified username.
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.
serverName String
MS Exchange server hostname.
sslMinProtoVersion String
Minimum SSL/TLS protocol version for HTTPS transport (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
username String
User name used to sign in to the server. Must have proper permissions for service.
addrType string
Addr-Type. Valid values: ipv4, ipv6.
adom string
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
authLevel string
Authentication security level used for the RPC protocol layer. Valid values: low, medium, normal, high, connect, call, packet, integrity, privacy.
authType string
Authentication security type used for the RPC protocol layer. Valid values: spnego, ntlm, kerberos.
autoDiscoverKdc string
Enable/disable automatic discovery of KDC IP addresses. Valid values: disable, enable.
connectProtocol string
Connection protocol used to connect to MS Exchange service. Valid values: rpc-over-tcp, rpc-over-http, rpc-over-https.
domainName string
MS Exchange server fully qualified domain name.
httpAuthType string
Authentication security type used for the HTTP transport. Valid values: ntlm, basic.
ip string
Server IPv4 address.
ip6 string
Ip6.
kdcIps string[]
KDC IPv4 addresses for Kerberos authentication.
name string
MS Exchange server entry name.
objectUserExchangeId string
an identifier for the resource with format {{name}}.
passwords string[]
Password for the specified username.
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.
serverName string
MS Exchange server hostname.
sslMinProtoVersion string
Minimum SSL/TLS protocol version for HTTPS transport (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
username string
User name used to sign in to the server. Must have proper permissions for service.
addr_type str
Addr-Type. Valid values: ipv4, ipv6.
adom str
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
auth_level str
Authentication security level used for the RPC protocol layer. Valid values: low, medium, normal, high, connect, call, packet, integrity, privacy.
auth_type str
Authentication security type used for the RPC protocol layer. Valid values: spnego, ntlm, kerberos.
auto_discover_kdc str
Enable/disable automatic discovery of KDC IP addresses. Valid values: disable, enable.
connect_protocol str
Connection protocol used to connect to MS Exchange service. Valid values: rpc-over-tcp, rpc-over-http, rpc-over-https.
domain_name str
MS Exchange server fully qualified domain name.
http_auth_type str
Authentication security type used for the HTTP transport. Valid values: ntlm, basic.
ip str
Server IPv4 address.
ip6 str
Ip6.
kdc_ips Sequence[str]
KDC IPv4 addresses for Kerberos authentication.
name str
MS Exchange server entry name.
object_user_exchange_id str
an identifier for the resource with format {{name}}.
passwords Sequence[str]
Password for the specified username.
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.
server_name str
MS Exchange server hostname.
ssl_min_proto_version str
Minimum SSL/TLS protocol version for HTTPS transport (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
username str
User name used to sign in to the server. Must have proper permissions for service.
addrType String
Addr-Type. Valid values: ipv4, ipv6.
adom String
Adom. This value is valid only when the scopetype is adom, otherwise the value of adom in the provider will be inherited.
authLevel String
Authentication security level used for the RPC protocol layer. Valid values: low, medium, normal, high, connect, call, packet, integrity, privacy.
authType String
Authentication security type used for the RPC protocol layer. Valid values: spnego, ntlm, kerberos.
autoDiscoverKdc String
Enable/disable automatic discovery of KDC IP addresses. Valid values: disable, enable.
connectProtocol String
Connection protocol used to connect to MS Exchange service. Valid values: rpc-over-tcp, rpc-over-http, rpc-over-https.
domainName String
MS Exchange server fully qualified domain name.
httpAuthType String
Authentication security type used for the HTTP transport. Valid values: ntlm, basic.
ip String
Server IPv4 address.
ip6 String
Ip6.
kdcIps List<String>
KDC IPv4 addresses for Kerberos authentication.
name String
MS Exchange server entry name.
objectUserExchangeId String
an identifier for the resource with format {{name}}.
passwords List<String>
Password for the specified username.
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.
serverName String
MS Exchange server hostname.
sslMinProtoVersion String
Minimum SSL/TLS protocol version for HTTPS transport (default is to follow system global setting). Valid values: default, TLSv1-1, TLSv1-2, SSLv3, TLSv1.
username String
User name used to sign in to the server. Must have proper permissions for service.

Import

ObjectUser Exchange can be imported using any of these accepted formats:

$ export “FORTIMANAGER_IMPORT_TABLE”=“true”

$ pulumi import fortimanager:index/objectUserExchange:ObjectUserExchange labelname {{name}}
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.