Yes, GTS will issue TLS certificates that contain the clientAuth capability, but
only in conjunction with the serverAuth capability that is used by default.
clientAuth and mTLS use cases are better suited for a private PKI, such as
Google Cloud's
Certificate Authority Service.
The ability to get clientAuth certificates is likely to go away in the future as
rules governing the WebPKI change. Chrome has signalled their intention to
prohibit clientAuth in the WebPKI.
A Certificate Signing Request (CSR) that sets both the clientAuth and serverAuth
capabilities may be created with OpenSSL:
$ openssl req -new -keyout my-site.key -out my-site.csr \
-subj "/CN=my-site.com" \
-addext extendedKeyUsage=clientAuth,serverAuth \
-addext subjectAltName=DNS:my-site.com,DNS:my-other-site.com
ACME clients differ a bit in terms of how to pass in a CSR, so check your ACME
client's documentation, but generally it will be something like certbot, which
uses a `--csr` flag instead of `--domains` for requests using a CSR.