Skip to content

Commit

Permalink
fix(datastore): update the API
Browse files Browse the repository at this point in the history
#### datastore:v1beta3

The following keys were changed:
- schemas.RunQueryRequest.properties.gqlQuery.description

#### datastore:v1

The following keys were changed:
- schemas.RunQueryRequest.properties.gqlQuery.description
  • Loading branch information
yoshi-automation authored and sofisl committed May 6, 2022
1 parent 87d7043 commit 82a1486
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions discovery/datastore-v1.json
Expand Up @@ -626,7 +626,7 @@
}
}
},
"revision": "20220402",
"revision": "20220428",
"rootUrl": "https://datastore.googleapis.com/",
"schemas": {
"AllocateIdsRequest": {
Expand Down Expand Up @@ -2111,7 +2111,7 @@
"properties": {
"gqlQuery": {
"$ref": "GqlQuery",
"description": "The GQL query to run."
"description": "The GQL query to run. This query must be a non-aggregation query."
},
"partitionId": {
"$ref": "PartitionId",
Expand Down
4 changes: 2 additions & 2 deletions discovery/datastore-v1beta3.json
Expand Up @@ -308,7 +308,7 @@
}
}
},
"revision": "20220402",
"revision": "20220428",
"rootUrl": "https://datastore.googleapis.com/",
"schemas": {
"AllocateIdsRequest": {
Expand Down Expand Up @@ -1586,7 +1586,7 @@
"properties": {
"gqlQuery": {
"$ref": "GqlQuery",
"description": "The GQL query to run."
"description": "The GQL query to run. This query must be a non-aggregation query."
},
"partitionId": {
"$ref": "PartitionId",
Expand Down
2 changes: 1 addition & 1 deletion src/apis/datastore/v1.ts
Expand Up @@ -1068,7 +1068,7 @@ export namespace datastore_v1 {
*/
export interface Schema$RunQueryRequest {
/**
* The GQL query to run.
* The GQL query to run. This query must be a non-aggregation query.
*/
gqlQuery?: Schema$GqlQuery;
/**
Expand Down
2 changes: 1 addition & 1 deletion src/apis/datastore/v1beta3.ts
Expand Up @@ -937,7 +937,7 @@ export namespace datastore_v1beta3 {
*/
export interface Schema$RunQueryRequest {
/**
* The GQL query to run.
* The GQL query to run. This query must be a non-aggregation query.
*/
gqlQuery?: Schema$GqlQuery;
/**
Expand Down

0 comments on commit 82a1486

Please sign in to comment.