Skip to content

Commit fccb1b2

Browse files
fix(redis): update the API
#### redis:v1beta1 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 #### redis: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 089c915 commit fccb1b2

File tree

4 files changed

+18
-18
lines changed

4 files changed

+18
-18
lines changed

discovery/redis-v1.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@
849849
}
850850
}
851851
},
852-
"revision": "20240924",
852+
"revision": "20241003",
853853
"rootUrl": "https://redis.googleapis.com/",
854854
"schemas": {
855855
"AOFConfig": {
@@ -4026,22 +4026,22 @@
40264026
"id": "TimeOfDay",
40274027
"properties": {
40284028
"hours": {
4029-
"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.",
4029+
"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.",
40304030
"format": "int32",
40314031
"type": "integer"
40324032
},
40334033
"minutes": {
4034-
"description": "Minutes of hour of day. Must be from 0 to 59.",
4034+
"description": "Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.",
40354035
"format": "int32",
40364036
"type": "integer"
40374037
},
40384038
"nanos": {
4039-
"description": "Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.",
4039+
"description": "Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.",
40404040
"format": "int32",
40414041
"type": "integer"
40424042
},
40434043
"seconds": {
4044-
"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.",
4044+
"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.",
40454045
"format": "int32",
40464046
"type": "integer"
40474047
}

discovery/redis-v1beta1.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -849,7 +849,7 @@
849849
}
850850
}
851851
},
852-
"revision": "20240924",
852+
"revision": "20241003",
853853
"rootUrl": "https://redis.googleapis.com/",
854854
"schemas": {
855855
"AOFConfig": {
@@ -4033,22 +4033,22 @@
40334033
"id": "TimeOfDay",
40344034
"properties": {
40354035
"hours": {
4036-
"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.",
4036+
"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.",
40374037
"format": "int32",
40384038
"type": "integer"
40394039
},
40404040
"minutes": {
4041-
"description": "Minutes of hour of day. Must be from 0 to 59.",
4041+
"description": "Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.",
40424042
"format": "int32",
40434043
"type": "integer"
40444044
},
40454045
"nanos": {
4046-
"description": "Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.",
4046+
"description": "Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.",
40474047
"format": "int32",
40484048
"type": "integer"
40494049
},
40504050
"seconds": {
4051-
"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.",
4051+
"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.",
40524052
"format": "int32",
40534053
"type": "integer"
40544054
}

src/apis/redis/v1.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1538,19 +1538,19 @@ export namespace redis_v1 {
15381538
*/
15391539
export interface Schema$TimeOfDay {
15401540
/**
1541-
* 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.
1541+
* 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.
15421542
*/
15431543
hours?: number | null;
15441544
/**
1545-
* Minutes of hour of day. Must be from 0 to 59.
1545+
* Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
15461546
*/
15471547
minutes?: number | null;
15481548
/**
1549-
* Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
1549+
* Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
15501550
*/
15511551
nanos?: number | null;
15521552
/**
1553-
* 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.
1553+
* 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.
15541554
*/
15551555
seconds?: number | null;
15561556
}

src/apis/redis/v1beta1.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1538,19 +1538,19 @@ export namespace redis_v1beta1 {
15381538
*/
15391539
export interface Schema$TimeOfDay {
15401540
/**
1541-
* 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.
1541+
* 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.
15421542
*/
15431543
hours?: number | null;
15441544
/**
1545-
* Minutes of hour of day. Must be from 0 to 59.
1545+
* Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
15461546
*/
15471547
minutes?: number | null;
15481548
/**
1549-
* Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
1549+
* Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
15501550
*/
15511551
nanos?: number | null;
15521552
/**
1553-
* 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.
1553+
* 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.
15541554
*/
15551555
seconds?: number | null;
15561556
}

0 commit comments

Comments
 (0)