Skip to content

Commit bf3bf1c

Browse files
authored
chore: update googleapis SHA circa 2024-10-24 (#14801)
* chore: update googleapis SHA circa 2024-10-24 PiperOrigin-RevId: 689456358 * Update the protodeps/protolists * Regenerate libraries
1 parent 690aa06 commit bf3bf1c

File tree

51 files changed

+3808
-312
lines changed

Some content is hidden

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

51 files changed

+3808
-312
lines changed

MODULE.bazel

+3-3
Original file line numberDiff line numberDiff line change
@@ -52,12 +52,12 @@ python.toolchain(
5252
bazel_dep(name = "googleapis", version = "0.0.0", repo_name = "com_google_googleapis")
5353
archive_override(
5454
module_name = "googleapis",
55-
integrity = "sha256-7TXPcIHtqcTNsrmt28QL2yuMG6/e/nbR2tat8Oyw66s=",
55+
integrity = "sha256-o6lYUSiWox5NQGrujn3JeMRLjVphOcwWYAk+n1sbON8=",
5656
patch_strip = 1,
5757
patches = ["//bazel:googleapis.modules.patch"],
58-
strip_prefix = "googleapis-e60db19f11f94175ac682c5898cce0f77cc508ea",
58+
strip_prefix = "googleapis-d9673c1cab23f8e389be66ba037254bcf2ec5dc3",
5959
urls = [
60-
"https://github.com/googleapis/googleapis/archive/e60db19f11f94175ac682c5898cce0f77cc508ea.tar.gz",
60+
"https://github.com/googleapis/googleapis/archive/d9673c1cab23f8e389be66ba037254bcf2ec5dc3.tar.gz",
6161
],
6262
)
6363

bazel/workspace0.bzl

+3-3
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ def gl_cpp_workspace0(name = None):
115115
http_archive,
116116
name = "com_google_googleapis",
117117
urls = [
118-
"https://github.com/googleapis/googleapis/archive/e60db19f11f94175ac682c5898cce0f77cc508ea.tar.gz",
118+
"https://github.com/googleapis/googleapis/archive/d9673c1cab23f8e389be66ba037254bcf2ec5dc3.tar.gz",
119119
],
120-
sha256 = "ed35cf7081eda9c4cdb2b9addbc40bdb2b8c1bafdefe76d1dad6adf0ecb0ebab",
121-
strip_prefix = "googleapis-e60db19f11f94175ac682c5898cce0f77cc508ea",
120+
sha256 = "a3a958512896a31e4d406aee8e7dc978c44b8d5a6139cc1660093e9f5b1b38df",
121+
strip_prefix = "googleapis-d9673c1cab23f8e389be66ba037254bcf2ec5dc3",
122122
build_file = Label("//bazel:googleapis.BUILD"),
123123
# Scaffolding for patching googleapis after download. For example:
124124
# patches = ["googleapis.patch"]

cmake/GoogleapisConfig.cmake

+2-2
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-
"e60db19f11f94175ac682c5898cce0f77cc508ea")
30+
"d9673c1cab23f8e389be66ba037254bcf2ec5dc3")
3131
set(_GOOGLE_CLOUD_CPP_GOOGLEAPIS_SHA256
32-
"ed35cf7081eda9c4cdb2b9addbc40bdb2b8c1bafdefe76d1dad6adf0ecb0ebab")
32+
"a3a958512896a31e4d406aee8e7dc978c44b8d5a6139cc1660093e9f5b1b38df")
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/alloydb.deps

+1
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
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
@com_google_googleapis//google/cloud/alloydb/v1:data_model.proto
12
@com_google_googleapis//google/cloud/alloydb/v1:resources.proto
23
@com_google_googleapis//google/cloud/alloydb/v1:service.proto

google/cloud/alloydb/v1/alloy_db_admin_client.cc

+78
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,45 @@ AlloyDBAdminClient::PromoteCluster(
229229
return connection_->PromoteCluster(operation);
230230
}
231231

