pub struct Client { /* private fields */ }
Expand description
The primary entrypoint to perform operations with Google Cloud Storage.
Implementations§
Source§impl Client
impl Client
Sourcepub fn new() -> Self
pub fn new() -> Self
Constructs a client with the default token provider, where it attemps to obtain the credentials from the following locations:
- Checks for the environment variable
SERVICE_ACCOUNT
, and if it exists, reads the file at the path specified there as a credentials json file. - It attemps to do the same with the
GOOGLE_APPLICATION_CREDENTIALS
var. - It reads the
SERVICE_ACCOUNT_JSON
environment variable directly as json and uses that - It attemps to do the same with the
GOOGLE_APPLICATION_CREDENTIALS_JSON
var.
Sourcepub fn with_cache(token: impl TokenCache + Send + 'static) -> Self
pub fn with_cache(token: impl TokenCache + Send + 'static) -> Self
Initializer with a provided refreshable token
Sourcepub fn bucket(&self) -> BucketClient<'_>
pub fn bucket(&self) -> BucketClient<'_>
Operations on Bucket
s.
Sourcepub fn bucket_access_control(&self) -> BucketAccessControlClient<'_>
pub fn bucket_access_control(&self) -> BucketAccessControlClient<'_>
Operations on BucketAccessControl
s.
Sourcepub fn default_object_access_control(
&self,
) -> DefaultObjectAccessControlClient<'_>
pub fn default_object_access_control( &self, ) -> DefaultObjectAccessControlClient<'_>
Operations on DefaultObjectAccessControl
s.
Sourcepub fn hmac_key(&self) -> HmacKeyClient<'_>
pub fn hmac_key(&self) -> HmacKeyClient<'_>
Operations on HmacKey
s.
Sourcepub fn object(&self) -> ObjectClient<'_>
pub fn object(&self) -> ObjectClient<'_>
Operations on Object
s.
Sourcepub fn object_access_control(&self) -> ObjectAccessControlClient<'_>
pub fn object_access_control(&self) -> ObjectAccessControlClient<'_>
Operations on ObjectAccessControl
s.
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Client
impl !RefUnwindSafe for Client
impl Send for Client
impl Sync for Client
impl Unpin for Client
impl !UnwindSafe for Client
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
Mutably borrows from an owned value. Read more