Search in sources :

Example 1 with IssuancePolicy

use of com.google.cloud.security.privateca.v1.CaPool.IssuancePolicy in project java-security-private-ca by googleapis.

the class SnippetsIT method testUpdateCAPoolIssuancePolicy.

@Test
public void testUpdateCAPoolIssuancePolicy() throws IOException {
    try (CertificateAuthorityServiceClient certificateAuthorityServiceClient = CertificateAuthorityServiceClient.create()) {
        IssuancePolicy issuancePolicy = certificateAuthorityServiceClient.getCaPool(CaPoolName.of(PROJECT_ID, LOCATION, CA_POOL_ID).toString()).getIssuancePolicy();
        String actualExpression = issuancePolicy.getIdentityConstraints().getCelExpression().getExpression();
        String expectedExpression = "subject_alt_names.all(san, san.type == DNS && (san.value == \"us.google.org\" || san.value.endsWith(\".google.com\")) )";
        assertThat(actualExpression).contains(expectedExpression);
    }
}
Also used : CertificateAuthorityServiceClient(com.google.cloud.security.privateca.v1.CertificateAuthorityServiceClient) IssuancePolicy(com.google.cloud.security.privateca.v1.CaPool.IssuancePolicy) ByteString(com.google.protobuf.ByteString) Test(org.junit.Test)

Example 2 with IssuancePolicy

use of com.google.cloud.security.privateca.v1.CaPool.IssuancePolicy in project java-security-private-ca by googleapis.

the class UpdateCaPool_IssuancePolicy method updateCaPoolIssuancePolicy.

/* Update the Issuance policy for a CA Pool. All certificates issued from this CA Pool should
  meet the issuance policy. */
public static void updateCaPoolIssuancePolicy(String project, String location, String pool_Id) throws IOException, ExecutionException, InterruptedException, TimeoutException {
    /* Initialize client that will be used to send requests. This client only needs to be created
    once, and can be reused for multiple requests. After completing all of your requests, call
    the `certificateAuthorityServiceClient.close()` method on the client to safely
    clean up any remaining background resources. */
    try (CertificateAuthorityServiceClient certificateAuthorityServiceClient = CertificateAuthorityServiceClient.create()) {
        /* Set the updated issuance policy for the CA Pool.
      This particular issuance policy allows only SANs that
      have DNS Names as "us.google.org" or ending in ".google.com". */
        String expr = "subject_alt_names.all(san, san.type == DNS && (san.value == \"us.google.org\"" + " || san.value.endsWith(\".google.com\")) )";
        CaPool.IssuancePolicy issuancePolicy = IssuancePolicy.newBuilder().setIdentityConstraints(CertificateIdentityConstraints.newBuilder().setAllowSubjectPassthrough(true).setAllowSubjectAltNamesPassthrough(true).setCelExpression(Expr.newBuilder().setExpression(expr).build()).build()).build();
        CaPool caPool = CaPool.newBuilder().setName(CaPoolName.of(project, location, pool_Id).toString()).setIssuancePolicy(issuancePolicy).build();
        /* 1. Set the CA pool with updated values.
      2. Set the update mask to specify which properties of the CA Pool should be updated.
      Only the properties specified in the mask will be updated. Make sure that the mask fields
      match the updated issuance policy.
      For more info on constructing path for update mask, see:
      https://cloud.google.com/certificate-authority-service/docs/reference/rest/v1/projects.locations.caPools#issuancepolicy */
        UpdateCaPoolRequest updateCaPoolRequest = UpdateCaPoolRequest.newBuilder().setCaPool(caPool).setUpdateMask(FieldMask.newBuilder(FieldMask.newBuilder().addPaths("issuance_policy.identity_constraints.allow_subject_passthrough").addPaths("issuance_policy.identity_constraints.allow_subject_alt_names_passthrough").addPaths("issuance_policy.identity_constraints.cel_expression").build())).build();
        // Update CA Pool request.
        ApiFuture<Operation> futureCall = certificateAuthorityServiceClient.updateCaPoolCallable().futureCall(updateCaPoolRequest);
        Operation operation = futureCall.get(60, TimeUnit.SECONDS);
        // Check for errors.
        if (operation.hasError()) {
            System.out.println("Error in updating CA Pool Issuance policy ! " + operation.getError());
            return;
        }
        // Get the CA Pool's issuance policy and verify if the fields have been successfully updated.
        IssuancePolicy response = certificateAuthorityServiceClient.getCaPool(CaPoolName.of(project, location, pool_Id).toString()).getIssuancePolicy();
        // Similarly, you can check for other modified fields as well.
        if (response.getIdentityConstraints().getAllowSubjectPassthrough() && response.getIdentityConstraints().getAllowSubjectAltNamesPassthrough()) {
            System.out.println("CA Pool Issuance policy has been updated successfully ! ");
            return;
        }
        System.out.println("Error in updating CA Pool Issuance policy ! Please try again ! " + response);
    }
}
Also used : UpdateCaPoolRequest(com.google.cloud.security.privateca.v1.UpdateCaPoolRequest) CertificateAuthorityServiceClient(com.google.cloud.security.privateca.v1.CertificateAuthorityServiceClient) IssuancePolicy(com.google.cloud.security.privateca.v1.CaPool.IssuancePolicy) CaPool(com.google.cloud.security.privateca.v1.CaPool) Operation(com.google.longrunning.Operation) IssuancePolicy(com.google.cloud.security.privateca.v1.CaPool.IssuancePolicy)

Aggregations

IssuancePolicy (com.google.cloud.security.privateca.v1.CaPool.IssuancePolicy)2 CertificateAuthorityServiceClient (com.google.cloud.security.privateca.v1.CertificateAuthorityServiceClient)2 CaPool (com.google.cloud.security.privateca.v1.CaPool)1 UpdateCaPoolRequest (com.google.cloud.security.privateca.v1.UpdateCaPoolRequest)1 Operation (com.google.longrunning.Operation)1 ByteString (com.google.protobuf.ByteString)1 Test (org.junit.Test)1