Exemplo 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 <GetOsnRequest, GetOsnResponse> ForOsn(GetOsnRequest request, WaiterConfiguration config, params Osn.LifecycleStateEnum[] targetStates)
        {
            var agent = new WaiterAgent <GetOsnRequest, GetOsnResponse>(
                request,
                request => client.GetOsn(request),
                response => targetStates.Contains(response.Osn.LifecycleState.Value)
                );

            return(new Waiter <GetOsnRequest, GetOsnResponse>(config, agent));
        }
Exemplo n.º 2
0
        private void HandleOutput(GetOsnRequest request)
        {
            var waiterConfig = new WaiterConfiguration
            {
                MaxAttempts           = MaxWaitAttempts,
                GetNextDelayInSeconds = (_) => WaitIntervalSeconds
            };

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

            case Default:
                response = client.GetOsn(request).GetAwaiter().GetResult();
                break;
            }
            WriteOutput(response, response.Osn);
        }
Exemplo n.º 3
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            GetOsnRequest request;

            try
            {
                request = new GetOsnRequest
                {
                    BlockchainPlatformId = BlockchainPlatformId,
                    OsnId        = OsnId,
                    OpcRequestId = OpcRequestId
                };

                HandleOutput(request);
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
Exemplo 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 <GetOsnRequest, GetOsnResponse> ForOsn(GetOsnRequest request, params Osn.LifecycleStateEnum[] targetStates)
 {
     return(this.ForOsn(request, WaiterConfiguration.DefaultWaiterConfiguration, targetStates));
 }