/// <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 <GetHostInsightRequest, GetHostInsightResponse> ForHostInsight(GetHostInsightRequest request, WaiterConfiguration config, params LifecycleState[] targetStates) { var agent = new WaiterAgent <GetHostInsightRequest, GetHostInsightResponse>( request, request => client.GetHostInsight(request), response => targetStates.Contains(response.HostInsight.LifecycleState.Value), targetStates.Contains(LifecycleState.Deleted) ); return(new Waiter <GetHostInsightRequest, GetHostInsightResponse>(config, agent)); }
private void HandleOutput(GetHostInsightRequest request) { var waiterConfig = new WaiterConfiguration { MaxAttempts = MaxWaitAttempts, GetNextDelayInSeconds = (_) => WaitIntervalSeconds }; switch (ParameterSetName) { case LifecycleStateParamSet: response = client.Waiters.ForHostInsight(request, waiterConfig, WaitForLifecycleState).Execute(); break; case Default: response = client.GetHostInsight(request).GetAwaiter().GetResult(); break; } WriteOutput(response, response.HostInsight); }
protected override void ProcessRecord() { base.ProcessRecord(); GetHostInsightRequest request; try { request = new GetHostInsightRequest { HostInsightId = HostInsightId, OpcRequestId = OpcRequestId }; HandleOutput(request); FinishProcessing(response); } catch (Exception ex) { TerminatingErrorDuringExecution(ex); } }
/// <summary> /// Creates a waiter using default wait configuration. /// </summary> /// <param name="request">Request to send.</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 <GetHostInsightRequest, GetHostInsightResponse> ForHostInsight(GetHostInsightRequest request, params LifecycleState[] targetStates) { return(this.ForHostInsight(request, WaiterConfiguration.DefaultWaiterConfiguration, targetStates)); }