private CloudKMS kms()

in dbeam-core/src/main/java/com/spotify/dbeam/options/KmsDecrypter.java [147:154]


  private CloudKMS kms() throws IOException {
    final HttpTransport transport = transport().orElseGet(Utils::getDefaultTransport);
    final JsonFactory jsonFactory = Utils.getDefaultJsonFactory();
    final Credentials credentials =
        credentials().isPresent() ? credentials().get() : GoogleCredentials.getApplicationDefault();
    return KmsDecrypter.kms(
        transport, jsonFactory, new HttpCredentialsAdapter(scoped(credentials)));
  }