forked from aws/aws-sdk-go
-
Notifications
You must be signed in to change notification settings - Fork 0
/
errors.go
105 lines (87 loc) · 3.88 KB
/
errors.go
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
// Code generated by private/model/cli/gen-api/main.go. DO NOT EDIT.
package workdocs
const (
// ErrCodeConcurrentModificationException for service response error code
// "ConcurrentModificationException".
//
// The resource hierarchy is changing.
ErrCodeConcurrentModificationException = "ConcurrentModificationException"
// ErrCodeDeactivatingLastSystemUserException for service response error code
// "DeactivatingLastSystemUserException".
//
// The last user in the organization is being deactivated.
ErrCodeDeactivatingLastSystemUserException = "DeactivatingLastSystemUserException"
// ErrCodeEntityAlreadyExistsException for service response error code
// "EntityAlreadyExistsException".
//
// The resource already exists.
ErrCodeEntityAlreadyExistsException = "EntityAlreadyExistsException"
// ErrCodeEntityNotExistsException for service response error code
// "EntityNotExistsException".
//
// The resource does not exist.
ErrCodeEntityNotExistsException = "EntityNotExistsException"
// ErrCodeFailedDependencyException for service response error code
// "FailedDependencyException".
//
// The AWS Directory Service cannot reach an on-premises instance. Or a dependency
// under the control of the organization is failing, such as a connected active
// directory.
ErrCodeFailedDependencyException = "FailedDependencyException"
// ErrCodeIllegalUserStateException for service response error code
// "IllegalUserStateException".
//
// The user is undergoing transfer of ownership.
ErrCodeIllegalUserStateException = "IllegalUserStateException"
// ErrCodeInvalidArgumentException for service response error code
// "InvalidArgumentException".
//
// The pagination marker and/or limit fields are not valid.
ErrCodeInvalidArgumentException = "InvalidArgumentException"
// ErrCodeInvalidOperationException for service response error code
// "InvalidOperationException".
//
// The operation is invalid.
ErrCodeInvalidOperationException = "InvalidOperationException"
// ErrCodeLimitExceededException for service response error code
// "LimitExceededException".
//
// You've exceeded the maximum of 100,000 folders under the parent folder.
ErrCodeLimitExceededException = "LimitExceededException"
// ErrCodeProhibitedStateException for service response error code
// "ProhibitedStateException".
//
// The specified document version is not in the INITIALIZED state.
ErrCodeProhibitedStateException = "ProhibitedStateException"
// ErrCodeServiceUnavailableException for service response error code
// "ServiceUnavailableException".
//
// One or more of the dependencies is unavailable.
ErrCodeServiceUnavailableException = "ServiceUnavailableException"
// ErrCodeStorageLimitExceededException for service response error code
// "StorageLimitExceededException".
//
// The storage limit has been exceeded.
ErrCodeStorageLimitExceededException = "StorageLimitExceededException"
// ErrCodeStorageLimitWillExceedException for service response error code
// "StorageLimitWillExceedException".
//
// The storage limit will be exceeded.
ErrCodeStorageLimitWillExceedException = "StorageLimitWillExceedException"
// ErrCodeTooManySubscriptionsException for service response error code
// "TooManySubscriptionsException".
//
// You've reached the limit on the number of subscriptions for the WorkDocs
// instance.
ErrCodeTooManySubscriptionsException = "TooManySubscriptionsException"
// ErrCodeUnauthorizedOperationException for service response error code
// "UnauthorizedOperationException".
//
// The operation is not permitted.
ErrCodeUnauthorizedOperationException = "UnauthorizedOperationException"
// ErrCodeUnauthorizedResourceAccessException for service response error code
// "UnauthorizedResourceAccessException".
//
// The caller does not have access to perform the action on the resource.
ErrCodeUnauthorizedResourceAccessException = "UnauthorizedResourceAccessException"
)