io.openlineage.client.transports.gcs.GcsTransportBuilder Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of transports-gcs Show documentation
Show all versions of transports-gcs Show documentation
GCP GCS OpenLineage transport library
/*
/* Copyright 2018-2024 contributors to the OpenLineage project
/* SPDX-License-Identifier: Apache-2.0
*/
package io.openlineage.client.transports.gcs;
import io.openlineage.client.OpenLineageClientException;
import io.openlineage.client.transports.Transport;
import io.openlineage.client.transports.TransportBuilder;
import io.openlineage.client.transports.TransportConfig;
import java.io.IOException;
public class GcsTransportBuilder implements TransportBuilder {
@Override
public String getType() {
return "gcs";
}
@Override
public TransportConfig getConfig() {
return new GcsTransportConfig();
}
@Override
public Transport build(TransportConfig config) {
try {
return new GcsTransport((GcsTransportConfig) config);
} catch (IOException e) {
throw new OpenLineageClientException(
"An exception occurred while creating a GcsTransport", e);
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy