Skip to content

Commit c25ab92

Browse files
authored
chore: update googleapis SHA circa 2025-07-10 (#15260)
* chore: update googleapis SHA circa 2025-07-10 PiperOrigin-RevId: 781562730 * Update the protodeps/protolists * Regenerate libraries
1 parent 113ff39 commit c25ab92

29 files changed

+1211
-273
lines changed

MODULE.bazel

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,12 +55,12 @@ python.toolchain(
5555
bazel_dep(name = "googleapis", version = "0.0.0", repo_name = "com_google_googleapis")
5656
archive_override(
5757
module_name = "googleapis",
58-
integrity = "sha256-obIxX36ykOKHaxmDnaHMeRazb5PIiSH5DQ2qtYdVqKM=",
58+
integrity = "sha256-JLDsEVCdmGOdD0NcdYyYdYvwXlaFeGT6lSp9jkYjCaY=",
5959
patch_strip = 1,
6060
patches = ["//bazel:googleapis.modules.patch"],
61-
strip_prefix = "googleapis-f9d6fe4a6ad9ed89dfc315f284124d2104377940",
61+
strip_prefix = "googleapis-6e5b74e4f8194149542348a40881a5d792a59a0e",
6262
urls = [
63-
"https://github.com/googleapis/googleapis/archive/f9d6fe4a6ad9ed89dfc315f284124d2104377940.tar.gz",
63+
"https://github.com/googleapis/googleapis/archive/6e5b74e4f8194149542348a40881a5d792a59a0e.tar.gz",
6464
],
6565
)
6666

bazel/workspace0.bzl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,10 @@ def gl_cpp_workspace0(name = None):
126126
http_archive,
127127
name = "com_google_googleapis",
128128
urls = [
129-
"https://github.com/googleapis/googleapis/archive/f9d6fe4a6ad9ed89dfc315f284124d2104377940.tar.gz",
129+
"https://github.com/googleapis/googleapis/archive/6e5b74e4f8194149542348a40881a5d792a59a0e.tar.gz",
130130
],
131-
sha256 = "a1b2315f7eb290e2876b19839da1cc7916b36f93c88921f90d0daab58755a8a3",
132-
strip_prefix = "googleapis-f9d6fe4a6ad9ed89dfc315f284124d2104377940",
131+
sha256 = "24b0ec11509d98639d0f435c758c98758bf05e56857864fa952a7d8e462309a6",
132+
strip_prefix = "googleapis-6e5b74e4f8194149542348a40881a5d792a59a0e",
133133
build_file = Label("//bazel:googleapis.BUILD"),
134134
# Scaffolding for patching googleapis after download. For example:
135135
# patches = ["googleapis.patch"]

cmake/GoogleapisConfig.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ set(GOOGLE_CLOUD_CPP_GOOGLEAPIS_SHA256
2727
mark_as_advanced(GOOGLE_CLOUD_CPP_GOOGLEAPIS_SHA256)
2828

2929
set(_GOOGLE_CLOUD_CPP_GOOGLEAPIS_COMMIT_SHA
30-
"f9d6fe4a6ad9ed89dfc315f284124d2104377940")
30+
"6e5b74e4f8194149542348a40881a5d792a59a0e")
3131
set(_GOOGLE_CLOUD_CPP_GOOGLEAPIS_SHA256
32-
"a1b2315f7eb290e2876b19839da1cc7916b36f93c88921f90d0daab58755a8a3")
32+
"24b0ec11509d98639d0f435c758c98758bf05e56857864fa952a7d8e462309a6")
3333

3434
set(DOXYGEN_ALIASES
3535
"googleapis_link{2}=\"[\\1](https://github.com/googleapis/googleapis/blob/${_GOOGLE_CLOUD_CPP_GOOGLEAPIS_COMMIT_SHA}/\\2)\""

external/googleapis/protodeps/privateca.deps

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
@com_google_googleapis//google/api:annotations_proto
22
@com_google_googleapis//google/api:client_proto
33
@com_google_googleapis//google/api:field_behavior_proto
4+
@com_google_googleapis//google/api:field_info_proto
45
@com_google_googleapis//google/api:http_proto
56
@com_google_googleapis//google/api:launch_stage_proto
67
@com_google_googleapis//google/api:resource_proto

google/cloud/config/v1/config_client.cc

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -541,6 +541,70 @@ ConfigClient::GetTerraformVersion(
541541
return connection_->GetTerraformVersion(request);
542542
}
543543

544+
StreamRange<google::cloud::config::v1::ResourceChange>
545+
ConfigClient::ListResourceChanges(std::string const& parent, Options opts) {
546+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
547+
google::cloud::config::v1::ListResourceChangesRequest request;
548+
request.set_parent(parent);
549+
return connection_->ListResourceChanges(request);
550+
}
551+
552+
StreamRange<google::cloud::config::v1::ResourceChange>
553+
ConfigClient::ListResourceChanges(
554+
google::cloud::config::v1::ListResourceChangesRequest request,
555+
Options opts) {
556+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
557+
return connection_->ListResourceChanges(std::move(request));
558+
}
559+
560+
StatusOr<google::cloud::config::v1::ResourceChange>
561+
ConfigClient::GetResourceChange(std::string const& name, Options opts) {
562+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
563+
google::cloud::config::v1::GetResourceChangeRequest request;
564+
request.set_name(name);
565+
return connection_->GetResourceChange(request);
566+
}
567+
568+
StatusOr<google::cloud::config::v1::ResourceChange>
569+
ConfigClient::GetResourceChange(
570+
google::cloud::config::v1::GetResourceChangeRequest const& request,
571+
Options opts) {
572+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
573+
return connection_->GetResourceChange(request);
574+
}
575+
576+
StreamRange<google::cloud::config::v1::ResourceDrift>
577+
ConfigClient::ListResourceDrifts(std::string const& parent, Options opts) {
578+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
579+
google::cloud::config::v1::ListResourceDriftsRequest request;
580+
request.set_parent(parent);
581+
return connection_->ListResourceDrifts(request);
582+
}
583+
584+
StreamRange<google::cloud::config::v1::ResourceDrift>
585+
ConfigClient::ListResourceDrifts(
586+
google::cloud::config::v1::ListResourceDriftsRequest request,
587+
Options opts) {
588+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
589+
return connection_->ListResourceDrifts(std::move(request));
590+
}
591+
592+
StatusOr<google::cloud::config::v1::ResourceDrift>
593+
ConfigClient::GetResourceDrift(std::string const& name, Options opts) {
594+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
595+
google::cloud::config::v1::GetResourceDriftRequest request;
596+
request.set_name(name);
597+
return connection_->GetResourceDrift(request);
598+
}
599+
600+
StatusOr<google::cloud::config::v1::ResourceDrift>
601+
ConfigClient::GetResourceDrift(
602+
google::cloud::config::v1::GetResourceDriftRequest const& request,
603+
Options opts) {
604+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
605+
return connection_->GetResourceDrift(request);
606+
}
607+
544608
StreamRange<google::cloud::location::Location> ConfigClient::ListLocations(
545609
google::cloud::location::ListLocationsRequest request, Options opts) {
546610
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));

0 commit comments

Comments
 (0)