|
27 | 27 | "endpointUrl": "https://spanner.me-central2.rep.googleapis.com/",
|
28 | 28 | "location": "me-central2"
|
29 | 29 | },
|
| 30 | + { |
| 31 | + "description": "Regional Endpoint", |
| 32 | + "endpointUrl": "https://spanner.us-central1.rep.googleapis.com/", |
| 33 | + "location": "us-central1" |
| 34 | + }, |
30 | 35 | {
|
31 | 36 | "description": "Regional Endpoint",
|
32 | 37 | "endpointUrl": "https://spanner.us-east1.rep.googleapis.com/",
|
33 | 38 | "location": "us-east1"
|
34 | 39 | },
|
| 40 | + { |
| 41 | + "description": "Regional Endpoint", |
| 42 | + "endpointUrl": "https://spanner.us-east4.rep.googleapis.com/", |
| 43 | + "location": "us-east4" |
| 44 | + }, |
| 45 | + { |
| 46 | + "description": "Regional Endpoint", |
| 47 | + "endpointUrl": "https://spanner.us-east5.rep.googleapis.com/", |
| 48 | + "location": "us-east5" |
| 49 | + }, |
35 | 50 | {
|
36 | 51 | "description": "Regional Endpoint",
|
37 | 52 | "endpointUrl": "https://spanner.us-west1.rep.googleapis.com/",
|
38 | 53 | "location": "us-west1"
|
| 54 | + }, |
| 55 | + { |
| 56 | + "description": "Regional Endpoint", |
| 57 | + "endpointUrl": "https://spanner.us-west4.rep.googleapis.com/", |
| 58 | + "location": "us-west4" |
39 | 59 | }
|
40 | 60 | ],
|
41 | 61 | "fullyEncodeReservedExpansion": true,
|
|
3264 | 3284 | }
|
3265 | 3285 | }
|
3266 | 3286 | },
|
3267 |
| - "revision": "20240831", |
| 3287 | + "revision": "20240918", |
3268 | 3288 | "rootUrl": "https://spanner.googleapis.com/",
|
3269 | 3289 | "schemas": {
|
3270 | 3290 | "AutoscalingConfig": {
|
|
4547 | 4567 | "enumDescriptions": [
|
4548 | 4568 | "The default mode. Only the statement results are returned.",
|
4549 | 4569 | "This mode returns only the query plan, without any results or execution statistics information.",
|
4550 |
| - "This mode returns both the query plan and the execution statistics along with the results. This has a performance overhead compared to the NORMAL mode. It is not recommended to use this mode for production traffic." |
| 4570 | + "This mode returns the query plan, overall execution statistics, operator level execution statistics along with the results. This has a performance overhead compared to the other modes. It is not recommended to use this mode for production traffic." |
4551 | 4571 | ],
|
4552 | 4572 | "type": "string"
|
4553 | 4573 | },
|
|
5647 | 5667 | },
|
5648 | 5668 | "type": "object"
|
5649 | 5669 | },
|
| 5670 | + "MultiplexedSessionPrecommitToken": { |
| 5671 | + "description": "When a read-write transaction is executed on a multiplexed session, this precommit token is sent back to the client as a part of the [Transaction] message in the BeginTransaction response and also as a part of the [ResultSet] and [PartialResultSet] responses.", |
| 5672 | + "id": "MultiplexedSessionPrecommitToken", |
| 5673 | + "properties": { |
| 5674 | + "precommitToken": { |
| 5675 | + "description": "Opaque precommit token.", |
| 5676 | + "format": "byte", |
| 5677 | + "type": "string" |
| 5678 | + }, |
| 5679 | + "seqNum": { |
| 5680 | + "description": "An incrementing seq number is generated on every precommit token that is returned. Clients should remember the precommit token with the highest sequence number from the current transaction attempt.", |
| 5681 | + "format": "int32", |
| 5682 | + "type": "integer" |
| 5683 | + } |
| 5684 | + }, |
| 5685 | + "type": "object" |
| 5686 | + }, |
5650 | 5687 | "Mutation": {
|
5651 | 5688 | "description": "A modification to one or more Cloud Spanner rows. Mutations can be applied to a Cloud Spanner database by sending them in a Commit call.",
|
5652 | 5689 | "id": "Mutation",
|
|
6790 | 6827 | "format": "byte",
|
6791 | 6828 | "type": "string"
|
6792 | 6829 | },
|
| 6830 | + "precommitToken": { |
| 6831 | + "$ref": "MultiplexedSessionPrecommitToken", |
| 6832 | + "description": "A precommit token will be included in the response of a BeginTransaction request if the read-write transaction is on a multiplexed session and a mutation_key was specified in the BeginTransaction. The precommit token with the highest sequence number from this transaction attempt should be passed to the Commit request for this transaction." |
| 6833 | + }, |
6793 | 6834 | "readTimestamp": {
|
6794 | 6835 | "description": "For snapshot read-only transactions, the read timestamp chosen for the transaction. Not returned by default: see TransactionOptions.ReadOnly.return_read_timestamp. A timestamp in RFC3339 UTC \\\"Zulu\\\" format, accurate to nanoseconds. Example: `\"2014-10-02T15:01:23.045123456Z\"`.",
|
6795 | 6836 | "format": "google-datetime",
|
|
0 commit comments