public async Task <Response <VirtualWAN> > GetAsync(string resourceGroupName, string virtualWANName, CancellationToken cancellationToken = default) { if (resourceGroupName == null) { throw new ArgumentNullException(nameof(resourceGroupName)); } if (virtualWANName == null) { throw new ArgumentNullException(nameof(virtualWANName)); } using var message = CreateGetRequest(resourceGroupName, virtualWANName); await _pipeline.SendAsync(message, cancellationToken).ConfigureAwait(false); switch (message.Response.Status) { case 200: { VirtualWAN value = default; using var document = await JsonDocument.ParseAsync(message.Response.ContentStream, default, cancellationToken).ConfigureAwait(false); if (document.RootElement.ValueKind == JsonValueKind.Null) { value = null; } else { value = VirtualWAN.DeserializeVirtualWAN(document.RootElement); } return(Response.FromValue(value, message.Response)); }
public virtual VirtualWansCreateOrUpdateOperation StartCreateOrUpdate(string resourceGroupName, string virtualWANName, VirtualWAN wANParameters, CancellationToken cancellationToken = default) { if (resourceGroupName == null) { throw new ArgumentNullException(nameof(resourceGroupName)); } if (virtualWANName == null) { throw new ArgumentNullException(nameof(virtualWANName)); } if (wANParameters == null) { throw new ArgumentNullException(nameof(wANParameters)); } using var scope = _clientDiagnostics.CreateScope("VirtualWansOperations.StartCreateOrUpdate"); scope.Start(); try { var originalResponse = RestClient.CreateOrUpdate(resourceGroupName, virtualWANName, wANParameters, cancellationToken); return(new VirtualWansCreateOrUpdateOperation(_clientDiagnostics, _pipeline, RestClient.CreateCreateOrUpdateRequest(resourceGroupName, virtualWANName, wANParameters).Request, originalResponse)); } catch (Exception e) { scope.Failed(e); throw; } }