azure-core
Loading...
Searching...
No Matches
resource_identifier.hpp
Go to the documentation of this file.
1// Copyright (c) Microsoft Corporation.
2// Licensed under the MIT License.
3
9#pragma once
10
11#include <string>
12
13namespace Azure { namespace Core {
14
18 class ResourceIdentifier final {
19 std::string m_resourceId;
20
21 public:
27 explicit ResourceIdentifier(std::string const& resourceId);
28
34 std::string ToString() const { return m_resourceId; }
35 };
36
37}} // namespace Azure::Core
An Azure Resource Manager resource identifier.
Definition resource_identifier.hpp:18
std::string ToString() const
The string representation of this resource identifier.
Definition resource_identifier.hpp:34
Compute the hash value for the input binary data, using SHA256, SHA384 and SHA512.
Definition azure_assert.hpp:57