samplingCount = $samplingCount; } /** * @return int */ public function getSamplingCount() { return $this->samplingCount; } /** * Optional. How long to wait before sampling data from the BigQuery table. If * not specified, defaults to 0. * * @param string $samplingDuration */ public function setSamplingDuration($samplingDuration) { $this->samplingDuration = $samplingDuration; } /** * @return string */ public function getSamplingDuration() { return $this->samplingDuration; } /** * Optional. The sampling method to use. * * Accepted values: SAMPLING_METHOD_UNSPECIFIED, RANDOM * * @param self::SAMPLING_METHOD_* $samplingMethod */ public function setSamplingMethod($samplingMethod) { $this->samplingMethod = $samplingMethod; } /** * @return self::SAMPLING_METHOD_* */ public function getSamplingMethod() { return $this->samplingMethod; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudAiplatformV1BigQueryRequestSetSamplingConfig::class, 'Google_Service_Aiplatform_GoogleCloudAiplatformV1BigQueryRequestSetSamplingConfig');