audit = $audit; } /** * @return Audit */ public function getAudit() { return $this->audit; } /** * Optional. A description of the configuration. * * @param string $description */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * Required. Domain specific details for the configuration. * * @param ConfigurationDetail $detail */ public function setDetail(ConfigurationDetail $detail) { $this->detail = $detail; } /** * @return ConfigurationDetail */ public function getDetail() { return $this->detail; } /** * Output only. Human readable name for the configuration. * * @param string $displayName */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * Identifier. Server generated name for the configuration. format is * projects/{project}/configurations/{configuration} * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Required. Name of the service that provides the configuration. * * @param string $provider */ public function setProvider($provider) { $this->provider = $provider; } /** * @return string */ public function getProvider() { return $this->provider; } /** * Optional. State of the configuration. * * Accepted values: STATE_UNSPECIFIED, ENABLED, DISABLED, DEPRECATED * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } /** * Optional. A user-manipulatable version. Does not adhere to a specific * format * * @param string $version */ public function setVersion($version) { $this->version = $version; } /** * @return string */ public function getVersion() { return $this->version; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(Configuration::class, 'Google_Service_ThreatIntelligenceService_Configuration');