private void HandleOutput(GetDedicatedVmHostRequest request) { var waiterConfig = new WaiterConfiguration { MaxAttempts = MaxWaitAttempts, GetNextDelayInSeconds = (_) => WaitIntervalSeconds }; switch (ParameterSetName) { case LifecycleStateParamSet: response = client.Waiters.ForDedicatedVmHost(request, waiterConfig, WaitForLifecycleState).Execute(); break; case Default: response = client.GetDedicatedVmHost(request).GetAwaiter().GetResult(); break; } WriteOutput(response, response.DedicatedVmHost); }
protected override void ProcessRecord() { base.ProcessRecord(); GetDedicatedVmHostRequest request; try { request = new GetDedicatedVmHostRequest { DedicatedVmHostId = DedicatedVmHostId, OpcRequestId = OpcRequestId }; HandleOutput(request); FinishProcessing(response); } catch (Exception ex) { TerminatingErrorDuringExecution(ex); } }
/// <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 <GetDedicatedVmHostRequest, GetDedicatedVmHostResponse> ForDedicatedVmHost(GetDedicatedVmHostRequest request, WaiterConfiguration config, params DedicatedVmHost.LifecycleStateEnum[] targetStates) { var agent = new WaiterAgent <GetDedicatedVmHostRequest, GetDedicatedVmHostResponse>( request, request => client.GetDedicatedVmHost(request), response => targetStates.Contains(response.DedicatedVmHost.LifecycleState.Value), targetStates.Contains(DedicatedVmHost.LifecycleStateEnum.Deleted) ); return(new Waiter <GetDedicatedVmHostRequest, GetDedicatedVmHostResponse>(config, agent)); }
/// <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 <GetDedicatedVmHostRequest, GetDedicatedVmHostResponse> ForDedicatedVmHost(GetDedicatedVmHostRequest request, params DedicatedVmHost.LifecycleStateEnum[] targetStates) { return(this.ForDedicatedVmHost(request, WaiterConfiguration.DefaultWaiterConfiguration, targetStates)); }