/// <summary>
        /// Creates a waiter using the provided configuration.
        /// </summary>
        /// <param name="request">Request to send.</param>
        /// <param name="config">Wait Configuration</param>
        /// <param name="targetStates">Desired resource states. If multiple states are provided then the waiter will return once the resource reaches any of the provided states</param>
        /// <returns>a new Oci.common.Waiter instance</returns>
        public Waiter <GetScheduledJobRequest, GetScheduledJobResponse> ForScheduledJob(GetScheduledJobRequest request, WaiterConfiguration config, params LifecycleStates[] targetStates)
        {
            var agent = new WaiterAgent <GetScheduledJobRequest, GetScheduledJobResponse>(
                request,
                request => client.GetScheduledJob(request),
                response => targetStates.Contains(response.ScheduledJob.LifecycleState.Value),
                targetStates.Contains(LifecycleStates.Deleted)
                );

            return(new Waiter <GetScheduledJobRequest, GetScheduledJobResponse>(config, agent));
        }