From 9785edd26366be8eb11c2435f50f90a5c8eea7fc Mon Sep 17 00:00:00 2001 From: Wim Date: Sun, 8 Mar 2020 17:08:18 +0100 Subject: Remove replace directives and use own fork to make go get work again (#1028) See https://github.com/golang/go/issues/30354 go get doesn't honor the go.mod replace options. --- .../beta/DeviceManagementPartnerModel.go | 33 ++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementPartnerModel.go (limited to 'vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementPartnerModel.go') diff --git a/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementPartnerModel.go b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementPartnerModel.go new file mode 100644 index 00000000..aebca190 --- /dev/null +++ b/vendor/github.com/matterbridge/msgraph.go/beta/DeviceManagementPartnerModel.go @@ -0,0 +1,33 @@ +// Code generated by msgraph-generate.go DO NOT EDIT. + +package msgraph + +import "time" + +// DeviceManagementPartner Entity which represents a connection to device management partner. +type DeviceManagementPartner struct { + // Entity is the base model of DeviceManagementPartner + Entity + // LastHeartbeatDateTime Timestamp of last heartbeat after admin enabled option Connect to Device management Partner + LastHeartbeatDateTime *time.Time `json:"lastHeartbeatDateTime,omitempty"` + // PartnerState Partner state of this tenant + PartnerState *DeviceManagementPartnerTenantState `json:"partnerState,omitempty"` + // PartnerAppType Partner App type + PartnerAppType *DeviceManagementPartnerAppType `json:"partnerAppType,omitempty"` + // SingleTenantAppID Partner Single tenant App id + SingleTenantAppID *string `json:"singleTenantAppId,omitempty"` + // DisplayName Partner display name + DisplayName *string `json:"displayName,omitempty"` + // IsConfigured Whether device management partner is configured or not + IsConfigured *bool `json:"isConfigured,omitempty"` + // WhenPartnerDevicesWillBeRemoved DateTime in UTC when PartnerDevices will be removed. This will become obselete soon. + WhenPartnerDevicesWillBeRemoved *time.Time `json:"whenPartnerDevicesWillBeRemoved,omitempty"` + // WhenPartnerDevicesWillBeMarkedAsNonCompliant DateTime in UTC when PartnerDevices will be marked as NonCompliant. This will become obselete soon. + WhenPartnerDevicesWillBeMarkedAsNonCompliant *time.Time `json:"whenPartnerDevicesWillBeMarkedAsNonCompliant,omitempty"` + // WhenPartnerDevicesWillBeRemovedDateTime DateTime in UTC when PartnerDevices will be removed + WhenPartnerDevicesWillBeRemovedDateTime *time.Time `json:"whenPartnerDevicesWillBeRemovedDateTime,omitempty"` + // WhenPartnerDevicesWillBeMarkedAsNonCompliantDateTime DateTime in UTC when PartnerDevices will be marked as NonCompliant + WhenPartnerDevicesWillBeMarkedAsNonCompliantDateTime *time.Time `json:"whenPartnerDevicesWillBeMarkedAsNonCompliantDateTime,omitempty"` + // GroupsRequiringPartnerEnrollment User groups that specifies whether enrollment is through partner. + GroupsRequiringPartnerEnrollment []DeviceManagementPartnerAssignment `json:"groupsRequiringPartnerEnrollment,omitempty"` +} -- cgit v1.2.3