Skip to content

Commit

Permalink
make ImdsManagedIdentityCredential public again
Browse files Browse the repository at this point in the history
  • Loading branch information
cataggar committed May 14, 2024
1 parent 33dc607 commit 118eb65
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ use std::{str, sync::Arc};
use time::OffsetDateTime;

#[derive(Debug)]
pub(crate) enum ImdsId {
pub enum ImdsId {
SystemAssigned,
#[allow(dead_code)]
ClientId(String),
Expand All @@ -30,7 +30,7 @@ pub(crate) enum ImdsId {
///
/// Built up from docs at [https://docs.microsoft.com/azure/app-service/overview-managed-identity#using-the-rest-protocol](https://docs.microsoft.com/azure/app-service/overview-managed-identity#using-the-rest-protocol)
#[derive(Debug)]
pub(crate) struct ImdsManagedIdentityCredential {
pub struct ImdsManagedIdentityCredential {
http_client: Arc<dyn HttpClient>,
endpoint: Url,
api_version: String,
Expand Down

0 comments on commit 118eb65

Please sign in to comment.