Skip to content

Commit eb672fa

Browse files
authored
docs(iam): update all pubsub -> iam (#7010)
1 parent bd044ce commit eb672fa

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

google/cloud/iam/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 Cloud Pub/Sub C++ client for
15+
# This is a minimal Makefile to show how to use the Cloud IAM C++ client for
1616
# developers that use make(1) as their build system.
1717

1818
# The CXX, CXXFLAGS and CXXLD variables are hard-coded. These values work for
@@ -31,6 +31,6 @@ IAM_CXXFLAGS := $(shell pkg-config $(IAM_DEPS) --cflags)
3131
IAM_CXXLDFLAGS := $(shell pkg-config $(IAM_DEPS) --libs-only-L)
3232
IAM_LIBS := $(shell pkg-config $(IAM_DEPS) --libs-only-l)
3333

34-
# A target using the Cloud Pubsub C++ client library.
34+
# A target using the Cloud IAM C++ client library.
3535
$(BIN)/quickstart: quickstart.cc
3636
$(CXXLD) $(CXXFLAGS) $(IAM_CXXFLAGS) $(IAM_CXXLDFLAGS) -o $@ $^ $(IAM_LIBS)

google/cloud/iam/quickstart/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ https://cloud.google.com/docs/authentication/production
6262
2. Compile this example using Bazel:
6363

6464
```bash
65-
cd $HOME/google-cloud-cpp/google/cloud/pubsub/quickstart
65+
cd $HOME/google-cloud-cpp/google/cloud/iam/quickstart
6666
bazel build ...
6767
```
6868

@@ -101,7 +101,7 @@ https://cloud.google.com/docs/authentication/production
101101
the dependencies:
102102

103103
```bash
104-
cd $HOME/gooogle-cloud-cpp/google/cloud/pubsub/quickstart
104+
cd $HOME/gooogle-cloud-cpp/google/cloud/iam/quickstart
105105
cmake -H. -B.build -DCMAKE_TOOLCHAIN_FILE=$HOME/vcpkg/scripts/buildsystems/vcpkg.cmake
106106
cmake --build .build
107107
```

google/cloud/iam/quickstart/WORKSPACE

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@
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 Google Cloud Pub/Sub C++
16-
# client library in Bazel-based projects.
15+
# A minimal WORKSPACE file showing how to use the Google Cloud IAM C++ client
16+
# library in Bazel-based projects.
1717
workspace(name = "iam_quickstart")
1818

1919
# Add the necessary Starlark functions to fetch google-cloud-cpp.

0 commit comments

Comments
 (0)