Skip to content

Commit

Permalink
fix: add missing FieldSelector inside BucketField and BlobField (#484)
Browse files Browse the repository at this point in the history
  • Loading branch information
athakor committed Aug 28, 2020
1 parent a2f361f commit c2aa9cf
Showing 1 changed file with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@ enum BucketField implements FieldSelector {
BILLING("billing"),
DEFAULT_EVENT_BASED_HOLD("defaultEventBasedHold"),
RETENTION_POLICY("retentionPolicy"),
IAMCONFIGURATION("iamConfiguration");
IAMCONFIGURATION("iamConfiguration"),
LOGGING("logging"),
UPDATED("updated");

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

Expand Down Expand Up @@ -151,7 +153,8 @@ enum BlobField implements FieldSelector {
EVENT_BASED_HOLD("eventBasedHold"),
TEMPORARY_HOLD("temporaryHold"),
RETENTION_EXPIRATION_TIME("retentionExpirationTime"),
UPDATED("updated");
UPDATED("updated"),
CUSTOM_TIME("customTime");

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

Expand Down

0 comments on commit c2aa9cf

Please sign in to comment.