blob: 8073038bcee021c68bb66e4955f26bdb94726b90 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
// Code generated by msgraph-generate.go DO NOT EDIT.
package msgraph
// ImportedWindowsAutopilotDeviceIdentityUploadStatus undocumented
type ImportedWindowsAutopilotDeviceIdentityUploadStatus int
const (
// ImportedWindowsAutopilotDeviceIdentityUploadStatusVNoUpload undocumented
ImportedWindowsAutopilotDeviceIdentityUploadStatusVNoUpload ImportedWindowsAutopilotDeviceIdentityUploadStatus = 0
// ImportedWindowsAutopilotDeviceIdentityUploadStatusVPending undocumented
ImportedWindowsAutopilotDeviceIdentityUploadStatusVPending ImportedWindowsAutopilotDeviceIdentityUploadStatus = 1
// ImportedWindowsAutopilotDeviceIdentityUploadStatusVComplete undocumented
ImportedWindowsAutopilotDeviceIdentityUploadStatusVComplete ImportedWindowsAutopilotDeviceIdentityUploadStatus = 2
// ImportedWindowsAutopilotDeviceIdentityUploadStatusVError undocumented
ImportedWindowsAutopilotDeviceIdentityUploadStatusVError ImportedWindowsAutopilotDeviceIdentityUploadStatus = 3
)
// ImportedWindowsAutopilotDeviceIdentityUploadStatusPNoUpload returns a pointer to ImportedWindowsAutopilotDeviceIdentityUploadStatusVNoUpload
func ImportedWindowsAutopilotDeviceIdentityUploadStatusPNoUpload() *ImportedWindowsAutopilotDeviceIdentityUploadStatus {
v := ImportedWindowsAutopilotDeviceIdentityUploadStatusVNoUpload
return &v
}
// ImportedWindowsAutopilotDeviceIdentityUploadStatusPPending returns a pointer to ImportedWindowsAutopilotDeviceIdentityUploadStatusVPending
func ImportedWindowsAutopilotDeviceIdentityUploadStatusPPending() *ImportedWindowsAutopilotDeviceIdentityUploadStatus {
v := ImportedWindowsAutopilotDeviceIdentityUploadStatusVPending
return &v
}
// ImportedWindowsAutopilotDeviceIdentityUploadStatusPComplete returns a pointer to ImportedWindowsAutopilotDeviceIdentityUploadStatusVComplete
func ImportedWindowsAutopilotDeviceIdentityUploadStatusPComplete() *ImportedWindowsAutopilotDeviceIdentityUploadStatus {
v := ImportedWindowsAutopilotDeviceIdentityUploadStatusVComplete
return &v
}
// ImportedWindowsAutopilotDeviceIdentityUploadStatusPError returns a pointer to ImportedWindowsAutopilotDeviceIdentityUploadStatusVError
func ImportedWindowsAutopilotDeviceIdentityUploadStatusPError() *ImportedWindowsAutopilotDeviceIdentityUploadStatus {
v := ImportedWindowsAutopilotDeviceIdentityUploadStatusVError
return &v
}
|