- 2.54.0 (latest)
- 2.53.3
- 2.52.3
- 2.50.0
- 2.49.0
- 2.48.2
- 2.47.0
- 2.46.0
- 2.45.0
- 2.44.1
- 2.43.2
- 2.42.0
- 2.41.0
- 2.40.1
- 2.39.0
- 2.38.0
- 2.37.0
- 2.36.1
- 2.34.0
- 2.33.0
- 2.32.1
- 2.30.1
- 2.29.1
- 2.28.0
- 2.27.1
- 2.24.0
- 2.23.0
- 2.22.6
- 2.21.0
- 2.20.2
- 2.19.0
- 2.18.0
- 2.17.2
- 2.16.0
- 2.15.1
- 2.14.0
- 2.13.1
- 2.12.0
- 2.11.3
- 2.10.0
- 2.9.3
- 2.8.1
- 2.7.1
- 2.6.1
- 2.5.1
- 2.4.5
- 2.3.0
- 2.2.3
- 2.1.10
public static class Storage.CopyRequest implements Serializable
A class to contain all information needed for a Google Cloud Storage Copy operation.
Implements
SerializableStatic Methods
newBuilder()
public static Storage.CopyRequest.Builder newBuilder()
Creates a builder for CopyRequest
objects.
Type | Description |
Storage.CopyRequest.Builder |
of(BlobId sourceBlobId, BlobId targetBlobId)
public static Storage.CopyRequest of(BlobId sourceBlobId, BlobId targetBlobId)
Creates a copy request. Target blob information is copied from source.
Name | Description |
sourceBlobId | BlobId a |
targetBlobId | BlobId a |
Type | Description |
Storage.CopyRequest | a copy request |
of(BlobId sourceBlobId, BlobInfo target)
public static Storage.CopyRequest of(BlobId sourceBlobId, BlobInfo target)
Creates a copy request. target
parameter is used to replace source blob information
(e.g. contentType
, contentLanguage
). Target blob information is set exactly
to target
, no information is inherited from the source blob.
Name | Description |
sourceBlobId | BlobId a |
target | BlobInfo a |
Type | Description |
Storage.CopyRequest | a copy request |
of(BlobId sourceBlobId, String targetBlob)
public static Storage.CopyRequest of(BlobId sourceBlobId, String targetBlob)
Creates a copy request. Target blob information is copied from source.
Name | Description |
sourceBlobId | BlobId a |
targetBlob | String name of the target blob, in the same bucket of the source blob |
Type | Description |
Storage.CopyRequest | a copy request |
of(String sourceBucket, String sourceBlob, BlobId target)
public static Storage.CopyRequest of(String sourceBucket, String sourceBlob, BlobId target)
Creates a copy request. Target blob information is copied from source.
Name | Description |
sourceBucket | String name of the bucket containing the source blob |
sourceBlob | String name of the source blob |
target | BlobId a |
Type | Description |
Storage.CopyRequest | a copy request |
of(String sourceBucket, String sourceBlob, BlobInfo target)
public static Storage.CopyRequest of(String sourceBucket, String sourceBlob, BlobInfo target)
Creates a copy request. target
parameter is used to override source blob information
(e.g. contentType
, contentLanguage
).
Name | Description |
sourceBucket | String name of the bucket containing the source blob |
sourceBlob | String name of the source blob |
target | BlobInfo a |
Type | Description |
Storage.CopyRequest | a copy request |
of(String sourceBucket, String sourceBlob, String targetBlob)
public static Storage.CopyRequest of(String sourceBucket, String sourceBlob, String targetBlob)
Creates a copy request. Target blob information is copied from source.
Name | Description |
sourceBucket | String name of the bucket containing both the source and the target blob |
sourceBlob | String name of the source blob |
targetBlob | String name of the target blob |
Type | Description |
Storage.CopyRequest | a copy request |
Methods
getMegabytesCopiedPerChunk()
public Long getMegabytesCopiedPerChunk()
Returns the maximum number of megabytes to copy for each RPC call. This parameter is ignored if source and target blob share the same ___location and storage class as copy is made with one single RPC.
Type | Description |
Long |
getSource()
public BlobId getSource()
Returns the blob to copy, as a BlobId.
Type | Description |
BlobId |
getSourceOptions()
public List<Storage.BlobSourceOption> getSourceOptions()
Returns blob's source options.
Type | Description |
List<BlobSourceOption> |
getTarget()
public BlobInfo getTarget()
Returns the BlobInfo for the target blob.
Type | Description |
BlobInfo |
getTargetOptions()
public List<Storage.BlobTargetOption> getTargetOptions()
Returns blob's target options.
Type | Description |
List<BlobTargetOption> |
overrideInfo()
public boolean overrideInfo()
Returns whether to override the target blob information with #getTarget(). If
true
, the value of #getTarget() is used to replace source blob information (e.g.
contentType
, contentLanguage
). Target blob information is set exactly to this
value, no information is inherited from the source blob. If false
, target blob
information is inherited from the source blob.
Type | Description |
boolean |