public virtual ArmOperation <VCenterResource> CreateOrUpdate(WaitUntil waitUntil, string vcenterName, VCenterData data = null, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(vcenterName, nameof(vcenterName)); using var scope = _vCenterClientDiagnostics.CreateScope("VCenterCollection.CreateOrUpdate"); scope.Start(); try { var response = _vCenterRestClient.Create(Id.SubscriptionId, Id.ResourceGroupName, vcenterName, data, cancellationToken); var operation = new ConnectedVMwarevSphereArmOperation <VCenterResource>(new VCenterOperationSource(Client), _vCenterClientDiagnostics, Pipeline, _vCenterRestClient.CreateCreateRequest(Id.SubscriptionId, Id.ResourceGroupName, vcenterName, data).Request, response, OperationFinalStateVia.AzureAsyncOperation); if (waitUntil == WaitUntil.Completed) { operation.WaitForCompletion(cancellationToken); } return(operation); } catch (Exception e) { scope.Failed(e); throw; } }
public virtual VCenterCreateOrUpdateOperation CreateOrUpdate(bool waitForCompletion, string vcenterName, VCenterData body = null, CancellationToken cancellationToken = default) { Argument.AssertNotNullOrEmpty(vcenterName, nameof(vcenterName)); using var scope = _vCenterClientDiagnostics.CreateScope("VCenterCollection.CreateOrUpdate"); scope.Start(); try { var response = _vCenterRestClient.Create(Id.SubscriptionId, Id.ResourceGroupName, vcenterName, body, cancellationToken); var operation = new VCenterCreateOrUpdateOperation(ArmClient, _vCenterClientDiagnostics, Pipeline, _vCenterRestClient.CreateCreateRequest(Id.SubscriptionId, Id.ResourceGroupName, vcenterName, body).Request, response); if (waitForCompletion) { operation.WaitForCompletion(cancellationToken); } return(operation); } catch (Exception e) { scope.Failed(e); throw; } }