-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add datastore aggregation query APIs (#1008)
* feat: add datastore aggregation query APIs PiperOrigin-RevId: 477890345 Source-Link: googleapis/googleapis@82bf674 Source-Link: googleapis/googleapis-gen@5fb8115 Copy-Tag: eyJwIjoiLmdpdGh1Yi8uT3dsQm90LnlhbWwiLCJoIjoiNWZiODExNTE2MWVhMTRhNWM1NTE4ODVjNjgxYzM2MjdjMmY2NjYzMCJ9 * 🦉 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>
- Loading branch information
1 parent
2855743
commit d5c2cb1
Showing
10 changed files
with
12,903 additions
and
10,166 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
// Copyright 2022 Google LLC | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
syntax = "proto3"; | ||
|
||
package google.datastore.v1; | ||
|
||
import "google/datastore/v1/entity.proto"; | ||
import "google/datastore/v1/query.proto"; | ||
import "google/protobuf/timestamp.proto"; | ||
|
||
option csharp_namespace = "Google.Cloud.Datastore.V1"; | ||
option go_package = "google.golang.org/genproto/googleapis/datastore/v1;datastore"; | ||
option java_multiple_files = true; | ||
option java_outer_classname = "AggregationResultProto"; | ||
option java_package = "com.google.datastore.v1"; | ||
option php_namespace = "Google\\Cloud\\Datastore\\V1"; | ||
option ruby_package = "Google::Cloud::Datastore::V1"; | ||
|
||
// The result of a single bucket from a Datastore aggregation query. | ||
// | ||
// The keys of `aggregate_properties` are the same for all results in an | ||
// aggregation query, unlike entity queries which can have different fields | ||
// present for each result. | ||
message AggregationResult { | ||
// The result of the aggregation functions, ex: `COUNT(*) AS total_entities`. | ||
// | ||
// The key is the [alias][google.datastore.v1.AggregationQuery.Aggregation.alias] | ||
// assigned to the aggregation function on input and the size of this map | ||
// equals the number of aggregation functions in the query. | ||
map<string, Value> aggregate_properties = 2; | ||
} | ||
|
||
// A batch of aggregation results produced by an aggregation query. | ||
message AggregationResultBatch { | ||
// The aggregation results for this batch. | ||
repeated AggregationResult aggregation_results = 1; | ||
|
||
// The state of the query after the current batch. | ||
// Only COUNT(*) aggregations are supported in the initial launch. Therefore, | ||
// expected result type is limited to `NO_MORE_RESULTS`. | ||
QueryResultBatch.MoreResultsType more_results = 2; | ||
|
||
// Read timestamp this batch was returned from. | ||
// | ||
// In a single transaction, subsequent query result batches for the same query | ||
// can have a greater timestamp. Each batch's read timestamp | ||
// is valid for all preceding batches. | ||
google.protobuf.Timestamp read_time = 3; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.