232+
future<StatusOr<google::cloud::alloydb::v1::Cluster>>
233+
AlloyDBAdminClient::SwitchoverCluster(std::string const& name, Options opts) {
234+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
235+
google::cloud::alloydb::v1::SwitchoverClusterRequest request;
236+
request.set_name(name);
237+
return connection_->SwitchoverCluster(request);
238+
}
239+
240+
StatusOr<google::longrunning::Operation> AlloyDBAdminClient::SwitchoverCluster(
241+
NoAwaitTag, std::string const& name, Options opts) {
242+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
243+
google::cloud::alloydb::v1::SwitchoverClusterRequest request;
244+
request.set_name(name);
245+
return connection_->SwitchoverCluster(NoAwaitTag{}, request);
246+
}
247+
248+
future<StatusOr<google::cloud::alloydb::v1::Cluster>>
249+
AlloyDBAdminClient::SwitchoverCluster(
250+
google::cloud::alloydb::v1::SwitchoverClusterRequest const& request,
251+
Options opts) {
252+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
253+
return connection_->SwitchoverCluster(request);
254+
}
255+
256+
StatusOr<google::longrunning::Operation> AlloyDBAdminClient::SwitchoverCluster(
257+
NoAwaitTag,
258+
google::cloud::alloydb::v1::SwitchoverClusterRequest const& request,
259+
Options opts) {
260+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
261+
return connection_->SwitchoverCluster(NoAwaitTag{}, request);
262+
}
263+
264+
future<StatusOr<google::cloud::alloydb::v1::Cluster>>
265+
AlloyDBAdminClient::SwitchoverCluster(
266+
google::longrunning::Operation const& operation, Options opts) {
267+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
268+
return connection_->SwitchoverCluster(operation);
269+
}
270+
232271
future<StatusOr<google::cloud::alloydb::v1::Cluster>>
233272
AlloyDBAdminClient::RestoreCluster(
234273
google::cloud::alloydb::v1::RestoreClusterRequest const& request,
@@ -659,6 +698,30 @@ AlloyDBAdminClient::RestartInstance(
659698
return connection_->RestartInstance(operation);
660699
}
661700

701+
StatusOr<google::cloud::alloydb::v1::ExecuteSqlResponse>
702+
AlloyDBAdminClient::ExecuteSql(std::string const& instance,
703+
std::string const& database,
704+
std::string const& user,
705+
std::string const& sql_statement,
706+
std::string const& password, Options opts) {
707+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
708+
google::cloud::alloydb::v1::ExecuteSqlRequest request;
709+
request.set_instance(instance);
710+
request.set_database(database);
711+
request.set_user(user);
712+
request.set_sql_statement(sql_statement);
713+
request.set_password(password);
714+
return connection_->ExecuteSql(request);
715+
}
716+
717+
StatusOr<google::cloud::alloydb::v1::ExecuteSqlResponse>
718+
AlloyDBAdminClient::ExecuteSql(
719+
google::cloud::alloydb::v1::ExecuteSqlRequest const& request,
720+
Options opts) {
721+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
722+
return connection_->ExecuteSql(request);
723+
}
724+
662725
StreamRange<google::cloud::alloydb::v1::Backup> AlloyDBAdminClient::ListBackups(
663726
std::string const& parent, Options opts) {
664727
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
@@ -941,6 +1004,21 @@ Status AlloyDBAdminClient::DeleteUser(
9411004
return connection_->DeleteUser(request);
9421005
}
9431006

1007+
StreamRange<google::cloud::alloydb::v1::Database>
1008+
AlloyDBAdminClient::ListDatabases(std::string const& parent, Options opts) {
1009+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
1010+
google::cloud::alloydb::v1::ListDatabasesRequest request;
1011+
request.set_parent(parent);
1012+
return connection_->ListDatabases(request);
1013+
}
1014+
1015+
StreamRange<google::cloud::alloydb::v1::Database>
1016+
AlloyDBAdminClient::ListDatabases(
1017+
google::cloud::alloydb::v1::ListDatabasesRequest request, Options opts) {
1018+
internal::OptionsSpan span(internal::MergeOptions(std::move(opts), options_));
1019+
return connection_->ListDatabases(std::move(request));
1020+
}
1021+
9441022
StreamRange<google::cloud::location::Location>
9451023
AlloyDBAdminClient::ListLocations(
9461024
google::cloud::location::ListLocationsRequest request, Options opts) {

0 commit comments

Comments
 (0)