object_store::services

Struct Gcs

pub struct Gcs {
    config: GcsConfig,
    http_client: Option<HttpClient>,
    customized_token_loader: Option<Box<dyn TokenLoad>>,
}
Expand description

Google Cloud Storage services support.

§Capabilities

This service can be used to:

  • stat
  • read
  • write
  • create_dir
  • delete
  • copy
  • rename
  • list
  • presign
  • blocking

§Configuration

  • root: Set the work directory for backend
  • bucket: Set the container name for backend
  • endpoint: Customizable endpoint setting
  • credential: Service Account or External Account JSON, in base64
  • credential_path: local path to Service Account or External Account JSON file
  • service_account: name of Service Account
  • predefined_acl: Predefined ACL for GCS
  • default_storage_class: Default storage class for GCS

Refer to public API docs for more information. For authentication related options, read on.

§Options to authenticate to GCS

OpenDAL supports the following authentication options:

  1. Provide a base64-ed JSON key string with credential
  2. Provide a JSON key file at explicit path with credential_path
  3. Provide a JSON key file at implicit path
  4. Fetch access token from VM metadata
    • Only works when running inside Google Cloud.
    • If a non-default Service Account name is required, set with service_account. Otherwise, nothing need to be set.
  5. A custom TokenLoader via GcsBuilder.customized_token_loader()

Notes:

  • When a Service Account key is provided, it will be used to create access tokens (VM metadata will not be used).
  • Explicit Service Account key, in json or path, always take precedence over ADC-defined key paths.
  • Due to limitation in GCS, a private key is required to create Pre-signed URL. Currently, OpenDAL only supports Service Account key.

§Example

§Via Builder

use anyhow::Result;
use opendal::services::Gcs;
use opendal::Operator;

#[tokio::main]
async fn main() -> Result<()> {
    // create backend builder
    let mut builder = Gcs::default()
       // set the storage bucket for OpenDAL
       .bucket("test")
       // set the working directory root for GCS
       // all operations will happen within it
       .root("/path/to/dir")
       // set the credentials with service account
       .credential("service account JSON in base64")
       // set the predefined ACL for GCS
       .predefined_acl("publicRead")
       // set the default storage class for GCS
       .default_storage_class("STANDARD");

    let op: Operator = Operator::new(builder)?.finish();
    Ok(())
}

Fields§

§config: GcsConfig§http_client: Option<HttpClient>§customized_token_loader: Option<Box<dyn TokenLoad>>

Implementations§

§

impl GcsBuilder

pub fn root(self, root: &str) -> GcsBuilder

set the working directory root of backend

pub fn bucket(self, bucket: &str) -> GcsBuilder

set the container’s name

pub fn scope(self, scope: &str) -> GcsBuilder

set the GCS service scope

If not set, we will use https://www.googleapis.com/auth/devstorage.read_write.

§Valid scope examples
  • read-only: https://www.googleapis.com/auth/devstorage.read_only
  • read-write: https://www.googleapis.com/auth/devstorage.read_write
  • full-control: https://www.googleapis.com/auth/devstorage.full_control

Reference: Cloud Storage authentication

pub fn service_account(self, service_account: &str) -> GcsBuilder

Set the GCS service account.

service account will be used for fetch token from vm metadata. If not set, we will try to fetch with default service account.

pub fn endpoint(self, endpoint: &str) -> GcsBuilder

set the endpoint GCS service uses

pub fn credential(self, credential: &str) -> GcsBuilder

set the base64 hashed credentials string used for OAuth2 authentication.

this method allows to specify the credentials directly as a base64 hashed string. alternatively, you can use credential_path() to provide the local path to a credentials file. we will use one of credential and credential_path to complete the OAuth2 authentication.

Reference: Google Cloud Storage Authentication.

pub fn credential_path(self, path: &str) -> GcsBuilder

set the local path to credentials file which is used for OAuth2 authentication.

credentials file contains the original credentials that have not been base64 hashed. we will use one of credential and credential_path to complete the OAuth2 authentication.

Reference: Google Cloud Storage Authentication.

pub fn http_client(self, client: HttpClient) -> GcsBuilder

Specify the http client that used by this service.

§Notes

This API is part of OpenDAL’s Raw API. HttpClient could be changed during minor updates.

pub fn customized_token_loader( self, token_load: Box<dyn TokenLoad>, ) -> GcsBuilder

Specify the customized token loader used by this service.

pub fn token(self, token: String) -> GcsBuilder

Provide the OAuth2 token to use.

pub fn disable_vm_metadata(self) -> GcsBuilder

Disable attempting to load credentials from the GCE metadata server.

pub fn disable_config_load(self) -> GcsBuilder

Disable loading configuration from the environment.

pub fn predefined_acl(self, acl: &str) -> GcsBuilder

Set the predefined acl for GCS.

Available values are:

  • authenticatedRead
  • bucketOwnerFullControl
  • bucketOwnerRead
  • private
  • projectPrivate
  • publicRead

pub fn default_storage_class(self, class: &str) -> GcsBuilder

Set the default storage class for GCS.

Available values are:

  • STANDARD
  • NEARLINE
  • COLDLINE
  • ARCHIVE

pub fn allow_anonymous(self) -> GcsBuilder

Allow anonymous requests.

This is typically used for buckets which are open to the public or GCS storage emulators.

Trait Implementations§

§

impl Builder for GcsBuilder

§

const SCHEME: Scheme = Scheme::Gcs

Associated scheme for this builder. It indicates what underlying service is.
§

type Config = GcsConfig

Associated configuration for this builder.
§

fn build(self) -> Result<impl Access, Error>

Consume the accessor builder to build a service.
§

impl Debug for GcsBuilder

§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
§

impl Default for GcsBuilder

§

fn default() -> GcsBuilder

Returns the “default value” for a type. Read more

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

§

impl<T> FutureExt for T

§

fn with_context(self, otel_cx: Context) -> WithContext<Self>

Attaches the provided Context to this type, returning a WithContext wrapper. Read more
§

fn with_current_context(self) -> WithContext<Self>

Attaches the current Context to this type, returning a WithContext wrapper. Read more
§

impl<T> Instrument for T

§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided [Span], returning an Instrumented wrapper. Read more
§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
Source§

impl<T> IntoRequest<T> for T

Source§

fn into_request(self) -> Request<T>

Wrap the input message T in a tonic::Request
§

impl<T> Pointable for T

§

const ALIGN: usize

The alignment of pointer.
§

type Init = T

The type for initializers.
§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
§

impl<V, T> VZip<V> for T
where V: MultiLane<T>,

§

fn vzip(self) -> V

§

impl<T> WithSubscriber for T

§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a [WithDispatch] wrapper. Read more
§

impl<T> ErasedDestructor for T
where T: 'static,

§

impl<T> MaybeSend for T
where T: Send,

§

impl<T> MaybeSendSync for T