TrustResponse

data class TrustResponse(val createTime: String, val lastKnownTrustConnectedHeartbeatTime: String, val selectiveAuthentication: Boolean, val state: String, val stateDescription: String, val targetDnsIpAddresses: List<String>, val targetDomainName: String, val trustDirection: String, val trustHandshakeSecret: String, val trustType: String, val updateTime: String)

Represents a relationship between two domains which makes it possible for users in one domain to be authenticated by a dc in another domain. Refer https://docs.microsoft.com/en-us/previous-versions/windows/it-pro/windows-server-2008-R2-and-2008/cc731335(v%3dws.10) If the trust is being changed, it will be placed into the UPDATING state, which indicates that the resource is being reconciled. At this point, Get will reflect an intermediate state.

Constructors

Link copied to clipboard
fun TrustResponse(createTime: String, lastKnownTrustConnectedHeartbeatTime: String, selectiveAuthentication: Boolean, state: String, stateDescription: String, targetDnsIpAddresses: List<String>, targetDomainName: String, trustDirection: String, trustHandshakeSecret: String, trustType: String, updateTime: String)

Types

Link copied to clipboard
object Companion

Properties

Link copied to clipboard

The time the instance was created.

Link copied to clipboard

The last heartbeat time when the trust was known to be connected.

Link copied to clipboard

The trust authentication type which decides whether the trusted side has forest/domain wide access or selective access to approved set of resources.

Link copied to clipboard

The current state of this trust.

Link copied to clipboard

Additional information about the current state of this trust, if available.

Link copied to clipboard

The target dns server ip addresses which can resolve the remote domain involved in trust.

Link copied to clipboard

The fully qualified target domain name which will be in trust with current domain.

Link copied to clipboard

The trust direction decides the current domain is trusted, trusting or both.

Link copied to clipboard

Input only, and will not be stored. The trust secret used for handshake with target domain.

Link copied to clipboard

The type of trust represented by the trust resource.

Link copied to clipboard

Last update time.