13#include <azure/core/credentials/credentials.hpp>
14#include <azure/core/credentials/token_credential_options.hpp>
15#include <azure/core/datetime.hpp>
21namespace Azure {
namespace Identity {
38 = std::chrono::seconds(13);
59#if !defined(_azure_TESTING_BUILD)
62 :
public Core::Credentials::TokenCredential {
63#if !defined(_azure_TESTING_BUILD)
70 _detail::TokenCache m_tokenCache;
73 std::vector<std::string> m_additionallyAllowedTenants;
76 std::string m_tenantId;
79 DateTime::duration m_cliProcessTimeout;
82 std::string m_subscription;
86 Core::Credentials::TokenCredentialOptions
const& options,
88 DateTime::duration cliProcessTimeout,
89 std::vector<std::string> additionallyAllowedTenants,
90 std::string subscription);
92 void ThrowIfNotSafeCmdLineInput(
93 std::string
const& input,
94 std::string
const& allowedChars,
95 std::string
const& description,
96 std::string
const& details)
const;
111 explicit AzureCliCredential(Core::Credentials::TokenCredentialOptions
const& options);
121 Core::Credentials::AccessToken
GetToken(
122 Core::Credentials::TokenRequestContext
const& tokenRequestContext,
123 Core::Context
const& context)
const override;
125#if !defined(_azure_TESTING_BUILD)
130 virtual std::string GetAzCommand(
131 std::string
const& scopes,
132 std::string
const& tenantId,
133 std::string
const& subscription)
const;
135 virtual int GetLocalTimeToUtcDiffSeconds()
const;
Enables authentication to Microsoft Entra ID using Azure CLI to obtain an access token.
Definition azure_cli_credential.hpp:62
Core::Credentials::AccessToken GetToken(Core::Credentials::TokenRequestContext const &tokenRequestContext, Core::Context const &context) const override
Gets an authentication token.
Definition azure_cli_credential.cpp:178
Options for configuring the Azure::Identity::AzureCliCredential.
Definition azure_cli_credential.hpp:26
std::string TenantId
The ID of the tenant to which the credential will authenticate by default. If not specified,...
Definition azure_cli_credential.hpp:32
std::vector< std::string > AdditionallyAllowedTenants
For multi-tenant applications, specifies additional tenants for which the credential may acquire toke...
Definition azure_cli_credential.hpp:45
DateTime::duration CliProcessTimeout
The CLI process timeout.
Definition azure_cli_credential.hpp:38
std::string Subscription
The name or ID of an Azure subscription. If not empty, it enables acquiring tokens for a subscription...
Definition azure_cli_credential.hpp:51