Struct object_store::azure::MicrosoftAzureBuilder

source ·
pub struct MicrosoftAzureBuilder { /* private fields */ }
Expand description

Configure a connection to Microsoft Azure Blob Storage container using the specified credentials.

§Example

let azure = MicrosoftAzureBuilder::new()
 .with_account(ACCOUNT)
 .with_access_key(ACCESS_KEY)
 .with_container_name(BUCKET_NAME)
 .build();

Implementations§

source§

impl MicrosoftAzureBuilder

source

pub fn new() -> Self

Create a new MicrosoftAzureBuilder with default values.

source

pub fn from_env() -> Self

Create an instance of MicrosoftAzureBuilder with values pre-populated from environment variables.

Variables extracted from environment:

  • AZURE_STORAGE_ACCOUNT_NAME: storage account name
  • AZURE_STORAGE_ACCOUNT_KEY: storage account master key
  • AZURE_STORAGE_ACCESS_KEY: alias for AZURE_STORAGE_ACCOUNT_KEY
  • AZURE_STORAGE_CLIENT_ID -> client id for service principal authorization
  • AZURE_STORAGE_CLIENT_SECRET -> client secret for service principal authorization
  • AZURE_STORAGE_TENANT_ID -> tenant id used in oauth flows
§Example
use object_store::azure::MicrosoftAzureBuilder;

let azure = MicrosoftAzureBuilder::from_env()
    .with_container_name("foo")
    .build();
source

pub fn with_url(self, url: impl Into<String>) -> Self

Parse available connection info form a well-known storage URL.

The supported url schemes are:

  • abfs[s]://<container>/<path> (according to fsspec)
  • abfs[s]://<file_system>@<account_name>.dfs.core.windows.net/<path>
  • abfs[s]://<file_system>@<account_name>.dfs.fabric.microsoft.com/<path>
  • az://<container>/<path> (according to fsspec)
  • adl://<container>/<path> (according to fsspec)
  • azure://<container>/<path> (custom)
  • https://<account>.dfs.core.windows.net
  • https://<account>.blob.core.windows.net
  • https://<account>.blob.core.windows.net/<container>
  • https://<account>.dfs.fabric.microsoft.com
  • https://<account>.dfs.fabric.microsoft.com/<container>
  • https://<account>.blob.fabric.microsoft.com
  • https://<account>.blob.fabric.microsoft.com/<container>

Note: Settings derived from the URL will override any others set on this builder

§Example
use object_store::azure::MicrosoftAzureBuilder;

let azure = MicrosoftAzureBuilder::from_env()
    .with_url("abfss://file_system@account.dfs.core.windows.net/")
    .build();
source

pub fn with_config(self, key: AzureConfigKey, value: impl Into<String>) -> Self

Set an option on the builder via a key - value pair.

source

pub fn get_config_value(&self, key: &AzureConfigKey) -> Option<String>

Get config value via a AzureConfigKey.

§Example
use object_store::azure::{MicrosoftAzureBuilder, AzureConfigKey};

let builder = MicrosoftAzureBuilder::from_env()
    .with_account("foo");
let account_name = builder.get_config_value(&AzureConfigKey::AccountName).unwrap_or_default();
assert_eq!("foo", &account_name);
source

pub fn with_account(self, account: impl Into<String>) -> Self

Set the Azure Account (required)

source

pub fn with_container_name(self, container_name: impl Into<String>) -> Self

Set the Azure Container Name (required)

source

pub fn with_access_key(self, access_key: impl Into<String>) -> Self

Set the Azure Access Key (required - one of access key, bearer token, or client credentials)

source

pub fn with_bearer_token_authorization( self, bearer_token: impl Into<String> ) -> Self

Set a static bearer token to be used for authorizing requests

source

pub fn with_client_secret_authorization( self, client_id: impl Into<String>, client_secret: impl Into<String>, tenant_id: impl Into<String> ) -> Self

Set a client secret used for client secret authorization

source

pub fn with_client_id(self, client_id: impl Into<String>) -> Self

Sets the client id for use in client secret or k8s federated credential flow

source

pub fn with_client_secret(self, client_secret: impl Into<String>) -> Self

