Class GrafeasV1Beta1Client

  • All Implemented Interfaces:
    com.google.api.gax.core.BackgroundResource, AutoCloseable

    @Generated("by gapic-generator")
    @BetaApi
    public class GrafeasV1Beta1Client
    extends Object
    implements com.google.api.gax.core.BackgroundResource
    Service Description: [Grafeas](grafeas.io) API.

    Retrieves analysis results of Cloud components such as Docker container images.

    Analysis results are stored as a series of occurrences. An `Occurrence` contains information about a specific analysis instance on a resource. An occurrence refers to a `Note`. A note contains details describing the analysis and is generally stored in a separate project, called a `Provider`. Multiple occurrences can refer to the same note.

    For example, an SSL vulnerability could affect multiple images. In this case, there would be one note for the vulnerability and an occurrence for each image with the vulnerability referring to that note.

    This class provides the ability to make remote calls to the backing service through method calls that map to API methods. Sample code to get started:

     
     try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
       OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
       Occurrence response = grafeasV1Beta1Client.getOccurrence(name);
     }
     
     

    Note: close() needs to be called on the grafeasV1Beta1Client object to clean up resources such as threads. In the example above, try-with-resources is used, which automatically calls close().

    The surface of this class includes several types of Java methods for each of the API's methods:

    1. A "flattened" method. With this type of method, the fields of the request type have been converted into function parameters. It may be the case that not all fields are available as parameters, and not every API method will have a flattened method entry point.
    2. A "request object" method. This type of method only takes one parameter, a request object, which must be constructed before the call. Not every API method will have a request object method.
    3. A "callable" method. This type of method takes no parameters and returns an immutable API callable object, which can be used to initiate calls to the service.

    See the individual methods for example code.

    Many parameters require resource names to be formatted in a particular way. To assist with these names, this class includes a format method for each type of name, and additionally a parse method to extract the individual identifiers contained within names that are returned.

    This class can be customized by passing in a custom instance of GrafeasV1Beta1Settings to create(). For example:

    To customize credentials:

     
     GrafeasV1Beta1Settings grafeasV1Beta1Settings =
         GrafeasV1Beta1Settings.newBuilder()
             .setCredentialsProvider(FixedCredentialsProvider.create(myCredentials))
             .build();
     GrafeasV1Beta1Client grafeasV1Beta1Client =
         GrafeasV1Beta1Client.create(grafeasV1Beta1Settings);
     
     
    To customize the endpoint:
     
     GrafeasV1Beta1Settings grafeasV1Beta1Settings =
         GrafeasV1Beta1Settings.newBuilder().setEndpoint(myEndpoint).build();
     GrafeasV1Beta1Client grafeasV1Beta1Client =
         GrafeasV1Beta1Client.create(grafeasV1Beta1Settings);
     
     
    • Constructor Detail

      • GrafeasV1Beta1Client

        protected GrafeasV1Beta1Client​(GrafeasV1Beta1Settings settings)
                                throws IOException
        Constructs an instance of GrafeasV1Beta1Client, using the given settings. This is protected so that it is easy to make a subclass, but otherwise, the static factory methods should be preferred.
        Throws:
        IOException
      • GrafeasV1Beta1Client

        @BetaApi("A restructuring of stub classes is planned, so this may break in the future")
        protected GrafeasV1Beta1Client​(GrafeasV1Beta1Stub stub)
    • Method Detail

      • create

        @BetaApi("A restructuring of stub classes is planned, so this may break in the future")
        public static final GrafeasV1Beta1Client create​(GrafeasV1Beta1Stub stub)
        Constructs an instance of GrafeasV1Beta1Client, using the given stub for making calls. This is for advanced usage - prefer to use GrafeasV1Beta1Settings}.
      • getStub

        @BetaApi("A restructuring of stub classes is planned, so this may break in the future")
        public GrafeasV1Beta1Stub getStub()
      • getOccurrence

        public final Occurrence getOccurrence​(OccurrenceName name)
        Gets the specified occurrence.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           Occurrence response = grafeasV1Beta1Client.getOccurrence(name);
         }
         
        Parameters:
        name - The name of the occurrence in the form of `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getOccurrence

        public final Occurrence getOccurrence​(String name)
        Gets the specified occurrence.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           Occurrence response = grafeasV1Beta1Client.getOccurrence(name.toString());
         }
         
        Parameters:
        name - The name of the occurrence in the form of `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getOccurrence

        public final Occurrence getOccurrence​(GetOccurrenceRequest request)
        Gets the specified occurrence.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           GetOccurrenceRequest request = GetOccurrenceRequest.newBuilder()
             .setName(name.toString())
             .build();
           Occurrence response = grafeasV1Beta1Client.getOccurrence(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getOccurrenceCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetOccurrenceRequest,​Occurrence> getOccurrenceCallable()
        Gets the specified occurrence.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           GetOccurrenceRequest request = GetOccurrenceRequest.newBuilder()
             .setName(name.toString())
             .build();
           ApiFuture<Occurrence> future = grafeasV1Beta1Client.getOccurrenceCallable().futureCall(request);
           // Do something
           Occurrence response = future.get();
         }
         
      • listOccurrences

        public final GrafeasV1Beta1Client.ListOccurrencesPagedResponse listOccurrences​(ProjectName parent,
                                                                                       String filter)
        Lists occurrences for the specified project.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           String filter = "";
           for (Occurrence element : grafeasV1Beta1Client.listOccurrences(parent, filter).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - The name of the project to list occurrences for in the form of `projects/[PROJECT_ID]`.
        filter - The filter expression.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listOccurrences

        public final GrafeasV1Beta1Client.ListOccurrencesPagedResponse listOccurrences​(String parent,
                                                                                       String filter)
        Lists occurrences for the specified project.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           String filter = "";
           for (Occurrence element : grafeasV1Beta1Client.listOccurrences(parent.toString(), filter).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - The name of the project to list occurrences for in the form of `projects/[PROJECT_ID]`.
        filter - The filter expression.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listOccurrences

        public final GrafeasV1Beta1Client.ListOccurrencesPagedResponse listOccurrences​(ListOccurrencesRequest request)
        Lists occurrences for the specified project.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           ListOccurrencesRequest request = ListOccurrencesRequest.newBuilder()
             .setParent(parent.toString())
             .build();
           for (Occurrence element : grafeasV1Beta1Client.listOccurrences(request).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listOccurrencesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListOccurrencesRequest,​GrafeasV1Beta1Client.ListOccurrencesPagedResponse> listOccurrencesPagedCallable()
        Lists occurrences for the specified project.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           ListOccurrencesRequest request = ListOccurrencesRequest.newBuilder()
             .setParent(parent.toString())
             .build();
           ApiFuture<ListOccurrencesPagedResponse> future = grafeasV1Beta1Client.listOccurrencesPagedCallable().futureCall(request);
           // Do something
           for (Occurrence element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listOccurrencesCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListOccurrencesRequest,​ListOccurrencesResponse> listOccurrencesCallable()
        Lists occurrences for the specified project.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           ListOccurrencesRequest request = ListOccurrencesRequest.newBuilder()
             .setParent(parent.toString())
             .build();
           while (true) {
             ListOccurrencesResponse response = grafeasV1Beta1Client.listOccurrencesCallable().call(request);
             for (Occurrence element : response.getOccurrencesList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • deleteOccurrence

        public final void deleteOccurrence​(OccurrenceName name)
        Deletes the specified occurrence. For example, use this method to delete an occurrence when the occurrence is no longer applicable for the given resource.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           grafeasV1Beta1Client.deleteOccurrence(name);
         }
         
        Parameters:
        name - The name of the occurrence in the form of `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteOccurrence

        public final void deleteOccurrence​(String name)
        Deletes the specified occurrence. For example, use this method to delete an occurrence when the occurrence is no longer applicable for the given resource.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           grafeasV1Beta1Client.deleteOccurrence(name.toString());
         }
         
        Parameters:
        name - The name of the occurrence in the form of `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteOccurrence

        public final void deleteOccurrence​(DeleteOccurrenceRequest request)
        Deletes the specified occurrence. For example, use this method to delete an occurrence when the occurrence is no longer applicable for the given resource.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           DeleteOccurrenceRequest request = DeleteOccurrenceRequest.newBuilder()
             .setName(name.toString())
             .build();
           grafeasV1Beta1Client.deleteOccurrence(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteOccurrenceCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteOccurrenceRequest,​com.google.protobuf.Empty> deleteOccurrenceCallable()
        Deletes the specified occurrence. For example, use this method to delete an occurrence when the occurrence is no longer applicable for the given resource.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           DeleteOccurrenceRequest request = DeleteOccurrenceRequest.newBuilder()
             .setName(name.toString())
             .build();
           ApiFuture<Void> future = grafeasV1Beta1Client.deleteOccurrenceCallable().futureCall(request);
           // Do something
           future.get();
         }
         
      • createOccurrence

        public final Occurrence createOccurrence​(ProjectName parent,
                                                 Occurrence occurrence)
        Creates a new occurrence.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           Occurrence occurrence = Occurrence.newBuilder().build();
           Occurrence response = grafeasV1Beta1Client.createOccurrence(parent, occurrence);
         }
         
        Parameters:
        parent - The name of the project in the form of `projects/[PROJECT_ID]`, under which the occurrence is to be created.
        occurrence - The occurrence to create.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createOccurrence

        public final Occurrence createOccurrence​(String parent,
                                                 Occurrence occurrence)
        Creates a new occurrence.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           Occurrence occurrence = Occurrence.newBuilder().build();
           Occurrence response = grafeasV1Beta1Client.createOccurrence(parent.toString(), occurrence);
         }
         
        Parameters:
        parent - The name of the project in the form of `projects/[PROJECT_ID]`, under which the occurrence is to be created.
        occurrence - The occurrence to create.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createOccurrence

        public final Occurrence createOccurrence​(CreateOccurrenceRequest request)
        Creates a new occurrence.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           Occurrence occurrence = Occurrence.newBuilder().build();
           CreateOccurrenceRequest request = CreateOccurrenceRequest.newBuilder()
             .setParent(parent.toString())
             .setOccurrence(occurrence)
             .build();
           Occurrence response = grafeasV1Beta1Client.createOccurrence(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createOccurrenceCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateOccurrenceRequest,​Occurrence> createOccurrenceCallable()
        Creates a new occurrence.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           Occurrence occurrence = Occurrence.newBuilder().build();
           CreateOccurrenceRequest request = CreateOccurrenceRequest.newBuilder()
             .setParent(parent.toString())
             .setOccurrence(occurrence)
             .build();
           ApiFuture<Occurrence> future = grafeasV1Beta1Client.createOccurrenceCallable().futureCall(request);
           // Do something
           Occurrence response = future.get();
         }
         
      • batchCreateOccurrences

        public final BatchCreateOccurrencesResponse batchCreateOccurrences​(ProjectName parent,
                                                                           List<Occurrence> occurrences)
        Creates new occurrences in batch.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           List<Occurrence> occurrences = new ArrayList<>();
           BatchCreateOccurrencesResponse response = grafeasV1Beta1Client.batchCreateOccurrences(parent, occurrences);
         }
         
        Parameters:
        parent - The name of the project in the form of `projects/[PROJECT_ID]`, under which the occurrences are to be created.
        occurrences - The occurrences to create.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • batchCreateOccurrences

        public final BatchCreateOccurrencesResponse batchCreateOccurrences​(String parent,
                                                                           List<Occurrence> occurrences)
        Creates new occurrences in batch.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           List<Occurrence> occurrences = new ArrayList<>();
           BatchCreateOccurrencesResponse response = grafeasV1Beta1Client.batchCreateOccurrences(parent.toString(), occurrences);
         }
         
        Parameters:
        parent - The name of the project in the form of `projects/[PROJECT_ID]`, under which the occurrences are to be created.
        occurrences - The occurrences to create.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • batchCreateOccurrences

        public final BatchCreateOccurrencesResponse batchCreateOccurrences​(BatchCreateOccurrencesRequest request)
        Creates new occurrences in batch.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           List<Occurrence> occurrences = new ArrayList<>();
           BatchCreateOccurrencesRequest request = BatchCreateOccurrencesRequest.newBuilder()
             .setParent(parent.toString())
             .addAllOccurrences(occurrences)
             .build();
           BatchCreateOccurrencesResponse response = grafeasV1Beta1Client.batchCreateOccurrences(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • batchCreateOccurrencesCallable

        public final com.google.api.gax.rpc.UnaryCallable<BatchCreateOccurrencesRequest,​BatchCreateOccurrencesResponse> batchCreateOccurrencesCallable()
        Creates new occurrences in batch.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           List<Occurrence> occurrences = new ArrayList<>();
           BatchCreateOccurrencesRequest request = BatchCreateOccurrencesRequest.newBuilder()
             .setParent(parent.toString())
             .addAllOccurrences(occurrences)
             .build();
           ApiFuture<BatchCreateOccurrencesResponse> future = grafeasV1Beta1Client.batchCreateOccurrencesCallable().futureCall(request);
           // Do something
           BatchCreateOccurrencesResponse response = future.get();
         }
         
      • updateOccurrence

        public final Occurrence updateOccurrence​(OccurrenceName name,
                                                 Occurrence occurrence,
                                                 com.google.protobuf.FieldMask updateMask)
        Updates the specified occurrence.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           Occurrence occurrence = Occurrence.newBuilder().build();
           FieldMask updateMask = FieldMask.newBuilder().build();
           Occurrence response = grafeasV1Beta1Client.updateOccurrence(name, occurrence, updateMask);
         }
         
        Parameters:
        name - The name of the occurrence in the form of `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]`.
        occurrence - The updated occurrence.
        updateMask - The fields to update.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateOccurrence

        public final Occurrence updateOccurrence​(String name,
                                                 Occurrence occurrence,
                                                 com.google.protobuf.FieldMask updateMask)
        Updates the specified occurrence.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           Occurrence occurrence = Occurrence.newBuilder().build();
           FieldMask updateMask = FieldMask.newBuilder().build();
           Occurrence response = grafeasV1Beta1Client.updateOccurrence(name.toString(), occurrence, updateMask);
         }
         
        Parameters:
        name - The name of the occurrence in the form of `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]`.
        occurrence - The updated occurrence.
        updateMask - The fields to update.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateOccurrence

        public final Occurrence updateOccurrence​(UpdateOccurrenceRequest request)
        Updates the specified occurrence.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           Occurrence occurrence = Occurrence.newBuilder().build();
           UpdateOccurrenceRequest request = UpdateOccurrenceRequest.newBuilder()
             .setName(name.toString())
             .setOccurrence(occurrence)
             .build();
           Occurrence response = grafeasV1Beta1Client.updateOccurrence(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateOccurrenceCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateOccurrenceRequest,​Occurrence> updateOccurrenceCallable()
        Updates the specified occurrence.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           Occurrence occurrence = Occurrence.newBuilder().build();
           UpdateOccurrenceRequest request = UpdateOccurrenceRequest.newBuilder()
             .setName(name.toString())
             .setOccurrence(occurrence)
             .build();
           ApiFuture<Occurrence> future = grafeasV1Beta1Client.updateOccurrenceCallable().futureCall(request);
           // Do something
           Occurrence response = future.get();
         }
         
      • getOccurrenceNote

        public final Note getOccurrenceNote​(OccurrenceName name)
        Gets the note attached to the specified occurrence. Consumer projects can use this method to get a note that belongs to a provider project.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           Note response = grafeasV1Beta1Client.getOccurrenceNote(name);
         }
         
        Parameters:
        name - The name of the occurrence in the form of `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getOccurrenceNote

        public final Note getOccurrenceNote​(String name)
        Gets the note attached to the specified occurrence. Consumer projects can use this method to get a note that belongs to a provider project.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           Note response = grafeasV1Beta1Client.getOccurrenceNote(name.toString());
         }
         
        Parameters:
        name - The name of the occurrence in the form of `projects/[PROJECT_ID]/occurrences/[OCCURRENCE_ID]`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getOccurrenceNote

        public final Note getOccurrenceNote​(GetOccurrenceNoteRequest request)
        Gets the note attached to the specified occurrence. Consumer projects can use this method to get a note that belongs to a provider project.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           GetOccurrenceNoteRequest request = GetOccurrenceNoteRequest.newBuilder()
             .setName(name.toString())
             .build();
           Note response = grafeasV1Beta1Client.getOccurrenceNote(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getOccurrenceNoteCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetOccurrenceNoteRequest,​Note> getOccurrenceNoteCallable()
        Gets the note attached to the specified occurrence. Consumer projects can use this method to get a note that belongs to a provider project.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           OccurrenceName name = OccurrenceName.of("[PROJECT]", "[OCCURRENCE]");
           GetOccurrenceNoteRequest request = GetOccurrenceNoteRequest.newBuilder()
             .setName(name.toString())
             .build();
           ApiFuture<Note> future = grafeasV1Beta1Client.getOccurrenceNoteCallable().futureCall(request);
           // Do something
           Note response = future.get();
         }
         
      • getNote

        public final Note getNote​(NoteName name)
        Gets the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           Note response = grafeasV1Beta1Client.getNote(name);
         }
         
        Parameters:
        name - The name of the note in the form of `projects/[PROVIDER_ID]/notes/[NOTE_ID]`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getNote

        public final Note getNote​(String name)
        Gets the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           Note response = grafeasV1Beta1Client.getNote(name.toString());
         }
         
        Parameters:
        name - The name of the note in the form of `projects/[PROVIDER_ID]/notes/[NOTE_ID]`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getNote

        public final Note getNote​(GetNoteRequest request)
        Gets the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           GetNoteRequest request = GetNoteRequest.newBuilder()
             .setName(name.toString())
             .build();
           Note response = grafeasV1Beta1Client.getNote(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getNoteCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetNoteRequest,​Note> getNoteCallable()
        Gets the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           GetNoteRequest request = GetNoteRequest.newBuilder()
             .setName(name.toString())
             .build();
           ApiFuture<Note> future = grafeasV1Beta1Client.getNoteCallable().futureCall(request);
           // Do something
           Note response = future.get();
         }
         
      • listNotes

        public final GrafeasV1Beta1Client.ListNotesPagedResponse listNotes​(ProjectName parent,
                                                                           String filter)
        Lists notes for the specified project.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           String filter = "";
           for (Note element : grafeasV1Beta1Client.listNotes(parent, filter).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - The name of the project to list notes for in the form of `projects/[PROJECT_ID]`.
        filter - The filter expression.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listNotes

        public final GrafeasV1Beta1Client.ListNotesPagedResponse listNotes​(String parent,
                                                                           String filter)
        Lists notes for the specified project.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           String filter = "";
           for (Note element : grafeasV1Beta1Client.listNotes(parent.toString(), filter).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        parent - The name of the project to list notes for in the form of `projects/[PROJECT_ID]`.
        filter - The filter expression.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listNotes

        public final GrafeasV1Beta1Client.ListNotesPagedResponse listNotes​(ListNotesRequest request)
        Lists notes for the specified project.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           ListNotesRequest request = ListNotesRequest.newBuilder()
             .setParent(parent.toString())
             .build();
           for (Note element : grafeasV1Beta1Client.listNotes(request).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listNotesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListNotesRequest,​GrafeasV1Beta1Client.ListNotesPagedResponse> listNotesPagedCallable()
        Lists notes for the specified project.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           ListNotesRequest request = ListNotesRequest.newBuilder()
             .setParent(parent.toString())
             .build();
           ApiFuture<ListNotesPagedResponse> future = grafeasV1Beta1Client.listNotesPagedCallable().futureCall(request);
           // Do something
           for (Note element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listNotesCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListNotesRequest,​ListNotesResponse> listNotesCallable()
        Lists notes for the specified project.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           ListNotesRequest request = ListNotesRequest.newBuilder()
             .setParent(parent.toString())
             .build();
           while (true) {
             ListNotesResponse response = grafeasV1Beta1Client.listNotesCallable().call(request);
             for (Note element : response.getNotesList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • deleteNote

        public final void deleteNote​(NoteName name)
        Deletes the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           grafeasV1Beta1Client.deleteNote(name);
         }
         
        Parameters:
        name - The name of the note in the form of `projects/[PROVIDER_ID]/notes/[NOTE_ID]`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteNote

        public final void deleteNote​(String name)
        Deletes the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           grafeasV1Beta1Client.deleteNote(name.toString());
         }
         
        Parameters:
        name - The name of the note in the form of `projects/[PROVIDER_ID]/notes/[NOTE_ID]`.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteNote

        public final void deleteNote​(DeleteNoteRequest request)
        Deletes the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           DeleteNoteRequest request = DeleteNoteRequest.newBuilder()
             .setName(name.toString())
             .build();
           grafeasV1Beta1Client.deleteNote(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • deleteNoteCallable

        public final com.google.api.gax.rpc.UnaryCallable<DeleteNoteRequest,​com.google.protobuf.Empty> deleteNoteCallable()
        Deletes the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           DeleteNoteRequest request = DeleteNoteRequest.newBuilder()
             .setName(name.toString())
             .build();
           ApiFuture<Void> future = grafeasV1Beta1Client.deleteNoteCallable().futureCall(request);
           // Do something
           future.get();
         }
         
      • createNote

        public final Note createNote​(ProjectName parent,
                                     String noteId,
                                     Note note)
        Creates a new note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           String noteId = "";
           Note note = Note.newBuilder().build();
           Note response = grafeasV1Beta1Client.createNote(parent, noteId, note);
         }
         
        Parameters:
        parent - The name of the project in the form of `projects/[PROJECT_ID]`, under which the note is to be created.
        noteId - The ID to use for this note.
        note - The note to create.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createNote

        public final Note createNote​(String parent,
                                     String noteId,
                                     Note note)
        Creates a new note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           String noteId = "";
           Note note = Note.newBuilder().build();
           Note response = grafeasV1Beta1Client.createNote(parent.toString(), noteId, note);
         }
         
        Parameters:
        parent - The name of the project in the form of `projects/[PROJECT_ID]`, under which the note is to be created.
        noteId - The ID to use for this note.
        note - The note to create.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createNote

        public final Note createNote​(CreateNoteRequest request)
        Creates a new note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           String noteId = "";
           Note note = Note.newBuilder().build();
           CreateNoteRequest request = CreateNoteRequest.newBuilder()
             .setParent(parent.toString())
             .setNoteId(noteId)
             .setNote(note)
             .build();
           Note response = grafeasV1Beta1Client.createNote(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • createNoteCallable

        public final com.google.api.gax.rpc.UnaryCallable<CreateNoteRequest,​Note> createNoteCallable()
        Creates a new note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           String noteId = "";
           Note note = Note.newBuilder().build();
           CreateNoteRequest request = CreateNoteRequest.newBuilder()
             .setParent(parent.toString())
             .setNoteId(noteId)
             .setNote(note)
             .build();
           ApiFuture<Note> future = grafeasV1Beta1Client.createNoteCallable().futureCall(request);
           // Do something
           Note response = future.get();
         }
         
      • batchCreateNotes

        public final BatchCreateNotesResponse batchCreateNotes​(ProjectName parent,
                                                               Map<String,​Note> notes)
        Creates new notes in batch.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           Map<String, Note> notes = new HashMap<>();
           BatchCreateNotesResponse response = grafeasV1Beta1Client.batchCreateNotes(parent, notes);
         }
         
        Parameters:
        parent - The name of the project in the form of `projects/[PROJECT_ID]`, under which the notes are to be created.
        notes - The notes to create.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • batchCreateNotes

        public final BatchCreateNotesResponse batchCreateNotes​(String parent,
                                                               Map<String,​Note> notes)
        Creates new notes in batch.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           Map<String, Note> notes = new HashMap<>();
           BatchCreateNotesResponse response = grafeasV1Beta1Client.batchCreateNotes(parent.toString(), notes);
         }
         
        Parameters:
        parent - The name of the project in the form of `projects/[PROJECT_ID]`, under which the notes are to be created.
        notes - The notes to create.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • batchCreateNotes

        public final BatchCreateNotesResponse batchCreateNotes​(BatchCreateNotesRequest request)
        Creates new notes in batch.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           Map<String, Note> notes = new HashMap<>();
           BatchCreateNotesRequest request = BatchCreateNotesRequest.newBuilder()
             .setParent(parent.toString())
             .putAllNotes(notes)
             .build();
           BatchCreateNotesResponse response = grafeasV1Beta1Client.batchCreateNotes(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • batchCreateNotesCallable

        public final com.google.api.gax.rpc.UnaryCallable<BatchCreateNotesRequest,​BatchCreateNotesResponse> batchCreateNotesCallable()
        Creates new notes in batch.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           Map<String, Note> notes = new HashMap<>();
           BatchCreateNotesRequest request = BatchCreateNotesRequest.newBuilder()
             .setParent(parent.toString())
             .putAllNotes(notes)
             .build();
           ApiFuture<BatchCreateNotesResponse> future = grafeasV1Beta1Client.batchCreateNotesCallable().futureCall(request);
           // Do something
           BatchCreateNotesResponse response = future.get();
         }
         
      • updateNote

        public final Note updateNote​(NoteName name,
                                     Note note,
                                     com.google.protobuf.FieldMask updateMask)
        Updates the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           Note note = Note.newBuilder().build();
           FieldMask updateMask = FieldMask.newBuilder().build();
           Note response = grafeasV1Beta1Client.updateNote(name, note, updateMask);
         }
         
        Parameters:
        name - The name of the note in the form of `projects/[PROVIDER_ID]/notes/[NOTE_ID]`.
        note - The updated note.
        updateMask - The fields to update.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateNote

        public final Note updateNote​(String name,
                                     Note note,
                                     com.google.protobuf.FieldMask updateMask)
        Updates the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           Note note = Note.newBuilder().build();
           FieldMask updateMask = FieldMask.newBuilder().build();
           Note response = grafeasV1Beta1Client.updateNote(name.toString(), note, updateMask);
         }
         
        Parameters:
        name - The name of the note in the form of `projects/[PROVIDER_ID]/notes/[NOTE_ID]`.
        note - The updated note.
        updateMask - The fields to update.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateNote

        public final Note updateNote​(UpdateNoteRequest request)
        Updates the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           Note note = Note.newBuilder().build();
           UpdateNoteRequest request = UpdateNoteRequest.newBuilder()
             .setName(name.toString())
             .setNote(note)
             .build();
           Note response = grafeasV1Beta1Client.updateNote(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • updateNoteCallable

        public final com.google.api.gax.rpc.UnaryCallable<UpdateNoteRequest,​Note> updateNoteCallable()
        Updates the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           Note note = Note.newBuilder().build();
           UpdateNoteRequest request = UpdateNoteRequest.newBuilder()
             .setName(name.toString())
             .setNote(note)
             .build();
           ApiFuture<Note> future = grafeasV1Beta1Client.updateNoteCallable().futureCall(request);
           // Do something
           Note response = future.get();
         }
         
      • listNoteOccurrences

        public final GrafeasV1Beta1Client.ListNoteOccurrencesPagedResponse listNoteOccurrences​(NoteName name,
                                                                                               String filter)
        Lists occurrences referencing the specified note. Provider projects can use this method to get all occurrences across consumer projects referencing the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           String filter = "";
           for (Occurrence element : grafeasV1Beta1Client.listNoteOccurrences(name, filter).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        name - The name of the note to list occurrences for in the form of `projects/[PROVIDER_ID]/notes/[NOTE_ID]`.
        filter - The filter expression.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listNoteOccurrences

        public final GrafeasV1Beta1Client.ListNoteOccurrencesPagedResponse listNoteOccurrences​(String name,
                                                                                               String filter)
        Lists occurrences referencing the specified note. Provider projects can use this method to get all occurrences across consumer projects referencing the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           String filter = "";
           for (Occurrence element : grafeasV1Beta1Client.listNoteOccurrences(name.toString(), filter).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        name - The name of the note to list occurrences for in the form of `projects/[PROVIDER_ID]/notes/[NOTE_ID]`.
        filter - The filter expression.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listNoteOccurrences

        public final GrafeasV1Beta1Client.ListNoteOccurrencesPagedResponse listNoteOccurrences​(ListNoteOccurrencesRequest request)
        Lists occurrences referencing the specified note. Provider projects can use this method to get all occurrences across consumer projects referencing the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           ListNoteOccurrencesRequest request = ListNoteOccurrencesRequest.newBuilder()
             .setName(name.toString())
             .build();
           for (Occurrence element : grafeasV1Beta1Client.listNoteOccurrences(request).iterateAll()) {
             // doThingsWith(element);
           }
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • listNoteOccurrencesPagedCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListNoteOccurrencesRequest,​GrafeasV1Beta1Client.ListNoteOccurrencesPagedResponse> listNoteOccurrencesPagedCallable()
        Lists occurrences referencing the specified note. Provider projects can use this method to get all occurrences across consumer projects referencing the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           ListNoteOccurrencesRequest request = ListNoteOccurrencesRequest.newBuilder()
             .setName(name.toString())
             .build();
           ApiFuture<ListNoteOccurrencesPagedResponse> future = grafeasV1Beta1Client.listNoteOccurrencesPagedCallable().futureCall(request);
           // Do something
           for (Occurrence element : future.get().iterateAll()) {
             // doThingsWith(element);
           }
         }
         
      • listNoteOccurrencesCallable

        public final com.google.api.gax.rpc.UnaryCallable<ListNoteOccurrencesRequest,​ListNoteOccurrencesResponse> listNoteOccurrencesCallable()
        Lists occurrences referencing the specified note. Provider projects can use this method to get all occurrences across consumer projects referencing the specified note.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           NoteName name = NoteName.of("[PROJECT]", "[NOTE]");
           ListNoteOccurrencesRequest request = ListNoteOccurrencesRequest.newBuilder()
             .setName(name.toString())
             .build();
           while (true) {
             ListNoteOccurrencesResponse response = grafeasV1Beta1Client.listNoteOccurrencesCallable().call(request);
             for (Occurrence element : response.getOccurrencesList()) {
               // doThingsWith(element);
             }
             String nextPageToken = response.getNextPageToken();
             if (!Strings.isNullOrEmpty(nextPageToken)) {
               request = request.toBuilder().setPageToken(nextPageToken).build();
             } else {
               break;
             }
           }
         }
         
      • getVulnerabilityOccurrencesSummary

        public final VulnerabilityOccurrencesSummary getVulnerabilityOccurrencesSummary​(ProjectName parent,
                                                                                        String filter)
        Gets a summary of the number and severity of occurrences.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           String filter = "";
           VulnerabilityOccurrencesSummary response = grafeasV1Beta1Client.getVulnerabilityOccurrencesSummary(parent, filter);
         }
         
        Parameters:
        parent - The name of the project to get a vulnerability summary for in the form of `projects/[PROJECT_ID]`.
        filter - The filter expression.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getVulnerabilityOccurrencesSummary

        public final VulnerabilityOccurrencesSummary getVulnerabilityOccurrencesSummary​(String parent,
                                                                                        String filter)
        Gets a summary of the number and severity of occurrences.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           String filter = "";
           VulnerabilityOccurrencesSummary response = grafeasV1Beta1Client.getVulnerabilityOccurrencesSummary(parent.toString(), filter);
         }
         
        Parameters:
        parent - The name of the project to get a vulnerability summary for in the form of `projects/[PROJECT_ID]`.
        filter - The filter expression.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getVulnerabilityOccurrencesSummary

        public final VulnerabilityOccurrencesSummary getVulnerabilityOccurrencesSummary​(GetVulnerabilityOccurrencesSummaryRequest request)
        Gets a summary of the number and severity of occurrences.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           GetVulnerabilityOccurrencesSummaryRequest request = GetVulnerabilityOccurrencesSummaryRequest.newBuilder()
             .setParent(parent.toString())
             .build();
           VulnerabilityOccurrencesSummary response = grafeasV1Beta1Client.getVulnerabilityOccurrencesSummary(request);
         }
         
        Parameters:
        request - The request object containing all of the parameters for the API call.
        Throws:
        com.google.api.gax.rpc.ApiException - if the remote call fails
      • getVulnerabilityOccurrencesSummaryCallable

        public final com.google.api.gax.rpc.UnaryCallable<GetVulnerabilityOccurrencesSummaryRequest,​VulnerabilityOccurrencesSummary> getVulnerabilityOccurrencesSummaryCallable()
        Gets a summary of the number and severity of occurrences.

        Sample code:

        
         try (GrafeasV1Beta1Client grafeasV1Beta1Client = GrafeasV1Beta1Client.create()) {
           ProjectName parent = ProjectName.of("[PROJECT]");
           GetVulnerabilityOccurrencesSummaryRequest request = GetVulnerabilityOccurrencesSummaryRequest.newBuilder()
             .setParent(parent.toString())
             .build();
           ApiFuture<VulnerabilityOccurrencesSummary> future = grafeasV1Beta1Client.getVulnerabilityOccurrencesSummaryCallable().futureCall(request);
           // Do something
           VulnerabilityOccurrencesSummary response = future.get();
         }
         
      • shutdown

        public void shutdown()
        Specified by:
        shutdown in interface com.google.api.gax.core.BackgroundResource
      • isShutdown

        public boolean isShutdown()
        Specified by:
        isShutdown in interface com.google.api.gax.core.BackgroundResource
      • isTerminated

        public boolean isTerminated()
        Specified by:
        isTerminated in interface com.google.api.gax.core.BackgroundResource
      • shutdownNow

        public void shutdownNow()
        Specified by:
        shutdownNow in interface com.google.api.gax.core.BackgroundResource