|
3348 | 3348 | } |
3349 | 3349 | } |
3350 | 3350 | }, |
3351 | | - "revision": "20250120", |
| 3351 | + "revision": "20250123", |
3352 | 3352 | "rootUrl": "https://spanner.googleapis.com/", |
3353 | 3353 | "schemas": { |
3354 | 3354 | "AddSplitPointsRequest": { |
|
3544 | 3544 | "readOnly": true, |
3545 | 3545 | "type": "string" |
3546 | 3546 | }, |
3547 | | - "instancePartitions": { |
3548 | | - "description": "Output only. The instance partition(s) storing the backup. This is the same as the list of the instance partition(s) that the database had footprint in at the backup's `version_time`.", |
3549 | | - "items": { |
3550 | | - "$ref": "BackupInstancePartition" |
3551 | | - }, |
3552 | | - "readOnly": true, |
3553 | | - "type": "array" |
3554 | | - }, |
3555 | 3547 | "maxExpireTime": { |
3556 | 3548 | "description": "Output only. The max allowed expiration time of the backup, with microseconds granularity. A backup's expiration time can be configured in multiple APIs: CreateBackup, UpdateBackup, CopyBackup. When updating or copying an existing backup, the expiration time specified must be less than `Backup.max_expire_time`.", |
3557 | 3549 | "format": "google-datetime", |
|
3638 | 3630 | }, |
3639 | 3631 | "type": "object" |
3640 | 3632 | }, |
3641 | | - "BackupInstancePartition": { |
3642 | | - "description": "Instance partition information for the backup.", |
3643 | | - "id": "BackupInstancePartition", |
3644 | | - "properties": { |
3645 | | - "instancePartition": { |
3646 | | - "description": "A unique identifier for the instance partition. Values are of the form `projects//instances//instancePartitions/`", |
3647 | | - "type": "string" |
3648 | | - } |
3649 | | - }, |
3650 | | - "type": "object" |
3651 | | - }, |
3652 | 3633 | "BackupSchedule": { |
3653 | 3634 | "description": "BackupSchedule expresses the automated backup creation specification for a Spanner database.", |
3654 | 3635 | "id": "BackupSchedule", |
3655 | 3636 | "properties": { |
3656 | 3637 | "encryptionConfig": { |
3657 | 3638 | "$ref": "CreateBackupEncryptionConfig", |
3658 | | - "description": "Optional. The encryption configuration that is used to encrypt the backup. If this field is not specified, the backup uses the same encryption configuration as the database." |
| 3639 | + "description": "Optional. The encryption configuration that will be used to encrypt the backup. If this field is not specified, the backup will use the same encryption configuration as the database." |
3659 | 3640 | }, |
3660 | 3641 | "fullBackupSpec": { |
3661 | 3642 | "$ref": "FullBackupSpec", |
|
4324 | 4305 | "type": "object" |
4325 | 4306 | }, |
4326 | 4307 | "CrontabSpec": { |
4327 | | - "description": "CrontabSpec can be used to specify the version time and frequency at which the backup is created.", |
| 4308 | + "description": "CrontabSpec can be used to specify the version time and frequency at which the backup should be created.", |
4328 | 4309 | "id": "CrontabSpec", |
4329 | 4310 | "properties": { |
4330 | 4311 | "creationWindow": { |
4331 | | - "description": "Output only. Scheduled backups contain an externally consistent copy of the database at the version time specified in `schedule_spec.cron_spec`. However, Spanner might not initiate the creation of the scheduled backups at that version time. Spanner initiates the creation of scheduled backups within the time window bounded by the version_time specified in `schedule_spec.cron_spec` and version_time + `creation_window`.", |
| 4312 | + "description": "Output only. Schedule backups will contain an externally consistent copy of the database at the version time specified in `schedule_spec.cron_spec`. However, Spanner may not initiate the creation of the scheduled backups at that version time. Spanner will initiate the creation of scheduled backups within the time window bounded by the version_time specified in `schedule_spec.cron_spec` and version_time + `creation_window`.", |
4332 | 4313 | "format": "google-duration", |
4333 | 4314 | "readOnly": true, |
4334 | 4315 | "type": "string" |
4335 | 4316 | }, |
4336 | 4317 | "text": { |
4337 | | - "description": "Required. Textual representation of the crontab. User can customize the backup frequency and the backup version time using the cron expression. The version time must be in UTC timezone. The backup will contain an externally consistent copy of the database at the version time. Full backups must be scheduled a minimum of 12 hours apart and incremental backups must be scheduled a minimum of 4 hours apart. Examples of valid cron specifications: * `0 2/12 * * *` : every 12 hours at (2, 14) hours past midnight in UTC. * `0 2,14 * * *` : every 12 hours at (2, 14) hours past midnight in UTC. * `0 */4 * * *` : (incremental backups only) every 4 hours at (0, 4, 8, 12, 16, 20) hours past midnight in UTC. * `0 2 * * *` : once a day at 2 past midnight in UTC. * `0 2 * * 0` : once a week every Sunday at 2 past midnight in UTC. * `0 2 8 * *` : once a month on 8th day at 2 past midnight in UTC.", |
| 4318 | + "description": "Required. Textual representation of the crontab. User can customize the backup frequency and the backup version time using the cron expression. The version time must be in UTC timezone. The backup will contain an externally consistent copy of the database at the version time. Full backups must be scheduled a minimum of 12 hours apart and incremental backups must be scheduled a minimum of 4 hours apart. Examples of valid cron specifications: * `0 2/12 * * *` : every 12 hours at (2, 14) hours past midnight in UTC. * `0 2,14 * * *` : every 12 hours at (2,14) hours past midnight in UTC. * `0 */4 * * *` : (incremental backups only) every 4 hours at (0, 4, 8, 12, 16, 20) hours past midnight in UTC. * `0 2 * * *` : once a day at 2 past midnight in UTC. * `0 2 * * 0` : once a week every Sunday at 2 past midnight in UTC. * `0 2 8 * *` : once a month on 8th day at 2 past midnight in UTC.", |
4338 | 4319 | "type": "string" |
4339 | 4320 | }, |
4340 | 4321 | "timeZone": { |
4341 | | - "description": "Output only. The time zone of the times in `CrontabSpec.text`. Currently, only UTC is supported.", |
| 4322 | + "description": "Output only. The time zone of the times in `CrontabSpec.text`. Currently only UTC is supported.", |
4342 | 4323 | "readOnly": true, |
4343 | 4324 | "type": "string" |
4344 | 4325 | } |
|
0 commit comments