-
Notifications
You must be signed in to change notification settings - Fork 264
/
UsersOperationsExtensions.xml
515 lines (515 loc) · 36.4 KB
/
UsersOperationsExtensions.xml
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
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
<Type Name="UsersOperationsExtensions" FullName="Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions">
<TypeSignature Language="C#" Value="public static class UsersOperationsExtensions" />
<TypeSignature Language="ILAsm" Value=".class public auto ansi abstract sealed beforefieldinit UsersOperationsExtensions extends System.Object" />
<TypeSignature Language="DocId" Value="T:Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions" />
<TypeSignature Language="VB.NET" Value="Public Module UsersOperationsExtensions" />
<TypeSignature Language="F#" Value="type UsersOperationsExtensions = class" />
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Graph.RBAC</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Base>
<BaseTypeName>System.Object</BaseTypeName>
</Base>
<Interfaces />
<Docs>
<summary>
Extension methods for UsersOperations.
</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName="Create">
<MemberSignature Language="C#" Value="public static Microsoft.Azure.Graph.RBAC.Models.User Create (this Microsoft.Azure.Graph.RBAC.IUsersOperations operations, Microsoft.Azure.Graph.RBAC.Models.UserCreateParameters parameters);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Microsoft.Azure.Graph.RBAC.Models.User Create(class Microsoft.Azure.Graph.RBAC.IUsersOperations operations, class Microsoft.Azure.Graph.RBAC.Models.UserCreateParameters parameters) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.Create(Microsoft.Azure.Graph.RBAC.IUsersOperations,Microsoft.Azure.Graph.RBAC.Models.UserCreateParameters)" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Function Create (operations As IUsersOperations, parameters As UserCreateParameters) As User" />
<MemberSignature Language="F#" Value="static member Create : Microsoft.Azure.Graph.RBAC.IUsersOperations * Microsoft.Azure.Graph.RBAC.Models.UserCreateParameters -> Microsoft.Azure.Graph.RBAC.Models.User" Usage="Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.Create (operations, parameters)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Graph.RBAC</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Graph.RBAC.Models.User</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="operations" Type="Microsoft.Azure.Graph.RBAC.IUsersOperations" RefType="this" />
<Parameter Name="parameters" Type="Microsoft.Azure.Graph.RBAC.Models.UserCreateParameters" />
</Parameters>
<Docs>
<param name="operations">
The operations group for this extension method.
</param>
<param name="parameters">
Parameters to create a user.
</param>
<summary>
Create a new user.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="CreateAsync">
<MemberSignature Language="C#" Value="public static System.Threading.Tasks.Task<Microsoft.Azure.Graph.RBAC.Models.User> CreateAsync (this Microsoft.Azure.Graph.RBAC.IUsersOperations operations, Microsoft.Azure.Graph.RBAC.Models.UserCreateParameters parameters, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Threading.Tasks.Task`1<class Microsoft.Azure.Graph.RBAC.Models.User> CreateAsync(class Microsoft.Azure.Graph.RBAC.IUsersOperations operations, class Microsoft.Azure.Graph.RBAC.Models.UserCreateParameters parameters, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.CreateAsync(Microsoft.Azure.Graph.RBAC.IUsersOperations,Microsoft.Azure.Graph.RBAC.Models.UserCreateParameters,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Function CreateAsync (operations As IUsersOperations, parameters As UserCreateParameters, Optional cancellationToken As CancellationToken = Nothing) As Task(Of User)" />
<MemberSignature Language="F#" Value="static member CreateAsync : Microsoft.Azure.Graph.RBAC.IUsersOperations * Microsoft.Azure.Graph.RBAC.Models.UserCreateParameters * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Graph.RBAC.Models.User>" Usage="Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.CreateAsync (operations, parameters, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Graph.RBAC</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Graph.RBAC.Models.User></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="operations" Type="Microsoft.Azure.Graph.RBAC.IUsersOperations" RefType="this" />
<Parameter Name="parameters" Type="Microsoft.Azure.Graph.RBAC.Models.UserCreateParameters" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="operations">
The operations group for this extension method.
</param>
<param name="parameters">
Parameters to create a user.
</param>
<param name="cancellationToken">
The cancellation token.
</param>
<summary>
Create a new user.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Delete">
<MemberSignature Language="C#" Value="public static void Delete (this Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string upnOrObjectId);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Delete(class Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string upnOrObjectId) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.Delete(Microsoft.Azure.Graph.RBAC.IUsersOperations,System.String)" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Sub Delete (operations As IUsersOperations, upnOrObjectId As String)" />
<MemberSignature Language="F#" Value="static member Delete : Microsoft.Azure.Graph.RBAC.IUsersOperations * string -> unit" Usage="Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.Delete (operations, upnOrObjectId)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Graph.RBAC</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="operations" Type="Microsoft.Azure.Graph.RBAC.IUsersOperations" RefType="this" />
<Parameter Name="upnOrObjectId" Type="System.String" />
</Parameters>
<Docs>
<param name="operations">
The operations group for this extension method.
</param>
<param name="upnOrObjectId">
The object ID or principal name of the user to delete.
</param>
<summary>
Delete a user.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="DeleteAsync">
<MemberSignature Language="C#" Value="public static System.Threading.Tasks.Task DeleteAsync (this Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string upnOrObjectId, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Threading.Tasks.Task DeleteAsync(class Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string upnOrObjectId, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.DeleteAsync(Microsoft.Azure.Graph.RBAC.IUsersOperations,System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Function DeleteAsync (operations As IUsersOperations, upnOrObjectId As String, Optional cancellationToken As CancellationToken = Nothing) As Task" />
<MemberSignature Language="F#" Value="static member DeleteAsync : Microsoft.Azure.Graph.RBAC.IUsersOperations * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.DeleteAsync (operations, upnOrObjectId, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Graph.RBAC</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="operations" Type="Microsoft.Azure.Graph.RBAC.IUsersOperations" RefType="this" />
<Parameter Name="upnOrObjectId" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="operations">
The operations group for this extension method.
</param>
<param name="upnOrObjectId">
The object ID or principal name of the user to delete.
</param>
<param name="cancellationToken">
The cancellation token.
</param>
<summary>
Delete a user.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Get">
<MemberSignature Language="C#" Value="public static Microsoft.Azure.Graph.RBAC.Models.User Get (this Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string upnOrObjectId);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Microsoft.Azure.Graph.RBAC.Models.User Get(class Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string upnOrObjectId) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.Get(Microsoft.Azure.Graph.RBAC.IUsersOperations,System.String)" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Function Get (operations As IUsersOperations, upnOrObjectId As String) As User" />
<MemberSignature Language="F#" Value="static member Get : Microsoft.Azure.Graph.RBAC.IUsersOperations * string -> Microsoft.Azure.Graph.RBAC.Models.User" Usage="Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.Get (operations, upnOrObjectId)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Graph.RBAC</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Azure.Graph.RBAC.Models.User</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="operations" Type="Microsoft.Azure.Graph.RBAC.IUsersOperations" RefType="this" />
<Parameter Name="upnOrObjectId" Type="System.String" />
</Parameters>
<Docs>
<param name="operations">
The operations group for this extension method.
</param>
<param name="upnOrObjectId">
The object ID or principal name of the user for which to get information.
</param>
<summary>
Gets user information from the directory.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetAsync">
<MemberSignature Language="C#" Value="public static System.Threading.Tasks.Task<Microsoft.Azure.Graph.RBAC.Models.User> GetAsync (this Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string upnOrObjectId, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Threading.Tasks.Task`1<class Microsoft.Azure.Graph.RBAC.Models.User> GetAsync(class Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string upnOrObjectId, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.GetAsync(Microsoft.Azure.Graph.RBAC.IUsersOperations,System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Function GetAsync (operations As IUsersOperations, upnOrObjectId As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of User)" />
<MemberSignature Language="F#" Value="static member GetAsync : Microsoft.Azure.Graph.RBAC.IUsersOperations * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Azure.Graph.RBAC.Models.User>" Usage="Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.GetAsync (operations, upnOrObjectId, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Graph.RBAC</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Azure.Graph.RBAC.Models.User></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="operations" Type="Microsoft.Azure.Graph.RBAC.IUsersOperations" RefType="this" />
<Parameter Name="upnOrObjectId" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="operations">
The operations group for this extension method.
</param>
<param name="upnOrObjectId">
The object ID or principal name of the user for which to get information.
</param>
<param name="cancellationToken">
The cancellation token.
</param>
<summary>
Gets user information from the directory.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetMemberGroups">
<MemberSignature Language="C#" Value="public static System.Collections.Generic.IEnumerable<string> GetMemberGroups (this Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string objectId, Microsoft.Azure.Graph.RBAC.Models.UserGetMemberGroupsParameters parameters);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Collections.Generic.IEnumerable`1<string> GetMemberGroups(class Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string objectId, class Microsoft.Azure.Graph.RBAC.Models.UserGetMemberGroupsParameters parameters) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.GetMemberGroups(Microsoft.Azure.Graph.RBAC.IUsersOperations,System.String,Microsoft.Azure.Graph.RBAC.Models.UserGetMemberGroupsParameters)" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Function GetMemberGroups (operations As IUsersOperations, objectId As String, parameters As UserGetMemberGroupsParameters) As IEnumerable(Of String)" />
<MemberSignature Language="F#" Value="static member GetMemberGroups : Microsoft.Azure.Graph.RBAC.IUsersOperations * string * Microsoft.Azure.Graph.RBAC.Models.UserGetMemberGroupsParameters -> seq<string>" Usage="Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.GetMemberGroups (operations, objectId, parameters)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Graph.RBAC</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Collections.Generic.IEnumerable<System.String></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="operations" Type="Microsoft.Azure.Graph.RBAC.IUsersOperations" RefType="this" />
<Parameter Name="objectId" Type="System.String" />
<Parameter Name="parameters" Type="Microsoft.Azure.Graph.RBAC.Models.UserGetMemberGroupsParameters" />
</Parameters>
<Docs>
<param name="operations">
The operations group for this extension method.
</param>
<param name="objectId">
The object ID of the user for which to get group membership.
</param>
<param name="parameters">
User filtering parameters.
</param>
<summary>
Gets a collection that contains the object IDs of the groups of which the
user is a member.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="GetMemberGroupsAsync">
<MemberSignature Language="C#" Value="public static System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<string>> GetMemberGroupsAsync (this Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string objectId, Microsoft.Azure.Graph.RBAC.Models.UserGetMemberGroupsParameters parameters, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Threading.Tasks.Task`1<class System.Collections.Generic.IEnumerable`1<string>> GetMemberGroupsAsync(class Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string objectId, class Microsoft.Azure.Graph.RBAC.Models.UserGetMemberGroupsParameters parameters, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.GetMemberGroupsAsync(Microsoft.Azure.Graph.RBAC.IUsersOperations,System.String,Microsoft.Azure.Graph.RBAC.Models.UserGetMemberGroupsParameters,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Function GetMemberGroupsAsync (operations As IUsersOperations, objectId As String, parameters As UserGetMemberGroupsParameters, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IEnumerable(Of String))" />
<MemberSignature Language="F#" Value="static member GetMemberGroupsAsync : Microsoft.Azure.Graph.RBAC.IUsersOperations * string * Microsoft.Azure.Graph.RBAC.Models.UserGetMemberGroupsParameters * System.Threading.CancellationToken -> System.Threading.Tasks.Task<seq<string>>" Usage="Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.GetMemberGroupsAsync (operations, objectId, parameters, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Graph.RBAC</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<System.Collections.Generic.IEnumerable<System.String>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="operations" Type="Microsoft.Azure.Graph.RBAC.IUsersOperations" RefType="this" />
<Parameter Name="objectId" Type="System.String" />
<Parameter Name="parameters" Type="Microsoft.Azure.Graph.RBAC.Models.UserGetMemberGroupsParameters" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="operations">
The operations group for this extension method.
</param>
<param name="objectId">
The object ID of the user for which to get group membership.
</param>
<param name="parameters">
User filtering parameters.
</param>
<param name="cancellationToken">
The cancellation token.
</param>
<summary>
Gets a collection that contains the object IDs of the groups of which the
user is a member.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="List">
<MemberSignature Language="C#" Value="public static Microsoft.Rest.Azure.IPage<Microsoft.Azure.Graph.RBAC.Models.User> List (this Microsoft.Azure.Graph.RBAC.IUsersOperations operations, Microsoft.Rest.Azure.OData.ODataQuery<Microsoft.Azure.Graph.RBAC.Models.User> odataQuery = default);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Microsoft.Rest.Azure.IPage`1<class Microsoft.Azure.Graph.RBAC.Models.User> List(class Microsoft.Azure.Graph.RBAC.IUsersOperations operations, class Microsoft.Rest.Azure.OData.ODataQuery`1<class Microsoft.Azure.Graph.RBAC.Models.User> odataQuery) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.List(Microsoft.Azure.Graph.RBAC.IUsersOperations,Microsoft.Rest.Azure.OData.ODataQuery{Microsoft.Azure.Graph.RBAC.Models.User})" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Function List (operations As IUsersOperations, Optional odataQuery As ODataQuery(Of User) = Nothing) As IPage(Of User)" />
<MemberSignature Language="F#" Value="static member List : Microsoft.Azure.Graph.RBAC.IUsersOperations * Microsoft.Rest.Azure.OData.ODataQuery<Microsoft.Azure.Graph.RBAC.Models.User> -> Microsoft.Rest.Azure.IPage<Microsoft.Azure.Graph.RBAC.Models.User>" Usage="Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.List (operations, odataQuery)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Graph.RBAC</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Rest.Azure.IPage<Microsoft.Azure.Graph.RBAC.Models.User></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="operations" Type="Microsoft.Azure.Graph.RBAC.IUsersOperations" RefType="this" />
<Parameter Name="odataQuery" Type="Microsoft.Rest.Azure.OData.ODataQuery<Microsoft.Azure.Graph.RBAC.Models.User>" />
</Parameters>
<Docs>
<param name="operations">
The operations group for this extension method.
</param>
<param name="odataQuery">
OData parameters to apply to the operation.
</param>
<summary>
Gets list of users for the current tenant.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ListAsync">
<MemberSignature Language="C#" Value="public static System.Threading.Tasks.Task<Microsoft.Rest.Azure.IPage<Microsoft.Azure.Graph.RBAC.Models.User>> ListAsync (this Microsoft.Azure.Graph.RBAC.IUsersOperations operations, Microsoft.Rest.Azure.OData.ODataQuery<Microsoft.Azure.Graph.RBAC.Models.User> odataQuery = default, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Threading.Tasks.Task`1<class Microsoft.Rest.Azure.IPage`1<class Microsoft.Azure.Graph.RBAC.Models.User>> ListAsync(class Microsoft.Azure.Graph.RBAC.IUsersOperations operations, class Microsoft.Rest.Azure.OData.ODataQuery`1<class Microsoft.Azure.Graph.RBAC.Models.User> odataQuery, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.ListAsync(Microsoft.Azure.Graph.RBAC.IUsersOperations,Microsoft.Rest.Azure.OData.ODataQuery{Microsoft.Azure.Graph.RBAC.Models.User},System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Function ListAsync (operations As IUsersOperations, Optional odataQuery As ODataQuery(Of User) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IPage(Of User))" />
<MemberSignature Language="F#" Value="static member ListAsync : Microsoft.Azure.Graph.RBAC.IUsersOperations * Microsoft.Rest.Azure.OData.ODataQuery<Microsoft.Azure.Graph.RBAC.Models.User> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Rest.Azure.IPage<Microsoft.Azure.Graph.RBAC.Models.User>>" Usage="Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.ListAsync (operations, odataQuery, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Graph.RBAC</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Rest.Azure.IPage<Microsoft.Azure.Graph.RBAC.Models.User>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="operations" Type="Microsoft.Azure.Graph.RBAC.IUsersOperations" RefType="this" />
<Parameter Name="odataQuery" Type="Microsoft.Rest.Azure.OData.ODataQuery<Microsoft.Azure.Graph.RBAC.Models.User>" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="operations">
The operations group for this extension method.
</param>
<param name="odataQuery">
OData parameters to apply to the operation.
</param>
<param name="cancellationToken">
The cancellation token.
</param>
<summary>
Gets list of users for the current tenant.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ListNext">
<MemberSignature Language="C#" Value="public static Microsoft.Rest.Azure.IPage<Microsoft.Azure.Graph.RBAC.Models.User> ListNext (this Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string nextLink);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class Microsoft.Rest.Azure.IPage`1<class Microsoft.Azure.Graph.RBAC.Models.User> ListNext(class Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string nextLink) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.ListNext(Microsoft.Azure.Graph.RBAC.IUsersOperations,System.String)" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Function ListNext (operations As IUsersOperations, nextLink As String) As IPage(Of User)" />
<MemberSignature Language="F#" Value="static member ListNext : Microsoft.Azure.Graph.RBAC.IUsersOperations * string -> Microsoft.Rest.Azure.IPage<Microsoft.Azure.Graph.RBAC.Models.User>" Usage="Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.ListNext (operations, nextLink)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Graph.RBAC</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>Microsoft.Rest.Azure.IPage<Microsoft.Azure.Graph.RBAC.Models.User></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="operations" Type="Microsoft.Azure.Graph.RBAC.IUsersOperations" RefType="this" />
<Parameter Name="nextLink" Type="System.String" />
</Parameters>
<Docs>
<param name="operations">
The operations group for this extension method.
</param>
<param name="nextLink">
Next link for the list operation.
</param>
<summary>
Gets a list of users for the current tenant.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="ListNextAsync">
<MemberSignature Language="C#" Value="public static System.Threading.Tasks.Task<Microsoft.Rest.Azure.IPage<Microsoft.Azure.Graph.RBAC.Models.User>> ListNextAsync (this Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string nextLink, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Threading.Tasks.Task`1<class Microsoft.Rest.Azure.IPage`1<class Microsoft.Azure.Graph.RBAC.Models.User>> ListNextAsync(class Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string nextLink, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.ListNextAsync(Microsoft.Azure.Graph.RBAC.IUsersOperations,System.String,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Function ListNextAsync (operations As IUsersOperations, nextLink As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IPage(Of User))" />
<MemberSignature Language="F#" Value="static member ListNextAsync : Microsoft.Azure.Graph.RBAC.IUsersOperations * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Rest.Azure.IPage<Microsoft.Azure.Graph.RBAC.Models.User>>" Usage="Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.ListNextAsync (operations, nextLink, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Graph.RBAC</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task<Microsoft.Rest.Azure.IPage<Microsoft.Azure.Graph.RBAC.Models.User>></ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="operations" Type="Microsoft.Azure.Graph.RBAC.IUsersOperations" RefType="this" />
<Parameter Name="nextLink" Type="System.String" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="operations">
The operations group for this extension method.
</param>
<param name="nextLink">
Next link for the list operation.
</param>
<param name="cancellationToken">
The cancellation token.
</param>
<summary>
Gets a list of users for the current tenant.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="Update">
<MemberSignature Language="C#" Value="public static void Update (this Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string upnOrObjectId, Microsoft.Azure.Graph.RBAC.Models.UserUpdateParameters parameters);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig void Update(class Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string upnOrObjectId, class Microsoft.Azure.Graph.RBAC.Models.UserUpdateParameters parameters) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.Update(Microsoft.Azure.Graph.RBAC.IUsersOperations,System.String,Microsoft.Azure.Graph.RBAC.Models.UserUpdateParameters)" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Sub Update (operations As IUsersOperations, upnOrObjectId As String, parameters As UserUpdateParameters)" />
<MemberSignature Language="F#" Value="static member Update : Microsoft.Azure.Graph.RBAC.IUsersOperations * string * Microsoft.Azure.Graph.RBAC.Models.UserUpdateParameters -> unit" Usage="Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.Update (operations, upnOrObjectId, parameters)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Graph.RBAC</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Void</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="operations" Type="Microsoft.Azure.Graph.RBAC.IUsersOperations" RefType="this" />
<Parameter Name="upnOrObjectId" Type="System.String" />
<Parameter Name="parameters" Type="Microsoft.Azure.Graph.RBAC.Models.UserUpdateParameters" />
</Parameters>
<Docs>
<param name="operations">
The operations group for this extension method.
</param>
<param name="upnOrObjectId">
The object ID or principal name of the user to update.
</param>
<param name="parameters">
Parameters to update an existing user.
</param>
<summary>
Updates a user.
</summary>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="UpdateAsync">
<MemberSignature Language="C#" Value="public static System.Threading.Tasks.Task UpdateAsync (this Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string upnOrObjectId, Microsoft.Azure.Graph.RBAC.Models.UserUpdateParameters parameters, System.Threading.CancellationToken cancellationToken = default);" />
<MemberSignature Language="ILAsm" Value=".method public static hidebysig class System.Threading.Tasks.Task UpdateAsync(class Microsoft.Azure.Graph.RBAC.IUsersOperations operations, string upnOrObjectId, class Microsoft.Azure.Graph.RBAC.Models.UserUpdateParameters parameters, valuetype System.Threading.CancellationToken cancellationToken) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.UpdateAsync(Microsoft.Azure.Graph.RBAC.IUsersOperations,System.String,Microsoft.Azure.Graph.RBAC.Models.UserUpdateParameters,System.Threading.CancellationToken)" />
<MemberSignature Language="VB.NET" Value="<Extension()>
Public Function UpdateAsync (operations As IUsersOperations, upnOrObjectId As String, parameters As UserUpdateParameters, Optional cancellationToken As CancellationToken = Nothing) As Task" />
<MemberSignature Language="F#" Value="static member UpdateAsync : Microsoft.Azure.Graph.RBAC.IUsersOperations * string * Microsoft.Azure.Graph.RBAC.Models.UserUpdateParameters * System.Threading.CancellationToken -> System.Threading.Tasks.Task" Usage="Microsoft.Azure.Graph.RBAC.UsersOperationsExtensions.UpdateAsync (operations, upnOrObjectId, parameters, cancellationToken)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.Azure.Graph.RBAC</AssemblyName>
<AssemblyVersion>3.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Threading.Tasks.Task</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="operations" Type="Microsoft.Azure.Graph.RBAC.IUsersOperations" RefType="this" />
<Parameter Name="upnOrObjectId" Type="System.String" />
<Parameter Name="parameters" Type="Microsoft.Azure.Graph.RBAC.Models.UserUpdateParameters" />
<Parameter Name="cancellationToken" Type="System.Threading.CancellationToken" />
</Parameters>
<Docs>
<param name="operations">
The operations group for this extension method.
</param>
<param name="upnOrObjectId">
The object ID or principal name of the user to update.
</param>
<param name="parameters">
Parameters to update an existing user.
</param>
<param name="cancellationToken">
The cancellation token.
</param>
<summary>
Updates a user.
</summary>
<returns>To be added.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>