-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patho365Consumption.gql
46 lines (46 loc) · 1.21 KB
/
o365Consumption.gql
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
query o365Consumption($o365OrgId: UUID $mspOrgId: UUID) {
o365Consumption(input: {o365OrgId: $o365OrgId mspOrgId: $mspOrgId}) {
consumption {
usersProtected
fetbConsumed
protectedUserDetails {
userMailboxProtected
sharedMailboxProtected
resourceMailboxProtected
unlicensedUserMailboxProtected
unlicensedSharedMailboxProtected
unlicensedResourceMailboxProtected
}
}
consumptionPerMspOrg {
mspOrgId
consumption {
usersProtected
fetbConsumed
protectedUserDetails {
userMailboxProtected
sharedMailboxProtected
resourceMailboxProtected
unlicensedUserMailboxProtected
unlicensedSharedMailboxProtected
unlicensedResourceMailboxProtected
}
}
}
consumptionPerWorkloadType {
workloadType
consumption {
usersProtected
fetbConsumed
protectedUserDetails {
userMailboxProtected
sharedMailboxProtected
resourceMailboxProtected
unlicensedUserMailboxProtected
unlicensedSharedMailboxProtected
unlicensedResourceMailboxProtected
}
}
}
}
}