Skip to content

Commit d76430b

Browse files
authored
docs(managedkafka): change old title to new title (#14846)
1 parent 5e8474a commit d76430b

File tree

9 files changed

+22
-21
lines changed

9 files changed

+22
-21
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@ See each library's `README.md` file for more information about:
290290
- [Managed Service for Microsoft Active Directory API](google/cloud/managedidentities/README.md)
291291
[\[quickstart\]](google/cloud/managedidentities/quickstart/README.md)
292292
[\[reference\]](https://cloud.google.com/cpp/docs/reference/managedidentities/latest)
293-
- [Apache Kafka for BigQuery API](google/cloud/managedkafka/README.md)
293+
- [Managed Service for Apache Kafka API](google/cloud/managedkafka/README.md)
294294
[\[quickstart\]](google/cloud/managedkafka/quickstart/README.md)
295295
[\[reference\]](https://cloud.google.com/cpp/docs/reference/managedkafka/latest)
296296
- [Cloud Memorystore for Memcached API](google/cloud/memcache/README.md)

google/cloud/managedkafka/CMakeLists.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@
1616

1717
include(GoogleCloudCppLibrary)
1818

19-
google_cloud_cpp_add_gapic_library(managedkafka "Apache Kafka for BigQuery API"
20-
SERVICE_DIRS "v1/")
19+
google_cloud_cpp_add_gapic_library(
20+
managedkafka "Managed Service for Apache Kafka API" SERVICE_DIRS "v1/")
2121

2222
if (BUILD_TESTING AND GOOGLE_CLOUD_CPP_ENABLE_CXX_EXCEPTIONS)
2323
add_executable(managedkafka_quickstart "quickstart/quickstart.cc")

google/cloud/managedkafka/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
# Apache Kafka for BigQuery API C++ Client Library
1+
# Managed Service for Apache Kafka API C++ Client Library
22

33
This directory contains an idiomatic C++ client library for the
4-
[Apache Kafka for BigQuery API][cloud-service-docs].
4+
[Managed Service for Apache Kafka API][cloud-service-docs].
55

66
Manage Apache Kafka clusters and resources.
77

@@ -51,7 +51,7 @@ int main(int argc, char* argv[]) try {
5151
## More Information
5252
5353
- Official documentation about the
54-
[Apache Kafka for BigQuery API][cloud-service-docs] service
54+
[Managed Service for Apache Kafka API][cloud-service-docs] service
5555
- [Reference doxygen documentation][doxygen-link] for each release of this
5656
client library
5757
- Detailed header comments in our [public `.h`][source-link] files

google/cloud/managedkafka/doc/main.dox

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
/*!
22

3-
@mainpage Apache Kafka for BigQuery API C++ Client Library
3+
@mainpage Managed Service for Apache Kafka API C++ Client Library
44

5-
An idiomatic C++ client library for the [Apache Kafka for BigQuery API][cloud-service-docs].
5+
An idiomatic C++ client library for the [Managed Service for Apache Kafka API][cloud-service-docs].
66

77
Manage Apache Kafka clusters and resources.
88

@@ -15,7 +15,7 @@ While this library is **GA**, please note that the Google Cloud C++ client libra
1515

1616
The following shows the code that you'll run in the
1717
`google/cloud/managedkafka/quickstart/` directory,
18-
which should give you a taste of the Apache Kafka for BigQuery API C++ client library API.
18+
which should give you a taste of the Managed Service for Apache Kafka API C++ client library API.
1919

2020
@snippet quickstart.cc all
2121

google/cloud/managedkafka/doc/options.dox

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*!
2-
@defgroup google-cloud-managedkafka-options Apache Kafka for BigQuery API Configuration Options
2+
@defgroup google-cloud-managedkafka-options Managed Service for Apache Kafka API Configuration Options
33

44
This library uses the same mechanism (`google::cloud::Options`) and the common
55
[options](@ref options) as all other C++ client libraries for its configuration.

google/cloud/managedkafka/quickstart/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# License for the specific language governing permissions and limitations under
1313
# the License.
1414

15-
# This file shows how to use the Apache Kafka for BigQuery API C++ client
15+
# This file shows how to use the Managed Service for Apache Kafka API C++ client
1616
# library from a larger CMake project.
1717

1818
cmake_minimum_required(VERSION 3.10...3.24)

google/cloud/managedkafka/quickstart/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# This is a minimal Makefile to show how to use the Apache Kafka for BigQuery API C++ client
15+
# This is a minimal Makefile to show how to use the Managed Service for Apache Kafka API C++ client
1616
# for developers who use make(1) as their build system.
1717

1818
# The CXX, CXXFLAGS and CXXLD variables are hard-coded. These values work for
@@ -24,7 +24,7 @@ BIN=.
2424

2525
all: $(BIN)/quickstart
2626

27-
# Configuration variables to compile and link against the Apache Kafka for BigQuery API C++
27+
# Configuration variables to compile and link against the Managed Service for Apache Kafka API C++
2828
# client library.
2929
CLIENT_MODULE := google_cloud_cpp_managedkafka
3030
CLIENT_CXXFLAGS := $(shell pkg-config $(CLIENT_MODULE) --cflags)

google/cloud/managedkafka/quickstart/README.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# HOWTO: using the Apache Kafka for BigQuery API C++ client in your project
1+
# HOWTO: using the Managed Service for Apache Kafka API C++ client in your project
22

33
This directory contains small examples showing how to use the Apache Kafka for
44
BigQuery API C++ client library in your own project. These instructions assume
@@ -29,12 +29,13 @@ detail.
2929

3030
## Configuring authentication for the C++ Client Library
3131

32-
Like most Google Cloud Platform (GCP) services, Apache Kafka for BigQuery API
33-
requires that your application authenticates with the service before accessing
34-
any data. If you are not familiar with GCP authentication please take this
35-
opportunity to review the [Authentication Overview][authentication-quickstart].
36-
This library uses the `GOOGLE_APPLICATION_CREDENTIALS` environment variable to
37-
find the credentials file. For example:
32+
Like most Google Cloud Platform (GCP) services, Managed Service for Apache Kafka
33+
API requires that your application authenticates with the service before
34+
accessing any data. If you are not familiar with GCP authentication please take
35+
this opportunity to review the
36+
[Authentication Overview][authentication-quickstart]. This library uses the
37+
`GOOGLE_APPLICATION_CREDENTIALS` environment variable to find the credentials
38+
file. For example:
3839

3940
| Shell | Command |
4041
| :----------------- | ------------------------------------------------------------------------------------ |

google/cloud/managedkafka/quickstart/WORKSPACE.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
# See the License for the specific language governing permissions and
1313
# limitations under the License.
1414

15-
# A minimal WORKSPACE file showing how to use the Apache Kafka for BigQuery API
15+
# A minimal WORKSPACE file showing how to use the Managed Service for Apache Kafka API
1616
# C++ client library in Bazel-based projects.
1717
workspace(name = "qs")
1818

0 commit comments

Comments
 (0)