internal static PrivateLinkServiceListResult DeserializePrivateLinkServiceListResult(JsonElement element) { Optional <IReadOnlyList <PrivateLinkServiceData> > value = default; Optional <string> nextLink = default; foreach (var property in element.EnumerateObject()) { if (property.NameEquals("value")) { if (property.Value.ValueKind == JsonValueKind.Null) { property.ThrowNonNullablePropertyIsNull(); continue; } List <PrivateLinkServiceData> array = new List <PrivateLinkServiceData>(); foreach (var item in property.Value.EnumerateArray()) { array.Add(PrivateLinkServiceData.DeserializePrivateLinkServiceData(item)); } value = array; continue; } if (property.NameEquals("nextLink")) { nextLink = property.Value.GetString(); continue; } } return(new PrivateLinkServiceListResult(Optional.ToList(value), nextLink.Value)); }
PrivateLinkService IOperationSource <PrivateLinkService> .CreateResult(Response response, CancellationToken cancellationToken) { using var document = JsonDocument.Parse(response.ContentStream); var data = PrivateLinkServiceData.DeserializePrivateLinkServiceData(document.RootElement); return(new PrivateLinkService(_armClient, data)); }