hostnames = $hostnames; } /** * @return string[] */ public function getHostnames() { return $this->hostnames; } /** * Optional. An optional ID to identify the request. This value is used to * identify duplicate requests. If you make a request with the same request ID * and the original request is still in progress or completed, the server * ignores the second request. This prevents clients from accidentally * creating duplicate commitments. The request ID must be a valid UUID with * the exception that zero UUID is not supported * (00000000-0000-0000-0000-000000000000). * * @param string $requestId */ public function setRequestId($requestId) { $this->requestId = $requestId; } /** * @return string */ public function getRequestId() { return $this->requestId; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(RemoveVirtualMachineExadbVmClusterRequest::class, 'Google_Service_OracleDatabase_RemoveVirtualMachineExadbVmClusterRequest');