cloudProvider = $cloudProvider; } /** * @return self::CLOUD_PROVIDER_* */ public function getCloudProvider() { return $this->cloudProvider; } /** * Output only. Config for the effective module. * * @param array[] $config */ public function setConfig($config) { $this->config = $config; } /** * @return array[] */ public function getConfig() { return $this->config; } /** * Output only. The description for the module. * * @param string $description */ public function setDescription($description) { $this->description = $description; } /** * @return string */ public function getDescription() { return $this->description; } /** * Output only. The human readable name to be displayed for the module. * * @param string $displayName */ public function setDisplayName($displayName) { $this->displayName = $displayName; } /** * @return string */ public function getDisplayName() { return $this->displayName; } /** * Output only. The effective state of enablement for the module at the given * level of the hierarchy. * * Accepted values: ENABLEMENT_STATE_UNSPECIFIED, ENABLED, DISABLED * * @param self::ENABLEMENT_STATE_* $enablementState */ public function setEnablementState($enablementState) { $this->enablementState = $enablementState; } /** * @return self::ENABLEMENT_STATE_* */ public function getEnablementState() { return $this->enablementState; } /** * Output only. The resource name of the effective ETD custom module. Its * format is: * `organizations/{organization}/eventThreatDetectionSettings/eff * ectiveCustomModules/{module}`. * `folders/{folder}/eventThreatDetectionSett * ings/effectiveCustomModules/{module}`. * `projects/{project}/eventThreatDet * ectionSettings/effectiveCustomModules/{module}`. * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } /** * Output only. Type for the module. e.g. CONFIGURABLE_BAD_IP. * * @param string $type */ public function setType($type) { $this->type = $type; } /** * @return string */ public function getType() { return $this->type; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(EffectiveEventThreatDetectionCustomModule::class, 'Google_Service_SecurityCommandCenter_EffectiveEventThreatDetectionCustomModule');