forked from microsoftgraph/msgraph-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIosUpdatesInstallStatus.java
More file actions
85 lines (82 loc) · 1.66 KB
/
Copy pathIosUpdatesInstallStatus.java
File metadata and controls
85 lines (82 loc) · 1.66 KB
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
// ------------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License. See License in the project root for license information.
// ------------------------------------------------------------------------------
package com.microsoft.graph.models.generated;
/**
* The Enum Ios Updates Install Status.
*/
public enum IosUpdatesInstallStatus
{
/**
* success
*/
SUCCESS,
/**
* available
*/
AVAILABLE,
/**
* idle
*/
IDLE,
/**
* unknown
*/
UNKNOWN,
/**
* downloading
*/
DOWNLOADING,
/**
* download Failed
*/
DOWNLOAD_FAILED,
/**
* download Requires Computer
*/
DOWNLOAD_REQUIRES_COMPUTER,
/**
* download Insufficient Space
*/
DOWNLOAD_INSUFFICIENT_SPACE,
/**
* download Insufficient Power
*/
DOWNLOAD_INSUFFICIENT_POWER,
/**
* download Insufficient Network
*/
DOWNLOAD_INSUFFICIENT_NETWORK,
/**
* installing
*/
INSTALLING,
/**
* install Insufficient Space
*/
INSTALL_INSUFFICIENT_SPACE,
/**
* install Insufficient Power
*/
INSTALL_INSUFFICIENT_POWER,
/**
* install Phone Call In Progress
*/
INSTALL_PHONE_CALL_IN_PROGRESS,
/**
* install Failed
*/
INSTALL_FAILED,
/**
* not Supported Operation
*/
NOT_SUPPORTED_OPERATION,
/**
* shared Device User Logged In Error
*/
SHARED_DEVICE_USER_LOGGED_IN_ERROR,
/**
* For IosUpdatesInstallStatus values that were not expected from the service
*/
UNEXPECTED_VALUE
}