Exemple #1
0
        public async stt::Task ListAsync()
        {
            moq::Mock <AcceleratorTypes.AcceleratorTypesClient> mockGrpcClient = new moq::Mock <AcceleratorTypes.AcceleratorTypesClient>(moq::MockBehavior.Strict);
            ListAcceleratorTypesRequest request = new ListAcceleratorTypesRequest
            {
                Zone    = "zone255f4ea8",
                Project = "projectaa6ff846",
            };
            AcceleratorTypeList expectedResponse = new AcceleratorTypeList
            {
                Id            = "id74b70bb8",
                Kind          = "kindf7aa39d9",
                Warning       = new Warning(),
                NextPageToken = "next_page_tokendbee0940",
                Items         =
                {
                    new AcceleratorType(),
                },
                SelfLink = "self_link7e87f12d",
            };

            mockGrpcClient.Setup(x => x.ListAsync(request, moq::It.IsAny <grpccore::CallOptions>())).Returns(new grpccore::AsyncUnaryCall <AcceleratorTypeList>(stt::Task.FromResult(expectedResponse), null, null, null, null));
            AcceleratorTypesClient client = new AcceleratorTypesClientImpl(mockGrpcClient.Object, null);
            AcceleratorTypeList    responseCallSettings = await client.ListAsync(request.Project, request.Zone, gaxgrpc::CallSettings.FromCancellationToken(st::CancellationToken.None));

            xunit::Assert.Same(expectedResponse, responseCallSettings);
            AcceleratorTypeList responseCancellationToken = await client.ListAsync(request.Project, request.Zone, st::CancellationToken.None);

            xunit::Assert.Same(expectedResponse, responseCancellationToken);
            mockGrpcClient.VerifyAll();
        }
Exemple #2
0
        public void ListRequestObject()
        {
            moq::Mock <AcceleratorTypes.AcceleratorTypesClient> mockGrpcClient = new moq::Mock <AcceleratorTypes.AcceleratorTypesClient>(moq::MockBehavior.Strict);
            ListAcceleratorTypesRequest request = new ListAcceleratorTypesRequest
            {
                Zone                 = "zone255f4ea8",
                PageToken            = "page_tokenf09e5538",
                MaxResults           = 2806814450U,
                OrderBy              = "order_byb4d33ada",
                Project              = "projectaa6ff846",
                Filter               = "filtere47ac9b2",
                ReturnPartialSuccess = false,
            };
            AcceleratorTypeList expectedResponse = new AcceleratorTypeList
            {
                Id            = "id74b70bb8",
                Kind          = "kindf7aa39d9",
                Warning       = new Warning(),
                NextPageToken = "next_page_tokendbee0940",
                Items         =
                {
                    new AcceleratorType(),
                },
                SelfLink = "self_link7e87f12d",
            };

            mockGrpcClient.Setup(x => x.List(request, moq::It.IsAny <grpccore::CallOptions>())).Returns(expectedResponse);
            AcceleratorTypesClient client   = new AcceleratorTypesClientImpl(mockGrpcClient.Object, null);
            AcceleratorTypeList    response = client.List(request);

            xunit::Assert.Same(expectedResponse, response);
            mockGrpcClient.VerifyAll();
        }
Exemple #3
0
        public void List()
        {
            moq::Mock <AcceleratorTypes.AcceleratorTypesClient> mockGrpcClient = new moq::Mock <AcceleratorTypes.AcceleratorTypesClient>(moq::MockBehavior.Strict);
            ListAcceleratorTypesRequest request = new ListAcceleratorTypesRequest
            {
                Zone    = "zone255f4ea8",
                Project = "projectaa6ff846",
            };
            AcceleratorTypeList expectedResponse = new AcceleratorTypeList
            {
                Id            = "id74b70bb8",
                Kind          = "kindf7aa39d9",
                Warning       = new Warning(),
                NextPageToken = "next_page_tokendbee0940",
                Items         =
                {
                    new AcceleratorType(),
                },
                SelfLink = "self_link7e87f12d",
            };

            mockGrpcClient.Setup(x => x.List(request, moq::It.IsAny <grpccore::CallOptions>())).Returns(expectedResponse);
            AcceleratorTypesClient client   = new AcceleratorTypesClientImpl(mockGrpcClient.Object, null);
            AcceleratorTypeList    response = client.List(request.Project, request.Zone);

            xunit::Assert.Same(expectedResponse, response);
            mockGrpcClient.VerifyAll();
        }
Exemple #4
0
        /// <summary>Snippet for ListAsync</summary>
        public async Task ListRequestObjectAsync()
        {
            // Snippet: ListAsync(ListAcceleratorTypesRequest, CallSettings)
            // Create client
            AcceleratorTypesClient acceleratorTypesClient = await AcceleratorTypesClient.CreateAsync();

            // Initialize request argument(s)
            ListAcceleratorTypesRequest request = new ListAcceleratorTypesRequest
            {
                Zone    = "",
                OrderBy = "",
                Project = "",
                Filter  = "",
                ReturnPartialSuccess = false,
            };
            // Make the request
            PagedAsyncEnumerable <AcceleratorTypeList, AcceleratorType> response = acceleratorTypesClient.ListAsync(request);

            // Iterate over all response items, lazily performing RPCs as required
            await response.ForEachAsync((AcceleratorType item) =>
            {
                // Do something with each item
                Console.WriteLine(item);
            });

            // Or iterate over pages (of server-defined size), performing one RPC per page
            await response.AsRawResponses().ForEachAsync((AcceleratorTypeList page) =>
            {
                // Do something with each page of items
                Console.WriteLine("A page of results:");
                foreach (AcceleratorType item in page)
                {
                    // Do something with each item
                    Console.WriteLine(item);
                }
            });

            // Or retrieve a single page of known size (unless it's the final page), performing as many RPCs as required
            int pageSize = 10;
            Page <AcceleratorType> singlePage = await response.ReadPageAsync(pageSize);

            // Do something with the page of items
            Console.WriteLine($"A page of {pageSize} results (unless it's the final page):");
            foreach (AcceleratorType item in singlePage)
            {
                // Do something with each item
                Console.WriteLine(item);
            }
            // Store the pageToken, for when the next page is required.
            string nextPageToken = singlePage.NextPageToken;
            // End snippet
        }
