Skip to content

Commit c8e58c5

Browse files
fix(oracledatabase): update the API
#### oracledatabase: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 0ecef50 commit c8e58c5

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

discovery/oracledatabase-v1.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1119,7 +1119,7 @@
11191119
}
11201120
}
11211121
},
1122-
"revision": "20240918",
1122+
"revision": "20241002",
11231123
"rootUrl": "https://oracledatabase.googleapis.com/",
11241124
"schemas": {
11251125
"AllConnectionStrings": {
@@ -3719,22 +3719,22 @@
37193719
"id": "TimeOfDay",
37203720
"properties": {
37213721
"hours": {
3722-
"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.",
3722+
"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.",
37233723
"format": "int32",
37243724
"type": "integer"
37253725
},
37263726
"minutes": {
3727-
"description": "Minutes of hour of day. Must be from 0 to 59.",
3727+
"description": "Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.",
37283728
"format": "int32",
37293729
"type": "integer"
37303730
},
37313731
"nanos": {
3732-
"description": "Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.",
3732+
"description": "Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.",
37333733
"format": "int32",
37343734
"type": "integer"
37353735
},
37363736
"seconds": {
3737-
"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.",
3737+
"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.",
37383738
"format": "int32",
37393739
"type": "integer"
37403740
}

src/apis/oracledatabase/v1.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1670,19 +1670,19 @@ export namespace oracledatabase_v1 {
16701670
*/
16711671
export interface Schema$TimeOfDay {
16721672
/**
1673-
* 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.
1673+
* 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.
16741674
*/
16751675
hours?: number | null;
16761676
/**
1677-
* Minutes of hour of day. Must be from 0 to 59.
1677+
* Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
16781678
*/
16791679
minutes?: number | null;
16801680
/**
1681-
* Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
1681+
* Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
16821682
*/
16831683
nanos?: number | null;
16841684
/**
1685-
* 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.
1685+
* 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.
16861686
*/
16871687
seconds?: number | null;
16881688
}

0 commit comments

Comments
 (0)