Sets the client secret for use in client secret flow

source

pub fn with_tenant_id(self, tenant_id: impl Into<String>) -> Self

Sets the tenant id for use in client secret or k8s federated credential flow

source

pub fn with_sas_authorization( self, query_pairs: impl Into<Vec<(String, String)>> ) -> Self

Set query pairs appended to the url for shared access signature authorization

source

pub fn with_credentials(self, credentials: AzureCredentialProvider) -> Self

Set the credential provider overriding any other options

source

pub fn with_use_emulator(self, use_emulator: bool) -> Self

Set if the Azure emulator should be used (defaults to false)

source

pub fn with_endpoint(self, endpoint: String) -> Self

Override the endpoint used to communicate with blob storage

Defaults to https://{account}.blob.core.windows.net

By default, only HTTPS schemes are enabled. To connect to an HTTP endpoint, enable Self::with_allow_http.

source

pub fn with_use_fabric_endpoint(self, use_fabric_endpoint: bool) -> Self

Set if Microsoft Fabric url scheme should be used (defaults to false)

When disabled the url scheme used is https://{account}.blob.core.windows.net When enabled the url scheme used is https://{account}.dfs.fabric.microsoft.com

Note: Self::with_endpoint will take precedence over this option

source

pub fn with_allow_http(self, allow_http: bool) -> Self

Sets what protocol is allowed

If allow_http is :

  • false (default): Only HTTPS are allowed
  • true: HTTP and HTTPS are allowed
source

pub fn with_authority_host(self, authority_host: impl Into<String>) -> Self

Sets an alternative authority host for OAuth based authorization

Common hosts for azure clouds are defined in authority_hosts.

Defaults to https://login.microsoftonline.com

source

pub fn with_retry(self, retry_config: RetryConfig) -> Self

Set the retry configuration

source

pub fn with_proxy_url(self, proxy_url: impl Into<String>) -> Self

Set the proxy_url to be used by the underlying client

source

pub fn with_proxy_ca_certificate( self, proxy_ca_certificate: impl Into<String> ) -> Self

Set a trusted proxy CA certificate

source

pub fn with_proxy_excludes(self, proxy_excludes: impl Into<String>) -> Self

Set a list of hosts to exclude from proxy connections

source

pub fn with_client_options(self, options: ClientOptions) -> Self

Sets the client options, overriding any already set

source

pub fn with_msi_endpoint(self, msi_endpoint: impl Into<String>) -> Self

Sets the endpoint for acquiring managed identity token

source

pub fn with_federated_token_file( self, federated_token_file: impl Into<String> ) -> Self

Sets a file path for acquiring azure federated identity token in k8s

requires client_id and tenant_id to be set

source

pub fn with_use_azure_cli(self, use_azure_cli: bool) -> Self

source

pub fn with_skip_signature(self, skip_signature: bool) -> Self

If enabled, MicrosoftAzure will not fetch credentials and will not sign requests

This can be useful when interacting with public containers

source

pub fn with_disable_tagging(self, ignore: bool) -> Self

If set to true will ignore any tags provided to put_opts

source

pub fn build(self) -> Result<MicrosoftAzure>

Configure a connection to container with given name on Microsoft Azure Blob store.

Trait Implementations§

source§

impl Clone for MicrosoftAzureBuilder

source§

fn clone(&self) -> MicrosoftAzureBuilder

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for MicrosoftAzureBuilder

source§

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

Formats the value using the given formatter. Read more
source§

impl Default for MicrosoftAzureBuilder

source§

fn default() -> MicrosoftAzureBuilder

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.

source§

impl<T> Instrument for T

source§

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

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

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> IntoEither for T

source§

fn into_either(self, into_left: bool) -> Either<Self, Self>

Converts self into a Left variant of Either<Self, Self> if into_left is true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

Converts self into a Left variant of Either<Self, Self> if into_left(&self) returns true. Converts self into a Right variant of Either<Self, Self> otherwise. Read more
source§

impl<T> Same for T

§

type Output = T

Should always be Self
source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.
source§

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

source§

fn vzip(self) -> V

source§

impl<T> WithSubscriber for T

source§

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
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

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