2020-09-04 21:29:13 +00:00
|
|
|
// Code generated by msgraph.go/gen DO NOT EDIT.
|
2019-12-26 22:12:28 +00:00
|
|
|
|
|
|
|
package msgraph
|
|
|
|
|
|
|
|
import "time"
|
|
|
|
|
2020-03-15 22:43:46 +00:00
|
|
|
// NDESConnector Entity which represents an OnPrem Ndes connector.
|
|
|
|
type NDESConnector struct {
|
|
|
|
// Entity is the base model of NDESConnector
|
2019-12-26 22:12:28 +00:00
|
|
|
Entity
|
|
|
|
// LastConnectionDateTime Last connection time for the Ndes Connector
|
|
|
|
LastConnectionDateTime *time.Time `json:"lastConnectionDateTime,omitempty"`
|
|
|
|
// State Ndes Connector Status
|
2020-03-15 22:43:46 +00:00
|
|
|
State *NDESConnectorState `json:"state,omitempty"`
|
2019-12-26 22:12:28 +00:00
|
|
|
// DisplayName The friendly name of the Ndes Connector.
|
|
|
|
DisplayName *string `json:"displayName,omitempty"`
|
|
|
|
}
|