@@ -3073,6 +3073,7 @@ export class DatabaseAdminClient {
3073
3073
* * `expire_time` (and values are of the format YYYY-MM-DDTHH:MM:SSZ)
3074
3074
* * `version_time` (and values are of the format YYYY-MM-DDTHH:MM:SSZ)
3075
3075
* * `size_bytes`
3076
+ * * `backup_schedules`
3076
3077
*
3077
3078
* You can combine multiple expressions by enclosing each expression in
3078
3079
* parentheses. By default, expressions are combined with AND logic, but
@@ -3091,6 +3092,8 @@ export class DatabaseAdminClient {
3091
3092
* * `expire_time < \"2018-03-28T14:50:00Z\"`
3092
3093
* - The backup `expire_time` is before 2018-03-28T14:50:00Z.
3093
3094
* * `size_bytes > 10000000000` - The backup's size is greater than 10GB
3095
+ * * `backup_schedules:daily`
3096
+ * - The backup is created from a schedule with "daily" in its name.
3094
3097
* @param {number } request.pageSize
3095
3098
* Number of backups to be returned in the response. If 0 or
3096
3099
* less, defaults to the server's maximum allowed page size.
@@ -3214,6 +3217,7 @@ export class DatabaseAdminClient {
3214
3217
* * `expire_time` (and values are of the format YYYY-MM-DDTHH:MM:SSZ)
3215
3218
* * `version_time` (and values are of the format YYYY-MM-DDTHH:MM:SSZ)
3216
3219
* * `size_bytes`
3220
+ * * `backup_schedules`
3217
3221
*
3218
3222
* You can combine multiple expressions by enclosing each expression in
3219
3223
* parentheses. By default, expressions are combined with AND logic, but
@@ -3232,6 +3236,8 @@ export class DatabaseAdminClient {
3232
3236
* * `expire_time < \"2018-03-28T14:50:00Z\"`
3233
3237
* - The backup `expire_time` is before 2018-03-28T14:50:00Z.
3234
3238
* * `size_bytes > 10000000000` - The backup's size is greater than 10GB
3239
+ * * `backup_schedules:daily`
3240
+ * - The backup is created from a schedule with "daily" in its name.
3235
3241
* @param {number } request.pageSize
3236
3242
* Number of backups to be returned in the response. If 0 or
3237
3243
* less, defaults to the server's maximum allowed page size.
@@ -3303,6 +3309,7 @@ export class DatabaseAdminClient {
3303
3309
* * `expire_time` (and values are of the format YYYY-MM-DDTHH:MM:SSZ)
3304
3310
* * `version_time` (and values are of the format YYYY-MM-DDTHH:MM:SSZ)
3305
3311
* * `size_bytes`
3312
+ * * `backup_schedules`
3306
3313
*
3307
3314
* You can combine multiple expressions by enclosing each expression in
3308
3315
* parentheses. By default, expressions are combined with AND logic, but
@@ -3321,6 +3328,8 @@ export class DatabaseAdminClient {
3321
3328
* * `expire_time < \"2018-03-28T14:50:00Z\"`
3322
3329
* - The backup `expire_time` is before 2018-03-28T14:50:00Z.
3323
3330
* * `size_bytes > 10000000000` - The backup's size is greater than 10GB
3331
+ * * `backup_schedules:daily`
3332
+ * - The backup is created from a schedule with "daily" in its name.
3324
3333
* @param {number } request.pageSize
3325
3334
* Number of backups to be returned in the response. If 0 or
3326
3335
* less, defaults to the server's maximum allowed page size.
0 commit comments