Skip to content

Commit e19e28f

Browse files
yoshi-automationsofisl
authored andcommitted
fix(storagetransfer): update the API
#### storagetransfer: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 487bfb4 commit e19e28f

File tree

2 files changed

+9
-9
lines changed

2 files changed

+9
-9
lines changed

‎discovery/storagetransfer-v1.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@
632632
}
633633
}
634634
},
635-
"revision": "20240928",
635+
"revision": "20241005",
636636
"rootUrl": "https://storagetransfer.googleapis.com/",
637637
"schemas": {
638638
"AgentPool": {
@@ -1530,22 +1530,22 @@
15301530
"id": "TimeOfDay",
15311531
"properties": {
15321532
"hours": {
1533-
"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.",
1533+
"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.",
15341534
"format": "int32",
15351535
"type": "integer"
15361536
},
15371537
"minutes": {
1538-
"description": "Minutes of hour of day. Must be from 0 to 59.",
1538+
"description": "Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.",
15391539
"format": "int32",
15401540
"type": "integer"
15411541
},
15421542
"nanos": {
1543-
"description": "Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.",
1543+
"description": "Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.",
15441544
"format": "int32",
15451545
"type": "integer"
15461546
},
15471547
"seconds": {
1548-
"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.",
1548+
"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.",
15491549
"format": "int32",
15501550
"type": "integer"
15511551
}

‎src/apis/storagetransfer/v1.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -670,19 +670,19 @@ export namespace storagetransfer_v1 {
670670
*/
671671
export interface Schema$TimeOfDay {
672672
/**
673-
* 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.
673+
* 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.
674674
*/
675675
hours?: number | null;
676676
/**
677-
* Minutes of hour of day. Must be from 0 to 59.
677+
* Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
678678
*/
679679
minutes?: number | null;
680680
/**
681-
* Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
681+
* Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
682682
*/
683683
nanos?: number | null;
684684
/**
685-
* 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.
685+
* 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.
686686
*/
687687
seconds?: number | null;
688688
}

0 commit comments

Comments
 (0)