Loading [MathJax]/jax/input/TeX/config.js
azure-identity
All Classes Files Functions Variables Typedefs Pages
tenant_id_resolver.hpp
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
4#pragma once
5
6#include <azure/core/credentials/credentials.hpp>
7
8#include <string>
9#include <vector>
10
11namespace Azure { namespace Identity { namespace _detail {
16 class TenantIdResolver final {
17 TenantIdResolver() = delete;
18 ~TenantIdResolver() = delete;
19
20 public:
21 static std::string Resolve(
22 std::string const& explicitTenantId,
23 Core::Credentials::TokenRequestContext const& tokenRequestContext,
24 std::vector<std::string> const& additionallyAllowedTenants);
25
26 // ADFS is the Active Directory Federation Service, a tenant ID that is used in Azure Stack.
27 static bool IsAdfs(std::string const& tenantId);
28
29 static bool IsValidTenantId(std::string const& tenantId);
30 };
31}}} // namespace Azure::Identity::_detail