use of com.google.cloud.devtools.containeranalysis.v1alpha1.PagedResponseWrappers.ListOccurrencesPagedResponse 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;
}
}
use of com.google.cloud.devtools.containeranalysis.v1alpha1.PagedResponseWrappers.ListOccurrencesPagedResponse in project java-docs-samples by GoogleCloudPlatform.
the class Samples method getDiscoveryInfo.
// [END get_note]
// [START discovery_info]
/**
* Retrieves the Discovery occurrence created for a specified image
* This occurrence contains information about the initial scan on the image
*
* @param imageUrl the Container Registry URL associated with the image
* example: "https://gcr.io/project/image@sha256:foo"
* @param projectId the GCP project the occurrence will be created under
* @throws Exception on errors while closing the client
*/
public static void getDiscoveryInfo(String imageUrl, String projectId) throws Exception {
String filterStr = "kind=\"DISCOVERY\" AND resourceUrl=\"" + imageUrl + "\"";
try (ContainerAnalysisClient client = ContainerAnalysisClient.create()) {
final String projectName = client.formatProjectName(projectId);
ListOccurrencesRequest.Builder req = ListOccurrencesRequest.newBuilder();
req.setFilter(filterStr).setParent(projectName);
ListOccurrencesPagedResponse response = client.listOccurrences(req.build());
for (Occurrence o : response.iterateAll()) {
System.out.println(o);
}
}
}
Aggregations