Exemple #5
0
 /// <summary>Snippet for List</summary>
 public void ListRequestObject()
 {
     // Snippet: List(ListAcceleratorTypesRequest, CallSettings)
     // Create client
     AcceleratorTypesClient acceleratorTypesClient = AcceleratorTypesClient.Create();
     // Initialize request argument(s)
     ListAcceleratorTypesRequest request = new ListAcceleratorTypesRequest
     {
         Zone                 = "",
         PageToken            = "",
         MaxResults           = 0U,
         Filter               = "",
         OrderBy              = "",
         Project              = "",
         ReturnPartialSuccess = false,
     };
     // Make the request
     AcceleratorTypeList response = acceleratorTypesClient.List(request);
     // End snippet
 }
Exemple #6
0
        /// <summary>Snippet for ListAsync</summary>
        public async Task ListRequestObjectAsync()
        {
            // Snippet: ListAsync(ListAcceleratorTypesRequest, CallSettings)
            // Additional: ListAsync(ListAcceleratorTypesRequest, CancellationToken)
            // Create client
            AcceleratorTypesClient acceleratorTypesClient = await AcceleratorTypesClient.CreateAsync();

            // Initialize request argument(s)
            ListAcceleratorTypesRequest request = new ListAcceleratorTypesRequest
            {
                Zone                 = "",
                PageToken            = "",
                MaxResults           = 0U,
                Filter               = "",
                OrderBy              = "",
                Project              = "",
                ReturnPartialSuccess = false,
            };
            // Make the request
            AcceleratorTypeList response = await acceleratorTypesClient.ListAsync(request);

            // End snippet
        }
Exemple #7
0
 /// <summary>
 /// Retrieves a list of accelerator types that are available to the specified project.
 /// </summary>
 /// <param name="request">The request object containing all of the parameters for the API call.</param>
 /// <param name="callSettings">If not null, applies overrides to this RPC call.</param>
 /// <returns>A Task containing the RPC response.</returns>
 public override stt::Task <AcceleratorTypeList> ListAsync(ListAcceleratorTypesRequest request, gaxgrpc::CallSettings callSettings = null)
 {
     Modify_ListAcceleratorTypesRequest(ref request, ref callSettings);
     return(_callList.Async(request, callSettings));
 }
Exemple #8
0
 partial void Modify_ListAcceleratorTypesRequest(ref ListAcceleratorTypesRequest request, ref gaxgrpc::CallSettings settings);
Exemple #9
0
 /// <summary>
 /// Retrieves a list of accelerator types that are available to the specified project.
 /// </summary>
 /// <param name="request">The request object containing all of the parameters for the API call.</param>
 /// <param name="cancellationToken">A <see cref="st::CancellationToken"/> to use for this RPC.</param>
 /// <returns>A Task containing the RPC response.</returns>
 public virtual stt::Task <AcceleratorTypeList> ListAsync(ListAcceleratorTypesRequest request, st::CancellationToken cancellationToken) =>
 ListAsync(request, gaxgrpc::CallSettings.FromCancellationToken(cancellationToken));
Exemple #10
0
 /// <summary>
 /// Retrieves a list of accelerator types that are available to the specified project.
 /// </summary>
 /// <param name="request">The request object containing all of the parameters for the API call.</param>
 /// <param name="callSettings">If not null, applies overrides to this RPC call.</param>
 /// <returns>A Task containing the RPC response.</returns>
 public virtual stt::Task <AcceleratorTypeList> ListAsync(ListAcceleratorTypesRequest request, gaxgrpc::CallSettings callSettings = null) =>
 throw new sys::NotImplementedException();
Exemple #11
0
 /// <summary>
 /// Retrieves a list of accelerator types that are available to the specified project.
 /// </summary>
 /// <param name="request">The request object containing all of the parameters for the API call.</param>
 /// <param name="callSettings">If not null, applies overrides to this RPC call.</param>
 /// <returns>A pageable asynchronous sequence of <see cref="AcceleratorType"/> resources.</returns>
 public override gax::PagedAsyncEnumerable <AcceleratorTypeList, AcceleratorType> ListAsync(ListAcceleratorTypesRequest request, gaxgrpc::CallSettings callSettings = null)
 {
     Modify_ListAcceleratorTypesRequest(ref request, ref callSettings);
     return(new gaxgrpc::GrpcPagedAsyncEnumerable <ListAcceleratorTypesRequest, AcceleratorTypeList, AcceleratorType>(_callList, request, callSettings));
 }
Exemple #12
0
 /// <summary>
 /// Retrieves a list of accelerator types that are available to the specified project.
 /// </summary>
 /// <param name="request">The request object containing all of the parameters for the API call.</param>
 /// <param name="callSettings">If not null, applies overrides to this RPC call.</param>
 /// <returns>A pageable asynchronous sequence of <see cref="AcceleratorType"/> resources.</returns>
 public virtual gax::PagedAsyncEnumerable <AcceleratorTypeList, AcceleratorType> ListAsync(ListAcceleratorTypesRequest request, gaxgrpc::CallSettings callSettings = null) =>
 throw new sys::NotImplementedException();