forked from microsoftgraph/msgraph-sdk-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMobileAppContentFileUploadState.java
More file actions
81 lines (78 loc) · 1.76 KB
/
Copy pathMobileAppContentFileUploadState.java
File metadata and controls
81 lines (78 loc) · 1.76 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
// ------------------------------------------------------------------------------
// 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 Mobile App Content File Upload State.
*/
public enum MobileAppContentFileUploadState
{
/**
* success
*/
SUCCESS,
/**
* transient Error
*/
TRANSIENT_ERROR,
/**
* error
*/
ERROR,
/**
* unknown
*/
UNKNOWN,
/**
* azure Storage Uri Request Success
*/
AZURE_STORAGE_URI_REQUEST_SUCCESS,
/**
* azure Storage Uri Request Pending
*/
AZURE_STORAGE_URI_REQUEST_PENDING,
/**
* azure Storage Uri Request Failed
*/
AZURE_STORAGE_URI_REQUEST_FAILED,
/**
* azure Storage Uri Request Timed Out
*/
AZURE_STORAGE_URI_REQUEST_TIMED_OUT,
/**
* azure Storage Uri Renewal Success
*/
AZURE_STORAGE_URI_RENEWAL_SUCCESS,
/**
* azure Storage Uri Renewal Pending
*/
AZURE_STORAGE_URI_RENEWAL_PENDING,
/**
* azure Storage Uri Renewal Failed
*/
AZURE_STORAGE_URI_RENEWAL_FAILED,
/**
* azure Storage Uri Renewal Timed Out
*/
AZURE_STORAGE_URI_RENEWAL_TIMED_OUT,
/**
* commit File Success
*/
COMMIT_FILE_SUCCESS,
/**
* commit File Pending
*/
COMMIT_FILE_PENDING,
/**
* commit File Failed
*/
COMMIT_FILE_FAILED,
/**
* commit File Timed Out
*/
COMMIT_FILE_TIMED_OUT,
/**
* For MobileAppContentFileUploadState values that were not expected from the service
*/
UNEXPECTED_VALUE
}