Skip to content

Commit e4b94ca

Browse files
authored
chore: update googleapis SHA circa 2025-01-10 (#14926)
PiperOrigin-RevId: 714068635
1 parent cb71d54 commit e4b94ca

File tree

109 files changed

+3541
-1199
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

109 files changed

+3541
-1199
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-nqH6sI2rZfsPg8mmAw2vfv2eyiVJCWGyrnyqx2acWk4=",
58+
integrity = "sha256-GZXEZMbkpRFnuoJjXh4dMXRtMMlLa2BLP0SqZb+YcTw=",
5959
patch_strip = 1,
6060
patches = ["//bazel:googleapis.modules.patch"],
61-
strip_prefix = "googleapis-f4eff5440fd07389f820d22d2a55690c6390dc6d",
61+
strip_prefix = "googleapis-c3556b45dc35a145e04b5692bc72e01a4f58a6b2",
6262
urls = [
63-
"https://github.com/googleapis/googleapis/archive/f4eff5440fd07389f820d22d2a55690c6390dc6d.tar.gz",
63+
"https://github.com/googleapis/googleapis/archive/c3556b45dc35a145e04b5692bc72e01a4f58a6b2.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/f4eff5440fd07389f820d22d2a55690c6390dc6d.tar.gz",
129+
"https://github.com/googleapis/googleapis/archive/c3556b45dc35a145e04b5692bc72e01a4f58a6b2.tar.gz",
130130
],
131-
sha256 = "9ea1fab08dab65fb0f83c9a6030daf7efd9eca25490961b2ae7caac7669c5a4e",
132-
strip_prefix = "googleapis-f4eff5440fd07389f820d22d2a55690c6390dc6d",
131+
sha256 = "1995c464c6e4a51167ba82635e1e1d31746d30c94b6b604b3f44aa65bf98713c",
132+
strip_prefix = "googleapis-c3556b45dc35a145e04b5692bc72e01a4f58a6b2",
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-
"f4eff5440fd07389f820d22d2a55690c6390dc6d")
30+
"c3556b45dc35a145e04b5692bc72e01a4f58a6b2")
3131
set(_GOOGLE_CLOUD_CPP_GOOGLEAPIS_SHA256
32-
"9ea1fab08dab65fb0f83c9a6030daf7efd9eca25490961b2ae7caac7669c5a4e")
32+
"1995c464c6e4a51167ba82635e1e1d31746d30c94b6b604b3f44aa65bf98713c")
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/storage.deps

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@
99
@com_google_googleapis//google/iam/v1:options_proto
1010
@com_google_googleapis//google/iam/v1:policy_proto
1111
@com_google_googleapis//google/iam/v1:resource_policy_member_proto
12+
@com_google_googleapis//google/rpc:status_proto
1213
@com_google_googleapis//google/type:date_proto
1314
@com_google_googleapis//google/type:expr_proto

google/cloud/backupdr/v1/backup_dr_client.cc

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -846,6 +846,29 @@ BackupDRClient::TriggerBackup(google::longrunning::Operation const& operation,
846846
return connection_->TriggerBackup(operation);
847847
}
848848

849+
future<StatusOr<google::cloud::backupdr::v1::InitializeServiceResponse>>
850+
BackupDRClient::InitializeService(
851+
google::cloud::backupdr::v1::InitializeServiceRequest const& request,
852+
Options opts) {
853+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
854+
return connection_->InitializeService(request);
855+
}
856+
857+
StatusOr<google::longrunning::Operation> BackupDRClient::InitializeService(
858+
NoAwaitTag,
859+
google::cloud::backupdr::v1::InitializeServiceRequest const& request,
860+
Options opts) {
861+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
862+
return connection_->InitializeService(NoAwaitTag{}, request);
863+
}
864+
865+
future<StatusOr<google::cloud::backupdr::v1::InitializeServiceResponse>>
866+
BackupDRClient::InitializeService(
867+
google::longrunning::Operation const& operation, Options opts) {
868+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
869+
return connection_->InitializeService(operation);
870+
}
871+
849872
StreamRange<google::cloud::location::Location> BackupDRClient::ListLocations(
850873
google::cloud::location::ListLocationsRequest request, Options opts) {
851874
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));

