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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
// GENERATED CODE

use crate::api_default_imports::*;

resource_api_client!(AdminApiClient, ResourceIdentity::Admin);

impl AdminApiClient {
    get!(
        doc: "Get admin",
        name: get_admin,
        path: "/admin"
    );
    patch!(
        doc: "Update admin",
        name: update_admin,
        path: "/admin",
        body: true
    );
    delete!(
        doc: "Delete navigation property serviceAnnouncement for admin",
        name: delete_service_announcement,
        path: "/admin/serviceAnnouncement"
    );
    get!(
        doc: "Get serviceAnnouncement from admin",
        name: get_service_announcement,
        path: "/admin/serviceAnnouncement"
    );
    patch!(
        doc: "Update the navigation property serviceAnnouncement in admin",
        name: update_service_announcement,
        path: "/admin/serviceAnnouncement",
        body: true
    );
    post!(
        doc: "Create new navigation property to healthOverviews for admin",
        name: create_health_overviews,
        path: "/admin/serviceAnnouncement/healthOverviews",
        body: true
    );
    get!(
        doc: "List healthOverviews",
        name: list_health_overviews,
        path: "/admin/serviceAnnouncement/healthOverviews"
    );
    get!(
        doc: "Get the number of the resource",
        name: get_health_overviews_count,
        path: "/admin/serviceAnnouncement/healthOverviews/$count"
    );
    delete!(
        doc: "Delete navigation property healthOverviews for admin",
        name: delete_health_overviews,
        path: "/admin/serviceAnnouncement/healthOverviews/{{id}}",
        params: service_health_id
    );
    get!(
        doc: "Get healthOverviews from admin",
        name: get_health_overviews,
        path: "/admin/serviceAnnouncement/healthOverviews/{{id}}",
        params: service_health_id
    );
    patch!(
        doc: "Update the navigation property healthOverviews in admin",
        name: update_health_overviews,
        path: "/admin/serviceAnnouncement/healthOverviews/{{id}}",
        body: true,
        params: service_health_id
    );
    post!(
        doc: "Create new navigation property to issues for admin",
        name: create_health_overview_issues,
        path: "/admin/serviceAnnouncement/healthOverviews/{{id}}/issues",
        body: true,
        params: service_health_id
    );
    get!(
        doc: "Get issues from admin",
        name: list_health_overview_issues,
        path: "/admin/serviceAnnouncement/healthOverviews/{{id}}/issues",
        params: service_health_id
    );
    get!(
        doc: "Get the number of the resource",
        name: get_health_overview_issues_count,
        path: "/admin/serviceAnnouncement/healthOverviews/{{id}}/issues/$count",
        params: service_health_id
    );
    delete!(
        doc: "Delete navigation property issues for admin",
        name: delete_health_overview_issues,
        path: "/admin/serviceAnnouncement/healthOverviews/{{id}}/issues/{{id2}}",
        params: service_health_id, service_health_issue_id
    );
    get!(
        doc: "Get issues from admin",
        name: get_health_overview_issues,
        path: "/admin/serviceAnnouncement/healthOverviews/{{id}}/issues/{{id2}}",
        params: service_health_id, service_health_issue_id
    );
    patch!(
        doc: "Update the navigation property issues in admin",
        name: update_health_overview_issues,
        path: "/admin/serviceAnnouncement/healthOverviews/{{id}}/issues/{{id2}}",
        body: true,
        params: service_health_id, service_health_issue_id
    );
    get!(
        doc: "Invoke function incidentReport",
        name: health_overviews_incident_report,
        path: "/admin/serviceAnnouncement/healthOverviews/{{id}}/issues/{{id2}}/microsoft.graph.incidentReport()",
        params: service_health_id, service_health_issue_id
    );
    post!(
        doc: "Create new navigation property to issues for admin",
        name: create_issues,
        path: "/admin/serviceAnnouncement/issues",
        body: true
    );
    get!(
        doc: "List issues",
        name: list_issues,
        path: "/admin/serviceAnnouncement/issues"
    );
    get!(
        doc: "Get the number of the resource",
        name: get_issues_count,
        path: "/admin/serviceAnnouncement/issues/$count"
    );
    delete!(
        doc: "Delete navigation property issues for admin",
        name: delete_issues,
        path: "/admin/serviceAnnouncement/issues/{{id}}",
        params: service_health_issue_id
    );
    get!(
        doc: "Get issues from admin",
        name: get_issues,
        path: "/admin/serviceAnnouncement/issues/{{id}}",
        params: service_health_issue_id
    );
    patch!(
        doc: "Update the navigation property issues in admin",
        name: update_issues,
        path: "/admin/serviceAnnouncement/issues/{{id}}",
        body: true,
        params: service_health_issue_id
    );
    get!(
        doc: "Invoke function incidentReport",
        name: incident_report,
        path: "/admin/serviceAnnouncement/issues/{{id}}/microsoft.graph.incidentReport()",
        params: service_health_issue_id
    );
    post!(
        doc: "Create new navigation property to messages for admin",
        name: create_messages,
        path: "/admin/serviceAnnouncement/messages",
        body: true
    );
    get!(
        doc: "List serviceAnnouncement messages",
        name: list_messages,
        path: "/admin/serviceAnnouncement/messages"
    );
    get!(
        doc: "Get the number of the resource",
        name: get_messages_count,
        path: "/admin/serviceAnnouncement/messages/$count"
    );
    post!(
        doc: "Invoke action archive",
        name: archive,
        path: "/admin/serviceAnnouncement/messages/microsoft.graph.archive",
        body: true
    );
    post!(
        doc: "Invoke action favorite",
        name: favorite,
        path: "/admin/serviceAnnouncement/messages/microsoft.graph.favorite",
        body: true
    );
    post!(
        doc: "Invoke action markRead",
        name: mark_read,
        path: "/admin/serviceAnnouncement/messages/microsoft.graph.markRead",
        body: true
    );
    post!(
        doc: "Invoke action markUnread",
        name: mark_unread,
        path: "/admin/serviceAnnouncement/messages/microsoft.graph.markUnread",
        body: true
    );
    post!(
        doc: "Invoke action unarchive",
        name: unarchive,
        path: "/admin/serviceAnnouncement/messages/microsoft.graph.unarchive",
        body: true
    );
    post!(
        doc: "Invoke action unfavorite",
        name: unfavorite,
        path: "/admin/serviceAnnouncement/messages/microsoft.graph.unfavorite",
        body: true
    );
    delete!(
        doc: "Delete navigation property messages for admin",
        name: delete_messages,
        path: "/admin/serviceAnnouncement/messages/{{id}}",
        params: service_update_message_id
    );
    get!(
        doc: "Get messages from admin",
        name: get_messages,
        path: "/admin/serviceAnnouncement/messages/{{id}}",
        params: service_update_message_id
    );
    patch!(
        doc: "Update the navigation property messages in admin",
        name: update_messages,
        path: "/admin/serviceAnnouncement/messages/{{id}}",
        body: true,
        params: service_update_message_id
    );
    post!(
        doc: "Create new navigation property to attachments for admin",
        name: create_attachments,
        path: "/admin/serviceAnnouncement/messages/{{id}}/attachments",
        body: true,
        params: service_update_message_id
    );
    get!(
        doc: "List attachments",
        name: list_attachments,
        path: "/admin/serviceAnnouncement/messages/{{id}}/attachments",
        params: service_update_message_id
    );
    get!(
        doc: "Get the number of the resource",
        name: get_attachments_count,
        path: "/admin/serviceAnnouncement/messages/{{id}}/attachments/$count",
        params: service_update_message_id
    );
    delete!(
        doc: "Delete navigation property attachments for admin",
        name: delete_attachments,
        path: "/admin/serviceAnnouncement/messages/{{id}}/attachments/{{id2}}",
        params: service_update_message_id, service_announcement_attachment_id
    );
    get!(
        doc: "Get attachments from admin",
        name: get_attachments,
        path: "/admin/serviceAnnouncement/messages/{{id}}/attachments/{{id2}}",
        params: service_update_message_id, service_announcement_attachment_id
    );
    patch!(
        doc: "Update the navigation property attachments in admin",
        name: update_attachments,
        path: "/admin/serviceAnnouncement/messages/{{id}}/attachments/{{id2}}",
        body: true,
        params: service_update_message_id, service_announcement_attachment_id
    );
    get!(
        doc: "Get content for the navigation property attachments from admin",
        name: get_attachments_content,
        path: "/admin/serviceAnnouncement/messages/{{id}}/attachments/{{id2}}/content",
        params: service_update_message_id, service_announcement_attachment_id
    );
    put!(
        doc: "Update content for the navigation property attachments in admin",
        name: update_attachments_content,
        path: "/admin/serviceAnnouncement/messages/{{id}}/attachments/{{id2}}/content",
        body: true,
        params: service_update_message_id, service_announcement_attachment_id
    );
    get!(
        doc: "Get attachmentsArchive for the navigation property messages from admin",
        name: get_messages_attachments_archive,
        path: "/admin/serviceAnnouncement/messages/{{id}}/attachmentsArchive",
        params: service_update_message_id
    );
    put!(
        doc: "Update attachmentsArchive for the navigation property messages in admin",
        name: update_messages_attachments_archive,
        path: "/admin/serviceAnnouncement/messages/{{id}}/attachmentsArchive",
        body: true,
        params: service_update_message_id
    );
}