/// <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 <GetTagRequest, GetTagResponse> ForTag(GetTagRequest request, WaiterConfiguration config, params Tag.LifecycleStateEnum[] targetStates) { var agent = new WaiterAgent <GetTagRequest, GetTagResponse>( request, request => client.GetTag(request), response => targetStates.Contains(response.Tag.LifecycleState.Value), targetStates.Contains(Tag.LifecycleStateEnum.Deleted) ); return(new Waiter <GetTagRequest, GetTagResponse>(config, agent)); }