123 lines
3.1 KiB
PHP
123 lines
3.1 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\Storage;
|
||
|
|
|
||
|
|
class BucketAutoclass extends \Google\Model
|
||
|
|
{
|
||
|
|
/**
|
||
|
|
* Whether or not Autoclass is enabled on this bucket
|
||
|
|
*
|
||
|
|
* @var bool
|
||
|
|
*/
|
||
|
|
public $enabled;
|
||
|
|
/**
|
||
|
|
* The storage class that objects in the bucket eventually transition to if
|
||
|
|
* they are not read for a certain length of time. Valid values are NEARLINE
|
||
|
|
* and ARCHIVE.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $terminalStorageClass;
|
||
|
|
/**
|
||
|
|
* A date and time in RFC 3339 format representing the time of the most recent
|
||
|
|
* update to "terminalStorageClass".
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $terminalStorageClassUpdateTime;
|
||
|
|
/**
|
||
|
|
* A date and time in RFC 3339 format representing the instant at which
|
||
|
|
* "enabled" was last toggled.
|
||
|
|
*
|
||
|
|
* @var string
|
||
|
|
*/
|
||
|
|
public $toggleTime;
|
||
|
|
|
||
|
|
/**
|
||
|
|
* Whether or not Autoclass is enabled on this bucket
|
||
|
|
*
|
||
|
|
* @param bool $enabled
|
||
|
|
*/
|
||
|
|
public function setEnabled($enabled)
|
||
|
|
{
|
||
|
|
$this->enabled = $enabled;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return bool
|
||
|
|
*/
|
||
|
|
public function getEnabled()
|
||
|
|
{
|
||
|
|
return $this->enabled;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* The storage class that objects in the bucket eventually transition to if
|
||
|
|
* they are not read for a certain length of time. Valid values are NEARLINE
|
||
|
|
* and ARCHIVE.
|
||
|
|
*
|
||
|
|
* @param string $terminalStorageClass
|
||
|
|
*/
|
||
|
|
public function setTerminalStorageClass($terminalStorageClass)
|
||
|
|
{
|
||
|
|
$this->terminalStorageClass = $terminalStorageClass;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function getTerminalStorageClass()
|
||
|
|
{
|
||
|
|
return $this->terminalStorageClass;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* A date and time in RFC 3339 format representing the time of the most recent
|
||
|
|
* update to "terminalStorageClass".
|
||
|
|
*
|
||
|
|
* @param string $terminalStorageClassUpdateTime
|
||
|
|
*/
|
||
|
|
public function setTerminalStorageClassUpdateTime($terminalStorageClassUpdateTime)
|
||
|
|
{
|
||
|
|
$this->terminalStorageClassUpdateTime = $terminalStorageClassUpdateTime;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function getTerminalStorageClassUpdateTime()
|
||
|
|
{
|
||
|
|
return $this->terminalStorageClassUpdateTime;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* A date and time in RFC 3339 format representing the instant at which
|
||
|
|
* "enabled" was last toggled.
|
||
|
|
*
|
||
|
|
* @param string $toggleTime
|
||
|
|
*/
|
||
|
|
public function setToggleTime($toggleTime)
|
||
|
|
{
|
||
|
|
$this->toggleTime = $toggleTime;
|
||
|
|
}
|
||
|
|
/**
|
||
|
|
* @return string
|
||
|
|
*/
|
||
|
|
public function getToggleTime()
|
||
|
|
{
|
||
|
|
return $this->toggleTime;
|
||
|
|
}
|
||
|
|
}
|
||
|
|
|
||
|
|
// Adding a class alias for backwards compatibility with the previous class name.
|
||
|
|
class_alias(BucketAutoclass::class, 'Google_Service_Storage_BucketAutoclass');
|