Skip to content

Commit 84cdc7e

Browse files
yoshi-automationsofisl
authored andcommitted
fix(memcache): update the API
#### memcache:v1beta2 The following keys were changed: - schemas.TimeOfDay.properties.hours.description - schemas.TimeOfDay.properties.minutes.description - schemas.TimeOfDay.properties.nanos.description - schemas.TimeOfDay.properties.seconds.description #### memcache:v1 The following keys were changed: - schemas.TimeOfDay.properties.hours.description - schemas.TimeOfDay.properties.minutes.description - schemas.TimeOfDay.properties.nanos.description - schemas.TimeOfDay.properties.seconds.description
1 parent 55f677b commit 84cdc7e

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

‎discovery/memcache-v1.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -584,7 +584,7 @@
584584
}
585585
}
586586
},
587-
"revision": "20240919",
587+
"revision": "20241010",
588588
"rootUrl": "https://memcache.googleapis.com/",
589589
"schemas": {
590590
"ApplyParametersRequest": {
@@ -2095,22 +2095,22 @@
20952095
"id": "TimeOfDay",
20962096
"properties": {
20972097
"hours": {
2098-
"description": "Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value \"24:00:00\" for scenarios like business closing time.",
2098+
"description": "Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value \"24:00:00\" for scenarios like business closing time.",
20992099
"format": "int32",
21002100
"type": "integer"
21012101
},
21022102
"minutes": {
2103-
"description": "Minutes of hour of day. Must be from 0 to 59.",
2103+
"description": "Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.",
21042104
"format": "int32",
21052105
"type": "integer"
21062106
},
21072107
"nanos": {
2108-
"description": "Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.",
2108+
"description": "Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.",
21092109
"format": "int32",
21102110
"type": "integer"
21112111
},
21122112
"seconds": {
2113-
"description": "Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.",
2113+
"description": "Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.",
21142114
"format": "int32",
21152115
"type": "integer"
21162116
}

‎discovery/memcache-v1beta2.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -612,7 +612,7 @@
612612
}
613613
}
614614
},
615-
"revision": "20240919",
615+
"revision": "20241010",
616616
"rootUrl": "https://memcache.googleapis.com/",
617617
"schemas": {
618618
"ApplyParametersRequest": {
@@ -2151,22 +2151,22 @@
21512151
"id": "TimeOfDay",
21522152
"properties": {
21532153
"hours": {
2154-
"description": "Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value \"24:00:00\" for scenarios like business closing time.",
2154+
"description": "Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value \"24:00:00\" for scenarios like business closing time.",
21552155
"format": "int32",
21562156
"type": "integer"
21572157
},
21582158
"minutes": {
2159-
"description": "Minutes of hour of day. Must be from 0 to 59.",
2159+
"description": "Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.",
21602160
"format": "int32",
21612161
"type": "integer"
21622162
},
21632163
"nanos": {
2164-
"description": "Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.",
2164+
"description": "Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.",
21652165
"format": "int32",
21662166
"type": "integer"
21672167
},
21682168
"seconds": {
2169-
"description": "Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.",
2169+
"description": "Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.",
21702170
"format": "int32",
21712171
"type": "integer"
21722172
}

‎src/apis/memcache/v1.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -998,19 +998,19 @@ export namespace memcache_v1 {
998998
*/
999999
export interface Schema$TimeOfDay {
10001000
/**
1001-
* Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
1001+
* Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
10021002
*/
10031003
hours?: number | null;
10041004
/**
1005-
* Minutes of hour of day. Must be from 0 to 59.
1005+
* Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
10061006
*/
10071007
minutes?: number | null;
10081008
/**
1009-
* Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
1009+
* Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
10101010
*/
10111011
nanos?: number | null;
10121012
/**
1013-
* Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
1013+
* Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
10141014
*/
10151015
seconds?: number | null;
10161016
}

‎src/apis/memcache/v1beta2.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1019,19 +1019,19 @@ export namespace memcache_v1beta2 {
10191019
*/
10201020
export interface Schema$TimeOfDay {
10211021
/**
1022-
* Hours of day in 24 hour format. Should be from 0 to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
1022+
* Hours of a day in 24 hour format. Must be greater than or equal to 0 and typically must be less than or equal to 23. An API may choose to allow the value "24:00:00" for scenarios like business closing time.
10231023
*/
10241024
hours?: number | null;
10251025
/**
1026-
* Minutes of hour of day. Must be from 0 to 59.
1026+
* Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
10271027
*/
10281028
minutes?: number | null;
10291029
/**
1030-
* Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
1030+
* Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
10311031
*/
10321032
nanos?: number | null;
10331033
/**
1034-
* Seconds of minutes of the time. Must normally be from 0 to 59. An API may allow the value 60 if it allows leap-seconds.
1034+
* Seconds of a minute. Must be greater than or equal to 0 and typically must be less than or equal to 59. An API may allow the value 60 if it allows leap-seconds.
10351035
*/
10361036
seconds?: number | null;
10371037
}

0 commit comments

Comments
 (0)