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 backendbucket
: Set the container name for backendendpoint
: Customizable endpoint settingcredential
: Service Account or External Account JSON, in base64credential_path
: local path to Service Account or External Account JSON fileservice_account
: name of Service Accountpredefined_acl
: Predefined ACL for GCSdefault_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:
- Provide a base64-ed JSON key string with
credential
- Provide a JSON key file at explicit path with
credential_path
- Provide a JSON key file at implicit path
GcsBackend
will attempt to load Service Account key from ADC well-known places.
- 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.
- A custom
TokenLoader
viaGcsBuilder.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
impl GcsBuilder
pub fn root(self, root: &str) -> GcsBuilder
pub fn root(self, root: &str) -> GcsBuilder
set the working directory root of backend
pub fn bucket(self, bucket: &str) -> GcsBuilder
pub fn bucket(self, bucket: &str) -> GcsBuilder
set the container’s name
pub fn scope(self, scope: &str) -> GcsBuilder
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
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
pub fn endpoint(self, endpoint: &str) -> GcsBuilder
set the endpoint GCS service uses
pub fn credential(self, credential: &str) -> GcsBuilder
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
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
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
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
pub fn token(self, token: String) -> GcsBuilder
Provide the OAuth2 token to use.
pub fn disable_vm_metadata(self) -> GcsBuilder
pub fn disable_vm_metadata(self) -> GcsBuilder
Disable attempting to load credentials from the GCE metadata server.
pub fn disable_config_load(self) -> GcsBuilder
pub fn disable_config_load(self) -> GcsBuilder
Disable loading configuration from the environment.
pub fn predefined_acl(self, acl: &str) -> GcsBuilder
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
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
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
impl Builder for GcsBuilder
§impl Debug for GcsBuilder
impl Debug for GcsBuilder
§impl Default for GcsBuilder
impl Default for GcsBuilder
§fn default() -> GcsBuilder
fn default() -> GcsBuilder
Auto Trait Implementations§
impl Freeze for GcsBuilder
impl !RefUnwindSafe for GcsBuilder
impl Send for GcsBuilder
impl Sync for GcsBuilder
impl Unpin for GcsBuilder
impl !UnwindSafe for GcsBuilder
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> FutureExt for T
impl<T> FutureExt for T
§fn with_context(self, otel_cx: Context) -> WithContext<Self>
fn with_context(self, otel_cx: Context) -> WithContext<Self>
§fn with_current_context(self) -> WithContext<Self>
fn with_current_context(self) -> WithContext<Self>
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request
Source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
Source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request