Skip to content

Commit 10480ed

Browse files
feat: Trusted Private Cloud support, use the universeDomain parameter (#1227)
* fix!: remove types QueryMode, QueryPlan, ResultSetStats fix!: remove QueryMode field from RunQueryRequest fix!: remove ResultSetStats field from RunQueryResponse fix!: remove QueryMode field from RunAggregationQueryRequest fix!: remove ResultSetStats field from RunAggregationQueryResponse PiperOrigin-RevId: 601486345 Source-Link: googleapis/googleapis@4a6230d Source-Link: googleapis/googleapis-gen@db652ee Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiZGI2NTJlZTgzZWQ2NTgxNmVjNmQ5MTBkOTY1NDU4ZDY4NGEzMWM3MyJ9 * 🦉 Updates from OwlBot post-processor See https://github.com/googleapis/repo-automation-bots/blob/main/packages/owl-bot/README.md * feat: Trusted Private Cloud support, use the universeDomain parameter feat: auto populate UUID fields where needed fix: revert changes to streaming retries Use gapic-generator-typescript v4.4.0. PiperOrigin-RevId: 603757799 Source-Link: googleapis/googleapis@1a45bf7 Source-Link: googleapis/googleapis-gen@19ca4b4 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiMTljYTRiNDVhNTNkMDBjYjdiZGQ5NGI0NDJiNjBiZDIzN2RmZTEyMyJ9 * 🦉 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 <gcf-owl-bot[bot]@users.noreply.github.com> Co-authored-by: danieljbruce <[email protected]>
1 parent 76a5a52 commit 10480ed

13 files changed

+239
-968
lines changed

protos/google/datastore/v1/datastore.proto

-23
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import "google/api/routing.proto";
2323
import "google/datastore/v1/aggregation_result.proto";
2424
import "google/datastore/v1/entity.proto";
2525
import "google/datastore/v1/query.proto";
26-
import "google/datastore/v1/query_profile.proto";
2726
import "google/protobuf/timestamp.proto";
2827

2928
option csharp_namespace = "Google.Cloud.Datastore.V1";
@@ -233,11 +232,6 @@ message RunQueryRequest {
233232
// The GQL query to run. This query must be a non-aggregation query.
234233
GqlQuery gql_query = 7;
235234
}
236-
237-
// Optional. The mode in which the query request is processed. This field is
238-
// optional, and when not provided, it defaults to `NORMAL` mode where no
239-
// additional statistics will be returned with the query results.
240-
QueryMode mode = 11 [(google.api.field_behavior) = OPTIONAL];
241235
}
242236

243237
// The response for
@@ -257,12 +251,6 @@ message RunQueryResponse {
257251
// was set in
258252
// [RunQueryRequest.read_options][google.datastore.v1.RunQueryRequest.read_options].
259253
bytes transaction = 5;
260-
261-
// Query plan and execution statistics. Note that the returned stats are
262-
// subject to change as Firestore evolves.
263-
//
264-
// This is only present when the request specifies a mode other than `NORMAL`.
265-
ResultSetStats stats = 6;
266254
}
267255

268256
// The request for
@@ -294,11 +282,6 @@ message RunAggregationQueryRequest {
294282
// The GQL query to run. This query must be an aggregation query.
295283
GqlQuery gql_query = 7;
296284
}
297-
298-
// Optional. The mode in which the query request is processed. This field is
299-
// optional, and when not provided, it defaults to `NORMAL` mode where no
300-
// additional statistics will be returned with the query results.
301-
QueryMode mode = 10 [(google.api.field_behavior) = OPTIONAL];
302285
}
303286

304287
// The response for
@@ -318,12 +301,6 @@ message RunAggregationQueryResponse {
318301
// was set in
319302
// [RunAggregationQueryRequest.read_options][google.datastore.v1.RunAggregationQueryRequest.read_options].
320303
bytes transaction = 5;
321-
322-
// Query plan and execution statistics. Note that the returned stats are
323-
// subject to change as Firestore evolves.
324-
//
325-
// This is only present when the request specifies a mode other than `NORMAL`.
326-
ResultSetStats stats = 6;
327304
}
328305

329306
// The request for

protos/protos.d.ts

-231
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)