queryPlansPerMinute = $queryPlansPerMinute; } /** * @return string */ public function getQueryPlansPerMinute() { return $this->queryPlansPerMinute; } /** * Query string length. The default value is 1024. Any integer between 256 and * 4500 is considered valid. * * @param string $queryStringLength */ public function setQueryStringLength($queryStringLength) { $this->queryStringLength = $queryStringLength; } /** * @return string */ public function getQueryStringLength() { return $this->queryStringLength; } /** * Record application tags for an instance. This flag is turned "on" by * default. * * @param bool $recordApplicationTags */ public function setRecordApplicationTags($recordApplicationTags) { $this->recordApplicationTags = $recordApplicationTags; } /** * @return bool */ public function getRecordApplicationTags() { return $this->recordApplicationTags; } /** * Record client address for an instance. Client address is PII information. * This flag is turned "on" by default. * * @param bool $recordClientAddress */ public function setRecordClientAddress($recordClientAddress) { $this->recordClientAddress = $recordClientAddress; } /** * @return bool */ public function getRecordClientAddress() { return $this->recordClientAddress; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(QueryInsightsInstanceConfig::class, 'Google_Service_CloudAlloyDBAdmin_QueryInsightsInstanceConfig');