public async Task Update() { var name = Recording.GenerateAssetName("testGallery_"); var gallery = await CreateGalleryAsync(name); var description = "This is a gallery for test"; var update = new GalleryUpdateOptions() { Description = description }; var lro = await gallery.UpdateAsync(true, update); Gallery updatedGallery = lro.Value; Assert.AreEqual(description, updatedGallery.Data.Description); }
public virtual ArmOperation <Gallery> Update(bool waitForCompletion, GalleryUpdateOptions options, CancellationToken cancellationToken = default) { Argument.AssertNotNull(options, nameof(options)); using var scope = _galleryClientDiagnostics.CreateScope("Gallery.Update"); scope.Start(); try { var response = _galleryRestClient.Update(Id.SubscriptionId, Id.ResourceGroupName, Id.Name, options, cancellationToken); var operation = new ComputeArmOperation <Gallery>(new GalleryOperationSource(Client), _galleryClientDiagnostics, Pipeline, _galleryRestClient.CreateUpdateRequest(Id.SubscriptionId, Id.ResourceGroupName, Id.Name, options).Request, response, OperationFinalStateVia.Location); if (waitForCompletion) { operation.WaitForCompletion(cancellationToken); } return(operation); } catch (Exception e) { scope.Failed(e); throw; } }
public Response Update(string subscriptionId, string resourceGroupName, string galleryName, GalleryUpdateOptions options, CancellationToken cancellationToken = default) { if (subscriptionId == null) { throw new ArgumentNullException(nameof(subscriptionId)); } if (resourceGroupName == null) { throw new ArgumentNullException(nameof(resourceGroupName)); } if (galleryName == null) { throw new ArgumentNullException(nameof(galleryName)); } if (options == null) { throw new ArgumentNullException(nameof(options)); } using var message = CreateUpdateRequest(subscriptionId, resourceGroupName, galleryName, options); _pipeline.Send(message, cancellationToken); switch (message.Response.Status) { case 200: return(message.Response); default: throw ClientDiagnostics.CreateRequestFailedException(message.Response); } }
internal HttpMessage CreateUpdateRequest(string subscriptionId, string resourceGroupName, string galleryName, GalleryUpdateOptions options) { var message = _pipeline.CreateMessage(); var request = message.Request; request.Method = RequestMethod.Patch; var uri = new RawRequestUriBuilder(); uri.Reset(_endpoint); uri.AppendPath("/subscriptions/", false); uri.AppendPath(subscriptionId, true); uri.AppendPath("/resourceGroups/", false); uri.AppendPath(resourceGroupName, true); uri.AppendPath("/providers/Microsoft.Compute/galleries/", false); uri.AppendPath(galleryName, true); uri.AppendQuery("api-version", _apiVersion, true); request.Uri = uri; request.Headers.Add("Accept", "application/json"); request.Headers.Add("Content-Type", "application/json"); var content = new Utf8JsonRequestContent(); content.JsonWriter.WriteObjectValue(options); request.Content = content; message.SetProperty("SDKUserAgent", _userAgent); return(message); }