Skip to content

Commit

Permalink
feat(spanner): update the API
Browse files Browse the repository at this point in the history
#### spanner:v1

The following keys were added:
- schemas.KeyRangeInfo.properties.timeOffset.description
- schemas.KeyRangeInfo.properties.timeOffset.format
- schemas.KeyRangeInfo.properties.timeOffset.type
  • Loading branch information
yoshi-automation authored and JustinBeckwith committed Jul 8, 2021
1 parent 77594fa commit f8c1b32
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 6 additions & 1 deletion discovery/spanner-v1.json
Expand Up @@ -2037,7 +2037,7 @@
}
}
},
"revision": "20210611",
"revision": "20210624",
"rootUrl": "https://spanner.googleapis.com/",
"schemas": {
"Backup": {
Expand Down Expand Up @@ -2971,6 +2971,11 @@
"format": "int32",
"type": "integer"
},
"timeOffset": {
"description": "The time offset. This is the time since the start of the time interval.",
"format": "google-duration",
"type": "string"
},
"unit": {
"$ref": "LocalizedString",
"description": "The unit of the metric. This is an unstructured field and will be mapped as is to the user."
Expand Down
4 changes: 4 additions & 0 deletions src/apis/spanner/v1.ts
Expand Up @@ -795,6 +795,10 @@ export namespace spanner_v1 {
* The index of the start key in indexed_keys.
*/
startKeyIndex?: number | null;
/**
* The time offset. This is the time since the start of the time interval.
*/
timeOffset?: string | null;
/**
* The unit of the metric. This is an unstructured field and will be mapped as is to the user.
*/
Expand Down

0 comments on commit f8c1b32

Please sign in to comment.