Exemplo n.º 1
0
        protected override void ProcessRecord()
        {
            base.ProcessRecord();
            ListClusterNetworkInstancesRequest request;

            try
            {
                request = new ListClusterNetworkInstancesRequest
                {
                    CompartmentId    = CompartmentId,
                    ClusterNetworkId = ClusterNetworkId,
                    DisplayName      = DisplayName,
                    Limit            = Limit,
                    Page             = Page,
                    SortBy           = SortBy,
                    SortOrder        = SortOrder
                };
                IEnumerable <ListClusterNetworkInstancesResponse> 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();
            ListClusterNetworkInstancesRequest request;

            try
            {
                request = new ListClusterNetworkInstancesRequest
                {
                    CompartmentId    = CompartmentId,
                    ClusterNetworkId = ClusterNetworkId,
                    DisplayName      = DisplayName,
                    Limit            = Limit,
                    Page             = Page,
                    SortBy           = SortBy,
                    SortOrder        = SortOrder
                };
                IEnumerable <ListClusterNetworkInstancesResponse> responses = GetRequestDelegate().Invoke(request);
                foreach (var item in responses)
                {
                    response = item;
                    WriteOutput(response, response.Items, true);
                }
                FinishProcessing(response);
            }
            catch (Exception ex)
            {
                TerminatingErrorDuringExecution(ex);
            }
        }
        /// <summary>
        /// Lists the instances in the specified cluster network.
        /// </summary>
        /// <param name="request"></param>
        /// <returns></returns>
        public ListClusterNetworkInstancesResponse ListClusterNetworkInstances(ListClusterNetworkInstancesRequest request)
        {
            var uri = new Uri($"{GetEndPoint(CoreServices.ClusterNetworks, this.Region)}/{request.ClusterNetworkId}/instances?{request.GetOptionQuery()}");

            using (var webResponse = this.RestClient.Get(uri))

                using (var stream = webResponse.GetResponseStream())
                    using (var reader = new StreamReader(stream))
                    {
                        var response = reader.ReadToEnd();

                        return(new ListClusterNetworkInstancesResponse()
                        {
                            Items = JsonSerializer.Deserialize <List <InstanceSummary> >(response),
                            OpcRequestId = webResponse.Headers.Get("opc-request-id"),
                            OpcNextPage = webResponse.Headers.Get("opc-next-page")
                        });
                    }
        }
 /// <summary>
 /// Creates a new enumerable which will iterate over the InstanceSummary objects
 /// contained in responses from the ListClusterNetworkInstances 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 <InstanceSummary> ListClusterNetworkInstancesRecordEnumerator(ListClusterNetworkInstancesRequest request, Common.Retry.RetryConfiguration retryConfiguration = null, CancellationToken cancellationToken = default)
 {
     return(new Common.Utils.ResponseRecordEnumerable <ListClusterNetworkInstancesRequest, ListClusterNetworkInstancesResponse, InstanceSummary>(
                response => response.OpcNextPage,
                input =>
     {
         if (!string.IsNullOrEmpty(input))
         {
             request.Page = input;
         }
         return request;
     },
                request => client.ListClusterNetworkInstances(request, retryConfiguration, cancellationToken),
                response => response.Items
                ));
 }