connection = $connection;
}
/**
* @return string
*/
public function getConnection()
{
return $this->connection;
}
/**
* @param string
*/
public function setEndpoint($endpoint)
{
$this->endpoint = $endpoint;
}
/**
* @return string
*/
public function getEndpoint()
{
return $this->endpoint;
}
/**
* @param string
*/
public function setMaxBatchingRows($maxBatchingRows)
{
$this->maxBatchingRows = $maxBatchingRows;
}
/**
* @return string
*/
public function getMaxBatchingRows()
{
return $this->maxBatchingRows;
}
/**
* @param string
*/
public function setRemoteModelVersion($remoteModelVersion)
{
$this->remoteModelVersion = $remoteModelVersion;
}
/**
* @return string
*/
public function getRemoteModelVersion()
{
return $this->remoteModelVersion;
}
/**
* @param string
*/
public function setRemoteServiceType($remoteServiceType)
{
$this->remoteServiceType = $remoteServiceType;
}
/**
* @return string
*/
public function getRemoteServiceType()
{
return $this->remoteServiceType;
}
}
// Adding a class alias for backwards compatibility with the previous class name.
class_alias(RemoteModelInfo::class, 'Google_Service_Bigquery_RemoteModelInfo');