trustedDomain property

  1. @TagNumber.new(2)
String get trustedDomain

Trusted domain to be added to the instance. Must be a valid domain name. Once the domain is added, it can be used in API responses like OIDC discovery, email templates, and more. This can be used in cases where the API is accessed through a different domain than the instance domain, e.g. proxy setups and custom login UIs. Unlike custom domains, trusted domains are not used to route requests to this instance and therefore do not need to be uniquely assigned to an instance.

Implementation

@$pb.TagNumber(2)
$core.String get trustedDomain => $_getSZ(1);
  1. @TagNumber.new(2)
set trustedDomain (String value)

Implementation

@$pb.TagNumber(2)
set trustedDomain($core.String value) => $_setString(1, value);