Esempio n. 1
0
        /// <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 <GetViewRequest, GetViewResponse> ForView(GetViewRequest request, WaiterConfiguration config, params View.LifecycleStateEnum[] targetStates)
        {
            var agent = new WaiterAgent <GetViewRequest, GetViewResponse>(
                request,
                request => client.GetView(request),
                response => targetStates.Contains(response.View.LifecycleState.Value),
                targetStates.Contains(View.LifecycleStateEnum.Deleted)
                );

            return(new Waiter <GetViewRequest, GetViewResponse>(config, agent));
        }
        private void HandleOutput(GetViewRequest request)
        {
            var waiterConfig = new WaiterConfiguration
            {
                MaxAttempts           = MaxWaitAttempts,
                GetNextDelayInSeconds = (_) => WaitIntervalSeconds
            };

            switch (ParameterSetName)
            {
            case LifecycleStateParamSet:
                response = client.Waiters.ForView(request, waiterConfig, WaitForLifecycleState).Execute();
                break;

            case Default:
                response = client.GetView(request).GetAwaiter().GetResult();
                break;
            }
            WriteOutput(response, response.View);
        }
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            GetViewRequest request;

            try
            {
                request = new GetViewRequest
                {
                    ViewId          = ViewId,
                    IfModifiedSince = IfModifiedSince,
                    IfNoneMatch     = IfNoneMatch,
                    OpcRequestId    = OpcRequestId,
                    Scope           = Scope
                };

                HandleOutput(request);
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
Esempio n. 4
0
 /// <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 <GetViewRequest, GetViewResponse> ForView(GetViewRequest request, params View.LifecycleStateEnum[] targetStates)
 {
     return(this.ForView(request, WaiterConfiguration.DefaultWaiterConfiguration, targetStates));
 }