You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: strongdm/models.py
+12-3Lines changed: 12 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -25817,6 +25817,7 @@ class RDPCert:
25817
25817
'port_override',
25818
25818
'proxy_cluster_id',
25819
25819
'secret_store_id',
25820
+
'server_fqdn',
25820
25821
'sid',
25821
25822
'subdomain',
25822
25823
'tags',
@@ -25839,6 +25840,7 @@ def __init__(
25839
25840
port_override=None,
25840
25841
proxy_cluster_id=None,
25841
25842
secret_store_id=None,
25843
+
server_fqdn=None,
25842
25844
sid=None,
25843
25845
subdomain=None,
25844
25846
tags=None,
@@ -25850,7 +25852,7 @@ def __init__(
25850
25852
'''
25851
25853
self.dc_hostnames = dc_hostnames if dc_hostnames is not None else ''
25852
25854
'''
25853
-
Comma-separated list of Active Directory Domain Controller hostnamesfor LDAPS SID resolution. Utilized for strong certificate mapping in full enforcement mode when the identity alias does not specify a SID.
25855
+
Comma-separated list of Active Directory Domain Controller hostnames. Required in on-premises AD environments for Kerberos Network Level Authentication (NLA), and for LDAPS SID resolutionfor strong certificate mapping in full enforcement mode when the identity alias does not specify a SID. Unused for Entra ID.
25854
25856
'''
25855
25857
self.egress_filter = egress_filter if egress_filter is not None else ''
25856
25858
'''
@@ -25870,7 +25872,7 @@ def __init__(
25870
25872
'''
25871
25873
self.identity_alias_healthcheck_username = identity_alias_healthcheck_username if identity_alias_healthcheck_username is not None else ''
25872
25874
'''
25873
-
The username to use for healthchecks, when clients otherwise connect with their own identity alias username.
25875
+
Username of the AD service account for health checks, and LDAPS SID resolution if necessary. Required for on-premises AD environments, unused for Entra ID.
25874
25876
'''
25875
25877
self.identity_set_id = identity_set_id if identity_set_id is not None else ''
25876
25878
'''
@@ -25900,9 +25902,13 @@ def __init__(
25900
25902
'''
25901
25903
ID of the secret store containing credentials for this resource, if any.
25902
25904
'''
25905
+
self.server_fqdn = server_fqdn if server_fqdn is not None else ''
25906
+
'''
25907
+
Fully-qualified DNS name of the target Windows server, including the AD domain. Must match the Service Principal Name (SPN) of the server in AD. Required in on-premises AD environments for Kerberos Network Level Authentication (NLA), unused for Entra ID.
25908
+
'''
25903
25909
self.sid = sid if sid is not None else ''
25904
25910
'''
25905
-
Windows Security Identifier (SID) of the configured Username, required for strong certificate mapping in full enforcement mode.
25911
+
Windows Security Identifier (SID) of the configured Username, or AD service account if using LDAPS SID resolution. Required in on-premises AD environments for strong certificate mapping in full enforcement mode, unused for Entra ID.
25906
25912
'''
25907
25913
self.subdomain = subdomain if subdomain is not None else ''
0 commit comments