message = $message; } /** * @return string */ public function getMessage() { return $this->message; } /** * Output only. Execution state for the BigQuery exporting. * * Accepted values: STATE_UNSPECIFIED, SUCCEEDED, FAILED, SKIPPED * * @param self::STATE_* $state */ public function setState($state) { $this->state = $state; } /** * @return self::STATE_* */ public function getState() { return $this->state; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudDataplexV1DataProfileResultPostScanActionsResultBigQueryExportResult::class, 'Google_Service_CloudDataplex_GoogleCloudDataplexV1DataProfileResultPostScanActionsResultBigQueryExportResult');