93 lines
3.3 KiB
PHP
93 lines
3.3 KiB
PHP
<?php
|
|
/*
|
|
* Copyright 2014 Google Inc.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
|
|
* use this file except in compliance with the License. You may obtain a copy of
|
|
* the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
* License for the specific language governing permissions and limitations under
|
|
* the License.
|
|
*/
|
|
|
|
namespace Google\Service\BackupforGKE;
|
|
|
|
class RetentionPolicyDetails extends \Google\Model
|
|
{
|
|
/**
|
|
* Optional. Minimum age for Backups created via this BackupPlan (in days).
|
|
* This field MUST be an integer value between 0-90 (inclusive). A Backup
|
|
* created under this BackupPlan will NOT be deletable until it reaches
|
|
* Backup's (create_time + backup_delete_lock_days). Updating this field of a
|
|
* BackupPlan does NOT affect existing Backups under it. Backups created AFTER
|
|
* a successful update will inherit the new value. Default: 0 (no delete
|
|
* blocking)
|
|
*
|
|
* @var int
|
|
*/
|
|
public $backupDeleteLockDays;
|
|
/**
|
|
* Optional. The default maximum age of a Backup created via this BackupPlan.
|
|
* This field MUST be an integer value >= 0 and <= 365. If specified, a Backup
|
|
* created under this BackupPlan will be automatically deleted after its age
|
|
* reaches (create_time + backup_retain_days). If not specified, Backups
|
|
* created under this BackupPlan will NOT be subject to automatic deletion.
|
|
* Default: 0 (no automatic deletion)
|
|
*
|
|
* @var int
|
|
*/
|
|
public $backupRetainDays;
|
|
|
|
/**
|
|
* Optional. Minimum age for Backups created via this BackupPlan (in days).
|
|
* This field MUST be an integer value between 0-90 (inclusive). A Backup
|
|
* created under this BackupPlan will NOT be deletable until it reaches
|
|
* Backup's (create_time + backup_delete_lock_days). Updating this field of a
|
|
* BackupPlan does NOT affect existing Backups under it. Backups created AFTER
|
|
* a successful update will inherit the new value. Default: 0 (no delete
|
|
* blocking)
|
|
*
|
|
* @param int $backupDeleteLockDays
|
|
*/
|
|
public function setBackupDeleteLockDays($backupDeleteLockDays)
|
|
{
|
|
$this->backupDeleteLockDays = $backupDeleteLockDays;
|
|
}
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getBackupDeleteLockDays()
|
|
{
|
|
return $this->backupDeleteLockDays;
|
|
}
|
|
/**
|
|
* Optional. The default maximum age of a Backup created via this BackupPlan.
|
|
* This field MUST be an integer value >= 0 and <= 365. If specified, a Backup
|
|
* created under this BackupPlan will be automatically deleted after its age
|
|
* reaches (create_time + backup_retain_days). If not specified, Backups
|
|
* created under this BackupPlan will NOT be subject to automatic deletion.
|
|
* Default: 0 (no automatic deletion)
|
|
*
|
|
* @param int $backupRetainDays
|
|
*/
|
|
public function setBackupRetainDays($backupRetainDays)
|
|
{
|
|
$this->backupRetainDays = $backupRetainDays;
|
|
}
|
|
/**
|
|
* @return int
|
|
*/
|
|
public function getBackupRetainDays()
|
|
{
|
|
return $this->backupRetainDays;
|
|
}
|
|
}
|
|
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
|
class_alias(RetentionPolicyDetails::class, 'Google_Service_BackupforGKE_RetentionPolicyDetails');
|