[−][src]Trait osauth::AuthType
Trait for an authentication type.
An OpenStack authentication type is expected to be able to:
- get an authentication token to use when accessing services,
- get an endpoint URL for the given service type.
An authentication type should cache the token as long as it's valid.
Required methods
fn get_endpoint<'life0, 'async_trait>(
&'life0 self,
service_type: String,
filters: EndpointFilters
) -> Pin<Box<dyn Future<Output = Result<Url, Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
[−]
&'life0 self,
service_type: String,
filters: EndpointFilters
) -> Pin<Box<dyn Future<Output = Result<Url, Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Get a URL for the requested service.
fn request<'life0, 'async_trait>(
&'life0 self,
method: Method,
url: Url
) -> Pin<Box<dyn Future<Output = Result<RequestBuilder, Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
[−]
&'life0 self,
method: Method,
url: Url
) -> Pin<Box<dyn Future<Output = Result<RequestBuilder, Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Create an authenticated request.
fn refresh<'life0, 'async_trait>(
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
[−]
&'life0 self
) -> Pin<Box<dyn Future<Output = Result<(), Error>> + Send + 'async_trait>> where
'life0: 'async_trait,
Self: 'async_trait,
Refresh the authentication (renew the token, etc).
Provided methods
fn default_filters(&self) -> Option<&EndpointFilters>
[−]
Default endpoint filters (if any).