/**
  * @return \DevStub\KubernetesAPIClient\Endpoint\v1beta1\Bindings
  */
 public function bindings()
 {
     if ($this->_podsEndpointObject === null) {
         $podsClass = "\\DevStub\\KubernetesAPIClient\\Endpoint\\" . $this->_config->getAPIVersion() . "\\Bindings";
         if (class_exists($podsClass)) {
             $this->_podsEndpointObject = new $podsClass($this->_config);
         } else {
             throw new ClientException("API Version :" . $this->_config->getAPIVersion() . " is not currently supported with this client");
         }
     }
     return $this->_podsEndpointObject;
 }