9#include <azure/core/credentials/credentials.hpp>
10#include <azure/core/credentials/token_credential_options.hpp>
11#include <azure/core/url.hpp>
17namespace Azure {
namespace Identity {
namespace _detail {
18 class ManagedIdentitySource :
protected TokenCredentialImpl {
20 std::string m_clientId;
21 std::string m_authorityHost;
24 virtual Core::Credentials::AccessToken GetToken(
25 Core::Credentials::TokenRequestContext
const& tokenRequestContext,
26 Core::Context
const& context)
const = 0;
29 _detail::TokenCache m_tokenCache;
31 static Core::Url ParseEndpointUrl(
32 std::string
const& credName,
33 std::string
const& url,
34 char const* envVarName,
35 std::string
const& credSource,
36 std::string
const& clientId);
38 explicit ManagedIdentitySource(
40 std::string authorityHost,
41 Core::Credentials::TokenCredentialOptions
const& options)
42 : TokenCredentialImpl(options), m_clientId(std::move(clientId)),
43 m_authorityHost(std::move(authorityHost))
47 std::string
const& GetClientId()
const {
return m_clientId; }
48 std::string
const& GetAuthorityHost()
const {
return m_authorityHost; }
51 class AppServiceManagedIdentitySource :
public ManagedIdentitySource {
53 Core::Http::Request m_request;
56 explicit AppServiceManagedIdentitySource(
57 std::string
const& clientId,
58 std::string
const& objectId,
59 std::string
const& resourceId,
60 Core::Credentials::TokenCredentialOptions
const& options,
61 Core::Url endpointUrl,
62 std::string
const& secret,
63 std::string
const& apiVersion,
64 std::string
const& secretHeaderName,
65 std::string
const& clientIdHeaderName);
68 static std::unique_ptr<ManagedIdentitySource> Create(
69 std::string
const& credName,
70 std::string
const& clientId,
71 std::string
const& objectId,
72 std::string
const& resourceId,
73 Core::Credentials::TokenCredentialOptions
const& options,
74 char const* endpointVarName,
75 char const* secretVarName,
76 char const* appServiceVersion);
79 Core::Credentials::AccessToken GetToken(
80 Core::Credentials::TokenRequestContext
const& tokenRequestContext,
81 Core::Context
const& context)
const final;
84 class AppServiceV2017ManagedIdentitySource final :
public AppServiceManagedIdentitySource {
85 friend class AppServiceManagedIdentitySource;
88 explicit AppServiceV2017ManagedIdentitySource(
89 std::string
const& clientId,
90 std::string
const& objectId,
91 std::string
const& resourceId,
92 Core::Credentials::TokenCredentialOptions
const& options,
93 Core::Url endpointUrl,
94 std::string
const& secret)
95 : AppServiceManagedIdentitySource(
100 std::move(endpointUrl),
109 static std::unique_ptr<ManagedIdentitySource> Create(
110 std::string
const& credName,
111 std::string
const& clientId,
112 std::string
const& objectId,
113 std::string
const& resourceId,
114 Core::Credentials::TokenCredentialOptions
const& options);
117 class AppServiceV2019ManagedIdentitySource final :
public AppServiceManagedIdentitySource {
118 friend class AppServiceManagedIdentitySource;
121 explicit AppServiceV2019ManagedIdentitySource(
122 std::string
const& clientId,
123 std::string
const& objectId,
124 std::string
const& resourceId,
125 Core::Credentials::TokenCredentialOptions
const& options,
126 Core::Url endpointUrl,
127 std::string
const& secret)
128 : AppServiceManagedIdentitySource(
133 std::move(endpointUrl),
142 static std::unique_ptr<ManagedIdentitySource> Create(
143 std::string
const& credName,
144 std::string
const& clientId,
145 std::string
const& objectId,
146 std::string
const& resourceId,
147 Core::Credentials::TokenCredentialOptions
const& options);
150 class CloudShellManagedIdentitySource final :
public ManagedIdentitySource {
154 explicit CloudShellManagedIdentitySource(
155 std::string
const& clientId,
156 Core::Credentials::TokenCredentialOptions
const& options,
157 Core::Url endpointUrl);
160 static std::unique_ptr<ManagedIdentitySource> Create(
161 std::string
const& credName,
162 std::string
const& clientId,
163 std::string
const& objectId,
164 std::string
const& resourceId,
165 Core::Credentials::TokenCredentialOptions
const& options);
167 Core::Credentials::AccessToken GetToken(
168 Core::Credentials::TokenRequestContext
const& tokenRequestContext,
169 Core::Context
const& context)
const override;
172 class AzureArcManagedIdentitySource final :
public ManagedIdentitySource {
176 explicit AzureArcManagedIdentitySource(
177 Core::Credentials::TokenCredentialOptions
const& options,
178 Core::Url endpointUrl);
181 static std::unique_ptr<ManagedIdentitySource> Create(
182 std::string
const& credName,
183 std::string
const& clientId,
184 std::string
const& objectId,
185 std::string
const& resourceId,
186 Core::Credentials::TokenCredentialOptions
const& options);
188 Core::Credentials::AccessToken GetToken(
189 Core::Credentials::TokenRequestContext
const& tokenRequestContext,
190 Core::Context
const& context)
const override;
193 class ImdsManagedIdentitySource final :
public ManagedIdentitySource {
195 Core::Http::Request m_request;
197 explicit ImdsManagedIdentitySource(
198 std::string
const& clientId,
199 std::string
const& objectId,
200 std::string
const& resourceId,
201 Core::Credentials::TokenCredentialOptions
const& options);
204 static std::unique_ptr<ManagedIdentitySource> Create(
205 std::string
const& credName,
206 std::string
const& clientId,
207 std::string
const& objectId,
208 std::string
const& resourceId,
209 Core::Credentials::TokenCredentialOptions
const& options);
211 Core::Credentials::AccessToken GetToken(
212 Core::Credentials::TokenRequestContext
const& tokenRequestContext,
213 Core::Context
const& context)
const override;
Most common implementation part for a Token Credential.