Skip to content

Commit

Permalink
fix!: remove types QueryMode, QueryPlan, ResultSetStats
Browse files Browse the repository at this point in the history
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: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuRGF0YXN0b3JlLlYxLy5Pd2xCb3QueWFtbCIsImgiOiJkYjY1MmVlODNlZDY1ODE2ZWM2ZDkxMGQ5NjU0NThkNjg0YTMxYzczIn0=
  • Loading branch information
gcf-owl-bot[bot] authored and jskeet committed Jan 26, 2024
1 parent 752b46e commit 1aa1ab8
Show file tree
Hide file tree
Showing 9 changed files with 137 additions and 890 deletions.
Expand Up @@ -42,7 +42,6 @@ public async Task RunAggregationQueryRequestObjectAsync()
AggregationQuery = new AggregationQuery(),
ProjectId = "",
DatabaseId = "",
Mode = QueryMode.Normal,
};
// Make the request
RunAggregationQueryResponse response = await datastoreClient.RunAggregationQueryAsync(request);
Expand Down
Expand Up @@ -41,7 +41,6 @@ public void RunAggregationQueryRequestObject()
AggregationQuery = new AggregationQuery(),
ProjectId = "",
DatabaseId = "",
Mode = QueryMode.Normal,
};
// Make the request
RunAggregationQueryResponse response = datastoreClient.RunAggregationQuery(request);
Expand Down
Expand Up @@ -42,7 +42,6 @@ public async Task RunQueryRequestObjectAsync()
Query = new Query(),
ProjectId = "",
DatabaseId = "",
Mode = QueryMode.Normal,
};
// Make the request
RunQueryResponse response = await datastoreClient.RunQueryAsync(request);
Expand Down
Expand Up @@ -41,7 +41,6 @@ public void RunQueryRequestObject()
Query = new Query(),
ProjectId = "",
DatabaseId = "",
Mode = QueryMode.Normal,
};
// Make the request
RunQueryResponse response = datastoreClient.RunQuery(request);
Expand Down
Expand Up @@ -256,12 +256,12 @@
"segments": [
{
"start": 20,
"end": 49,
"end": 48,
"type": "FULL"
},
{
"start": 34,
"end": 47,
"end": 46,
"type": "SHORT"
}
]
Expand Down Expand Up @@ -305,12 +305,12 @@
"segments": [
{
"start": 20,
"end": 50,
"end": 49,
"type": "FULL"
},
{
"start": 35,
"end": 48,
"end": 47,
"type": "SHORT"
}
]
Expand Down Expand Up @@ -353,12 +353,12 @@
"segments": [
{
"start": 20,
"end": 49,
"end": 48,
"type": "FULL"
},
{
"start": 34,
"end": 47,
"end": 46,
"type": "SHORT"
}
]
Expand Down Expand Up @@ -402,12 +402,12 @@
"segments": [
{
"start": 20,
"end": 50,
"end": 49,
"type": "FULL"
},
{
"start": 35,
"end": 48,
"end": 47,
"type": "SHORT"
}
]
Expand Down
Expand Up @@ -108,7 +108,6 @@ public void RunQueryRequestObject()
Query = new Query(),
ProjectId = "",
DatabaseId = "",
Mode = QueryMode.Normal,
};
// Make the request
RunQueryResponse response = datastoreClient.RunQuery(request);
Expand All @@ -130,7 +129,6 @@ public async Task RunQueryRequestObjectAsync()
Query = new Query(),
ProjectId = "",
DatabaseId = "",
Mode = QueryMode.Normal,
};
// Make the request
RunQueryResponse response = await datastoreClient.RunQueryAsync(request);
Expand All @@ -151,7 +149,6 @@ public void RunAggregationQueryRequestObject()
AggregationQuery = new AggregationQuery(),
ProjectId = "",
DatabaseId = "",
Mode = QueryMode.Normal,
};
// Make the request
RunAggregationQueryResponse response = datastoreClient.RunAggregationQuery(request);
Expand All @@ -173,7 +170,6 @@ public async Task RunAggregationQueryRequestObjectAsync()
AggregationQuery = new AggregationQuery(),
ProjectId = "",
DatabaseId = "",
Mode = QueryMode.Normal,
};
// Make the request
RunAggregationQueryResponse response = await datastoreClient.RunAggregationQueryAsync(request);
Expand Down
451 changes: 129 additions & 322 deletions apis/Google.Cloud.Datastore.V1/Google.Cloud.Datastore.V1/Datastore.g.cs

Large diffs are not rendered by default.

Expand Up @@ -34,7 +34,6 @@ internal static class PackageApiMetadata
yield return DatastoreReflection.Descriptor;
yield return EntityReflection.Descriptor;
yield return QueryReflection.Descriptor;
yield return QueryProfileReflection.Descriptor;
}
}
}

0 comments on commit 1aa1ab8

Please sign in to comment.