Skip navigation links

@Generated(value="by gapic-generator-java")

Package com.google.protos.google.cloud.binaryauthorization.v1

A client to Binary Authorization API

See: Description

Package com.google.protos.google.cloud.binaryauthorization.v1 Description

A client to Binary Authorization API

The interfaces provided are listed below, along with usage samples.

======================= BinauthzManagementServiceV1Client =======================

Service Description: Google Cloud Management Service for Binary Authorization admission policies and attestation authorities.

This API implements a REST model with the following objects:

Sample for BinauthzManagementServiceV1Client:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (BinauthzManagementServiceV1Client binauthzManagementServiceV1Client =
     BinauthzManagementServiceV1Client.create()) {
   PolicyName name = PolicyName.ofProjectName("[PROJECT]");
   Resources.Policy response = binauthzManagementServiceV1Client.getPolicy(name);
 }
 

======================= SystemPolicyV1Client =======================

Service Description: API for working with the system policy.

Sample for SystemPolicyV1Client:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (SystemPolicyV1Client systemPolicyV1Client = SystemPolicyV1Client.create()) {
   PolicyName name = PolicyName.ofLocationName("[LOCATION]");
   Resources.Policy response = systemPolicyV1Client.getSystemPolicy(name);
 }
 

======================= ValidationHelperV1Client =======================

Service Description: BinAuthz Attestor verification

Sample for ValidationHelperV1Client:


 // This snippet has been automatically generated for illustrative purposes only.
 // It may require modifications to work in your environment.
 try (ValidationHelperV1Client validationHelperV1Client = ValidationHelperV1Client.create()) {
   Service.ValidateAttestationOccurrenceRequest request =
       Service.ValidateAttestationOccurrenceRequest.newBuilder()
           .setAttestor("attestor542920680")
           .setAttestation(AttestationOccurrence.newBuilder().build())
           .setOccurrenceNote("occurrenceNote1722072419")
           .setOccurrenceResourceUri("occurrenceResourceUri1001424877")
           .build();
   Service.ValidateAttestationOccurrenceResponse response =
       validationHelperV1Client.validateAttestationOccurrence(request);
 }
 
Skip navigation links

Copyright © 2022 Google LLC. All rights reserved.