Package com.google.cloud.storage
Class Bucket.BlobTargetOption
java.lang.Object
com.google.cloud.storage.Option<com.google.cloud.storage.UnifiedOpts.ObjectTargetOpt>
com.google.cloud.storage.Bucket.BlobTargetOption
- All Implemented Interfaces:
Serializable
- Enclosing class:
- Bucket
public static class Bucket.BlobTargetOption
extends Option<com.google.cloud.storage.UnifiedOpts.ObjectTargetOpt>
Class for specifying blob target options when
Bucket methods are used.- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic Bucket.BlobTargetOption[]dedupe(Bucket.BlobTargetOption... os) Deduplicate any options which are the same parameter.static Bucket.BlobTargetOption[]dedupe(Bucket.BlobTargetOption[] array, Bucket.BlobTargetOption... os) Deduplicate any options which are the same parameter.static Bucket.BlobTargetOption[]dedupe(Collection<Bucket.BlobTargetOption> collection, Bucket.BlobTargetOption... os) Deduplicate any options which are the same parameter.static Bucket.BlobTargetOptionReturns an option that causes an operation to succeed only if the target blob does not exist.static Bucket.BlobTargetOptionencryptionKey(@NonNull String key) Returns an option to set a customer-supplied AES256 key for server-side encryption of the blob.static Bucket.BlobTargetOptionencryptionKey(@NonNull Key key) Returns an option to set a customer-supplied AES256 key for server-side encryption of the blob.booleanDeprecated.static Bucket.BlobTargetOptiongenerationMatch(long generation) Returns an option for blob's data generation match.static Bucket.BlobTargetOptiongenerationNotMatch(long generation) Returns an option for blob's data generation mismatch.inthashCode()Deprecated.static Bucket.BlobTargetOptionkmsKeyName(@NonNull String kmsKeyName) Returns an option to set a customer-managed KMS key for server-side encryption of the blob.static Bucket.BlobTargetOptionmetagenerationMatch(long metageneration) Returns an option for blob's metageneration match.static Bucket.BlobTargetOptionmetagenerationNotMatch(long metageneration) Returns an option for blob's metageneration mismatch.static Bucket.BlobTargetOptionpredefinedAcl(@NonNull Storage.PredefinedAcl acl) Returns an option for specifying blob's predefined ACL configuration.toString()Deprecated.static Bucket.BlobTargetOptionuserProject(@NonNull String userProject) Returns an option for blob's billing user project.
-
Method Details
-
predefinedAcl
@TransportCompatibility({HTTP,GRPC}) public static Bucket.BlobTargetOption predefinedAcl(@NonNull Storage.PredefinedAcl acl) Returns an option for specifying blob's predefined ACL configuration. -
doesNotExist
Returns an option that causes an operation to succeed only if the target blob does not exist. This option can not be provided together withgenerationMatch(long)orgenerationNotMatch(long). -
generationMatch
@TransportCompatibility({HTTP,GRPC}) public static Bucket.BlobTargetOption generationMatch(long generation) Returns an option for blob's data generation match. If this option is used the request will fail if generation does not match the provided value. This option can not be provided together withgenerationNotMatch(long)ordoesNotExist(). -
generationNotMatch
@TransportCompatibility({HTTP,GRPC}) public static Bucket.BlobTargetOption generationNotMatch(long generation) Returns an option for blob's data generation mismatch. If this option is used the request will fail if blob's generation matches the provided value. This option can not be provided together withgenerationMatch(long)ordoesNotExist(). -
metagenerationMatch
@TransportCompatibility({HTTP,GRPC}) public static Bucket.BlobTargetOption metagenerationMatch(long metageneration) Returns an option for blob's metageneration match. If this option is used the request will fail if metageneration does not match the provided value. This option can not be provided together withmetagenerationNotMatch(long). -
metagenerationNotMatch
@TransportCompatibility({HTTP,GRPC}) public static Bucket.BlobTargetOption metagenerationNotMatch(long metageneration) Returns an option for blob's metageneration mismatch. If this option is used the request will fail if metageneration matches the provided value. This option can not be provided together withmetagenerationMatch(long). -
encryptionKey
@TransportCompatibility({HTTP,GRPC}) public static Bucket.BlobTargetOption encryptionKey(@NonNull Key key) Returns an option to set a customer-supplied AES256 key for server-side encryption of the blob. -
encryptionKey
@TransportCompatibility({HTTP,GRPC}) public static Bucket.BlobTargetOption encryptionKey(@NonNull String key) Returns an option to set a customer-supplied AES256 key for server-side encryption of the blob.- Parameters:
key- the AES256 encoded in base64
-
kmsKeyName
@TransportCompatibility({HTTP,GRPC}) public static Bucket.BlobTargetOption kmsKeyName(@NonNull String kmsKeyName) Returns an option to set a customer-managed KMS key for server-side encryption of the blob.- Parameters:
kmsKeyName- the KMS key resource id
-
userProject
@TransportCompatibility({HTTP,GRPC}) public static Bucket.BlobTargetOption userProject(@NonNull String userProject) Returns an option for blob's billing user project. This option is only used by the buckets with 'requester_pays' flag. -
dedupe
Deduplicate any options which are the same parameter. The value which comes last inoswill be the value included in the return. -
dedupe
@BetaApi public static Bucket.BlobTargetOption[] dedupe(Collection<Bucket.BlobTargetOption> collection, Bucket.BlobTargetOption... os) Deduplicate any options which are the same parameter.The value which comes last in
collectionandoswill be the value included in the return. All options fromoswill override their counterparts incollection. -
dedupe
@BetaApi public static Bucket.BlobTargetOption[] dedupe(Bucket.BlobTargetOption[] array, Bucket.BlobTargetOption... os) Deduplicate any options which are the same parameter.The value which comes last in
collectionandoswill be the value included in the return. All options fromoswill override their counterparts incollection. -
equals
Deprecated. -
hashCode
public int hashCode()Deprecated. -
toString
Deprecated.
-