-
Notifications
You must be signed in to change notification settings - Fork 80
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
feat: add support of customTimeBefore and daysSinceCustomTime #396
Conversation
Codecov Report
@@ Coverage Diff @@
## master #396 +/- ##
============================================
+ Coverage 64.49% 64.52% +0.02%
+ Complexity 623 614 -9
============================================
Files 32 32
Lines 5199 5220 +21
Branches 501 505 +4
============================================
+ Hits 3353 3368 +15
- Misses 1687 1693 +6
Partials 159 159
Continue to review full report at Codecov.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @athakor,
Update: The Cloud Storage team has updated type of noncurrent_time_before and custom_time to be a Date format (YYYY-mm-dd) instead of DateTime.
Discovery document with updated documentation with respect to these fields:
https://www.googleapis.com/discovery/v1/apis/storage/v1/rest
This has been updated in the latest release dependency in PR (#457). Please update relevant documentation.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi @athakor,
Update: The Cloud Storage team has updated type of noncurrent_time_before and custom_time to be a Date format (YYYY-mm-dd) instead of DateTime.
Discovery document with updated documentation with respect to these fields:
https://www.googleapis.com/discovery/v1/apis/storage/v1/rest
This has been updated in the latest release dependency in PR (#457). Please update relevant documentation.
@frankyn That change has been already done also updated the relevant java doc. |
@jkwlui @JesseLovelace PTAL |
@@ -532,13 +549,25 @@ public Boolean getIsLive() { | |||
return matchesStorageClass; | |||
} | |||
|
|||
/* Returns the date in RFC 3339 format with only the date part (for instance, "2013-01-15")*/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
End this with a period, i.e. "(for instance, "2013-01-15"). */"
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
done
Towards #395