clusterUuid = $clusterUuid; } /** * @return string */ public function getClusterUuid() { return $this->clusterUuid; } /** * Required. The encrypted credentials being injected in to the cluster.The * client is responsible for encrypting the credentials in a way that is * supported by the cluster.A wrapped value is used here so that the actual * contents of the encrypted credentials are not written to audit logs. * * @param string $credentialsCiphertext */ public function setCredentialsCiphertext($credentialsCiphertext) { $this->credentialsCiphertext = $credentialsCiphertext; } /** * @return string */ public function getCredentialsCiphertext() { return $this->credentialsCiphertext; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(InjectCredentialsRequest::class, 'Google_Service_Dataproc_InjectCredentialsRequest');