Search in sources :

Example 1 with SearchAllResourcesPagedResponse

use of com.google.cloud.asset.v1.AssetServiceClient.SearchAllResourcesPagedResponse in project gapic-generator-java by googleapis.

the class AssetServiceClientTest method searchAllResourcesTest.

@Test
public void searchAllResourcesTest() throws Exception {
    ResourceSearchResult responsesElement = ResourceSearchResult.newBuilder().build();
    SearchAllResourcesResponse expectedResponse = SearchAllResourcesResponse.newBuilder().setNextPageToken("").addAllResults(Arrays.asList(responsesElement)).build();
    mockAssetService.addResponse(expectedResponse);
    String scope = "scope109264468";
    String query = "query107944136";
    List<String> assetTypes = new ArrayList<>();
    SearchAllResourcesPagedResponse pagedListResponse = client.searchAllResources(scope, query, assetTypes);
    List<ResourceSearchResult> resources = Lists.newArrayList(pagedListResponse.iterateAll());
    Assert.assertEquals(1, resources.size());
    Assert.assertEquals(expectedResponse.getResultsList().get(0), resources.get(0));
    List<AbstractMessage> actualRequests = mockAssetService.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    SearchAllResourcesRequest actualRequest = ((SearchAllResourcesRequest) actualRequests.get(0));
    Assert.assertEquals(scope, actualRequest.getScope());
    Assert.assertEquals(query, actualRequest.getQuery());
    Assert.assertEquals(assetTypes, actualRequest.getAssetTypesList());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : SearchAllResourcesPagedResponse(com.google.cloud.asset.v1.AssetServiceClient.SearchAllResourcesPagedResponse) AbstractMessage(com.google.protobuf.AbstractMessage) ArrayList(java.util.ArrayList) Test(org.junit.Test)

Example 2 with SearchAllResourcesPagedResponse

use of com.google.cloud.asset.v1.AssetServiceClient.SearchAllResourcesPagedResponse in project java-asset by googleapis.

the class AssetServiceClientTest method searchAllResourcesTest.

@Test
public void searchAllResourcesTest() throws Exception {
    StandardResourceMetadata responsesElement = StandardResourceMetadata.newBuilder().build();
    SearchAllResourcesResponse expectedResponse = SearchAllResourcesResponse.newBuilder().setNextPageToken("").addAllResults(Arrays.asList(responsesElement)).build();
    mockAssetService.addResponse(expectedResponse);
    String scope = "scope109264468";
    String query = "query107944136";
    List<String> assetTypes = new ArrayList<>();
    SearchAllResourcesPagedResponse pagedListResponse = client.searchAllResources(scope, query, assetTypes);
    List<StandardResourceMetadata> resources = Lists.newArrayList(pagedListResponse.iterateAll());
    Assert.assertEquals(1, resources.size());
    Assert.assertEquals(expectedResponse.getResultsList().get(0), resources.get(0));
    List<AbstractMessage> actualRequests = mockAssetService.getRequests();
    Assert.assertEquals(1, actualRequests.size());
    SearchAllResourcesRequest actualRequest = ((SearchAllResourcesRequest) actualRequests.get(0));
    Assert.assertEquals(scope, actualRequest.getScope());
    Assert.assertEquals(query, actualRequest.getQuery());
    Assert.assertEquals(assetTypes, actualRequest.getAssetTypesList());
    Assert.assertTrue(channelProvider.isHeaderSent(ApiClientHeaderProvider.getDefaultApiClientHeaderKey(), GaxGrpcProperties.getDefaultApiClientHeaderPattern()));
}
Also used : SearchAllResourcesPagedResponse(com.google.cloud.asset.v1p1beta1.AssetServiceClient.SearchAllResourcesPagedResponse) AbstractMessage(com.google.protobuf.AbstractMessage) ArrayList(java.util.ArrayList) Test(org.junit.Test)

Example 3 with SearchAllResourcesPagedResponse

use of com.google.cloud.asset.v1.AssetServiceClient.SearchAllResourcesPagedResponse in project java-asset by googleapis.

the class SearchAllResourcesExample method searchAllResources.

// Searches for all the resources within the given scope.
public static void searchAllResources(String scope, String query) {
    // TODO(developer): Replace these variables before running the sample.
    String[] assetTypes = {};
    int pageSize = 0;
    String pageToken = "";
    String orderBy = "";
    SearchAllResourcesRequest request = SearchAllResourcesRequest.newBuilder().setScope(scope).setQuery(query).addAllAssetTypes(Arrays.asList(assetTypes)).setPageSize(pageSize).setPageToken(pageToken).setOrderBy(orderBy).build();
    // the "close" method on the client to safely clean up any remaining background resources.
    try (AssetServiceClient client = AssetServiceClient.create()) {
        SearchAllResourcesPagedResponse response = client.searchAllResources(request);
        System.out.println("Search completed successfully:\n" + response.getPage().getValues());
    } catch (IOException e) {
        System.out.println(String.format("Failed to create client:%n%s", e.toString()));
    } catch (InvalidArgumentException e) {
        System.out.println(String.format("Invalid request:%n%s", e.toString()));
    } catch (ApiException e) {
        System.out.println(String.format("Error during SearchAllResources:%n%s", e.toString()));
    }
}
Also used : SearchAllResourcesPagedResponse(com.google.cloud.asset.v1.AssetServiceClient.SearchAllResourcesPagedResponse) InvalidArgumentException(com.google.api.gax.rpc.InvalidArgumentException) SearchAllResourcesRequest(com.google.cloud.asset.v1.SearchAllResourcesRequest) AssetServiceClient(com.google.cloud.asset.v1.AssetServiceClient) IOException(java.io.IOException) ApiException(com.google.api.gax.rpc.ApiException)

Aggregations

SearchAllResourcesPagedResponse (com.google.cloud.asset.v1.AssetServiceClient.SearchAllResourcesPagedResponse)2 AbstractMessage (com.google.protobuf.AbstractMessage)2 ArrayList (java.util.ArrayList)2 Test (org.junit.Test)2 ApiException (com.google.api.gax.rpc.ApiException)1 InvalidArgumentException (com.google.api.gax.rpc.InvalidArgumentException)1 AssetServiceClient (com.google.cloud.asset.v1.AssetServiceClient)1 SearchAllResourcesRequest (com.google.cloud.asset.v1.SearchAllResourcesRequest)1 SearchAllResourcesPagedResponse (com.google.cloud.asset.v1p1beta1.AssetServiceClient.SearchAllResourcesPagedResponse)1 IOException (java.io.IOException)1