Skip to content

Commit 1695bd5

Browse files
committed
Manually update READMEs, quickstart, and top-level stuff
1 parent 33fccf1 commit 1695bd5

File tree

6 files changed

+18
-10
lines changed

6 files changed

+18
-10
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,13 @@ breaking changes in the upcoming 3.x release. This release is scheduled for
66

77
## v2.47.0 - TBD
88

9+
### New Libraries
10+
11+
We are happy to announce the following GA libraries. Unless specifically noted,
12+
the APIs in these libraries are stable, and are ready for production use.
13+
14+
- [Audit Manager](/google/cloud/auditmanager/README.md)
15+
916
## v2.46.0 - 2026-01
1017

1118
### [Spanner](/google/cloud/spanner/README.md)

cmake/GoogleCloudCppFeatures.cmake

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,7 @@ set(GOOGLE_CLOUD_CPP_GA_LIBRARIES
5454
"artifactregistry"
5555
"asset"
5656
"assuredworkloads"
57+
"auditmanager"
5758
"automl"
5859
"backupdr"
5960
"baremetalsolution"

google/cloud/auditmanager/CMakeLists.txt

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@ if (BUILD_TESTING AND GOOGLE_CLOUD_CPP_ENABLE_CXX_EXCEPTIONS)
2929
COMMAND
3030
cmake -P "${PROJECT_SOURCE_DIR}/cmake/quickstart-runner.cmake"
3131
$<TARGET_FILE:auditmanager_quickstart> GOOGLE_CLOUD_PROJECT
32-
GOOGLE_CLOUD_CPP_TEST_REGION # EDIT HERE
33-
)
32+
GOOGLE_CLOUD_CPP_TEST_REGION)
3433
set_tests_properties(auditmanager_quickstart
3534
PROPERTIES LABELS "integration-test;quickstart")
3635
endif ()

google/cloud/auditmanager/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ this library.
1616
<!-- inject-quickstart-start -->
1717

1818
```cc
19-
#include "google/cloud/auditmanager/v1/ EDIT HERE _client.h"
19+
#include "google/cloud/auditmanager/v1/audit_manager_client.h"
2020
#include "google/cloud/location.h"
2121
#include <iostream>
2222

@@ -29,10 +29,10 @@ int main(int argc, char* argv[]) try {
2929
auto const location = google::cloud::Location(argv[1], argv[2]);
3030

3131
namespace auditmanager = ::google::cloud::auditmanager_v1;
32-
auto client = auditmanager::ServiceClient(
33-
auditmanager::MakeServiceConnection()); // EDIT HERE
32+
auto client = auditmanager::AuditManagerClient(
33+
auditmanager::MakeAuditManagerConnection());
3434

35-
for (auto r : client.List /*EDIT HERE*/ (location.FullName())) {
35+
for (auto r : client.ListAuditReports(location.FullName())) {
3636
if (!r) throw std::move(r).status();
3737
std::cout << r->DebugString() << "\n";
3838
}

google/cloud/auditmanager/quickstart/quickstart.cc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
// limitations under the License.
1414

1515
//! [all]
16-
#include "google/cloud/auditmanager/v1/ EDIT HERE _client.h"
16+
#include "google/cloud/auditmanager/v1/audit_manager_client.h"
1717
#include "google/cloud/location.h"
1818
#include <iostream>
1919

@@ -26,10 +26,10 @@ int main(int argc, char* argv[]) try {
2626
auto const location = google::cloud::Location(argv[1], argv[2]);
2727

2828
namespace auditmanager = ::google::cloud::auditmanager_v1;
29-
auto client = auditmanager::ServiceClient(
30-
auditmanager::MakeServiceConnection()); // EDIT HERE
29+
auto client = auditmanager::AuditManagerClient(
30+
auditmanager::MakeAuditManagerConnection());
3131

32-
for (auto r : client.List /*EDIT HERE*/ (location.FullName())) {
32+
for (auto r : client.ListAuditReports(location.FullName())) {
3333
if (!r) throw std::move(r).status();
3434
std::cout << r->DebugString() << "\n";
3535
}

libraries.bzl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ GOOGLE_CLOUD_CPP_GA_LIBRARIES = [
3838
"artifactregistry",
3939
"asset",
4040
"assuredworkloads",
41+
"auditmanager",
4142
"automl",
4243
"backupdr",
4344
"baremetalsolution",

0 commit comments

Comments
 (0)