@@ -717,7 +717,23 @@ public function insertRows(array $rows, array $options = [])
717717 *
718718 * @see https://cloud.google.com/bigquery/docs/reference/rest/v2/tables Tables resource documentation.
719719 *
720- * @param array $options [optional] Configuration options.
720+ * @param array $options [optional] {
721+ * Configuration options.
722+ *
723+ * @type string $selectedFields List of table schema fields to return
724+ * (comma-separated). If unspecified, all fields are returned.
725+ * @type string $view Specifies the view that determines which table
726+ * information is returned. Acceptable values are defined in
727+ * {@see \Google\Cloud\BigQuery\TableMetadataView}. By default,
728+ * basic table information and storage statistics (STORAGE_STATS)
729+ * are returned.
730+ *
731+ * **Note:** If metadata is already cached, $options will be ignored.
732+ * Use {@see Table::reload()} to force a refresh with specific options.
733+ *
734+ * More information:
735+ * https://docs.cloud.google.com/bigquery/docs/reference/rest/v2/tables/get#query-parameters
736+ * }
721737 * @return array
722738 */
723739 public function info (array $ options = [])
@@ -741,7 +757,20 @@ public function info(array $options = [])
741757 *
742758 * @see https://cloud.google.com/bigquery/docs/reference/rest/v2/tables/get Tables get API documentation.
743759 *
744- * @param array $options [optional] Configuration options.
760+ * @param array $options [optional] {
761+ * Configuration options.
762+ *
763+ * @type string $selectedFields List of table schema fields to return
764+ * (comma-separated). If unspecified, all fields are returned.
765+ * @type string $view Specifies the view that determines which table
766+ * information is returned. Acceptable values are defined in
767+ * {@see \Google\Cloud\BigQuery\TableMetadataView}. By default,
768+ * basic table information and storage statistics (STORAGE_STATS)
769+ * are returned.
770+ *
771+ * More information:
772+ * https://docs.cloud.google.com/bigquery/docs/reference/rest/v2/tables/get#query-parameters
773+ * }
745774 * @return array
746775 */
747776 public function reload (array $ options = [])
0 commit comments