Skip to content

Commit c2aa9cf

Browse files
authored
fix: add missing FieldSelector inside BucketField and BlobField (#484)
1 parent a2f361f commit c2aa9cf

File tree

1 file changed

+5
-2
lines changed
  • google-cloud-storage/src/main/java/com/google/cloud/storage

1 file changed

+5
-2
lines changed

google-cloud-storage/src/main/java/com/google/cloud/storage/Storage.java

+5-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,9 @@ enum BucketField implements FieldSelector {
106106
BILLING("billing"),
107107
DEFAULT_EVENT_BASED_HOLD("defaultEventBasedHold"),
108108
RETENTION_POLICY("retentionPolicy"),
109-
IAMCONFIGURATION("iamConfiguration");
109+
IAMCONFIGURATION("iamConfiguration"),
110+
LOGGING("logging"),
111+
UPDATED("updated");
110112

111113
static final List<? extends FieldSelector> REQUIRED_FIELDS = ImmutableList.of(NAME);
112114

@@ -151,7 +153,8 @@ enum BlobField implements FieldSelector {
151153
EVENT_BASED_HOLD("eventBasedHold"),
152154
TEMPORARY_HOLD("temporaryHold"),
153155
RETENTION_EXPIRATION_TIME("retentionExpirationTime"),
154-
UPDATED("updated");
156+
UPDATED("updated"),
157+
CUSTOM_TIME("customTime");
155158

156159
static final List<? extends FieldSelector> REQUIRED_FIELDS = ImmutableList.of(BUCKET, NAME);
157160

0 commit comments

Comments
 (0)