Scalr\Service\Aws\Rds\DataType\DBClusterData::refresh PHP 메소드

refresh() 공개 메소드

Refreshes description of the object using request to Amazon. NOTE! It refreshes object itself only when EntityManager is enabled. If not, solution is to use $object = object->refresh() instead.
public refresh ( ) : DBClusterData
리턴 DBClusterData Return refreshed object
    public function refresh()
    {
        $this->throwExceptionIfNotInitialized();
        return $this->getRds()->dbCluster->describe($this->dBClusterIdentifier)->get(0);
    }