mirror of
https://github.com/OMGeeky/google-apis-rs.git
synced 2026-02-13 21:19:05 +01:00
update dependencies
This commit is contained in:
@@ -333,6 +333,34 @@
|
||||
"https://www.googleapis.com/auth/datastore"
|
||||
]
|
||||
},
|
||||
"runAggregationQuery": {
|
||||
"description": "Runs an aggregation query.",
|
||||
"flatPath": "v1/projects/{projectId}:runAggregationQuery",
|
||||
"httpMethod": "POST",
|
||||
"id": "datastore.projects.runAggregationQuery",
|
||||
"parameterOrder": [
|
||||
"projectId"
|
||||
],
|
||||
"parameters": {
|
||||
"projectId": {
|
||||
"description": "Required. The ID of the project against which to make the request.",
|
||||
"location": "path",
|
||||
"required": true,
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"path": "v1/projects/{projectId}:runAggregationQuery",
|
||||
"request": {
|
||||
"$ref": "RunAggregationQueryRequest"
|
||||
},
|
||||
"response": {
|
||||
"$ref": "RunAggregationQueryResponse"
|
||||
},
|
||||
"scopes": [
|
||||
"https://www.googleapis.com/auth/cloud-platform",
|
||||
"https://www.googleapis.com/auth/datastore"
|
||||
]
|
||||
},
|
||||
"runQuery": {
|
||||
"description": "Queries for entities.",
|
||||
"flatPath": "v1/projects/{projectId}:runQuery",
|
||||
@@ -626,13 +654,101 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"revision": "20220221",
|
||||
"revision": "20230118",
|
||||
"rootUrl": "https://datastore.googleapis.com/",
|
||||
"schemas": {
|
||||
"Aggregation": {
|
||||
"description": "Defines a aggregation that produces a single result.",
|
||||
"id": "Aggregation",
|
||||
"properties": {
|
||||
"alias": {
|
||||
"description": "Optional. Optional name of the property to store the result of the aggregation. If not provided, Datastore will pick a default name following the format `property_`. For example: ``` AGGREGATE COUNT_UP_TO(1) AS count_up_to_1, COUNT_UP_TO(2), COUNT_UP_TO(3) AS count_up_to_3, COUNT_UP_TO(4) OVER ( ... ); ``` becomes: ``` AGGREGATE COUNT_UP_TO(1) AS count_up_to_1, COUNT_UP_TO(2) AS property_1, COUNT_UP_TO(3) AS count_up_to_3, COUNT_UP_TO(4) AS property_2 OVER ( ... ); ``` Requires: * Must be unique across all aggregation aliases. * Conform to entity property name limitations.",
|
||||
"type": "string"
|
||||
},
|
||||
"count": {
|
||||
"$ref": "Count",
|
||||
"description": "Count aggregator."
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"AggregationQuery": {
|
||||
"description": "Datastore query for running an aggregation over a Query.",
|
||||
"id": "AggregationQuery",
|
||||
"properties": {
|
||||
"aggregations": {
|
||||
"description": "Optional. Series of aggregations to apply over the results of the `nested_query`. Requires: * A minimum of one and maximum of five aggregations per query.",
|
||||
"items": {
|
||||
"$ref": "Aggregation"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"nestedQuery": {
|
||||
"$ref": "Query",
|
||||
"description": "Nested query for aggregation"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"AggregationResult": {
|
||||
"description": "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.",
|
||||
"id": "AggregationResult",
|
||||
"properties": {
|
||||
"aggregateProperties": {
|
||||
"additionalProperties": {
|
||||
"$ref": "Value"
|
||||
},
|
||||
"description": "The result of the aggregation functions, ex: `COUNT(*) AS total_entities`. The key is the alias assigned to the aggregation function on input and the size of this map equals the number of aggregation functions in the query.",
|
||||
"type": "object"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"AggregationResultBatch": {
|
||||
"description": "A batch of aggregation results produced by an aggregation query.",
|
||||
"id": "AggregationResultBatch",
|
||||
"properties": {
|
||||
"aggregationResults": {
|
||||
"description": "The aggregation results for this batch.",
|
||||
"items": {
|
||||
"$ref": "AggregationResult"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"moreResults": {
|
||||
"description": "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`.",
|
||||
"enum": [
|
||||
"MORE_RESULTS_TYPE_UNSPECIFIED",
|
||||
"NOT_FINISHED",
|
||||
"MORE_RESULTS_AFTER_LIMIT",
|
||||
"MORE_RESULTS_AFTER_CURSOR",
|
||||
"NO_MORE_RESULTS"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"Unspecified. This value is never used.",
|
||||
"There may be additional batches to fetch from this query.",
|
||||
"The query is finished, but there may be more results after the limit.",
|
||||
"The query is finished, but there may be more results after the end cursor.",
|
||||
"The query is finished, and there are no more results."
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"readTime": {
|
||||
"description": "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.",
|
||||
"format": "google-datetime",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"AllocateIdsRequest": {
|
||||
"description": "The request for Datastore.AllocateIds.",
|
||||
"id": "AllocateIdsRequest",
|
||||
"properties": {
|
||||
"databaseId": {
|
||||
"description": "The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database.",
|
||||
"type": "string"
|
||||
},
|
||||
"keys": {
|
||||
"description": "Required. A list of keys with incomplete key paths for which to allocate IDs. No key may be reserved/read-only.",
|
||||
"items": {
|
||||
@@ -675,6 +791,10 @@
|
||||
"description": "The request for Datastore.BeginTransaction.",
|
||||
"id": "BeginTransactionRequest",
|
||||
"properties": {
|
||||
"databaseId": {
|
||||
"description": "The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database.",
|
||||
"type": "string"
|
||||
},
|
||||
"transactionOptions": {
|
||||
"$ref": "TransactionOptions",
|
||||
"description": "Options for a new transaction."
|
||||
@@ -698,6 +818,10 @@
|
||||
"description": "The request for Datastore.Commit.",
|
||||
"id": "CommitRequest",
|
||||
"properties": {
|
||||
"databaseId": {
|
||||
"description": "The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database.",
|
||||
"type": "string"
|
||||
},
|
||||
"mode": {
|
||||
"description": "The type of commit to perform. Defaults to `TRANSACTIONAL`.",
|
||||
"enum": [
|
||||
@@ -719,6 +843,10 @@
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"singleUseTransaction": {
|
||||
"$ref": "TransactionOptions",
|
||||
"description": "Options for beginning a new transaction for this request. The transaction is committed when the request completes. If specified, TransactionOptions.mode must be TransactionOptions.ReadWrite."
|
||||
},
|
||||
"transaction": {
|
||||
"description": "The identifier of the transaction associated with the commit. A transaction identifier is returned by a call to Datastore.BeginTransaction.",
|
||||
"format": "byte",
|
||||
@@ -731,6 +859,11 @@
|
||||
"description": "The response for Datastore.Commit.",
|
||||
"id": "CommitResponse",
|
||||
"properties": {
|
||||
"commitTime": {
|
||||
"description": "The transaction commit timestamp. Not set for non-transactional commits.",
|
||||
"format": "google-datetime",
|
||||
"type": "string"
|
||||
},
|
||||
"indexUpdates": {
|
||||
"description": "The number of index entries updated during the commit, or zero if none were updated.",
|
||||
"format": "int32",
|
||||
@@ -751,7 +884,7 @@
|
||||
"id": "CompositeFilter",
|
||||
"properties": {
|
||||
"filters": {
|
||||
"description": "The list of filters to combine. Must contain at least one filter.",
|
||||
"description": "The list of filters to combine. Requires: * At least one filter is present.",
|
||||
"items": {
|
||||
"$ref": "Filter"
|
||||
},
|
||||
@@ -772,8 +905,20 @@
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"Count": {
|
||||
"description": "Count of entities that match the query. The `COUNT(*)` aggregation function operates on the entire entity so it does not require a field reference.",
|
||||
"id": "Count",
|
||||
"properties": {
|
||||
"upTo": {
|
||||
"description": "Optional. Optional constraint on the maximum number of entities to count. This provides a way to set an upper bound on the number of entities to scan, limiting latency and cost. Unspecified is interpreted as no bound. If a zero value is provided, a count result of zero should always be expected. High-Level Example: ``` AGGREGATE COUNT_UP_TO(1000) OVER ( SELECT * FROM k ); ``` Requires: * Must be non-negative when present.",
|
||||
"format": "int64",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"Empty": {
|
||||
"description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.",
|
||||
"description": "A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); }",
|
||||
"id": "Empty",
|
||||
"properties": {},
|
||||
"type": "object"
|
||||
@@ -800,6 +945,11 @@
|
||||
"description": "The result of fetching an entity from Datastore.",
|
||||
"id": "EntityResult",
|
||||
"properties": {
|
||||
"createTime": {
|
||||
"description": "The time at which the entity was created. This field is set for `FULL` entity results. If this entity is missing, this field will not be set.",
|
||||
"format": "google-datetime",
|
||||
"type": "string"
|
||||
},
|
||||
"cursor": {
|
||||
"description": "A cursor that points to the position after the result entity. Set only when the `EntityResult` is part of a `QueryResultBatch` message.",
|
||||
"format": "byte",
|
||||
@@ -809,6 +959,11 @@
|
||||
"$ref": "Entity",
|
||||
"description": "The resulting entity."
|
||||
},
|
||||
"updateTime": {
|
||||
"description": "The time at which the entity was last changed. This field is set for `FULL` entity results. If this entity is missing, this field will not be set.",
|
||||
"format": "google-datetime",
|
||||
"type": "string"
|
||||
},
|
||||
"version": {
|
||||
"description": "The version of the entity, a strictly positive number that monotonically increases with changes to the entity. This field is set for `FULL` entity results. For missing entities in `LookupResponse`, this is the version of the snapshot that was used to look up the entity, and it is always set except for eventually consistent reads.",
|
||||
"format": "int64",
|
||||
@@ -1108,7 +1263,7 @@
|
||||
"type": "string"
|
||||
},
|
||||
"properties": {
|
||||
"description": "Required. An ordered sequence of property names and their index attributes.",
|
||||
"description": "Required. An ordered sequence of property names and their index attributes. Requires: * A maximum of 100 properties.",
|
||||
"items": {
|
||||
"$ref": "GoogleDatastoreAdminV1IndexedProperty"
|
||||
},
|
||||
@@ -1636,6 +1791,10 @@
|
||||
"description": "The request for Datastore.Lookup.",
|
||||
"id": "LookupRequest",
|
||||
"properties": {
|
||||
"databaseId": {
|
||||
"description": "The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database.",
|
||||
"type": "string"
|
||||
},
|
||||
"keys": {
|
||||
"description": "Required. Keys of entities to look up.",
|
||||
"items": {
|
||||
@@ -1674,6 +1833,16 @@
|
||||
"$ref": "EntityResult"
|
||||
},
|
||||
"type": "array"
|
||||
},
|
||||
"readTime": {
|
||||
"description": "The time at which these entities were read or found missing.",
|
||||
"format": "google-datetime",
|
||||
"type": "string"
|
||||
},
|
||||
"transaction": {
|
||||
"description": "The identifier of the transaction that was started as part of this Lookup request. Set only when ReadOptions.begin_transaction was set in LookupRequest.read_options.",
|
||||
"format": "byte",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
@@ -1699,6 +1868,11 @@
|
||||
"$ref": "Entity",
|
||||
"description": "The entity to update. The entity must already exist. Must have a complete key path."
|
||||
},
|
||||
"updateTime": {
|
||||
"description": "The update time of the entity that this mutation is being applied to. If this does not match the current update time on the server, the mutation conflicts.",
|
||||
"format": "google-datetime",
|
||||
"type": "string"
|
||||
},
|
||||
"upsert": {
|
||||
"$ref": "Entity",
|
||||
"description": "The entity to upsert. The entity may or may not already exist. The entity key's final path element may be incomplete."
|
||||
@@ -1714,10 +1888,20 @@
|
||||
"description": "Whether a conflict was detected for this mutation. Always false when a conflict detection strategy field is not set in the mutation.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"createTime": {
|
||||
"description": "The create time of the entity. This field will not be set after a 'delete'.",
|
||||
"format": "google-datetime",
|
||||
"type": "string"
|
||||
},
|
||||
"key": {
|
||||
"$ref": "Key",
|
||||
"description": "The automatically allocated key. Set only when the mutation allocated a key."
|
||||
},
|
||||
"updateTime": {
|
||||
"description": "The update time of the entity on the server after processing the mutation. If the mutation doesn't change anything on the server, then the timestamp will be the update timestamp of the current entity. This field will not be set after a 'delete'.",
|
||||
"format": "google-datetime",
|
||||
"type": "string"
|
||||
},
|
||||
"version": {
|
||||
"description": "The version of the entity on the server after processing the mutation. If the mutation doesn't change anything on the server, then the version will be the version of the current entity or, if no entity is present, a version that is strictly greater than the version of any previous entity and less than the version of any possible future entity.",
|
||||
"format": "int64",
|
||||
@@ -1730,6 +1914,10 @@
|
||||
"description": "A partition ID identifies a grouping of entities. The grouping is always by project and namespace, however the namespace ID may be empty. A partition ID contains several dimensions: project ID and namespace ID. Partition dimensions: - May be `\"\"`. - Must be valid UTF-8 bytes. - Must have values that match regex `[A-Za-z\\d\\.\\-_]{1,100}` If the value of any dimension matches regex `__.*__`, the partition is reserved/read-only. A reserved/read-only partition ID is forbidden in certain documented contexts. Foreign partition IDs (in which the project ID does not match the context project ID ) are discouraged. Reads and writes of foreign partition IDs may fail if the project is not in an active state.",
|
||||
"id": "PartitionId",
|
||||
"properties": {
|
||||
"databaseId": {
|
||||
"description": "If not empty, the ID of the database to which the entities belong.",
|
||||
"type": "string"
|
||||
},
|
||||
"namespaceId": {
|
||||
"description": "If not empty, the ID of the namespace to which the entities belong.",
|
||||
"type": "string"
|
||||
@@ -1751,11 +1939,11 @@
|
||||
"type": "string"
|
||||
},
|
||||
"kind": {
|
||||
"description": "The kind of the entity. A kind matching regex `__.*__` is reserved/read-only. A kind must not contain more than 1500 bytes when UTF-8 encoded. Cannot be `\"\"`.",
|
||||
"description": "The kind of the entity. A kind matching regex `__.*__` is reserved/read-only. A kind must not contain more than 1500 bytes when UTF-8 encoded. Cannot be `\"\"`. Must be valid UTF-8 bytes. Legacy values that are not valid UTF-8 are encoded as `__bytes__` where `` is the base-64 encoding of the bytes.",
|
||||
"type": "string"
|
||||
},
|
||||
"name": {
|
||||
"description": "The name of the entity. A name matching regex `__.*__` is reserved/read-only. A name must not be more than 1500 bytes when UTF-8 encoded. Cannot be `\"\"`.",
|
||||
"description": "The name of the entity. A name matching regex `__.*__` is reserved/read-only. A name must not be more than 1500 bytes when UTF-8 encoded. Cannot be `\"\"`. Must be valid UTF-8 bytes. Legacy values that are not valid UTF-8 are encoded as `__bytes__` where `` is the base-64 encoding of the bytes.",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
@@ -1785,7 +1973,10 @@
|
||||
"GREATER_THAN",
|
||||
"GREATER_THAN_OR_EQUAL",
|
||||
"EQUAL",
|
||||
"HAS_ANCESTOR"
|
||||
"IN",
|
||||
"NOT_EQUAL",
|
||||
"HAS_ANCESTOR",
|
||||
"NOT_IN"
|
||||
],
|
||||
"enumDescriptions": [
|
||||
"Unspecified. This value must not be used.",
|
||||
@@ -1794,7 +1985,10 @@
|
||||
"The given `property` is greater than the given `value`. Requires: * That `property` comes first in `order_by`.",
|
||||
"The given `property` is greater than or equal to the given `value`. Requires: * That `property` comes first in `order_by`.",
|
||||
"The given `property` is equal to the given `value`.",
|
||||
"Limit the result set to the given entity and its descendants. Requires: * That `value` is an entity key."
|
||||
"The given `property` is equal to at least one value in the given array. Requires: * That `value` is a non-empty `ArrayValue` with at most 10 values. * No other `IN` or `NOT_IN` is in the same query.",
|
||||
"The given `property` is not equal to the given `value`. Requires: * No other `NOT_EQUAL` or `NOT_IN` is in the same query. * That `property` comes first in the `order_by`.",
|
||||
"Limit the result set to the given entity and its descendants. Requires: * That `value` is an entity key. * No other `HAS_ANCESTOR` is in the same query.",
|
||||
"The value of the `property` is not in the given array. Requires: * That `value` is a non-empty `ArrayValue` with at most 10 values. * No other `IN`, `NOT_IN`, `NOT_EQUAL` is in the same query. * That `field` comes first in the `order_by`."
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
@@ -1954,6 +2148,11 @@
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"readTime": {
|
||||
"description": "Read timestamp this batch was returned from. This applies to the range of results from the query's `start_cursor` (or the beginning of the query if no cursor was given) to this batch's `end_cursor` (not the query's `end_cursor`). 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. This value will not be set for eventually consistent queries in Cloud Datastore.",
|
||||
"format": "google-datetime",
|
||||
"type": "string"
|
||||
},
|
||||
"skippedCursor": {
|
||||
"description": "A cursor that points to the position after the last skipped result. Will be set when `skipped_results` != 0.",
|
||||
"format": "byte",
|
||||
@@ -1975,15 +2174,25 @@
|
||||
"ReadOnly": {
|
||||
"description": "Options specific to read-only transactions.",
|
||||
"id": "ReadOnly",
|
||||
"properties": {},
|
||||
"properties": {
|
||||
"readTime": {
|
||||
"description": "Reads entities at the given time. This may not be older than 60 seconds.",
|
||||
"format": "google-datetime",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"ReadOptions": {
|
||||
"description": "The options shared by read requests.",
|
||||
"id": "ReadOptions",
|
||||
"properties": {
|
||||
"newTransaction": {
|
||||
"$ref": "TransactionOptions",
|
||||
"description": "Options for beginning a new transaction for this request. The new transaction identifier will be returned in the corresponding response as either LookupResponse.transaction or RunQueryResponse.transaction."
|
||||
},
|
||||
"readConsistency": {
|
||||
"description": "The non-transactional read consistency to use. Cannot be set to `STRONG` for global queries.",
|
||||
"description": "The non-transactional read consistency to use.",
|
||||
"enum": [
|
||||
"READ_CONSISTENCY_UNSPECIFIED",
|
||||
"STRONG",
|
||||
@@ -1996,6 +2205,11 @@
|
||||
],
|
||||
"type": "string"
|
||||
},
|
||||
"readTime": {
|
||||
"description": "Reads entities as they were at the given time. This may not be older than 270 seconds. This value is only supported for Cloud Firestore in Datastore mode.",
|
||||
"format": "google-datetime",
|
||||
"type": "string"
|
||||
},
|
||||
"transaction": {
|
||||
"description": "The identifier of the transaction in which to read. A transaction identifier is returned by a call to Datastore.BeginTransaction.",
|
||||
"format": "byte",
|
||||
@@ -2021,7 +2235,7 @@
|
||||
"id": "ReserveIdsRequest",
|
||||
"properties": {
|
||||
"databaseId": {
|
||||
"description": "If not empty, the ID of the database against which to make the request.",
|
||||
"description": "The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database.",
|
||||
"type": "string"
|
||||
},
|
||||
"keys": {
|
||||
@@ -2044,6 +2258,10 @@
|
||||
"description": "The request for Datastore.Rollback.",
|
||||
"id": "RollbackRequest",
|
||||
"properties": {
|
||||
"databaseId": {
|
||||
"description": "The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database.",
|
||||
"type": "string"
|
||||
},
|
||||
"transaction": {
|
||||
"description": "Required. The transaction identifier, returned by a call to Datastore.BeginTransaction.",
|
||||
"format": "byte",
|
||||
@@ -2058,13 +2276,64 @@
|
||||
"properties": {},
|
||||
"type": "object"
|
||||
},
|
||||
"RunAggregationQueryRequest": {
|
||||
"description": "The request for Datastore.RunAggregationQuery.",
|
||||
"id": "RunAggregationQueryRequest",
|
||||
"properties": {
|
||||
"aggregationQuery": {
|
||||
"$ref": "AggregationQuery",
|
||||
"description": "The query to run."
|
||||
},
|
||||
"databaseId": {
|
||||
"description": "The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database.",
|
||||
"type": "string"
|
||||
},
|
||||
"gqlQuery": {
|
||||
"$ref": "GqlQuery",
|
||||
"description": "The GQL query to run. This query must be an aggregation query."
|
||||
},
|
||||
"partitionId": {
|
||||
"$ref": "PartitionId",
|
||||
"description": "Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single partition. This partition ID is normalized with the standard default context partition ID."
|
||||
},
|
||||
"readOptions": {
|
||||
"$ref": "ReadOptions",
|
||||
"description": "The options for this query."
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"RunAggregationQueryResponse": {
|
||||
"description": "The response for Datastore.RunAggregationQuery.",
|
||||
"id": "RunAggregationQueryResponse",
|
||||
"properties": {
|
||||
"batch": {
|
||||
"$ref": "AggregationResultBatch",
|
||||
"description": "A batch of aggregation results. Always present."
|
||||
},
|
||||
"query": {
|
||||
"$ref": "AggregationQuery",
|
||||
"description": "The parsed form of the `GqlQuery` from the request, if it was set."
|
||||
},
|
||||
"transaction": {
|
||||
"description": "The identifier of the transaction that was started as part of this RunAggregationQuery request. Set only when ReadOptions.begin_transaction was set in RunAggregationQueryRequest.read_options.",
|
||||
"format": "byte",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
},
|
||||
"RunQueryRequest": {
|
||||
"description": "The request for Datastore.RunQuery.",
|
||||
"id": "RunQueryRequest",
|
||||
"properties": {
|
||||
"databaseId": {
|
||||
"description": "The ID of the database against which to make the request. '(default)' is not allowed; please use empty string '' to refer the default database.",
|
||||
"type": "string"
|
||||
},
|
||||
"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",
|
||||
@@ -2092,6 +2361,11 @@
|
||||
"query": {
|
||||
"$ref": "Query",
|
||||
"description": "The parsed form of the `GqlQuery` from the request, if it was set."
|
||||
},
|
||||
"transaction": {
|
||||
"description": "The identifier of the transaction that was started as part of this RunQuery request. Set only when ReadOptions.begin_transaction was set in RunQueryRequest.read_options.",
|
||||
"format": "byte",
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"type": "object"
|
||||
|
||||
Reference in New Issue
Block a user