ConnectionType#

class ansys.systemcoupling.core.ConnectionType(*values)#

Enum containing the various gRPC connection options that are supported.

Note that not all options are supported in all contexts. For example, in the case of calling launch() to launch a process and connect to it, only local host connections are currently supported.

Attributes

ConnectionType.SECURE_LOCAL

The usual default.

ConnectionType.UNIX_DOMAIN_SOCKETS

Use a standard Unix domain socket to connect.

ConnectionType.WINDOWS_NAMED_USER_AUTHENTICATION

A local connection with additional authentication that ensures the client and server are running as the same Windows user.

ConnectionType.MTLS_LOCAL

A local connection authenticated using mutual TLS.

ConnectionType.MTLS_REMOTE

A remote connection authenticated using mutual TLS.

ConnectionType.INSECURE_LOCAL

A local connection with no authentication mechanism.

ConnectionType.INSECURE_REMOTE

A remote connection with no authentication mechanism.