You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-storagetransfer/v1/2.0.0/com/google/api/services/storagetransfer/v1/model/HttpData.java
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -48,15 +48,17 @@ public final class HttpData extends com.google.api.client.json.GenericJson {
48
48
49
49
/**
50
50
* Required. The URL that points to the file that stores the object list entries. This file must
51
-
* allow public access. Currently, only URLs with HTTP and HTTPS schemes are supported.
51
+
* allow public access. The URL is either an HTTP/HTTPS address (e.g.
52
+
* `https://example.com/urllist.tsv`) or a Cloud Storage path (e.g. `gs://my-bucket/urllist.tsv`).
52
53
* The value may be {@code null}.
53
54
*/
54
55
@com.google.api.client.util.Key
55
56
privatejava.lang.StringlistUrl;
56
57
57
58
/**
58
59
* Required. The URL that points to the file that stores the object list entries. This file must
59
-
* allow public access. Currently, only URLs with HTTP and HTTPS schemes are supported.
60
+
* allow public access. The URL is either an HTTP/HTTPS address (e.g.
61
+
* `https://example.com/urllist.tsv`) or a Cloud Storage path (e.g. `gs://my-bucket/urllist.tsv`).
60
62
* @return value or {@code null} for none
61
63
*/
62
64
publicjava.lang.StringgetListUrl() {
@@ -65,7 +67,8 @@ public java.lang.String getListUrl() {
65
67
66
68
/**
67
69
* Required. The URL that points to the file that stores the object list entries. This file must
68
-
* allow public access. Currently, only URLs with HTTP and HTTPS schemes are supported.
70
+
* allow public access. The URL is either an HTTP/HTTPS address (e.g.
71
+
* `https://example.com/urllist.tsv`) or a Cloud Storage path (e.g. `gs://my-bucket/urllist.tsv`).
Copy file name to clipboardExpand all lines: clients/google-api-services-storagetransfer/v1/2.0.0/com/google/api/services/storagetransfer/v1/model/ObjectConditions.java
+6-2Lines changed: 6 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -21,8 +21,12 @@
21
21
* as S3, Azure, and Cloud Storage. The "last modification time" refers to the time of the last
22
22
* change to the object's content or metadata — specifically, this is the `updated` property of
23
23
* Cloud Storage objects, the `LastModified` field of S3 objects, and the `Last-Modified` header of
24
-
* Azure blobs. Transfers with a PosixFilesystem source or destination don't support
25
-
* `ObjectConditions`.
24
+
* Azure blobs. For S3 objects, the `LastModified` value is the time the object begins uploading. If
25
+
* the object meets your "last modification time" criteria, but has not finished uploading, the
26
+
* object is not transferred. See [Transfer from Amazon S3 to Cloud
Copy file name to clipboardExpand all lines: clients/google-api-services-storagetransfer/v1/2.0.0/com/google/api/services/storagetransfer/v1/model/TransferJob.java
+45Lines changed: 45 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -128,6 +128,20 @@ public final class TransferJob extends com.google.api.client.json.GenericJson {
128
128
@com.google.api.client.util.Key
129
129
privateScheduleschedule;
130
130
131
+
/**
132
+
* Optional. The service account to be used to access resources in the consumer project in the
133
+
* transfer job. We accept `email` or `uniqueId` for the service account. Service account format
134
+
* is projects/-/serviceAccounts/{ACCOUNT_EMAIL_OR_UNIQUEID} See https://cloud.google.com/iam/docs
135
+
* /reference/credentials/rest/v1/projects.serviceAccounts/generateAccessToken#path-parameters for
136
+
* details. Caller requires the following IAM permission on the specified service account:
0 commit comments