Interface BinauthzManagementServiceV1Beta1Grpc.AsyncService

    • Method Summary

      All Methods Instance Methods Default Methods 
      Modifier and Type Method Description
      default void createAttestor​(CreateAttestorRequest request, io.grpc.stub.StreamObserver<Attestor> responseObserver)
      Creates an [attestor][google.cloud.binaryauthorization.v1beta1.Attestor], and returns a copy of the new [attestor][google.cloud.binaryauthorization.v1beta1.Attestor].
      default void deleteAttestor​(DeleteAttestorRequest request, io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
      Deletes an [attestor][google.cloud.binaryauthorization.v1beta1.Attestor].
      default void getAttestor​(GetAttestorRequest request, io.grpc.stub.StreamObserver<Attestor> responseObserver)
      Gets an [attestor][google.cloud.binaryauthorization.v1beta1.Attestor].
      default void getPolicy​(GetPolicyRequest request, io.grpc.stub.StreamObserver<Policy> responseObserver)
      A [policy][google.cloud.binaryauthorization.v1beta1.Policy] specifies the [attestors][google.cloud.binaryauthorization.v1beta1.Attestor] that must attest to a container image, before the project is allowed to deploy that image.
      default void listAttestors​(ListAttestorsRequest request, io.grpc.stub.StreamObserver<ListAttestorsResponse> responseObserver)
      Lists [attestors][google.cloud.binaryauthorization.v1beta1.Attestor].
      default void updateAttestor​(UpdateAttestorRequest request, io.grpc.stub.StreamObserver<Attestor> responseObserver)
      Updates an [attestor][google.cloud.binaryauthorization.v1beta1.Attestor].
      default void updatePolicy​(UpdatePolicyRequest request, io.grpc.stub.StreamObserver<Policy> responseObserver)
      Creates or updates a project's [policy][google.cloud.binaryauthorization.v1beta1.Policy], and returns a copy of the new [policy][google.cloud.binaryauthorization.v1beta1.Policy].
    • Method Detail

      • getPolicy

        default void getPolicy​(GetPolicyRequest request,
                               io.grpc.stub.StreamObserver<Policy> responseObserver)
         A [policy][google.cloud.binaryauthorization.v1beta1.Policy] specifies the [attestors][google.cloud.binaryauthorization.v1beta1.Attestor] that must attest to
         a container image, before the project is allowed to deploy that
         image. There is at most one policy per project. All image admission
         requests are permitted if a project has no policy.
         Gets the [policy][google.cloud.binaryauthorization.v1beta1.Policy] for this project. Returns a default
         [policy][google.cloud.binaryauthorization.v1beta1.Policy] if the project does not have one.
         
      • updatePolicy

        default void updatePolicy​(UpdatePolicyRequest request,
                                  io.grpc.stub.StreamObserver<Policy> responseObserver)
         Creates or updates a project's [policy][google.cloud.binaryauthorization.v1beta1.Policy], and returns a copy of the
         new [policy][google.cloud.binaryauthorization.v1beta1.Policy]. A policy is always updated as a whole, to avoid race
         conditions with concurrent policy enforcement (or management!)
         requests. Returns NOT_FOUND if the project does not exist, INVALID_ARGUMENT
         if the request is malformed.
         
      • createAttestor

        default void createAttestor​(CreateAttestorRequest request,
                                    io.grpc.stub.StreamObserver<Attestor> responseObserver)
         Creates an [attestor][google.cloud.binaryauthorization.v1beta1.Attestor], and returns a copy of the new
         [attestor][google.cloud.binaryauthorization.v1beta1.Attestor]. Returns NOT_FOUND if the project does not exist,
         INVALID_ARGUMENT if the request is malformed, ALREADY_EXISTS if the
         [attestor][google.cloud.binaryauthorization.v1beta1.Attestor] already exists.
         
      • getAttestor

        default void getAttestor​(GetAttestorRequest request,
                                 io.grpc.stub.StreamObserver<Attestor> responseObserver)
         Gets an [attestor][google.cloud.binaryauthorization.v1beta1.Attestor].
         Returns NOT_FOUND if the [attestor][google.cloud.binaryauthorization.v1beta1.Attestor] does not exist.
         
      • updateAttestor

        default void updateAttestor​(UpdateAttestorRequest request,
                                    io.grpc.stub.StreamObserver<Attestor> responseObserver)
         Updates an [attestor][google.cloud.binaryauthorization.v1beta1.Attestor].
         Returns NOT_FOUND if the [attestor][google.cloud.binaryauthorization.v1beta1.Attestor] does not exist.
         
      • listAttestors

        default void listAttestors​(ListAttestorsRequest request,
                                   io.grpc.stub.StreamObserver<ListAttestorsResponse> responseObserver)
         Lists [attestors][google.cloud.binaryauthorization.v1beta1.Attestor].
         Returns INVALID_ARGUMENT if the project does not exist.
         
      • deleteAttestor

        default void deleteAttestor​(DeleteAttestorRequest request,
                                    io.grpc.stub.StreamObserver<com.google.protobuf.Empty> responseObserver)
         Deletes an [attestor][google.cloud.binaryauthorization.v1beta1.Attestor]. Returns NOT_FOUND if the
         [attestor][google.cloud.binaryauthorization.v1beta1.Attestor] does not exist.