dataSchema = $dataSchema; } /** * @return string */ public function getDataSchema() { return $this->dataSchema; } /** * Required. Google Cloud Storage URIs to input files. URI can be up to 2000 * characters long. URIs can match the full object path (for example, * `gs://bucket/directory/object.json`) or a pattern matching one or more * files, such as `gs://bucket/directory.json`. A request can contain at most * 100 files, and each file can be up to 2 GB. See [Importing product * information](https://cloud.google.com/retail/recommendations- * ai/docs/upload-catalog) for the expected file format and setup * instructions. * * @param string[] $inputUris */ public function setInputUris($inputUris) { $this->inputUris = $inputUris; } /** * @return string[] */ public function getInputUris() { return $this->inputUris; } } // Adding a class alias for backwards compatibility with the previous class name. class_alias(GoogleCloudRetailV2GcsSource::class, 'Google_Service_CloudRetail_GoogleCloudRetailV2GcsSource');