google/cloud/backupdr/v1/backup_dr_client.h

Lines changed: 152 additions & 84 deletions
Large diffs are not rendered by default.

google/cloud/backupdr/v1/backup_dr_connection.cc

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -435,6 +435,27 @@ BackupDRConnection::TriggerBackup(google::longrunning::Operation const&) {
435435
Status(StatusCode::kUnimplemented, "not implemented"));
436436
}
437437

438+
future<StatusOr<google::cloud::backupdr::v1::InitializeServiceResponse>>
439+
BackupDRConnection::InitializeService(
440+
google::cloud::backupdr::v1::InitializeServiceRequest const&) {
441+
return google::cloud::make_ready_future<
442+
StatusOr<google::cloud::backupdr::v1::InitializeServiceResponse>>(
443+
Status(StatusCode::kUnimplemented, "not implemented"));
444+
}
445+
446+
StatusOr<google::longrunning::Operation> BackupDRConnection::InitializeService(
447+
NoAwaitTag, google::cloud::backupdr::v1::InitializeServiceRequest const&) {
448+
return StatusOr<google::longrunning::Operation>(
449+
Status(StatusCode::kUnimplemented, "not implemented"));
450+
}
451+
452+
future<StatusOr<google::cloud::backupdr::v1::InitializeServiceResponse>>
453+
BackupDRConnection::InitializeService(google::longrunning::Operation const&) {
454+
return google::cloud::make_ready_future<
455+
StatusOr<google::cloud::backupdr::v1::InitializeServiceResponse>>(
456+
Status(StatusCode::kUnimplemented, "not implemented"));
457+
}
458+
438459
StreamRange<google::cloud::location::Location>
439460
BackupDRConnection::ListLocations(
440461
google::cloud::location::

google/cloud/backupdr/v1/backup_dr_connection.h

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -389,6 +389,19 @@ class BackupDRConnection {
389389
virtual future<StatusOr<google::cloud::backupdr::v1::BackupPlanAssociation>>
390390
TriggerBackup(google::longrunning::Operation const& operation);
391391

392+
virtual future<
393+
StatusOr<google::cloud::backupdr::v1::InitializeServiceResponse>>
394+
InitializeService(
395+
google::cloud::backupdr::v1::InitializeServiceRequest const& request);
396+
397+
virtual StatusOr<google::longrunning::Operation> InitializeService(
398+
NoAwaitTag,
399+
google::cloud::backupdr::v1::InitializeServiceRequest const& request);
400+
401+
virtual future<
402+
StatusOr<google::cloud::backupdr::v1::InitializeServiceResponse>>
403+
InitializeService(google::longrunning::Operation const& operation);
404+
392405
virtual StreamRange<google::cloud::location::Location> ListLocations(
393406
google::cloud::location::ListLocationsRequest request);
394407

google/cloud/backupdr/v1/backup_dr_connection_idempotency_policy.cc

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,11 @@ Idempotency BackupDRConnectionIdempotencyPolicy::TriggerBackup(
169169
return Idempotency::kNonIdempotent;
170170
}
171171

172+
Idempotency BackupDRConnectionIdempotencyPolicy::InitializeService(
173+
google::cloud::backupdr::v1::InitializeServiceRequest const&) {
174+
return Idempotency::kNonIdempotent;
175+
}
176+
172177
Idempotency BackupDRConnectionIdempotencyPolicy::ListLocations(
173178
google::cloud::location::ListLocationsRequest) { // NOLINT
174179
return Idempotency::kIdempotent;

google/cloud/backupdr/v1/backup_dr_connection_idempotency_policy.h

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -125,6 +125,9 @@ class BackupDRConnectionIdempotencyPolicy {
125125
virtual google::cloud::Idempotency TriggerBackup(
126126
google::cloud::backupdr::v1::TriggerBackupRequest const& request);
127127

128+
virtual google::cloud::Idempotency InitializeService(
129+
google::cloud::backupdr::v1::InitializeServiceRequest const& request);
130+
128131
virtual google::cloud::Idempotency ListLocations(
129132
google::cloud::location::ListLocationsRequest request);
130133

0 commit comments

Comments
 (0)