plaintext = $plaintext; } /** * @return string */ public function getPlaintext() { return $this->plaintext; } /** * Output only. Indicates type of secret. Can be used to check type of stored * secret value even if it's `INPUT_ONLY`. * * Accepted values: SECRET_TYPE_UNSPECIFIED, PLAINTEXT * * @param self::SECRET_TYPE_* $secretType */ public function setSecretType($secretType) { $this->secretType = $secretType; } /** * @return self::SECRET_TYPE_* */ public function getSecretType() { return $this->secretType; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(ConnectorConfigurationSecret::class, 'Google_Service_BigQueryConnectionService_ConnectorConfigurationSecret');