Skip to content

Commit b89df9c

Browse files
fix(storagetransfer): update the API
#### storagetransfer:v1 The following keys were changed: - schemas.LoggingConfig.properties.logActions.items.enumDescriptions - schemas.Schedule.properties.endTimeOfDay.description - schemas.TransferOptions.properties.overwriteObjectsAlreadyExistingInSink.description
1 parent 6e6acfc commit b89df9c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

discovery/storagetransfer-v1.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -632,7 +632,7 @@
632632
}
633633
}
634634
},
635-
"revision": "20241005",
635+
"revision": "20250301",
636636
"rootUrl": "https://storagetransfer.googleapis.com/",
637637
"schemas": {
638638
"AgentPool": {
@@ -1080,7 +1080,7 @@
10801080
"Default value. This value is unused.",
10811081
"Listing objects in a bucket.",
10821082
"Deleting objects at the source or the destination.",
1083-
"Copying objects to Google Cloud Storage."
1083+
"Copying objects to the destination."
10841084
],
10851085
"type": "string"
10861086
},
@@ -1476,7 +1476,7 @@
14761476
"properties": {
14771477
"endTimeOfDay": {
14781478
"$ref": "TimeOfDay",
1479-
"description": "The time in UTC that no further transfer operations are scheduled. Combined with schedule_end_date, `end_time_of_day` specifies the end date and time for starting new transfer operations. This field must be greater than or equal to the timestamp corresponding to the combintation of schedule_start_date and start_time_of_day, and is subject to the following: * If `end_time_of_day` is not set and `schedule_end_date` is set, then a default value of `23:59:59` is used for `end_time_of_day`. * If `end_time_of_day` is set and `schedule_end_date` is not set, then INVALID_ARGUMENT is returned."
1479+
"description": "The time in UTC that no further transfer operations are scheduled. Combined with schedule_end_date, `end_time_of_day` specifies the end date and time for starting new transfer operations. This field must be greater than or equal to the timestamp corresponding to the combination of schedule_start_date and start_time_of_day, and is subject to the following: * If `end_time_of_day` is not set and `schedule_end_date` is set, then a default value of `23:59:59` is used for `end_time_of_day`. * If `end_time_of_day` is set and `schedule_end_date` is not set, then INVALID_ARGUMENT is returned."
14801480
},
14811481
"repeatInterval": {
14821482
"description": "Interval between the start of each scheduled TransferOperation. If unspecified, the default value is 24 hours. This value may not be less than 1 hour.",
@@ -1849,7 +1849,7 @@
18491849
"description": "Represents the selected metadata options for a transfer job."
18501850
},
18511851
"overwriteObjectsAlreadyExistingInSink": {
1852-
"description": "When to overwrite objects that already exist in the sink. The default is that only objects that are different from the source are ovewritten. If true, all objects in the sink whose name matches an object in the source are overwritten with the source object.",
1852+
"description": "When to overwrite objects that already exist in the sink. The default is that only objects that are different from the source are overwritten. If true, all objects in the sink whose name matches an object in the source are overwritten with the source object.",
18531853
"type": "boolean"
18541854
},
18551855
"overwriteWhen": {

src/apis/storagetransfer/v1.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -628,7 +628,7 @@ export namespace storagetransfer_v1 {
628628
*/
629629
export interface Schema$Schedule {
630630
/**
631-
* The time in UTC that no further transfer operations are scheduled. Combined with schedule_end_date, `end_time_of_day` specifies the end date and time for starting new transfer operations. This field must be greater than or equal to the timestamp corresponding to the combintation of schedule_start_date and start_time_of_day, and is subject to the following: * If `end_time_of_day` is not set and `schedule_end_date` is set, then a default value of `23:59:59` is used for `end_time_of_day`. * If `end_time_of_day` is set and `schedule_end_date` is not set, then INVALID_ARGUMENT is returned.
631+
* The time in UTC that no further transfer operations are scheduled. Combined with schedule_end_date, `end_time_of_day` specifies the end date and time for starting new transfer operations. This field must be greater than or equal to the timestamp corresponding to the combination of schedule_start_date and start_time_of_day, and is subject to the following: * If `end_time_of_day` is not set and `schedule_end_date` is set, then a default value of `23:59:59` is used for `end_time_of_day`. * If `end_time_of_day` is set and `schedule_end_date` is not set, then INVALID_ARGUMENT is returned.
632632
*/
633633
endTimeOfDay?: Schema$TimeOfDay;
634634
/**
@@ -911,7 +911,7 @@ export namespace storagetransfer_v1 {
911911
*/
912912
metadataOptions?: Schema$MetadataOptions;
913913
/**
914-
* When to overwrite objects that already exist in the sink. The default is that only objects that are different from the source are ovewritten. If true, all objects in the sink whose name matches an object in the source are overwritten with the source object.
914+
* When to overwrite objects that already exist in the sink. The default is that only objects that are different from the source are overwritten. If true, all objects in the sink whose name matches an object in the source are overwritten with the source object.
915915
*/
916916
overwriteObjectsAlreadyExistingInSink?: boolean | null;
917917
/**

0 commit comments

Comments
 (0)