cloudControlName = $cloudControlName; } /** * @return string */ public function getCloudControlName() { return $this->cloudControlName; } /** * Policy type of the CloudControl * * @param string $policyType */ public function setPolicyType($policyType) { $this->policyType = $policyType; } /** * @return string */ public function getPolicyType() { return $this->policyType; } /** * Type of cloud control. * * Accepted values: CLOUD_CONTROL_TYPE_UNSPECIFIED, BUILT_IN, CUSTOM * * @param self::TYPE_* $type */ public function setType($type) { $this->type = $type; } /** * @return self::TYPE_* */ public function getType() { return $this->type; } /** * Version of the Cloud Control * * @param int $version */ public function setVersion($version) { $this->version = $version; } /** * @return int */ public function getVersion() { return $this->version; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(CloudControl::class, 'Google_Service_SecurityCommandCenter_CloudControl');