forked from googleapis/google-cloud-cpp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcredentials.cc
68 lines (57 loc) · 2.52 KB
/
credentials.cc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
// Copyright 2021 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
#include "google/cloud/credentials.h"
#include "google/cloud/internal/credentials_impl.h"
namespace google {
namespace cloud {
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_BEGIN
Credentials::~Credentials() = default;
std::shared_ptr<Credentials> MakeInsecureCredentials(Options opts) {
return std::make_shared<internal::InsecureCredentialsConfig>(std::move(opts));
}
std::shared_ptr<Credentials> MakeGoogleDefaultCredentials(Options opts) {
return std::make_shared<internal::GoogleDefaultCredentialsConfig>(
std::move(opts));
}
std::shared_ptr<Credentials> MakeAccessTokenCredentials(
std::string const& access_token,
std::chrono::system_clock::time_point expiration, Options opts) {
return std::make_shared<internal::AccessTokenConfig>(access_token, expiration,
std::move(opts));
}
std::shared_ptr<Credentials> MakeImpersonateServiceAccountCredentials(
std::shared_ptr<Credentials> base_credentials,
std::string target_service_account, Options opts) {
return std::make_shared<internal::ImpersonateServiceAccountConfig>(
std::move(base_credentials), std::move(target_service_account),
std::move(opts));
}
std::shared_ptr<Credentials> MakeServiceAccountCredentials(
std::string json_object, Options opts) {
return std::make_shared<internal::ServiceAccountConfig>(
std::move(json_object), std::move(opts));
}
std::shared_ptr<Credentials> MakeExternalAccountCredentials(
std::string json_object, Options opts) {
return std::make_shared<internal::ExternalAccountConfig>(
std::move(json_object), std::move(opts));
}
std::shared_ptr<Credentials> MakeApiKeyCredentials(std::string api_key,
Options opts) {
return std::make_shared<internal::ApiKeyConfig>(std::move(api_key),
std::move(opts));
}
GOOGLE_CLOUD_CPP_INLINE_NAMESPACE_END
} // namespace cloud
} // namespace google