createTime = $createTime; } /** * @return string */ public function getCreateTime() { return $this->createTime; } /** * Optional. Description of the quota rule * * @param string $description */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * Required. The maximum allowed disk space in MiB. * * @param int $diskLimitMib */ public function setDiskLimitMib($diskLimitMib) { $this->diskLimitMib = $diskLimitMib; } /** * @return int */ public function getDiskLimitMib() { return $this->diskLimitMib; } /** * Optional. Labels of the quota rule * * @param string[] $labels */ public function setLabels($labels) { $this->labels = $labels; } /** * @return string[] */ public function getLabels() { return $this->labels; } /** * Identifier. The resource name of the quota rule. Format: `projects/{project * _number}/locations/{location_id}/volumes/volumes/{volume_id}/quotaRules/{qu * ota_rule_id}`. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Output only. State of the quota rule * * Accepted values: STATE_UNSPECIFIED, CREATING, UPDATING, DELETING, READY, * ERROR * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } /** * Output only. State details of the quota rule * * @param string $stateDetails */ public function setStateDetails($stateDetails) { $this->stateDetails = $stateDetails; } /** * @return string */ public function getStateDetails() { return $this->stateDetails; } /** * Optional. The quota rule applies to the specified user or group, identified * by a Unix UID/GID, Windows SID, or null for default. * * @param string $target */ public function setTarget($target) { $this->target = $target; } /** * @return string */ public function getTarget() { return $this->target; } /** * Required. The type of quota rule. * * Accepted values: TYPE_UNSPECIFIED, INDIVIDUAL_USER_QUOTA, * INDIVIDUAL_GROUP_QUOTA, DEFAULT_USER_QUOTA, DEFAULT_GROUP_QUOTA * * @param self::TYPE_* $type */ public function setType($type) { $this->type = $type; } /** * @return self::TYPE_* */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(QuotaRule::class, 'Google_Service_NetAppFiles_QuotaRule');