All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.instaclustr.cassandra.backup.gcp.GCPRemoteObjectReference Maven / Gradle / Ivy

There is a newer version: 2.0.0-alpha8
Show newest version
package com.instaclustr.cassandra.backup.gcp;

import java.nio.file.Path;

import com.google.cloud.storage.BlobId;
import com.instaclustr.cassandra.backup.impl.RemoteObjectReference;

public class GCPRemoteObjectReference extends RemoteObjectReference {
    public final BlobId blobId;

    public GCPRemoteObjectReference(final Path objectKey, final String canonicalPath, final String bucket) {
        super(objectKey, canonicalPath);
        this.blobId = BlobId.of(bucket, canonicalPath);
    }

    public Path getObjectKey() {
        return objectKey;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy