From 428aa1e5e4458649033a5566dc3017d2fadbd2a0 Mon Sep 17 00:00:00 2001 From: "gcf-owl-bot[bot]" <78513119+gcf-owl-bot[bot]@users.noreply.github.com> Date: Fri, 17 Mar 2023 06:46:39 -0400 Subject: [PATCH] fix: Correcting the proto field Id for field data_boost_enabled (#915) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * fix!: Correcting the proto field Id for field data_boost_enabled PiperOrigin-RevId: 517156905 Source-Link: https://github.com/googleapis/googleapis/commit/f30cd5ec52d3ed03cb56e8233079ddd44e5571f7 Source-Link: https://github.com/googleapis/googleapis-gen/commit/6a3b040daef7db3fc3b879ad08f5480aa037818a Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNmEzYjA0MGRhZWY3ZGIzZmMzYjg3OWFkMDhmNTQ4MGFhMDM3ODE4YSJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md --------- Co-authored-by: Owl Bot --- google/cloud/spanner_v1/types/spanner.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/google/cloud/spanner_v1/types/spanner.py b/google/cloud/spanner_v1/types/spanner.py index 3167d41b58..d829df618f 100644 --- a/google/cloud/spanner_v1/types/spanner.py +++ b/google/cloud/spanner_v1/types/spanner.py @@ -477,7 +477,7 @@ class ExecuteSqlRequest(proto.Message): request_options (google.cloud.spanner_v1.types.RequestOptions): Common options for this request. data_boost_enabled (bool): - If this is for a partitioned read and this field is set to + If this is for a partitioned query and this field is set to ``true``, the request will be executed via Spanner independent compute resources. @@ -625,7 +625,7 @@ class QueryOptions(proto.Message): ) data_boost_enabled: bool = proto.Field( proto.BOOL, - number=15, + number=16, ) @@ -1138,7 +1138,7 @@ class ReadRequest(proto.Message): request_options (google.cloud.spanner_v1.types.RequestOptions): Common options for this request. data_boost_enabled (bool): - If this is for a partitioned query and this field is set to + If this is for a partitioned read and this field is set to ``true``, the request will be executed via Spanner independent compute resources. @@ -1192,7 +1192,7 @@ class ReadRequest(proto.Message): ) data_boost_enabled: bool = proto.Field( proto.BOOL, - number=16, + number=15, )