internal ComponentContainerResource(ArmClient client, ComponentContainerData data) : this(client, data.Id) { HasData = true; _data = data; }
public virtual async Task <ArmOperation <ComponentContainerResource> > CreateOrUpdateAsync(WaitUntil waitUntil, string name, ComponentContainerData data, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(name, nameof(name)); Argument.AssertNotNull(data, nameof(data)); using var scope = _componentContainerClientDiagnostics.CreateScope("ComponentContainerCollection.CreateOrUpdate"); scope.Start(); try { var response = await _componentContainerRestClient.CreateOrUpdateAsync(Id.SubscriptionId, Id.ResourceGroupName, Id.Name, name, data, cancellationToken).ConfigureAwait(false); var operation = new MachineLearningArmOperation <ComponentContainerResource>(Response.FromValue(new ComponentContainerResource(Client, response), response.GetRawResponse())); if (waitUntil == WaitUntil.Completed) { await operation.WaitForCompletionAsync(cancellationToken).ConfigureAwait(false); } return(operation); } catch (Exception e) { scope.Failed(e); throw; } }
public virtual ArmOperation <ComponentContainerResource> Update(WaitUntil waitUntil, ComponentContainerData data, CancellationToken cancellationToken = default) { Argument.AssertNotNull(data, nameof(data)); using var scope = _componentContainerClientDiagnostics.CreateScope("ComponentContainerResource.Update"); scope.Start(); try { var response = _componentContainerRestClient.CreateOrUpdate(Id.SubscriptionId, Id.ResourceGroupName, Id.Parent.Name, Id.Name, data, cancellationToken); var operation = new MachineLearningArmOperation <ComponentContainerResource>(Response.FromValue(new ComponentContainerResource(Client, response), response.GetRawResponse())); if (waitUntil == WaitUntil.Completed) { operation.WaitForCompletion(cancellationToken); } return(operation); } catch (Exception e) { scope.Failed(e); throw; } }