-
Notifications
You must be signed in to change notification settings - Fork 4.8k
/
DataShareInvitationCollection.cs
421 lines (393 loc) · 24.4 KB
/
DataShareInvitationCollection.cs
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
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
// <auto-generated/>
#nullable disable
using System;
using System.Collections;
using System.Collections.Generic;
using System.Globalization;
using System.Threading;
using System.Threading.Tasks;
using Autorest.CSharp.Core;
using Azure;
using Azure.Core;
using Azure.Core.Pipeline;
using Azure.ResourceManager;
namespace Azure.ResourceManager.DataShare
{
/// <summary>
/// A class representing a collection of <see cref="DataShareInvitationResource"/> and their operations.
/// Each <see cref="DataShareInvitationResource"/> in the collection will belong to the same instance of <see cref="DataShareResource"/>.
/// To get a <see cref="DataShareInvitationCollection"/> instance call the GetDataShareInvitations method from an instance of <see cref="DataShareResource"/>.
/// </summary>
public partial class DataShareInvitationCollection : ArmCollection, IEnumerable<DataShareInvitationResource>, IAsyncEnumerable<DataShareInvitationResource>
{
private readonly ClientDiagnostics _dataShareInvitationInvitationsClientDiagnostics;
private readonly InvitationsRestOperations _dataShareInvitationInvitationsRestClient;
/// <summary> Initializes a new instance of the <see cref="DataShareInvitationCollection"/> class for mocking. </summary>
protected DataShareInvitationCollection()
{
}
/// <summary> Initializes a new instance of the <see cref="DataShareInvitationCollection"/> class. </summary>
/// <param name="client"> The client parameters to use in these operations. </param>
/// <param name="id"> The identifier of the parent resource that is the target of operations. </param>
internal DataShareInvitationCollection(ArmClient client, ResourceIdentifier id) : base(client, id)
{
_dataShareInvitationInvitationsClientDiagnostics = new ClientDiagnostics("Azure.ResourceManager.DataShare", DataShareInvitationResource.ResourceType.Namespace, Diagnostics);
TryGetApiVersion(DataShareInvitationResource.ResourceType, out string dataShareInvitationInvitationsApiVersion);
_dataShareInvitationInvitationsRestClient = new InvitationsRestOperations(Pipeline, Diagnostics.ApplicationId, Endpoint, dataShareInvitationInvitationsApiVersion);
#if DEBUG
ValidateResourceId(Id);
#endif
}
internal static void ValidateResourceId(ResourceIdentifier id)
{
if (id.ResourceType != DataShareResource.ResourceType)
throw new ArgumentException(string.Format(CultureInfo.CurrentCulture, "Invalid resource type {0} expected {1}", id.ResourceType, DataShareResource.ResourceType), nameof(id));
}
/// <summary>
/// Create an invitation
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataShare/accounts/{accountName}/shares/{shareName}/invitations/{invitationName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>Invitations_Create</description>
/// </item>
/// </list>
/// </summary>
/// <param name="waitUntil"> <see cref="WaitUntil.Completed"/> if the method should wait to return until the long-running operation has completed on the service; <see cref="WaitUntil.Started"/> if it should return after starting the operation. For more information on long-running operations, please see <see href="https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/core/Azure.Core/samples/LongRunningOperations.md"> Azure.Core Long-Running Operation samples</see>. </param>
/// <param name="invitationName"> The name of the invitation. </param>
/// <param name="data"> Invitation details. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentException"> <paramref name="invitationName"/> is an empty string, and was expected to be non-empty. </exception>
/// <exception cref="ArgumentNullException"> <paramref name="invitationName"/> or <paramref name="data"/> is null. </exception>
public virtual async Task<ArmOperation<DataShareInvitationResource>> CreateOrUpdateAsync(WaitUntil waitUntil, string invitationName, DataShareInvitationData data, CancellationToken cancellationToken = default)
{
Argument.AssertNotNullOrEmpty(invitationName, nameof(invitationName));
Argument.AssertNotNull(data, nameof(data));
using var scope = _dataShareInvitationInvitationsClientDiagnostics.CreateScope("DataShareInvitationCollection.CreateOrUpdate");
scope.Start();
try
{
var response = await _dataShareInvitationInvitationsRestClient.CreateAsync(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, invitationName, data, cancellationToken).ConfigureAwait(false);
var operation = new DataShareArmOperation<DataShareInvitationResource>(Response.FromValue(new DataShareInvitationResource(Client, response), response.GetRawResponse()));
if (waitUntil == WaitUntil.Completed)
await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false);
return operation;
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
/// <summary>
/// Create an invitation
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataShare/accounts/{accountName}/shares/{shareName}/invitations/{invitationName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>Invitations_Create</description>
/// </item>
/// </list>
/// </summary>
/// <param name="waitUntil"> <see cref="WaitUntil.Completed"/> if the method should wait to return until the long-running operation has completed on the service; <see cref="WaitUntil.Started"/> if it should return after starting the operation. For more information on long-running operations, please see <see href="https://github.com/Azure/azure-sdk-for-net/blob/main/sdk/core/Azure.Core/samples/LongRunningOperations.md"> Azure.Core Long-Running Operation samples</see>. </param>
/// <param name="invitationName"> The name of the invitation. </param>
/// <param name="data"> Invitation details. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentException"> <paramref name="invitationName"/> is an empty string, and was expected to be non-empty. </exception>
/// <exception cref="ArgumentNullException"> <paramref name="invitationName"/> or <paramref name="data"/> is null. </exception>
public virtual ArmOperation<DataShareInvitationResource> CreateOrUpdate(WaitUntil waitUntil, string invitationName, DataShareInvitationData data, CancellationToken cancellationToken = default)
{
Argument.AssertNotNullOrEmpty(invitationName, nameof(invitationName));
Argument.AssertNotNull(data, nameof(data));
using var scope = _dataShareInvitationInvitationsClientDiagnostics.CreateScope("DataShareInvitationCollection.CreateOrUpdate");
scope.Start();
try
{
var response = _dataShareInvitationInvitationsRestClient.Create(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, invitationName, data, cancellationToken);
var operation = new DataShareArmOperation<DataShareInvitationResource>(Response.FromValue(new DataShareInvitationResource(Client, response), response.GetRawResponse()));
if (waitUntil == WaitUntil.Completed)
operation.WaitForCompletion(cancellationToken);
return operation;
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
/// <summary>
/// Get an invitation in a share
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataShare/accounts/{accountName}/shares/{shareName}/invitations/{invitationName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>Invitations_Get</description>
/// </item>
/// </list>
/// </summary>
/// <param name="invitationName"> The name of the invitation. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentException"> <paramref name="invitationName"/> is an empty string, and was expected to be non-empty. </exception>
/// <exception cref="ArgumentNullException"> <paramref name="invitationName"/> is null. </exception>
public virtual async Task<Response<DataShareInvitationResource>> GetAsync(string invitationName, CancellationToken cancellationToken = default)
{
Argument.AssertNotNullOrEmpty(invitationName, nameof(invitationName));
using var scope = _dataShareInvitationInvitationsClientDiagnostics.CreateScope("DataShareInvitationCollection.Get");
scope.Start();
try
{
var response = await _dataShareInvitationInvitationsRestClient.GetAsync(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, invitationName, cancellationToken).ConfigureAwait(false);
if (response.Value == null)
throw new RequestFailedException(response.GetRawResponse());
return Response.FromValue(new DataShareInvitationResource(Client, response.Value), response.GetRawResponse());
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
/// <summary>
/// Get an invitation in a share
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataShare/accounts/{accountName}/shares/{shareName}/invitations/{invitationName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>Invitations_Get</description>
/// </item>
/// </list>
/// </summary>
/// <param name="invitationName"> The name of the invitation. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentException"> <paramref name="invitationName"/> is an empty string, and was expected to be non-empty. </exception>
/// <exception cref="ArgumentNullException"> <paramref name="invitationName"/> is null. </exception>
public virtual Response<DataShareInvitationResource> Get(string invitationName, CancellationToken cancellationToken = default)
{
Argument.AssertNotNullOrEmpty(invitationName, nameof(invitationName));
using var scope = _dataShareInvitationInvitationsClientDiagnostics.CreateScope("DataShareInvitationCollection.Get");
scope.Start();
try
{
var response = _dataShareInvitationInvitationsRestClient.Get(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, invitationName, cancellationToken);
if (response.Value == null)
throw new RequestFailedException(response.GetRawResponse());
return Response.FromValue(new DataShareInvitationResource(Client, response.Value), response.GetRawResponse());
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
/// <summary>
/// List invitations in a share
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataShare/accounts/{accountName}/shares/{shareName}/invitations</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>Invitations_ListByShare</description>
/// </item>
/// </list>
/// </summary>
/// <param name="skipToken"> The continuation token. </param>
/// <param name="filter"> Filters the results using OData syntax. </param>
/// <param name="orderby"> Sorts the results using OData syntax. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <returns> An async collection of <see cref="DataShareInvitationResource"/> that may take multiple service requests to iterate over. </returns>
public virtual AsyncPageable<DataShareInvitationResource> GetAllAsync(string skipToken = null, string filter = null, string orderby = null, CancellationToken cancellationToken = default)
{
HttpMessage FirstPageRequest(int? pageSizeHint) => _dataShareInvitationInvitationsRestClient.CreateListByShareRequest(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, skipToken, filter, orderby);
HttpMessage NextPageRequest(int? pageSizeHint, string nextLink) => _dataShareInvitationInvitationsRestClient.CreateListByShareNextPageRequest(nextLink, Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, skipToken, filter, orderby);
return GeneratorPageableHelpers.CreateAsyncPageable(FirstPageRequest, NextPageRequest, e => new DataShareInvitationResource(Client, DataShareInvitationData.DeserializeDataShareInvitationData(e)), _dataShareInvitationInvitationsClientDiagnostics, Pipeline, "DataShareInvitationCollection.GetAll", "value", "nextLink", cancellationToken);
}
/// <summary>
/// List invitations in a share
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataShare/accounts/{accountName}/shares/{shareName}/invitations</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>Invitations_ListByShare</description>
/// </item>
/// </list>
/// </summary>
/// <param name="skipToken"> The continuation token. </param>
/// <param name="filter"> Filters the results using OData syntax. </param>
/// <param name="orderby"> Sorts the results using OData syntax. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <returns> A collection of <see cref="DataShareInvitationResource"/> that may take multiple service requests to iterate over. </returns>
public virtual Pageable<DataShareInvitationResource> GetAll(string skipToken = null, string filter = null, string orderby = null, CancellationToken cancellationToken = default)
{
HttpMessage FirstPageRequest(int? pageSizeHint) => _dataShareInvitationInvitationsRestClient.CreateListByShareRequest(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, skipToken, filter, orderby);
HttpMessage NextPageRequest(int? pageSizeHint, string nextLink) => _dataShareInvitationInvitationsRestClient.CreateListByShareNextPageRequest(nextLink, Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, skipToken, filter, orderby);
return GeneratorPageableHelpers.CreatePageable(FirstPageRequest, NextPageRequest, e => new DataShareInvitationResource(Client, DataShareInvitationData.DeserializeDataShareInvitationData(e)), _dataShareInvitationInvitationsClientDiagnostics, Pipeline, "DataShareInvitationCollection.GetAll", "value", "nextLink", cancellationToken);
}
/// <summary>
/// Checks to see if the resource exists in azure.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataShare/accounts/{accountName}/shares/{shareName}/invitations/{invitationName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>Invitations_Get</description>
/// </item>
/// </list>
/// </summary>
/// <param name="invitationName"> The name of the invitation. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentException"> <paramref name="invitationName"/> is an empty string, and was expected to be non-empty. </exception>
/// <exception cref="ArgumentNullException"> <paramref name="invitationName"/> is null. </exception>
public virtual async Task<Response<bool>> ExistsAsync(string invitationName, CancellationToken cancellationToken = default)
{
Argument.AssertNotNullOrEmpty(invitationName, nameof(invitationName));
using var scope = _dataShareInvitationInvitationsClientDiagnostics.CreateScope("DataShareInvitationCollection.Exists");
scope.Start();
try
{
var response = await _dataShareInvitationInvitationsRestClient.GetAsync(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, invitationName, cancellationToken: cancellationToken).ConfigureAwait(false);
return Response.FromValue(response.Value != null, response.GetRawResponse());
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
/// <summary>
/// Checks to see if the resource exists in azure.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataShare/accounts/{accountName}/shares/{shareName}/invitations/{invitationName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>Invitations_Get</description>
/// </item>
/// </list>
/// </summary>
/// <param name="invitationName"> The name of the invitation. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentException"> <paramref name="invitationName"/> is an empty string, and was expected to be non-empty. </exception>
/// <exception cref="ArgumentNullException"> <paramref name="invitationName"/> is null. </exception>
public virtual Response<bool> Exists(string invitationName, CancellationToken cancellationToken = default)
{
Argument.AssertNotNullOrEmpty(invitationName, nameof(invitationName));
using var scope = _dataShareInvitationInvitationsClientDiagnostics.CreateScope("DataShareInvitationCollection.Exists");
scope.Start();
try
{
var response = _dataShareInvitationInvitationsRestClient.Get(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, invitationName, cancellationToken: cancellationToken);
return Response.FromValue(response.Value != null, response.GetRawResponse());
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
/// <summary>
/// Tries to get details for this resource from the service.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataShare/accounts/{accountName}/shares/{shareName}/invitations/{invitationName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>Invitations_Get</description>
/// </item>
/// </list>
/// </summary>
/// <param name="invitationName"> The name of the invitation. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentException"> <paramref name="invitationName"/> is an empty string, and was expected to be non-empty. </exception>
/// <exception cref="ArgumentNullException"> <paramref name="invitationName"/> is null. </exception>
public virtual async Task<NullableResponse<DataShareInvitationResource>> GetIfExistsAsync(string invitationName, CancellationToken cancellationToken = default)
{
Argument.AssertNotNullOrEmpty(invitationName, nameof(invitationName));
using var scope = _dataShareInvitationInvitationsClientDiagnostics.CreateScope("DataShareInvitationCollection.GetIfExists");
scope.Start();
try
{
var response = await _dataShareInvitationInvitationsRestClient.GetAsync(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, invitationName, cancellationToken: cancellationToken).ConfigureAwait(false);
if (response.Value == null)
return new NoValueResponse<DataShareInvitationResource>(response.GetRawResponse());
return Response.FromValue(new DataShareInvitationResource(Client, response.Value), response.GetRawResponse());
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
/// <summary>
/// Tries to get details for this resource from the service.
/// <list type="bullet">
/// <item>
/// <term>Request Path</term>
/// <description>/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DataShare/accounts/{accountName}/shares/{shareName}/invitations/{invitationName}</description>
/// </item>
/// <item>
/// <term>Operation Id</term>
/// <description>Invitations_Get</description>
/// </item>
/// </list>
/// </summary>
/// <param name="invitationName"> The name of the invitation. </param>
/// <param name="cancellationToken"> The cancellation token to use. </param>
/// <exception cref="ArgumentException"> <paramref name="invitationName"/> is an empty string, and was expected to be non-empty. </exception>
/// <exception cref="ArgumentNullException"> <paramref name="invitationName"/> is null. </exception>
public virtual NullableResponse<DataShareInvitationResource> GetIfExists(string invitationName, CancellationToken cancellationToken = default)
{
Argument.AssertNotNullOrEmpty(invitationName, nameof(invitationName));
using var scope = _dataShareInvitationInvitationsClientDiagnostics.CreateScope("DataShareInvitationCollection.GetIfExists");
scope.Start();
try
{
var response = _dataShareInvitationInvitationsRestClient.Get(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, invitationName, cancellationToken: cancellationToken);
if (response.Value == null)
return new NoValueResponse<DataShareInvitationResource>(response.GetRawResponse());
return Response.FromValue(new DataShareInvitationResource(Client, response.Value), response.GetRawResponse());
}
catch (Exception e)
{
scope.Failed(e);
throw;
}
}
IEnumerator<DataShareInvitationResource> IEnumerable<DataShareInvitationResource>.GetEnumerator()
{
return GetAll().GetEnumerator();
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetAll().GetEnumerator();
}
IAsyncEnumerator<DataShareInvitationResource> IAsyncEnumerable<DataShareInvitationResource>.GetAsyncEnumerator(CancellationToken cancellationToken)
{
return GetAllAsync(cancellationToken: cancellationToken).GetAsyncEnumerator(cancellationToken);
}
}
}