@googleapis/storagetransfer 2.3.0 → 2.7.0
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 +35 -0
- package/build/v1.d.ts +99 -46
- package/build/v1.js.map +1 -1
- package/package.json +2 -2
- package/v1.ts +99 -46
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,40 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.7.0](https://github.com/googleapis/google-api-nodejs-client/compare/storagetransfer-v2.6.1...storagetransfer-v2.7.0) (2022-04-01)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **storagetransfer:** update the API ([976576e](https://github.com/googleapis/google-api-nodejs-client/commit/976576eb2e41b08c7d30d7a3868781a3f16cbf40))
|
|
9
|
+
|
|
10
|
+
### [2.6.1](https://github.com/googleapis/google-api-nodejs-client/compare/storagetransfer-v2.6.0...storagetransfer-v2.6.1) (2022-03-14)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* **storagetransfer:** update the API ([5cf3eba](https://github.com/googleapis/google-api-nodejs-client/commit/5cf3eba3d9646cd56d31596b7c5ec3d7a94c5b15))
|
|
16
|
+
|
|
17
|
+
## [2.6.0](https://github.com/googleapis/google-api-nodejs-client/compare/storagetransfer-v2.5.0...storagetransfer-v2.6.0) (2022-03-08)
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
### Features
|
|
21
|
+
|
|
22
|
+
* **storagetransfer:** update the API ([2661b09](https://github.com/googleapis/google-api-nodejs-client/commit/2661b098d0cc71d89cddc022b6bd8ad673bd54cd))
|
|
23
|
+
|
|
24
|
+
## [2.5.0](https://github.com/googleapis/google-api-nodejs-client/compare/storagetransfer-v2.4.0...storagetransfer-v2.5.0) (2022-02-04)
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
### Features
|
|
28
|
+
|
|
29
|
+
* **storagetransfer:** update the API ([a82aedb](https://github.com/googleapis/google-api-nodejs-client/commit/a82aedb4d61f0cc513f104256a115e2960a0257d))
|
|
30
|
+
|
|
31
|
+
## [2.4.0](https://www.github.com/googleapis/google-api-nodejs-client/compare/storagetransfer-v2.3.0...storagetransfer-v2.4.0) (2021-12-30)
|
|
32
|
+
|
|
33
|
+
|
|
34
|
+
### Features
|
|
35
|
+
|
|
36
|
+
* **storagetransfer:** update the API ([c05ecc5](https://www.github.com/googleapis/google-api-nodejs-client/commit/c05ecc5f8dc5a7315f5554f24e2cd99054469627))
|
|
37
|
+
|
|
3
38
|
## [2.3.0](https://www.github.com/googleapis/google-api-nodejs-client/compare/storagetransfer-v2.2.0...storagetransfer-v2.3.0) (2021-11-25)
|
|
4
39
|
|
|
5
40
|
|
package/build/v1.d.ts
CHANGED
|
@@ -87,7 +87,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
87
87
|
*/
|
|
88
88
|
displayName?: string | null;
|
|
89
89
|
/**
|
|
90
|
-
* Required. Specifies a unique string that identifies the agent pool. Format: projects/{project_id\}/agentPools/{agent_pool_id\}
|
|
90
|
+
* Required. Specifies a unique string that identifies the agent pool. Format: `projects/{project_id\}/agentPools/{agent_pool_id\}`
|
|
91
91
|
*/
|
|
92
92
|
name?: string | null;
|
|
93
93
|
/**
|
|
@@ -113,7 +113,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
113
113
|
*/
|
|
114
114
|
export interface Schema$AwsS3Data {
|
|
115
115
|
/**
|
|
116
|
-
* Input only. AWS access key used to sign the API requests to the AWS S3 bucket. Permissions on the bucket must be granted to the access ID of the AWS access key.
|
|
116
|
+
* Input only. AWS access key used to sign the API requests to the AWS S3 bucket. Permissions on the bucket must be granted to the access ID of the AWS access key. For information on our data retention policy for user credentials, see [User credentials](/storage-transfer/docs/data-retention#user-credentials).
|
|
117
117
|
*/
|
|
118
118
|
awsAccessKey?: Schema$AwsAccessKey;
|
|
119
119
|
/**
|
|
@@ -155,16 +155,16 @@ export declare namespace storagetransfer_v1 {
|
|
|
155
155
|
*/
|
|
156
156
|
export interface Schema$AzureCredentials {
|
|
157
157
|
/**
|
|
158
|
-
* Required. Azure shared access signature (SAS).
|
|
158
|
+
* Required. Azure shared access signature (SAS). For more information about SAS, see [Grant limited access to Azure Storage resources using shared access signatures (SAS)](https://docs.microsoft.com/en-us/azure/storage/common/storage-sas-overview).
|
|
159
159
|
*/
|
|
160
160
|
sasToken?: string | null;
|
|
161
161
|
}
|
|
162
162
|
/**
|
|
163
|
-
* Specifies
|
|
163
|
+
* Specifies a bandwidth limit for an agent pool.
|
|
164
164
|
*/
|
|
165
165
|
export interface Schema$BandwidthLimit {
|
|
166
166
|
/**
|
|
167
|
-
*
|
|
167
|
+
* Bandwidth rate in megabytes per second, distributed across all the agents in the pool.
|
|
168
168
|
*/
|
|
169
169
|
limitMbps?: string | null;
|
|
170
170
|
}
|
|
@@ -174,7 +174,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
174
174
|
export interface Schema$CancelOperationRequest {
|
|
175
175
|
}
|
|
176
176
|
/**
|
|
177
|
-
* Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day
|
|
177
|
+
* Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
|
178
178
|
*/
|
|
179
179
|
export interface Schema$Date {
|
|
180
180
|
/**
|
|
@@ -191,7 +191,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
191
191
|
year?: number | null;
|
|
192
192
|
}
|
|
193
193
|
/**
|
|
194
|
-
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \}
|
|
194
|
+
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \}
|
|
195
195
|
*/
|
|
196
196
|
export interface Schema$Empty {
|
|
197
197
|
}
|
|
@@ -300,22 +300,63 @@ export declare namespace storagetransfer_v1 {
|
|
|
300
300
|
transferJobs?: Schema$TransferJob[];
|
|
301
301
|
}
|
|
302
302
|
/**
|
|
303
|
-
* Logging
|
|
303
|
+
* Specifies the logging behavior for transfer operations. For cloud-to-cloud transfers, logs are sent to Cloud Logging. See [Read transfer logs](https://cloud.google.com/storage-transfer/docs/read-transfer-logs) for details. For transfers to or from a POSIX file system, logs are stored in the Cloud Storage bucket that is the source or sink of the transfer. See [Managing Transfer for on-premises jobs] (https://cloud.google.com/storage-transfer/docs/managing-on-prem-jobs#viewing-logs) for details.
|
|
304
304
|
*/
|
|
305
305
|
export interface Schema$LoggingConfig {
|
|
306
306
|
/**
|
|
307
|
-
*
|
|
307
|
+
* For transfers with a PosixFilesystem source, this option enables the Cloud Storage transfer logs for this transfer.
|
|
308
308
|
*/
|
|
309
309
|
enableOnpremGcsTransferLogs?: boolean | null;
|
|
310
310
|
/**
|
|
311
|
-
*
|
|
311
|
+
* Specifies the actions to be logged. If empty, no logs are generated. Not supported for transfers with PosixFilesystem data sources; use enable_onprem_gcs_transfer_logs instead.
|
|
312
312
|
*/
|
|
313
313
|
logActions?: string[] | null;
|
|
314
314
|
/**
|
|
315
|
-
* States in which `log_actions` are logged. If empty, no logs are generated.
|
|
315
|
+
* States in which `log_actions` are logged. If empty, no logs are generated. Not supported for transfers with PosixFilesystem data sources; use enable_onprem_gcs_transfer_logs instead.
|
|
316
316
|
*/
|
|
317
317
|
logActionStates?: string[] | null;
|
|
318
318
|
}
|
|
319
|
+
/**
|
|
320
|
+
* Specifies the metadata options for running a transfer.
|
|
321
|
+
*/
|
|
322
|
+
export interface Schema$MetadataOptions {
|
|
323
|
+
/**
|
|
324
|
+
* Specifies how each object's ACLs should be preserved for transfers between Google Cloud Storage buckets. If unspecified, the default behavior is the same as ACL_DESTINATION_BUCKET_DEFAULT.
|
|
325
|
+
*/
|
|
326
|
+
acl?: string | null;
|
|
327
|
+
/**
|
|
328
|
+
* Specifies how each file's POSIX group ID (GID) attribute should be handled by the transfer. By default, GID is not preserved. Only applicable to transfers involving POSIX file systems, and ignored for other transfers.
|
|
329
|
+
*/
|
|
330
|
+
gid?: string | null;
|
|
331
|
+
/**
|
|
332
|
+
* Specifies how each object's Cloud KMS customer-managed encryption key (CMEK) is preserved for transfers between Google Cloud Storage buckets. If unspecified, the default behavior is the same as KMS_KEY_DESTINATION_BUCKET_DEFAULT.
|
|
333
|
+
*/
|
|
334
|
+
kmsKey?: string | null;
|
|
335
|
+
/**
|
|
336
|
+
* Specifies how each file's mode attribute should be handled by the transfer. By default, mode is not preserved. Only applicable to transfers involving POSIX file systems, and ignored for other transfers.
|
|
337
|
+
*/
|
|
338
|
+
mode?: string | null;
|
|
339
|
+
/**
|
|
340
|
+
* Specifies the storage class to set on objects being transferred to Google Cloud Storage buckets. If unspecified, the default behavior is the same as STORAGE_CLASS_DESTINATION_BUCKET_DEFAULT.
|
|
341
|
+
*/
|
|
342
|
+
storageClass?: string | null;
|
|
343
|
+
/**
|
|
344
|
+
* Specifies how symlinks should be handled by the transfer. By default, symlinks are not preserved. Only applicable to transfers involving POSIX file systems, and ignored for other transfers.
|
|
345
|
+
*/
|
|
346
|
+
symlink?: string | null;
|
|
347
|
+
/**
|
|
348
|
+
* Specifies how each object's temporary hold status should be preserved for transfers between Google Cloud Storage buckets. If unspecified, the default behavior is the same as TEMPORARY_HOLD_PRESERVE.
|
|
349
|
+
*/
|
|
350
|
+
temporaryHold?: string | null;
|
|
351
|
+
/**
|
|
352
|
+
* Specifies how each object's `timeCreated` metadata is preserved for transfers between Google Cloud Storage buckets. If unspecified, the default behavior is the same as TIME_CREATED_SKIP.
|
|
353
|
+
*/
|
|
354
|
+
timeCreated?: string | null;
|
|
355
|
+
/**
|
|
356
|
+
* Specifies how each file's POSIX user ID (UID) attribute should be handled by the transfer. By default, UID is not preserved. Only applicable to transfers involving POSIX file systems, and ignored for other transfers.
|
|
357
|
+
*/
|
|
358
|
+
uid?: string | null;
|
|
359
|
+
}
|
|
319
360
|
/**
|
|
320
361
|
* Specification to configure notifications published to Pub/Sub. Notifications are published to the customer-provided topic using the following `PubsubMessage.attributes`: * `"eventType"`: one of the EventType values * `"payloadFormat"`: one of the PayloadFormat values * `"projectId"`: the project_id of the `TransferOperation` * `"transferJobName"`: the transfer_job_name of the `TransferOperation` * `"transferOperationName"`: the name of the `TransferOperation` The `PubsubMessage.data` contains a TransferOperation resource formatted according to the specified `PayloadFormat`.
|
|
321
362
|
*/
|
|
@@ -354,11 +395,11 @@ export declare namespace storagetransfer_v1 {
|
|
|
354
395
|
*/
|
|
355
396
|
lastModifiedSince?: string | null;
|
|
356
397
|
/**
|
|
357
|
-
*
|
|
398
|
+
* Ensures that objects are not transferred if a specific maximum time has elapsed since the "last modification time". When a TransferOperation begins, objects with a "last modification time" are transferred only if the elapsed time between the start_time of the `TransferOperation`and the "last modification time" of the object is less than the value of max_time_elapsed_since_last_modification`. Objects that do not have a "last modification time" are also transferred.
|
|
358
399
|
*/
|
|
359
400
|
maxTimeElapsedSinceLastModification?: string | null;
|
|
360
401
|
/**
|
|
361
|
-
*
|
|
402
|
+
* Ensures that objects are not transferred until a specific minimum time has elapsed after the "last modification time". When a TransferOperation begins, objects with a "last modification time" are transferred only if the elapsed time between the start_time of the `TransferOperation` and the "last modification time" of the object is equal to or greater than the value of min_time_elapsed_since_last_modification`. Objects that do not have a "last modification time" are also transferred.
|
|
362
403
|
*/
|
|
363
404
|
minTimeElapsedSinceLastModification?: string | null;
|
|
364
405
|
}
|
|
@@ -415,7 +456,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
415
456
|
*/
|
|
416
457
|
export interface Schema$RunTransferJobRequest {
|
|
417
458
|
/**
|
|
418
|
-
* Required. The ID of the Google Cloud
|
|
459
|
+
* Required. The ID of the Google Cloud project that owns the transfer job.
|
|
419
460
|
*/
|
|
420
461
|
projectId?: string | null;
|
|
421
462
|
}
|
|
@@ -610,7 +651,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
610
651
|
*/
|
|
611
652
|
notificationConfig?: Schema$NotificationConfig;
|
|
612
653
|
/**
|
|
613
|
-
* The ID of the Google Cloud
|
|
654
|
+
* The ID of the Google Cloud project that owns the job.
|
|
614
655
|
*/
|
|
615
656
|
projectId?: string | null;
|
|
616
657
|
/**
|
|
@@ -631,7 +672,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
631
672
|
*/
|
|
632
673
|
export interface Schema$TransferManifest {
|
|
633
674
|
/**
|
|
634
|
-
*
|
|
675
|
+
* Specifies the path to the manifest in Cloud Storage. The Google-managed service account for the transfer must have `storage.objects.get` permission for this object. An example path is `gs://bucket_name/path/manifest.csv`.
|
|
635
676
|
*/
|
|
636
677
|
location?: string | null;
|
|
637
678
|
}
|
|
@@ -660,7 +701,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
660
701
|
*/
|
|
661
702
|
notificationConfig?: Schema$NotificationConfig;
|
|
662
703
|
/**
|
|
663
|
-
* The ID of the Google Cloud
|
|
704
|
+
* The ID of the Google Cloud project that owns the operation.
|
|
664
705
|
*/
|
|
665
706
|
projectId?: string | null;
|
|
666
707
|
/**
|
|
@@ -692,10 +733,18 @@ export declare namespace storagetransfer_v1 {
|
|
|
692
733
|
* Whether objects that exist only in the sink should be deleted. **Note:** This option and delete_objects_from_source_after_transfer are mutually exclusive.
|
|
693
734
|
*/
|
|
694
735
|
deleteObjectsUniqueInSink?: boolean | null;
|
|
736
|
+
/**
|
|
737
|
+
* Represents the selected metadata options for a transfer job. This feature is in Preview.
|
|
738
|
+
*/
|
|
739
|
+
metadataOptions?: Schema$MetadataOptions;
|
|
695
740
|
/**
|
|
696
741
|
* 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.
|
|
697
742
|
*/
|
|
698
743
|
overwriteObjectsAlreadyExistingInSink?: boolean | null;
|
|
744
|
+
/**
|
|
745
|
+
* When to overwrite objects that already exist in the sink. If not set overwrite behavior is determined by overwrite_objects_already_existing_in_sink.
|
|
746
|
+
*/
|
|
747
|
+
overwriteWhen?: string | null;
|
|
699
748
|
}
|
|
700
749
|
/**
|
|
701
750
|
* Configuration for running a transfer.
|
|
@@ -717,6 +766,10 @@ export declare namespace storagetransfer_v1 {
|
|
|
717
766
|
* A Cloud Storage data source.
|
|
718
767
|
*/
|
|
719
768
|
gcsDataSource?: Schema$GcsData;
|
|
769
|
+
/**
|
|
770
|
+
* Cloud Storage intermediate data location.
|
|
771
|
+
*/
|
|
772
|
+
gcsIntermediateDataLocation?: Schema$GcsData;
|
|
720
773
|
/**
|
|
721
774
|
* An HTTP URL data source.
|
|
722
775
|
*/
|
|
@@ -755,15 +808,15 @@ export declare namespace storagetransfer_v1 {
|
|
|
755
808
|
*/
|
|
756
809
|
export interface Schema$UpdateTransferJobRequest {
|
|
757
810
|
/**
|
|
758
|
-
* Required. The ID of the Google Cloud
|
|
811
|
+
* Required. The ID of the Google Cloud project that owns the job.
|
|
759
812
|
*/
|
|
760
813
|
projectId?: string | null;
|
|
761
814
|
/**
|
|
762
|
-
* Required. The job to update. `transferJob` is expected to specify
|
|
815
|
+
* Required. The job to update. `transferJob` is expected to specify one or more of five fields: description, transfer_spec, notification_config, logging_config, and status. An `UpdateTransferJobRequest` that specifies other fields are rejected with the error INVALID_ARGUMENT. Updating a job status to DELETED requires `storagetransfer.jobs.delete` permissions.
|
|
763
816
|
*/
|
|
764
817
|
transferJob?: Schema$TransferJob;
|
|
765
818
|
/**
|
|
766
|
-
* The field mask of the fields in `transferJob` that are to be updated in this request. Fields in `transferJob` that can be updated are: description, transfer_spec, notification_config, and status. To update the `transfer_spec` of the job, a complete transfer specification must be provided. An incomplete specification missing any required fields is rejected with the error INVALID_ARGUMENT.
|
|
819
|
+
* The field mask of the fields in `transferJob` that are to be updated in this request. Fields in `transferJob` that can be updated are: description, transfer_spec, notification_config, logging_config, and status. To update the `transfer_spec` of the job, a complete transfer specification must be provided. An incomplete specification missing any required fields is rejected with the error INVALID_ARGUMENT.
|
|
767
820
|
*/
|
|
768
821
|
updateTransferJobFieldMask?: string | null;
|
|
769
822
|
}
|
|
@@ -771,7 +824,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
771
824
|
context: APIRequestContext;
|
|
772
825
|
constructor(context: APIRequestContext);
|
|
773
826
|
/**
|
|
774
|
-
* Returns the Google service account that is used by Storage Transfer Service to access buckets in the project where transfers run or in other projects. Each Google service account is associated with one Google Cloud
|
|
827
|
+
* Returns the Google service account that is used by Storage Transfer Service to access buckets in the project where transfers run or in other projects. Each Google service account is associated with one Google Cloud project. Users should add this service account to the Google Cloud Storage bucket ACLs to grant access to Storage Transfer Service. This service account is created and owned by Storage Transfer Service and can only be used by Storage Transfer Service.
|
|
775
828
|
* @example
|
|
776
829
|
* ```js
|
|
777
830
|
* // Before running the sample:
|
|
@@ -797,7 +850,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
797
850
|
*
|
|
798
851
|
* // Do the magic
|
|
799
852
|
* const res = await storagetransfer.googleServiceAccounts.get({
|
|
800
|
-
* // Required. The ID of the Google Cloud
|
|
853
|
+
* // Required. The ID of the Google Cloud project that the Google service account is associated with.
|
|
801
854
|
* projectId: 'placeholder-value',
|
|
802
855
|
* });
|
|
803
856
|
* console.log(res.data);
|
|
@@ -830,7 +883,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
830
883
|
}
|
|
831
884
|
export interface Params$Resource$Googleserviceaccounts$Get extends StandardParameters {
|
|
832
885
|
/**
|
|
833
|
-
* Required. The ID of the Google Cloud
|
|
886
|
+
* Required. The ID of the Google Cloud project that the Google service account is associated with.
|
|
834
887
|
*/
|
|
835
888
|
projectId?: string;
|
|
836
889
|
}
|
|
@@ -869,9 +922,9 @@ export declare namespace storagetransfer_v1 {
|
|
|
869
922
|
*
|
|
870
923
|
* // Do the magic
|
|
871
924
|
* const res = await storagetransfer.projects.agentPools.create({
|
|
872
|
-
* // Required. The
|
|
925
|
+
* // Required. The ID of the agent pool to create. The `agent_pool_id` must meet the following requirements: * Length of 128 characters or less. * Not start with the string `goog`. * Start with a lowercase ASCII character, followed by: * Zero or more: lowercase Latin alphabet characters, numerals, hyphens (`-`), periods (`.`), underscores (`_`), or tildes (`~`). * One or more numerals or lowercase ASCII characters. As expressed by the regular expression: `^(?!goog)[a-z]([a-z0-9-._~]*[a-z0-9])?$`.
|
|
873
926
|
* agentPoolId: 'placeholder-value',
|
|
874
|
-
* // Required. The ID of the Google Cloud
|
|
927
|
+
* // Required. The ID of the Google Cloud project that owns the agent pool.
|
|
875
928
|
* projectId: '[^/]+',
|
|
876
929
|
*
|
|
877
930
|
* // Request body metadata
|
|
@@ -941,7 +994,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
941
994
|
*
|
|
942
995
|
* // Do the magic
|
|
943
996
|
* const res = await storagetransfer.projects.agentPools.delete({
|
|
944
|
-
* // Required. The agent pool
|
|
997
|
+
* // Required. The name of the agent pool to delete.
|
|
945
998
|
* name: 'projects/my-project/agentPools/my-agentPool',
|
|
946
999
|
* });
|
|
947
1000
|
* console.log(res.data);
|
|
@@ -995,7 +1048,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
995
1048
|
*
|
|
996
1049
|
* // Do the magic
|
|
997
1050
|
* const res = await storagetransfer.projects.agentPools.get({
|
|
998
|
-
* // Required. The agent pool to get.
|
|
1051
|
+
* // Required. The name of the agent pool to get.
|
|
999
1052
|
* name: 'projects/my-project/agentPools/my-agentPool',
|
|
1000
1053
|
* });
|
|
1001
1054
|
* console.log(res.data);
|
|
@@ -1054,13 +1107,13 @@ export declare namespace storagetransfer_v1 {
|
|
|
1054
1107
|
*
|
|
1055
1108
|
* // Do the magic
|
|
1056
1109
|
* const res = await storagetransfer.projects.agentPools.list({
|
|
1057
|
-
* //
|
|
1110
|
+
* // An optional list of query parameters specified as JSON text in the form of: `{"agentPoolNames":["agentpool1","agentpool2",...]\}` Since `agentPoolNames` support multiple values, its values must be specified with array notation. When the filter is either empty or not provided, the list returns all agent pools for the project.
|
|
1058
1111
|
* filter: 'placeholder-value',
|
|
1059
|
-
* // The list page size. The max allowed value is 256
|
|
1112
|
+
* // The list page size. The max allowed value is `256`.
|
|
1060
1113
|
* pageSize: 'placeholder-value',
|
|
1061
1114
|
* // The list page token.
|
|
1062
1115
|
* pageToken: 'placeholder-value',
|
|
1063
|
-
* // Required. The ID of the Google Cloud
|
|
1116
|
+
* // Required. The ID of the Google Cloud project that owns the job.
|
|
1064
1117
|
* projectId: '[^/]+',
|
|
1065
1118
|
* });
|
|
1066
1119
|
* console.log(res.data);
|
|
@@ -1117,9 +1170,9 @@ export declare namespace storagetransfer_v1 {
|
|
|
1117
1170
|
*
|
|
1118
1171
|
* // Do the magic
|
|
1119
1172
|
* const res = await storagetransfer.projects.agentPools.patch({
|
|
1120
|
-
* // Required. Specifies a unique string that identifies the agent pool. Format: projects/{project_id\}/agentPools/{agent_pool_id\}
|
|
1173
|
+
* // Required. Specifies a unique string that identifies the agent pool. Format: `projects/{project_id\}/agentPools/{agent_pool_id\}`
|
|
1121
1174
|
* name: 'projects/my-project/agentPools/my-agentPool',
|
|
1122
|
-
* // The field mask of the fields in `agentPool`
|
|
1175
|
+
* // The [field mask] (https://developers.google.com/protocol-buffers/docs/reference/google.protobuf) of the fields in `agentPool` to update in this request. The following `agentPool` fields can be updated: * display_name * bandwidth_limit
|
|
1123
1176
|
* updateMask: 'placeholder-value',
|
|
1124
1177
|
*
|
|
1125
1178
|
* // Request body metadata
|
|
@@ -1165,11 +1218,11 @@ export declare namespace storagetransfer_v1 {
|
|
|
1165
1218
|
}
|
|
1166
1219
|
export interface Params$Resource$Projects$Agentpools$Create extends StandardParameters {
|
|
1167
1220
|
/**
|
|
1168
|
-
* Required. The
|
|
1221
|
+
* Required. The ID of the agent pool to create. The `agent_pool_id` must meet the following requirements: * Length of 128 characters or less. * Not start with the string `goog`. * Start with a lowercase ASCII character, followed by: * Zero or more: lowercase Latin alphabet characters, numerals, hyphens (`-`), periods (`.`), underscores (`_`), or tildes (`~`). * One or more numerals or lowercase ASCII characters. As expressed by the regular expression: `^(?!goog)[a-z]([a-z0-9-._~]*[a-z0-9])?$`.
|
|
1169
1222
|
*/
|
|
1170
1223
|
agentPoolId?: string;
|
|
1171
1224
|
/**
|
|
1172
|
-
* Required. The ID of the Google Cloud
|
|
1225
|
+
* Required. The ID of the Google Cloud project that owns the agent pool.
|
|
1173
1226
|
*/
|
|
1174
1227
|
projectId?: string;
|
|
1175
1228
|
/**
|
|
@@ -1179,23 +1232,23 @@ export declare namespace storagetransfer_v1 {
|
|
|
1179
1232
|
}
|
|
1180
1233
|
export interface Params$Resource$Projects$Agentpools$Delete extends StandardParameters {
|
|
1181
1234
|
/**
|
|
1182
|
-
* Required. The agent pool
|
|
1235
|
+
* Required. The name of the agent pool to delete.
|
|
1183
1236
|
*/
|
|
1184
1237
|
name?: string;
|
|
1185
1238
|
}
|
|
1186
1239
|
export interface Params$Resource$Projects$Agentpools$Get extends StandardParameters {
|
|
1187
1240
|
/**
|
|
1188
|
-
* Required. The agent pool to get.
|
|
1241
|
+
* Required. The name of the agent pool to get.
|
|
1189
1242
|
*/
|
|
1190
1243
|
name?: string;
|
|
1191
1244
|
}
|
|
1192
1245
|
export interface Params$Resource$Projects$Agentpools$List extends StandardParameters {
|
|
1193
1246
|
/**
|
|
1194
|
-
*
|
|
1247
|
+
* An optional list of query parameters specified as JSON text in the form of: `{"agentPoolNames":["agentpool1","agentpool2",...]\}` Since `agentPoolNames` support multiple values, its values must be specified with array notation. When the filter is either empty or not provided, the list returns all agent pools for the project.
|
|
1195
1248
|
*/
|
|
1196
1249
|
filter?: string;
|
|
1197
1250
|
/**
|
|
1198
|
-
* The list page size. The max allowed value is 256
|
|
1251
|
+
* The list page size. The max allowed value is `256`.
|
|
1199
1252
|
*/
|
|
1200
1253
|
pageSize?: number;
|
|
1201
1254
|
/**
|
|
@@ -1203,17 +1256,17 @@ export declare namespace storagetransfer_v1 {
|
|
|
1203
1256
|
*/
|
|
1204
1257
|
pageToken?: string;
|
|
1205
1258
|
/**
|
|
1206
|
-
* Required. The ID of the Google Cloud
|
|
1259
|
+
* Required. The ID of the Google Cloud project that owns the job.
|
|
1207
1260
|
*/
|
|
1208
1261
|
projectId?: string;
|
|
1209
1262
|
}
|
|
1210
1263
|
export interface Params$Resource$Projects$Agentpools$Patch extends StandardParameters {
|
|
1211
1264
|
/**
|
|
1212
|
-
* Required. Specifies a unique string that identifies the agent pool. Format: projects/{project_id\}/agentPools/{agent_pool_id\}
|
|
1265
|
+
* Required. Specifies a unique string that identifies the agent pool. Format: `projects/{project_id\}/agentPools/{agent_pool_id\}`
|
|
1213
1266
|
*/
|
|
1214
1267
|
name?: string;
|
|
1215
1268
|
/**
|
|
1216
|
-
* The field mask of the fields in `agentPool`
|
|
1269
|
+
* The [field mask] (https://developers.google.com/protocol-buffers/docs/reference/google.protobuf) of the fields in `agentPool` to update in this request. The following `agentPool` fields can be updated: * display_name * bandwidth_limit
|
|
1217
1270
|
*/
|
|
1218
1271
|
updateMask?: string;
|
|
1219
1272
|
/**
|
|
@@ -1336,7 +1389,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
1336
1389
|
* const res = await storagetransfer.transferJobs.get({
|
|
1337
1390
|
* // Required. The job to get.
|
|
1338
1391
|
* jobName: 'transferJobs/.*',
|
|
1339
|
-
* // Required. The ID of the Google Cloud
|
|
1392
|
+
* // Required. The ID of the Google Cloud project that owns the job.
|
|
1340
1393
|
* projectId: 'placeholder-value',
|
|
1341
1394
|
* });
|
|
1342
1395
|
* console.log(res.data);
|
|
@@ -1515,7 +1568,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
1515
1568
|
patch(params: Params$Resource$Transferjobs$Patch, callback: BodyResponseCallback<Schema$TransferJob>): void;
|
|
1516
1569
|
patch(callback: BodyResponseCallback<Schema$TransferJob>): void;
|
|
1517
1570
|
/**
|
|
1518
|
-
* Attempts to start a new TransferOperation for the current TransferJob. A TransferJob has a maximum of one active TransferOperation. If this method is called while a TransferOperation is active, an error
|
|
1571
|
+
* Attempts to start a new TransferOperation for the current TransferJob. A TransferJob has a maximum of one active TransferOperation. If this method is called while a TransferOperation is active, an error will be returned.
|
|
1519
1572
|
* @example
|
|
1520
1573
|
* ```js
|
|
1521
1574
|
* // Before running the sample:
|
|
@@ -1595,7 +1648,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
1595
1648
|
*/
|
|
1596
1649
|
jobName?: string;
|
|
1597
1650
|
/**
|
|
1598
|
-
* Required. The ID of the Google Cloud
|
|
1651
|
+
* Required. The ID of the Google Cloud project that owns the job.
|
|
1599
1652
|
*/
|
|
1600
1653
|
projectId?: string;
|
|
1601
1654
|
}
|
|
@@ -1785,7 +1838,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
1785
1838
|
* const res = await storagetransfer.transferOperations.list({
|
|
1786
1839
|
* // Required. A list of query parameters specified as JSON text in the form of: `{"projectId":"my_project_id", "jobNames":["jobid1","jobid2",...], "operationNames":["opid1","opid2",...], "transferStatuses":["status1","status2",...]\}` Since `jobNames`, `operationNames`, and `transferStatuses` support multiple values, they must be specified with array notation. `projectId` is required. `jobNames`, `operationNames`, and `transferStatuses` are optional. The valid values for `transferStatuses` are case-insensitive: IN_PROGRESS, PAUSED, SUCCESS, FAILED, and ABORTED.
|
|
1787
1840
|
* filter: 'placeholder-value',
|
|
1788
|
-
* //
|
|
1841
|
+
* // Required. The name of the type being listed; must be `transferOperations`.
|
|
1789
1842
|
* name: 'transferOperations',
|
|
1790
1843
|
* // The list page size. The max allowed value is 256.
|
|
1791
1844
|
* pageSize: 'placeholder-value',
|
|
@@ -1962,7 +2015,7 @@ export declare namespace storagetransfer_v1 {
|
|
|
1962
2015
|
*/
|
|
1963
2016
|
filter?: string;
|
|
1964
2017
|
/**
|
|
1965
|
-
*
|
|
2018
|
+
* Required. The name of the type being listed; must be `transferOperations`.
|
|
1966
2019
|
*/
|
|
1967
2020
|
name?: string;
|
|
1968
2021
|
/**
|
package/build/v1.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"v1.js","sourceRoot":"","sources":["../v1.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"v1.js","sourceRoot":"","sources":["../v1.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@googleapis/storagetransfer",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.7.0",
|
|
4
4
|
"description": "storagetransfer",
|
|
5
5
|
"main": "build/index.js",
|
|
6
6
|
"types": "build/index.d.ts",
|
|
@@ -35,7 +35,7 @@
|
|
|
35
35
|
"@microsoft/api-extractor": "^7.8.10",
|
|
36
36
|
"gts": "^2.0.0",
|
|
37
37
|
"null-loader": "^4.0.0",
|
|
38
|
-
"ts-loader": "^
|
|
38
|
+
"ts-loader": "^9.0.0",
|
|
39
39
|
"typescript": "~3.7.0",
|
|
40
40
|
"webpack": "^5.0.0",
|
|
41
41
|
"webpack-cli": "^4.0.0"
|
package/v1.ts
CHANGED
|
@@ -146,7 +146,7 @@ export namespace storagetransfer_v1 {
|
|
|
146
146
|
*/
|
|
147
147
|
displayName?: string | null;
|
|
148
148
|
/**
|
|
149
|
-
* Required. Specifies a unique string that identifies the agent pool. Format: projects/{project_id\}/agentPools/{agent_pool_id\}
|
|
149
|
+
* Required. Specifies a unique string that identifies the agent pool. Format: `projects/{project_id\}/agentPools/{agent_pool_id\}`
|
|
150
150
|
*/
|
|
151
151
|
name?: string | null;
|
|
152
152
|
/**
|
|
@@ -172,7 +172,7 @@ export namespace storagetransfer_v1 {
|
|
|
172
172
|
*/
|
|
173
173
|
export interface Schema$AwsS3Data {
|
|
174
174
|
/**
|
|
175
|
-
* Input only. AWS access key used to sign the API requests to the AWS S3 bucket. Permissions on the bucket must be granted to the access ID of the AWS access key.
|
|
175
|
+
* Input only. AWS access key used to sign the API requests to the AWS S3 bucket. Permissions on the bucket must be granted to the access ID of the AWS access key. For information on our data retention policy for user credentials, see [User credentials](/storage-transfer/docs/data-retention#user-credentials).
|
|
176
176
|
*/
|
|
177
177
|
awsAccessKey?: Schema$AwsAccessKey;
|
|
178
178
|
/**
|
|
@@ -214,16 +214,16 @@ export namespace storagetransfer_v1 {
|
|
|
214
214
|
*/
|
|
215
215
|
export interface Schema$AzureCredentials {
|
|
216
216
|
/**
|
|
217
|
-
* Required. Azure shared access signature (SAS).
|
|
217
|
+
* Required. Azure shared access signature (SAS). For more information about SAS, see [Grant limited access to Azure Storage resources using shared access signatures (SAS)](https://docs.microsoft.com/en-us/azure/storage/common/storage-sas-overview).
|
|
218
218
|
*/
|
|
219
219
|
sasToken?: string | null;
|
|
220
220
|
}
|
|
221
221
|
/**
|
|
222
|
-
* Specifies
|
|
222
|
+
* Specifies a bandwidth limit for an agent pool.
|
|
223
223
|
*/
|
|
224
224
|
export interface Schema$BandwidthLimit {
|
|
225
225
|
/**
|
|
226
|
-
*
|
|
226
|
+
* Bandwidth rate in megabytes per second, distributed across all the agents in the pool.
|
|
227
227
|
*/
|
|
228
228
|
limitMbps?: string | null;
|
|
229
229
|
}
|
|
@@ -232,7 +232,7 @@ export namespace storagetransfer_v1 {
|
|
|
232
232
|
*/
|
|
233
233
|
export interface Schema$CancelOperationRequest {}
|
|
234
234
|
/**
|
|
235
|
-
* Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values * A month and day
|
|
235
|
+
* Represents a whole or partial calendar date, such as a birthday. The time of day and time zone are either specified elsewhere or are insignificant. The date is relative to the Gregorian Calendar. This can represent one of the following: * A full date, with non-zero year, month, and day values. * A month and day, with a zero year (for example, an anniversary). * A year on its own, with a zero month and a zero day. * A year and month, with a zero day (for example, a credit card expiration date). Related types: * google.type.TimeOfDay * google.type.DateTime * google.protobuf.Timestamp
|
|
236
236
|
*/
|
|
237
237
|
export interface Schema$Date {
|
|
238
238
|
/**
|
|
@@ -249,7 +249,7 @@ export namespace storagetransfer_v1 {
|
|
|
249
249
|
year?: number | null;
|
|
250
250
|
}
|
|
251
251
|
/**
|
|
252
|
-
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \}
|
|
252
|
+
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); \}
|
|
253
253
|
*/
|
|
254
254
|
export interface Schema$Empty {}
|
|
255
255
|
/**
|
|
@@ -357,22 +357,63 @@ export namespace storagetransfer_v1 {
|
|
|
357
357
|
transferJobs?: Schema$TransferJob[];
|
|
358
358
|
}
|
|
359
359
|
/**
|
|
360
|
-
* Logging
|
|
360
|
+
* Specifies the logging behavior for transfer operations. For cloud-to-cloud transfers, logs are sent to Cloud Logging. See [Read transfer logs](https://cloud.google.com/storage-transfer/docs/read-transfer-logs) for details. For transfers to or from a POSIX file system, logs are stored in the Cloud Storage bucket that is the source or sink of the transfer. See [Managing Transfer for on-premises jobs] (https://cloud.google.com/storage-transfer/docs/managing-on-prem-jobs#viewing-logs) for details.
|
|
361
361
|
*/
|
|
362
362
|
export interface Schema$LoggingConfig {
|
|
363
363
|
/**
|
|
364
|
-
*
|
|
364
|
+
* For transfers with a PosixFilesystem source, this option enables the Cloud Storage transfer logs for this transfer.
|
|
365
365
|
*/
|
|
366
366
|
enableOnpremGcsTransferLogs?: boolean | null;
|
|
367
367
|
/**
|
|
368
|
-
*
|
|
368
|
+
* Specifies the actions to be logged. If empty, no logs are generated. Not supported for transfers with PosixFilesystem data sources; use enable_onprem_gcs_transfer_logs instead.
|
|
369
369
|
*/
|
|
370
370
|
logActions?: string[] | null;
|
|
371
371
|
/**
|
|
372
|
-
* States in which `log_actions` are logged. If empty, no logs are generated.
|
|
372
|
+
* States in which `log_actions` are logged. If empty, no logs are generated. Not supported for transfers with PosixFilesystem data sources; use enable_onprem_gcs_transfer_logs instead.
|
|
373
373
|
*/
|
|
374
374
|
logActionStates?: string[] | null;
|
|
375
375
|
}
|
|
376
|
+
/**
|
|
377
|
+
* Specifies the metadata options for running a transfer.
|
|
378
|
+
*/
|
|
379
|
+
export interface Schema$MetadataOptions {
|
|
380
|
+
/**
|
|
381
|
+
* Specifies how each object's ACLs should be preserved for transfers between Google Cloud Storage buckets. If unspecified, the default behavior is the same as ACL_DESTINATION_BUCKET_DEFAULT.
|
|
382
|
+
*/
|
|
383
|
+
acl?: string | null;
|
|
384
|
+
/**
|
|
385
|
+
* Specifies how each file's POSIX group ID (GID) attribute should be handled by the transfer. By default, GID is not preserved. Only applicable to transfers involving POSIX file systems, and ignored for other transfers.
|
|
386
|
+
*/
|
|
387
|
+
gid?: string | null;
|
|
388
|
+
/**
|
|
389
|
+
* Specifies how each object's Cloud KMS customer-managed encryption key (CMEK) is preserved for transfers between Google Cloud Storage buckets. If unspecified, the default behavior is the same as KMS_KEY_DESTINATION_BUCKET_DEFAULT.
|
|
390
|
+
*/
|
|
391
|
+
kmsKey?: string | null;
|
|
392
|
+
/**
|
|
393
|
+
* Specifies how each file's mode attribute should be handled by the transfer. By default, mode is not preserved. Only applicable to transfers involving POSIX file systems, and ignored for other transfers.
|
|
394
|
+
*/
|
|
395
|
+
mode?: string | null;
|
|
396
|
+
/**
|
|
397
|
+
* Specifies the storage class to set on objects being transferred to Google Cloud Storage buckets. If unspecified, the default behavior is the same as STORAGE_CLASS_DESTINATION_BUCKET_DEFAULT.
|
|
398
|
+
*/
|
|
399
|
+
storageClass?: string | null;
|
|
400
|
+
/**
|
|
401
|
+
* Specifies how symlinks should be handled by the transfer. By default, symlinks are not preserved. Only applicable to transfers involving POSIX file systems, and ignored for other transfers.
|
|
402
|
+
*/
|
|
403
|
+
symlink?: string | null;
|
|
404
|
+
/**
|
|
405
|
+
* Specifies how each object's temporary hold status should be preserved for transfers between Google Cloud Storage buckets. If unspecified, the default behavior is the same as TEMPORARY_HOLD_PRESERVE.
|
|
406
|
+
*/
|
|
407
|
+
temporaryHold?: string | null;
|
|
408
|
+
/**
|
|
409
|
+
* Specifies how each object's `timeCreated` metadata is preserved for transfers between Google Cloud Storage buckets. If unspecified, the default behavior is the same as TIME_CREATED_SKIP.
|
|
410
|
+
*/
|
|
411
|
+
timeCreated?: string | null;
|
|
412
|
+
/**
|
|
413
|
+
* Specifies how each file's POSIX user ID (UID) attribute should be handled by the transfer. By default, UID is not preserved. Only applicable to transfers involving POSIX file systems, and ignored for other transfers.
|
|
414
|
+
*/
|
|
415
|
+
uid?: string | null;
|
|
416
|
+
}
|
|
376
417
|
/**
|
|
377
418
|
* Specification to configure notifications published to Pub/Sub. Notifications are published to the customer-provided topic using the following `PubsubMessage.attributes`: * `"eventType"`: one of the EventType values * `"payloadFormat"`: one of the PayloadFormat values * `"projectId"`: the project_id of the `TransferOperation` * `"transferJobName"`: the transfer_job_name of the `TransferOperation` * `"transferOperationName"`: the name of the `TransferOperation` The `PubsubMessage.data` contains a TransferOperation resource formatted according to the specified `PayloadFormat`.
|
|
378
419
|
*/
|
|
@@ -411,11 +452,11 @@ export namespace storagetransfer_v1 {
|
|
|
411
452
|
*/
|
|
412
453
|
lastModifiedSince?: string | null;
|
|
413
454
|
/**
|
|
414
|
-
*
|
|
455
|
+
* Ensures that objects are not transferred if a specific maximum time has elapsed since the "last modification time". When a TransferOperation begins, objects with a "last modification time" are transferred only if the elapsed time between the start_time of the `TransferOperation`and the "last modification time" of the object is less than the value of max_time_elapsed_since_last_modification`. Objects that do not have a "last modification time" are also transferred.
|
|
415
456
|
*/
|
|
416
457
|
maxTimeElapsedSinceLastModification?: string | null;
|
|
417
458
|
/**
|
|
418
|
-
*
|
|
459
|
+
* Ensures that objects are not transferred until a specific minimum time has elapsed after the "last modification time". When a TransferOperation begins, objects with a "last modification time" are transferred only if the elapsed time between the start_time of the `TransferOperation` and the "last modification time" of the object is equal to or greater than the value of min_time_elapsed_since_last_modification`. Objects that do not have a "last modification time" are also transferred.
|
|
419
460
|
*/
|
|
420
461
|
minTimeElapsedSinceLastModification?: string | null;
|
|
421
462
|
}
|
|
@@ -466,7 +507,7 @@ export namespace storagetransfer_v1 {
|
|
|
466
507
|
*/
|
|
467
508
|
export interface Schema$RunTransferJobRequest {
|
|
468
509
|
/**
|
|
469
|
-
* Required. The ID of the Google Cloud
|
|
510
|
+
* Required. The ID of the Google Cloud project that owns the transfer job.
|
|
470
511
|
*/
|
|
471
512
|
projectId?: string | null;
|
|
472
513
|
}
|
|
@@ -659,7 +700,7 @@ export namespace storagetransfer_v1 {
|
|
|
659
700
|
*/
|
|
660
701
|
notificationConfig?: Schema$NotificationConfig;
|
|
661
702
|
/**
|
|
662
|
-
* The ID of the Google Cloud
|
|
703
|
+
* The ID of the Google Cloud project that owns the job.
|
|
663
704
|
*/
|
|
664
705
|
projectId?: string | null;
|
|
665
706
|
/**
|
|
@@ -680,7 +721,7 @@ export namespace storagetransfer_v1 {
|
|
|
680
721
|
*/
|
|
681
722
|
export interface Schema$TransferManifest {
|
|
682
723
|
/**
|
|
683
|
-
*
|
|
724
|
+
* Specifies the path to the manifest in Cloud Storage. The Google-managed service account for the transfer must have `storage.objects.get` permission for this object. An example path is `gs://bucket_name/path/manifest.csv`.
|
|
684
725
|
*/
|
|
685
726
|
location?: string | null;
|
|
686
727
|
}
|
|
@@ -709,7 +750,7 @@ export namespace storagetransfer_v1 {
|
|
|
709
750
|
*/
|
|
710
751
|
notificationConfig?: Schema$NotificationConfig;
|
|
711
752
|
/**
|
|
712
|
-
* The ID of the Google Cloud
|
|
753
|
+
* The ID of the Google Cloud project that owns the operation.
|
|
713
754
|
*/
|
|
714
755
|
projectId?: string | null;
|
|
715
756
|
/**
|
|
@@ -741,10 +782,18 @@ export namespace storagetransfer_v1 {
|
|
|
741
782
|
* Whether objects that exist only in the sink should be deleted. **Note:** This option and delete_objects_from_source_after_transfer are mutually exclusive.
|
|
742
783
|
*/
|
|
743
784
|
deleteObjectsUniqueInSink?: boolean | null;
|
|
785
|
+
/**
|
|
786
|
+
* Represents the selected metadata options for a transfer job. This feature is in Preview.
|
|
787
|
+
*/
|
|
788
|
+
metadataOptions?: Schema$MetadataOptions;
|
|
744
789
|
/**
|
|
745
790
|
* 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.
|
|
746
791
|
*/
|
|
747
792
|
overwriteObjectsAlreadyExistingInSink?: boolean | null;
|
|
793
|
+
/**
|
|
794
|
+
* When to overwrite objects that already exist in the sink. If not set overwrite behavior is determined by overwrite_objects_already_existing_in_sink.
|
|
795
|
+
*/
|
|
796
|
+
overwriteWhen?: string | null;
|
|
748
797
|
}
|
|
749
798
|
/**
|
|
750
799
|
* Configuration for running a transfer.
|
|
@@ -766,6 +815,10 @@ export namespace storagetransfer_v1 {
|
|
|
766
815
|
* A Cloud Storage data source.
|
|
767
816
|
*/
|
|
768
817
|
gcsDataSource?: Schema$GcsData;
|
|
818
|
+
/**
|
|
819
|
+
* Cloud Storage intermediate data location.
|
|
820
|
+
*/
|
|
821
|
+
gcsIntermediateDataLocation?: Schema$GcsData;
|
|
769
822
|
/**
|
|
770
823
|
* An HTTP URL data source.
|
|
771
824
|
*/
|
|
@@ -804,15 +857,15 @@ export namespace storagetransfer_v1 {
|
|
|
804
857
|
*/
|
|
805
858
|
export interface Schema$UpdateTransferJobRequest {
|
|
806
859
|
/**
|
|
807
|
-
* Required. The ID of the Google Cloud
|
|
860
|
+
* Required. The ID of the Google Cloud project that owns the job.
|
|
808
861
|
*/
|
|
809
862
|
projectId?: string | null;
|
|
810
863
|
/**
|
|
811
|
-
* Required. The job to update. `transferJob` is expected to specify
|
|
864
|
+
* Required. The job to update. `transferJob` is expected to specify one or more of five fields: description, transfer_spec, notification_config, logging_config, and status. An `UpdateTransferJobRequest` that specifies other fields are rejected with the error INVALID_ARGUMENT. Updating a job status to DELETED requires `storagetransfer.jobs.delete` permissions.
|
|
812
865
|
*/
|
|
813
866
|
transferJob?: Schema$TransferJob;
|
|
814
867
|
/**
|
|
815
|
-
* The field mask of the fields in `transferJob` that are to be updated in this request. Fields in `transferJob` that can be updated are: description, transfer_spec, notification_config, and status. To update the `transfer_spec` of the job, a complete transfer specification must be provided. An incomplete specification missing any required fields is rejected with the error INVALID_ARGUMENT.
|
|
868
|
+
* The field mask of the fields in `transferJob` that are to be updated in this request. Fields in `transferJob` that can be updated are: description, transfer_spec, notification_config, logging_config, and status. To update the `transfer_spec` of the job, a complete transfer specification must be provided. An incomplete specification missing any required fields is rejected with the error INVALID_ARGUMENT.
|
|
816
869
|
*/
|
|
817
870
|
updateTransferJobFieldMask?: string | null;
|
|
818
871
|
}
|
|
@@ -824,7 +877,7 @@ export namespace storagetransfer_v1 {
|
|
|
824
877
|
}
|
|
825
878
|
|
|
826
879
|
/**
|
|
827
|
-
* Returns the Google service account that is used by Storage Transfer Service to access buckets in the project where transfers run or in other projects. Each Google service account is associated with one Google Cloud
|
|
880
|
+
* Returns the Google service account that is used by Storage Transfer Service to access buckets in the project where transfers run or in other projects. Each Google service account is associated with one Google Cloud project. Users should add this service account to the Google Cloud Storage bucket ACLs to grant access to Storage Transfer Service. This service account is created and owned by Storage Transfer Service and can only be used by Storage Transfer Service.
|
|
828
881
|
* @example
|
|
829
882
|
* ```js
|
|
830
883
|
* // Before running the sample:
|
|
@@ -850,7 +903,7 @@ export namespace storagetransfer_v1 {
|
|
|
850
903
|
*
|
|
851
904
|
* // Do the magic
|
|
852
905
|
* const res = await storagetransfer.googleServiceAccounts.get({
|
|
853
|
-
* // Required. The ID of the Google Cloud
|
|
906
|
+
* // Required. The ID of the Google Cloud project that the Google service account is associated with.
|
|
854
907
|
* projectId: 'placeholder-value',
|
|
855
908
|
* });
|
|
856
909
|
* console.log(res.data);
|
|
@@ -963,7 +1016,7 @@ export namespace storagetransfer_v1 {
|
|
|
963
1016
|
export interface Params$Resource$Googleserviceaccounts$Get
|
|
964
1017
|
extends StandardParameters {
|
|
965
1018
|
/**
|
|
966
|
-
* Required. The ID of the Google Cloud
|
|
1019
|
+
* Required. The ID of the Google Cloud project that the Google service account is associated with.
|
|
967
1020
|
*/
|
|
968
1021
|
projectId?: string;
|
|
969
1022
|
}
|
|
@@ -1010,9 +1063,9 @@ export namespace storagetransfer_v1 {
|
|
|
1010
1063
|
*
|
|
1011
1064
|
* // Do the magic
|
|
1012
1065
|
* const res = await storagetransfer.projects.agentPools.create({
|
|
1013
|
-
* // Required. The
|
|
1066
|
+
* // Required. The ID of the agent pool to create. The `agent_pool_id` must meet the following requirements: * Length of 128 characters or less. * Not start with the string `goog`. * Start with a lowercase ASCII character, followed by: * Zero or more: lowercase Latin alphabet characters, numerals, hyphens (`-`), periods (`.`), underscores (`_`), or tildes (`~`). * One or more numerals or lowercase ASCII characters. As expressed by the regular expression: `^(?!goog)[a-z]([a-z0-9-._~]*[a-z0-9])?$`.
|
|
1014
1067
|
* agentPoolId: 'placeholder-value',
|
|
1015
|
-
* // Required. The ID of the Google Cloud
|
|
1068
|
+
* // Required. The ID of the Google Cloud project that owns the agent pool.
|
|
1016
1069
|
* projectId: '[^/]+',
|
|
1017
1070
|
*
|
|
1018
1071
|
* // Request body metadata
|
|
@@ -1156,7 +1209,7 @@ export namespace storagetransfer_v1 {
|
|
|
1156
1209
|
*
|
|
1157
1210
|
* // Do the magic
|
|
1158
1211
|
* const res = await storagetransfer.projects.agentPools.delete({
|
|
1159
|
-
* // Required. The agent pool
|
|
1212
|
+
* // Required. The name of the agent pool to delete.
|
|
1160
1213
|
* name: 'projects/my-project/agentPools/my-agentPool',
|
|
1161
1214
|
* });
|
|
1162
1215
|
* console.log(res.data);
|
|
@@ -1281,7 +1334,7 @@ export namespace storagetransfer_v1 {
|
|
|
1281
1334
|
*
|
|
1282
1335
|
* // Do the magic
|
|
1283
1336
|
* const res = await storagetransfer.projects.agentPools.get({
|
|
1284
|
-
* // Required. The agent pool to get.
|
|
1337
|
+
* // Required. The name of the agent pool to get.
|
|
1285
1338
|
* name: 'projects/my-project/agentPools/my-agentPool',
|
|
1286
1339
|
* });
|
|
1287
1340
|
* console.log(res.data);
|
|
@@ -1411,13 +1464,13 @@ export namespace storagetransfer_v1 {
|
|
|
1411
1464
|
*
|
|
1412
1465
|
* // Do the magic
|
|
1413
1466
|
* const res = await storagetransfer.projects.agentPools.list({
|
|
1414
|
-
* //
|
|
1467
|
+
* // An optional list of query parameters specified as JSON text in the form of: `{"agentPoolNames":["agentpool1","agentpool2",...]\}` Since `agentPoolNames` support multiple values, its values must be specified with array notation. When the filter is either empty or not provided, the list returns all agent pools for the project.
|
|
1415
1468
|
* filter: 'placeholder-value',
|
|
1416
|
-
* // The list page size. The max allowed value is 256
|
|
1469
|
+
* // The list page size. The max allowed value is `256`.
|
|
1417
1470
|
* pageSize: 'placeholder-value',
|
|
1418
1471
|
* // The list page token.
|
|
1419
1472
|
* pageToken: 'placeholder-value',
|
|
1420
|
-
* // Required. The ID of the Google Cloud
|
|
1473
|
+
* // Required. The ID of the Google Cloud project that owns the job.
|
|
1421
1474
|
* projectId: '[^/]+',
|
|
1422
1475
|
* });
|
|
1423
1476
|
* console.log(res.data);
|
|
@@ -1553,9 +1606,9 @@ export namespace storagetransfer_v1 {
|
|
|
1553
1606
|
*
|
|
1554
1607
|
* // Do the magic
|
|
1555
1608
|
* const res = await storagetransfer.projects.agentPools.patch({
|
|
1556
|
-
* // Required. Specifies a unique string that identifies the agent pool. Format: projects/{project_id\}/agentPools/{agent_pool_id\}
|
|
1609
|
+
* // Required. Specifies a unique string that identifies the agent pool. Format: `projects/{project_id\}/agentPools/{agent_pool_id\}`
|
|
1557
1610
|
* name: 'projects/my-project/agentPools/my-agentPool',
|
|
1558
|
-
* // The field mask of the fields in `agentPool`
|
|
1611
|
+
* // The [field mask] (https://developers.google.com/protocol-buffers/docs/reference/google.protobuf) of the fields in `agentPool` to update in this request. The following `agentPool` fields can be updated: * display_name * bandwidth_limit
|
|
1559
1612
|
* updateMask: 'placeholder-value',
|
|
1560
1613
|
*
|
|
1561
1614
|
* // Request body metadata
|
|
@@ -1673,11 +1726,11 @@ export namespace storagetransfer_v1 {
|
|
|
1673
1726
|
export interface Params$Resource$Projects$Agentpools$Create
|
|
1674
1727
|
extends StandardParameters {
|
|
1675
1728
|
/**
|
|
1676
|
-
* Required. The
|
|
1729
|
+
* Required. The ID of the agent pool to create. The `agent_pool_id` must meet the following requirements: * Length of 128 characters or less. * Not start with the string `goog`. * Start with a lowercase ASCII character, followed by: * Zero or more: lowercase Latin alphabet characters, numerals, hyphens (`-`), periods (`.`), underscores (`_`), or tildes (`~`). * One or more numerals or lowercase ASCII characters. As expressed by the regular expression: `^(?!goog)[a-z]([a-z0-9-._~]*[a-z0-9])?$`.
|
|
1677
1730
|
*/
|
|
1678
1731
|
agentPoolId?: string;
|
|
1679
1732
|
/**
|
|
1680
|
-
* Required. The ID of the Google Cloud
|
|
1733
|
+
* Required. The ID of the Google Cloud project that owns the agent pool.
|
|
1681
1734
|
*/
|
|
1682
1735
|
projectId?: string;
|
|
1683
1736
|
|
|
@@ -1689,25 +1742,25 @@ export namespace storagetransfer_v1 {
|
|
|
1689
1742
|
export interface Params$Resource$Projects$Agentpools$Delete
|
|
1690
1743
|
extends StandardParameters {
|
|
1691
1744
|
/**
|
|
1692
|
-
* Required. The agent pool
|
|
1745
|
+
* Required. The name of the agent pool to delete.
|
|
1693
1746
|
*/
|
|
1694
1747
|
name?: string;
|
|
1695
1748
|
}
|
|
1696
1749
|
export interface Params$Resource$Projects$Agentpools$Get
|
|
1697
1750
|
extends StandardParameters {
|
|
1698
1751
|
/**
|
|
1699
|
-
* Required. The agent pool to get.
|
|
1752
|
+
* Required. The name of the agent pool to get.
|
|
1700
1753
|
*/
|
|
1701
1754
|
name?: string;
|
|
1702
1755
|
}
|
|
1703
1756
|
export interface Params$Resource$Projects$Agentpools$List
|
|
1704
1757
|
extends StandardParameters {
|
|
1705
1758
|
/**
|
|
1706
|
-
*
|
|
1759
|
+
* An optional list of query parameters specified as JSON text in the form of: `{"agentPoolNames":["agentpool1","agentpool2",...]\}` Since `agentPoolNames` support multiple values, its values must be specified with array notation. When the filter is either empty or not provided, the list returns all agent pools for the project.
|
|
1707
1760
|
*/
|
|
1708
1761
|
filter?: string;
|
|
1709
1762
|
/**
|
|
1710
|
-
* The list page size. The max allowed value is 256
|
|
1763
|
+
* The list page size. The max allowed value is `256`.
|
|
1711
1764
|
*/
|
|
1712
1765
|
pageSize?: number;
|
|
1713
1766
|
/**
|
|
@@ -1715,18 +1768,18 @@ export namespace storagetransfer_v1 {
|
|
|
1715
1768
|
*/
|
|
1716
1769
|
pageToken?: string;
|
|
1717
1770
|
/**
|
|
1718
|
-
* Required. The ID of the Google Cloud
|
|
1771
|
+
* Required. The ID of the Google Cloud project that owns the job.
|
|
1719
1772
|
*/
|
|
1720
1773
|
projectId?: string;
|
|
1721
1774
|
}
|
|
1722
1775
|
export interface Params$Resource$Projects$Agentpools$Patch
|
|
1723
1776
|
extends StandardParameters {
|
|
1724
1777
|
/**
|
|
1725
|
-
* Required. Specifies a unique string that identifies the agent pool. Format: projects/{project_id\}/agentPools/{agent_pool_id\}
|
|
1778
|
+
* Required. Specifies a unique string that identifies the agent pool. Format: `projects/{project_id\}/agentPools/{agent_pool_id\}`
|
|
1726
1779
|
*/
|
|
1727
1780
|
name?: string;
|
|
1728
1781
|
/**
|
|
1729
|
-
* The field mask of the fields in `agentPool`
|
|
1782
|
+
* The [field mask] (https://developers.google.com/protocol-buffers/docs/reference/google.protobuf) of the fields in `agentPool` to update in this request. The following `agentPool` fields can be updated: * display_name * bandwidth_limit
|
|
1730
1783
|
*/
|
|
1731
1784
|
updateMask?: string;
|
|
1732
1785
|
|
|
@@ -1925,7 +1978,7 @@ export namespace storagetransfer_v1 {
|
|
|
1925
1978
|
* const res = await storagetransfer.transferJobs.get({
|
|
1926
1979
|
* // Required. The job to get.
|
|
1927
1980
|
* jobName: 'transferJobs/.*',
|
|
1928
|
-
* // Required. The ID of the Google Cloud
|
|
1981
|
+
* // Required. The ID of the Google Cloud project that owns the job.
|
|
1929
1982
|
* projectId: 'placeholder-value',
|
|
1930
1983
|
* });
|
|
1931
1984
|
* console.log(res.data);
|
|
@@ -2321,7 +2374,7 @@ export namespace storagetransfer_v1 {
|
|
|
2321
2374
|
}
|
|
2322
2375
|
|
|
2323
2376
|
/**
|
|
2324
|
-
* Attempts to start a new TransferOperation for the current TransferJob. A TransferJob has a maximum of one active TransferOperation. If this method is called while a TransferOperation is active, an error
|
|
2377
|
+
* Attempts to start a new TransferOperation for the current TransferJob. A TransferJob has a maximum of one active TransferOperation. If this method is called while a TransferOperation is active, an error will be returned.
|
|
2325
2378
|
* @example
|
|
2326
2379
|
* ```js
|
|
2327
2380
|
* // Before running the sample:
|
|
@@ -2472,7 +2525,7 @@ export namespace storagetransfer_v1 {
|
|
|
2472
2525
|
*/
|
|
2473
2526
|
jobName?: string;
|
|
2474
2527
|
/**
|
|
2475
|
-
* Required. The ID of the Google Cloud
|
|
2528
|
+
* Required. The ID of the Google Cloud project that owns the job.
|
|
2476
2529
|
*/
|
|
2477
2530
|
projectId?: string;
|
|
2478
2531
|
}
|
|
@@ -2812,7 +2865,7 @@ export namespace storagetransfer_v1 {
|
|
|
2812
2865
|
* const res = await storagetransfer.transferOperations.list({
|
|
2813
2866
|
* // Required. A list of query parameters specified as JSON text in the form of: `{"projectId":"my_project_id", "jobNames":["jobid1","jobid2",...], "operationNames":["opid1","opid2",...], "transferStatuses":["status1","status2",...]\}` Since `jobNames`, `operationNames`, and `transferStatuses` support multiple values, they must be specified with array notation. `projectId` is required. `jobNames`, `operationNames`, and `transferStatuses` are optional. The valid values for `transferStatuses` are case-insensitive: IN_PROGRESS, PAUSED, SUCCESS, FAILED, and ABORTED.
|
|
2814
2867
|
* filter: 'placeholder-value',
|
|
2815
|
-
* //
|
|
2868
|
+
* // Required. The name of the type being listed; must be `transferOperations`.
|
|
2816
2869
|
* name: 'transferOperations',
|
|
2817
2870
|
* // The list page size. The max allowed value is 256.
|
|
2818
2871
|
* pageSize: 'placeholder-value',
|
|
@@ -3211,7 +3264,7 @@ export namespace storagetransfer_v1 {
|
|
|
3211
3264
|
*/
|
|
3212
3265
|
filter?: string;
|
|
3213
3266
|
/**
|
|
3214
|
-
*
|
|
3267
|
+
* Required. The name of the type being listed; must be `transferOperations`.
|
|
3215
3268
|
*/
|
|
3216
3269
|
name?: string;
|
|
3217
3270
|
/**
|