Exemplo n.º 1
0
        private void HandleOutput(GetManagementAgentInstallKeyRequest request)
        {
            var waiterConfig = new WaiterConfiguration
            {
                MaxAttempts           = MaxWaitAttempts,
                GetNextDelayInSeconds = (_) => WaitIntervalSeconds
            };

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

            case Default:
                response = client.GetManagementAgentInstallKey(request).GetAwaiter().GetResult();
                break;
            }
            WriteOutput(response, response.ManagementAgentInstallKey);
        }
Exemplo n.º 2
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            GetManagementAgentInstallKeyRequest request;

            try
            {
                request = new GetManagementAgentInstallKeyRequest
                {
                    ManagementAgentInstallKeyId = ManagementAgentInstallKeyId,
                    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 <GetManagementAgentInstallKeyRequest, GetManagementAgentInstallKeyResponse> ForManagementAgentInstallKey(GetManagementAgentInstallKeyRequest request, WaiterConfiguration config, params LifecycleStates[] targetStates)
        {
            var agent = new WaiterAgent <GetManagementAgentInstallKeyRequest, GetManagementAgentInstallKeyResponse>(
                request,
                request => client.GetManagementAgentInstallKey(request),
                response => targetStates.Contains(response.ManagementAgentInstallKey.LifecycleState.Value),
                targetStates.Contains(LifecycleStates.Terminated)
                );

            return(new Waiter <GetManagementAgentInstallKeyRequest, GetManagementAgentInstallKeyResponse>(config, agent));
        }
Exemplo n.º 4
0
        /// <summary>
        /// Gets complete details of the Agent install Key for a given key id
        /// </summary>
        /// <param name="request">The request object containing the details to send. Required.</param>
        /// <param name="retryConfiguration">The retry configuration that will be used by to send this request. Optional.</param>
        /// <param name="cancellationToken">The cancellation token to cancel this operation. Optional.</param>
        /// <returns>A response object containing details about the completed operation</returns>
        /// <example>Click <a href="https://docs.cloud.oracle.com/en-us/iaas/tools/dot-net-examples/latest/managementagent/GetManagementAgentInstallKey.cs.html">here</a> to see an example of how to use GetManagementAgentInstallKey API.</example>
        public async Task <GetManagementAgentInstallKeyResponse> GetManagementAgentInstallKey(GetManagementAgentInstallKeyRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called getManagementAgentInstallKey");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/managementAgentInstallKeys/{managementAgentInstallKeyId}".Trim('/')));
            HttpMethod         method         = new HttpMethod("GET");
            HttpRequestMessage requestMessage = Converter.ToHttpRequestMessage(uri, method, request);

            requestMessage.Headers.Add("Accept", "application/json");
            GenericRetrier      retryingClient = Retrier.GetPreferredRetrier(retryConfiguration, this.retryConfiguration);
            HttpResponseMessage responseMessage;

            try
            {
                if (retryingClient != null)
                {
                    responseMessage = await retryingClient.MakeRetryingCall(this.restClient.HttpSend, requestMessage, cancellationToken).ConfigureAwait(false);
                }
                else
                {
                    responseMessage = await this.restClient.HttpSend(requestMessage).ConfigureAwait(false);
                }
                this.restClient.CheckHttpResponseMessage(requestMessage, responseMessage);

                return(Converter.FromHttpResponseMessage <GetManagementAgentInstallKeyResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"GetManagementAgentInstallKey failed with error: {e.Message}");
                throw;
            }
        }
 /// <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 <GetManagementAgentInstallKeyRequest, GetManagementAgentInstallKeyResponse> ForManagementAgentInstallKey(GetManagementAgentInstallKeyRequest request, params LifecycleStates[] targetStates)
 {
     return(this.ForManagementAgentInstallKey(request, WaiterConfiguration.DefaultWaiterConfiguration, targetStates));
 }