createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * Output only. Current status of the CMEK encryption * * @param EncryptionConfig $encryptionConfig */ public function setEncryptionConfig(EncryptionConfig $encryptionConfig) { $this->encryptionConfig = $encryptionConfig; } /** * @return EncryptionConfig */ public function getEncryptionConfig() { return $this->encryptionConfig; } /** * Output only. The time when the backup will be deleted. * * @param string $expireTime */ public function setExpireTime($expireTime) { $this->expireTime = $expireTime; } /** * @return string */ public function getExpireTime() { return $this->expireTime; } /** * Immutable. The relative resource name of the backup, in the following form: * `projects/{project_number}/locations/{location_id}/instances/{instance_id}/ * backups/{backup}` * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Output only. The current state of the backup. * * Accepted values: STATE_UNSPECIFIED, CREATING, DELETING, ACTIVE, FAILED * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(InstanceBackup::class, 'Google_Service_Looker_InstanceBackup');