You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: clients/google-api-services-redis/v1beta1/2.0.0/com/google/api/services/redis/v1beta1/model/RetentionSettings.java
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -56,6 +56,13 @@ public final class RetentionSettings extends com.google.api.client.json.GenericJ
56
56
@com.google.api.client.util.Key
57
57
privateStringtimeBasedRetention;
58
58
59
+
/**
60
+
* Timestamp based retention period i.e. 2024-05-01T00:00:00Z
61
+
* The value may be {@code null}.
62
+
*/
63
+
@com.google.api.client.util.Key
64
+
privateStringtimestampBasedRetentionTime;
65
+
59
66
/**
60
67
* Duration based retention period i.e. 172800 seconds (2 days)
61
68
* @return value or {@code null} for none
@@ -120,6 +127,23 @@ public RetentionSettings setTimeBasedRetention(String timeBasedRetention) {
120
127
returnthis;
121
128
}
122
129
130
+
/**
131
+
* Timestamp based retention period i.e. 2024-05-01T00:00:00Z
132
+
* @return value or {@code null} for none
133
+
*/
134
+
publicStringgetTimestampBasedRetentionTime() {
135
+
returntimestampBasedRetentionTime;
136
+
}
137
+
138
+
/**
139
+
* Timestamp based retention period i.e. 2024-05-01T00:00:00Z
140
+
* @param timestampBasedRetentionTime timestampBasedRetentionTime or {@code null} for none
0 commit comments