public virtual Response RebootWorker(string workerName, CancellationToken cancellationToken = default)
        {
            Argument.AssertNotNullOrEmpty(workerName, nameof(workerName));

            using var scope = _appServicePlanClientDiagnostics.CreateScope("AppServicePlan.RebootWorker");
            scope.Start();
            try
            {
                var response = _appServicePlanRestClient.RebootWorker(Id.SubscriptionId, Id.ResourceGroupName, Id.Name, workerName, cancellationToken);
                return(response);
            }
            catch (Exception e)
            {
                scope.Failed(e);
                throw;
            }
        }