bucketName = $bucketName; } /** * @return string */ public function getBucketName() { return $this->bucketName; } /** * An optional prefix for the name of the usage report object stored * inbucketName. If not supplied, defaults tousage_gce. The report is stored * as a CSV file namedreport_name_prefix_gce_YYYYMMDD.csv whereYYYYMMDD is the * day of the usage according to Pacific Time. If you supply a prefix, it * should conform to Cloud Storageobject naming conventions. * * @param string $reportNamePrefix */ public function setReportNamePrefix($reportNamePrefix) { $this->reportNamePrefix = $reportNamePrefix; } /** * @return string */ public function getReportNamePrefix() { return $this->reportNamePrefix; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(UsageExportLocation::class, 'Google_Service_Compute_UsageExportLocation');