@googleapis/storagetransfer 7.2.0 → 7.2.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # Changelog
2
2
 
3
+ ## [7.2.2](https://github.com/googleapis/google-api-nodejs-client/compare/storagetransfer-v7.2.1...storagetransfer-v7.2.2) (2025-02-04)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **storagetransfer:** update the API ([e19e28f](https://github.com/googleapis/google-api-nodejs-client/commit/e19e28feffba7de8a111ee051e8e19a61a56a0d0))
9
+
10
+ ## [7.2.1](https://github.com/googleapis/google-api-nodejs-client/compare/storagetransfer-v7.2.0...storagetransfer-v7.2.1) (2024-10-30)
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * **storagetransfer:** update the API ([921c64d](https://github.com/googleapis/google-api-nodejs-client/commit/921c64d13ba28ea71931140ff35af4f5a7a8f48c))
16
+
3
17
  ## [7.2.0](https://github.com/googleapis/google-api-nodejs-client/compare/storagetransfer-v7.1.2...storagetransfer-v7.2.0) (2024-08-16)
4
18
 
5
19
 
package/build/v1.d.ts CHANGED
@@ -518,23 +518,23 @@ export declare namespace storagetransfer_v1 {
518
518
  rootDirectory?: string | null;
519
519
  }
520
520
  /**
521
- * Specifies the configuration for running a replication job.
521
+ * Specifies the configuration for a cross-bucket replication job. Cross-bucket replication copies new or updated objects from a source Cloud Storage bucket to a destination Cloud Storage bucket. Existing objects in the source bucket are not copied by a new cross-bucket replication job.
522
522
  */
523
523
  export interface Schema$ReplicationSpec {
524
524
  /**
525
- * Specifies cloud Storage data sink.
525
+ * The Cloud Storage bucket to which to replicate objects.
526
526
  */
527
527
  gcsDataSink?: Schema$GcsData;
528
528
  /**
529
- * Specifies cloud Storage data source.
529
+ * The Cloud Storage bucket from which to replicate objects.
530
530
  */
531
531
  gcsDataSource?: Schema$GcsData;
532
532
  /**
533
- * Specifies the object conditions to only include objects that satisfy these conditions in the set of data source objects. Object conditions based on objects' "last modification time" do not exclude objects in a data sink.
533
+ * Object conditions that determine which objects are transferred. For replication jobs, only `include_prefixes` and `exclude_prefixes` are supported.
534
534
  */
535
535
  objectConditions?: Schema$ObjectConditions;
536
536
  /**
537
- * Specifies the actions to be performed on the object during replication. Delete options are not supported for replication and when specified, the request fails with an INVALID_ARGUMENT error.
537
+ * Specifies the metadata options to be applied during replication. Delete options are not supported. If a delete option is specified, the request fails with an INVALID_ARGUMENT error.
538
538
  */
539
539
  transferOptions?: Schema$TransferOptions;
540
540
  }
@@ -622,19 +622,19 @@ export declare namespace storagetransfer_v1 {
622
622
  */
623
623
  export interface Schema$TimeOfDay {
624
624
  /**
625
- * 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.
625
+ * 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.
626
626
  */
627
627
  hours?: number | null;
628
628
  /**
629
- * Minutes of hour of day. Must be from 0 to 59.
629
+ * Minutes of an hour. Must be greater than or equal to 0 and less than or equal to 59.
630
630
  */
631
631
  minutes?: number | null;
632
632
  /**
633
- * Fractions of seconds in nanoseconds. Must be from 0 to 999,999,999.
633
+ * Fractions of seconds, in nanoseconds. Must be greater than or equal to 0 and less than or equal to 999,999,999.
634
634
  */
635
635
  nanos?: number | null;
636
636
  /**
637
- * 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.
637
+ * 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.
638
638
  */
639
639
  seconds?: number | null;
640
640
  }
@@ -1230,7 +1230,7 @@ export declare namespace storagetransfer_v1 {
1230
1230
  }
1231
1231
  export interface Params$Resource$Transferjobs$List extends StandardParameters {
1232
1232
  /**
1233
- * Required. A list of query parameters specified as JSON text in the form of: `{"projectId":"my_project_id", "jobNames":["jobid1","jobid2",...], "jobStatuses":["status1","status2",...]\}` Since `jobNames` and `jobStatuses` support multiple values, their values must be specified with array notation. `projectId` is required. `jobNames` and `jobStatuses` are optional. The valid values for `jobStatuses` are case-insensitive: ENABLED, DISABLED, and DELETED.
1233
+ * Required. A list of query parameters specified as JSON text in the form of: ``` { "projectId":"my_project_id", "jobNames":["jobid1","jobid2",...], "jobStatuses":["status1","status2",...], "dataBackend":"QUERY_REPLICATION_CONFIGS", "sourceBucket":"source-bucket-name", "sinkBucket":"sink-bucket-name", \} ``` The JSON formatting in the example is for display only; provide the query parameters without spaces or line breaks. * `projectId` is required. * Since `jobNames` and `jobStatuses` support multiple values, their values must be specified with array notation. `jobNames` and `jobStatuses` are optional. Valid values are case-insensitive: * ENABLED * DISABLED * DELETED * Specify `"dataBackend":"QUERY_REPLICATION_CONFIGS"` to return a list of cross-bucket replication jobs. * Limit the results to jobs from a particular bucket with `sourceBucket` and/or to a particular bucket with `sinkBucket`.
1234
1234
  */
1235
1235
  filter?: string;
1236
1236
  /**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@googleapis/storagetransfer",
3
- "version": "7.2.0",
3
+ "version": "7.2.2",
4
4
  "description": "storagetransfer",
5
5
  "main": "build/index.js",
6
6
  "types": "build/index.d.ts",
package/v1.ts CHANGED
@@ -569,23 +569,23 @@ export namespace storagetransfer_v1 {
569
569
  rootDirectory?: string | null;
570
570
  }
571
571
  /**
572
- * Specifies the configuration for running a replication job.
572
+ * Specifies the configuration for a cross-bucket replication job. Cross-bucket replication copies new or updated objects from a source Cloud Storage bucket to a destination Cloud Storage bucket. Existing objects in the source bucket are not copied by a new cross-bucket replication job.
573
573
  */
574
574
  export interface Schema$ReplicationSpec {
575
575
  /**
576
- * Specifies cloud Storage data sink.
576
+ * The Cloud Storage bucket to which to replicate objects.
577
577
  */
578
578
  gcsDataSink?: Schema$GcsData;
579
579
  /**
580
- * Specifies cloud Storage data source.
580
+ * The Cloud Storage bucket from which to replicate objects.
581
581
  */
582
582
  gcsDataSource?: Schema$GcsData;
583
583
  /**
584
- * Specifies the object conditions to only include objects that satisfy these conditions in the set of data source objects. Object conditions based on objects' "last modification time" do not exclude objects in a data sink.
584
+ * Object conditions that determine which objects are transferred. For replication jobs, only `include_prefixes` and `exclude_prefixes` are supported.
585
585
  */
586
586
  objectConditions?: Schema$ObjectConditions;
587
587
  /**
588
- * Specifies the actions to be performed on the object during replication. Delete options are not supported for replication and when specified, the request fails with an INVALID_ARGUMENT error.
588
+ * Specifies the metadata options to be applied during replication. Delete options are not supported. If a delete option is specified, the request fails with an INVALID_ARGUMENT error.
589
589
  */
590
590
  transferOptions?: Schema$TransferOptions;
591
591
  }
@@ -670,19 +670,19 @@ export namespace storagetransfer_v1 {
670
670
  */
671
671
  export interface Schema$TimeOfDay {
672
672
  /**
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.
674
674
  */
675
675
  hours?: number | null;
676
676
  /**
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.
678
678
  */
679
679
  minutes?: number | null;
680
680
  /**
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.
682
682
  */
683
683
  nanos?: number | null;
684
684
  /**
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.
686
686
  */
687
687
  seconds?: number | null;
688
688
  }
@@ -2191,7 +2191,7 @@ export namespace storagetransfer_v1 {
2191
2191
  export interface Params$Resource$Transferjobs$List
2192
2192
  extends StandardParameters {
2193
2193
  /**
2194
- * Required. A list of query parameters specified as JSON text in the form of: `{"projectId":"my_project_id", "jobNames":["jobid1","jobid2",...], "jobStatuses":["status1","status2",...]\}` Since `jobNames` and `jobStatuses` support multiple values, their values must be specified with array notation. `projectId` is required. `jobNames` and `jobStatuses` are optional. The valid values for `jobStatuses` are case-insensitive: ENABLED, DISABLED, and DELETED.
2194
+ * Required. A list of query parameters specified as JSON text in the form of: ``` { "projectId":"my_project_id", "jobNames":["jobid1","jobid2",...], "jobStatuses":["status1","status2",...], "dataBackend":"QUERY_REPLICATION_CONFIGS", "sourceBucket":"source-bucket-name", "sinkBucket":"sink-bucket-name", \} ``` The JSON formatting in the example is for display only; provide the query parameters without spaces or line breaks. * `projectId` is required. * Since `jobNames` and `jobStatuses` support multiple values, their values must be specified with array notation. `jobNames` and `jobStatuses` are optional. Valid values are case-insensitive: * ENABLED * DISABLED * DELETED * Specify `"dataBackend":"QUERY_REPLICATION_CONFIGS"` to return a list of cross-bucket replication jobs. * Limit the results to jobs from a particular bucket with `sourceBucket` and/or to a particular bucket with `sinkBucket`.
2195
2195
  */
2196
2196
  filter?: string;
2197
2197
  /**