Exemple #1
0
        /// <summary>
        /// Returns a list of migration sources in a specified compartment.
        ///
        /// </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>
        public async Task <ListSourcesResponse> ListSources(ListSourcesRequest request, RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
        {
            logger.Trace("Called listSources");
            Uri                uri            = new Uri(this.restClient.GetEndpoint(), System.IO.Path.Combine(basePathWithoutHost, "/sources".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);
                }
                else
                {
                    responseMessage = await this.restClient.HttpSend(requestMessage);
                }

                return(Converter.FromHttpResponseMessage <ListSourcesResponse>(responseMessage));
            }
            catch (Exception e)
            {
                logger.Error($"ListSources failed with error: {e.Message}");
                throw;
            }
        }
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListSourcesRequest request;

            try
            {
                request = new ListSourcesRequest
                {
                    CompartmentId  = CompartmentId,
                    OpcRequestId   = OpcRequestId,
                    Id             = Id,
                    Limit          = Limit,
                    Page           = Page,
                    SortOrder      = SortOrder,
                    SortBy         = SortBy,
                    DisplayName    = DisplayName,
                    LifecycleState = LifecycleState
                };
                IEnumerable <ListSourcesResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.Items, true);
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
Exemple #3
0
 /// <summary>
 /// Creates a new enumerable which will iterate over the responses received from the ListSources operation. This enumerable
 /// will fetch more data from the server as needed.
 /// </summary>
 /// <param name="request">The request object containing the details to send</param>
 /// <param name="retryConfiguration">The configuration for retrying, may be null</param>
 /// <param name="cancellationToken">The cancellation token object</param>
 /// <returns>The enumerator, which supports a simple iteration over a collection of a specified type</returns>
 public IEnumerable <ListSourcesResponse> ListSourcesResponseEnumerator(ListSourcesRequest request, Common.Retry.RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
 {
     return(new Common.Utils.ResponseEnumerable <ListSourcesRequest, ListSourcesResponse>(
                response => response.OpcNextPage,
                input =>
     {
         if (!string.IsNullOrEmpty(input))
         {
             request.Page = input;
         }
         return request;
     },
                request => client.ListSources(request, retryConfiguration, cancellationToken).Result
                ));
 }
Exemple #4
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListSourcesRequest request;

            try
            {
                request = new ListSourcesRequest
                {
                    NamespaceName     = NamespaceName,
                    CompartmentId     = CompartmentId,
                    EntityType        = EntityType,
                    SourceDisplayText = SourceDisplayText,
                    IsSystem          = IsSystem,
                    IsAutoAssociated  = IsAutoAssociated,
                    SortOrder         = SortOrder,
                    SortBy            = SortBy,
                    Limit             = Limit,
                    Page         = Page,
                    Name         = Name,
                    Categories   = Categories,
                    IsSimplified = IsSimplified,
                    OpcRequestId = OpcRequestId
                };
                IEnumerable <ListSourcesResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.LogAnalyticsSourceCollection, true);
                }
                if (!ParameterSetName.Equals(AllPageSet) && !ParameterSetName.Equals(LimitSet) && response.OpcNextPage != null)
                {
                    WriteWarning("This operation supports pagination and not all resources were returned. Re-run using the -All option to auto paginate and list all resources.");
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
Exemple #5
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListSourcesRequest request;

            try
            {
                request = new ListSourcesRequest
                {
                    CompartmentId  = CompartmentId,
                    OpcRequestId   = OpcRequestId,
                    Id             = Id,
                    Limit          = Limit,
                    Page           = Page,
                    SortOrder      = SortOrder,
                    SortBy         = SortBy,
                    DisplayName    = DisplayName,
                    LifecycleState = LifecycleState
                };
                IEnumerable <ListSourcesResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.Items, true);
                }
                if (!ParameterSetName.Equals(AllPageSet) && !ParameterSetName.Equals(LimitSet) && response.OpcNextPage != null)
                {
                    WriteWarning("This operation supports pagination and not all resources were returned. Re-run using the -All option to auto paginate and list all resources.");
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListSourcesRequest request;

            try
            {
                request = new ListSourcesRequest
                {
                    NamespaceName     = NamespaceName,
                    CompartmentId     = CompartmentId,
                    EntityType        = EntityType,
                    SourceDisplayText = SourceDisplayText,
                    IsSystem          = IsSystem,
                    IsAutoAssociated  = IsAutoAssociated,
                    SortOrder         = SortOrder,
                    SortBy            = SortBy,
                    Limit             = Limit,
                    Page         = Page,
                    Name         = Name,
                    IsSimplified = IsSimplified,
                    OpcRequestId = OpcRequestId
                };
                IEnumerable <ListSourcesResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.LogAnalyticsSourceCollection, true);
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }