characterSet = $characterSet; } /** * @return string */ public function getCharacterSet() { return $this->characterSet; } /** * Output only. The character set type for the Database. * * Accepted values: CHARACTER_SET_TYPE_UNSPECIFIED, DATABASE, NATIONAL * * @param self::CHARACTER_SET_TYPE_* $characterSetType */ public function setCharacterSetType($characterSetType) { $this->characterSetType = $characterSetType; } /** * @return self::CHARACTER_SET_TYPE_* */ public function getCharacterSetType() { return $this->characterSetType; } /** * Identifier. The name of the Database Character Set resource in the * following format: projects/{project}/locations/{region}/databaseCharacterSe * ts/{database_character_set} * * @param string $name */ public function setName($name) { $this->name = $name; } /** * @return string */ public function getName() { return $this->name; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(DatabaseCharacterSet::class, 'Google_Service_OracleDatabase_DatabaseCharacterSet');