Search in sources :

Example 1 with ListOccurrencesRequest

use of com.google.containeranalysis.v1alpha1.ListOccurrencesRequest in project java-docs-samples by GoogleCloudPlatform.

the class Samples method getOccurrencesForImage.

// [END occurrences_for_note]
// [START occurrences_for_image]
/**
 * Retrieves all the occurrences associated with a specified image
 *
 * @param imageUrl the Container Registry URL associated with the image
 *                 example: "https://gcr.io/project/image@sha256:foo"
 * @param projectId the project's unique identifier
 * @return number of occurrences found
 * @throws Exception on errors while closing the client
 */
public static int getOccurrencesForImage(String imageUrl, String projectId) throws Exception {
    try (ContainerAnalysisClient client = ContainerAnalysisClient.create()) {
        final String filterStr = "resourceUrl=\"" + imageUrl + "\"";
        final String projectName = client.formatProjectName(projectId);
        int i = 0;
        // build the request
        ListOccurrencesRequest.Builder b = ListOccurrencesRequest.newBuilder();
        b.setFilter(filterStr);
        b.setParent(projectName);
        ListOccurrencesRequest req = b.build();
        // query for the requested occurrences
        ListOccurrencesPagedResponse response = client.listOccurrences(req);
        for (Occurrence o : response.iterateAll()) {
            // print and count each occurrence found
            System.out.println(o.getName());
            i = i + 1;
        }
        return i;
    }
}
Also used : ListOccurrencesRequest(com.google.containeranalysis.v1alpha1.ListOccurrencesRequest) ContainerAnalysisClient(com.google.cloud.devtools.containeranalysis.v1alpha1.ContainerAnalysisClient) Occurrence(com.google.containeranalysis.v1alpha1.Occurrence) ListOccurrencesPagedResponse(com.google.cloud.devtools.containeranalysis.v1alpha1.PagedResponseWrappers.ListOccurrencesPagedResponse)

Aggregations

ContainerAnalysisClient (com.google.cloud.devtools.containeranalysis.v1alpha1.ContainerAnalysisClient)1 ListOccurrencesPagedResponse (com.google.cloud.devtools.containeranalysis.v1alpha1.PagedResponseWrappers.ListOccurrencesPagedResponse)1 ListOccurrencesRequest (com.google.containeranalysis.v1alpha1.ListOccurrencesRequest)1 Occurrence (com.google.containeranalysis.v1alpha1.Occurrence)1