Loading [MathJax]/extensions/tex2jax.js
azure-identity
All Classes Files Functions Variables Typedefs Pages
azure_cli_credential.hpp
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
9#pragma once
10
12
13#include <azure/core/credentials/credentials.hpp>
14#include <azure/core/credentials/token_credential_options.hpp>
15#include <azure/core/datetime.hpp>
16
17#include <chrono>
18#include <string>
19#include <vector>
20
21namespace Azure { namespace Identity {
25 struct AzureCliCredentialOptions final : public Core::Credentials::TokenCredentialOptions
26 {
32 std::string TenantId;
33
37 DateTime::duration CliProcessTimeout
38 = std::chrono::seconds(13); // Value was taken from .NET SDK.
39
45 std::vector<std::string> AdditionallyAllowedTenants;
46
51 std::string Subscription;
52 };
53
59#if !defined(_azure_TESTING_BUILD)
60 final
61#endif
62 : public Core::Credentials::TokenCredential {
63#if !defined(_azure_TESTING_BUILD)
64 private:
65#else
66 protected:
67#endif
68
70 _detail::TokenCache m_tokenCache;
71
73 std::vector<std::string> m_additionallyAllowedTenants;
74
76 std::string m_tenantId;
77
79 DateTime::duration m_cliProcessTimeout;
80
82 std::string m_subscription;
83
84 private:
85 explicit AzureCliCredential(
86 Core::Credentials::TokenCredentialOptions const& options,
87 std::string tenantId,
88 DateTime::duration cliProcessTimeout,
89 std::vector<std::string> additionallyAllowedTenants,
90 std::string subscription);
91
92 void ThrowIfNotSafeCmdLineInput(
93 std::string const& input,
94 std::string const& allowedChars,
95 std::string const& description,
96 std::string const& details) const;
97
98 public:
104 explicit AzureCliCredential(AzureCliCredentialOptions const& options = {});
105
111 explicit AzureCliCredential(Core::Credentials::TokenCredentialOptions const& options);
112
121 Core::Credentials::AccessToken GetToken(
122 Core::Credentials::TokenRequestContext const& tokenRequestContext,
123 Core::Context const& context) const override;
124
125#if !defined(_azure_TESTING_BUILD)
126 private:
127#else
128 protected:
129#endif
130 virtual std::string GetAzCommand(
131 std::string const& scopes,
132 std::string const& tenantId,
133 std::string const& subscription) const;
134
135 virtual int GetLocalTimeToUtcDiffSeconds() const;
136 };
137
138}} // namespace Azure::Identity
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
Token cache.