diff --git a/.github/CONTRIBUTING.md b/.github/CONTRIBUTING.md index 506a9d101..8af0d314c 100644 --- a/.github/CONTRIBUTING.md +++ b/.github/CONTRIBUTING.md @@ -118,3 +118,18 @@ This will mostly result in a lot of updated files in `tests/cassettes/`. Don't f Please add them in a dedicated commit, in order to make the review process easier. Afterwards, remember to [run the tests in offline mode](#run-tests-offline) to make sure you have recorded everything correctly. + +## Release + +Old release notes are [here](https://gist.github.com/burnash/335f977a74b8bfdc7968). + +New release system: + +- Update version number in [`gspread/__init__.py`](../gspread/__init__.py). +- Get changelog from drafting a new [GitHub release](https://github.com/burnash/gspread/releases/new) (do not publish, instead cancel.) +- Add changelog to [`HISTORY.rst`](../HISTORY.rst). +- Commit the changes as `Release vX.Y.Z` (do not push yet.) +- Run `tox -e lint,py,build,doc` to check build/etc. +- Push the commit. Wait for the CI to pass. +- Add a tag `vX.Y.Z` to the commit locally. This will trigger a new release on PyPi, and make a release on GitHub. +- View the release on [GitHub](https://github.com/burnash/gspread/releases) and [PyPi](https://pypi.org/project/gspread/)! diff --git a/HISTORY.rst b/HISTORY.rst index 099c00152..5fbfb1eba 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -1,6 +1,31 @@ Release History =============== +5.10.0 (2023-06-29) +------------------ + +* Fix rows_auto_resize in worksheet.py by removing redundant self by @MagicMc23 in https://github.com/burnash/gspread/pull/1194 +* Add deprecation warning for future release 6.0.x by @lavigne958 in https://github.com/burnash/gspread/pull/1195 +* FEATURE: show/hide gridlines (#1197) by @alifeee in https://github.com/burnash/gspread/pull/1202 +* CLEANUP: cleanup tox.ini, and ignore ./env by @alifeee in https://github.com/burnash/gspread/pull/1200 +* Refactor/update-contributing-guide by @alifeee in https://github.com/burnash/gspread/pull/1206 +* Spelling fix (with legacy option) by @alifeee in https://github.com/burnash/gspread/pull/1210 +* 457-fetch-without-hidden-worksheets by @alifeee in https://github.com/burnash/gspread/pull/1207 +* Add_deprecated_warning_sort_method by @lavigne958 in https://github.com/burnash/gspread/pull/1198 +* Update (and test for) internal properties on change by @alifeee in https://github.com/burnash/gspread/pull/1211 +* Feature: Add "Remove tab colour" method by @alifeee in https://github.com/burnash/gspread/pull/1199 +* Refresh-test-cassettes by @alifeee in https://github.com/burnash/gspread/pull/1217 +* update self._properties after batch_update by @alifeee in https://github.com/burnash/gspread/pull/1221 +* 700-fill-merged-cells by @alifeee in https://github.com/burnash/gspread/pull/1215 +* Fix/update-internal-properties by @alifeee in https://github.com/burnash/gspread/pull/1225 +* Add breaking change warning in Worksheet.update() by @lavigne958 in https://github.com/burnash/gspread/pull/1226 +* Bump codespell from 2.2.4 to 2.2.5 by @dependabot in https://github.com/burnash/gspread/pull/1232 +* Add/refresh last update time by @alifeee in https://github.com/burnash/gspread/pull/1233 +* Update-build-tools by @alifeee in https://github.com/burnash/gspread/pull/1231 +* add read the doc configuration file by @lavigne958 in https://github.com/burnash/gspread/pull/1235 +* update licence year by @alifeee in https://github.com/burnash/gspread/pull/1237 +* remove deprecated methods from tests by @alifeee in https://github.com/burnash/gspread/pull/1238 + 5.9.0 (2023-05-11) ------------------ diff --git a/README.md b/README.md index 9f1ddc198..f5a759cab 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,12 @@ # Google Spreadsheets Python API v4 -![latest workflow](https://github.com/burnash/gspread/actions/workflows/main.yaml/badge.svg?branch=master) -[![GitHub version](https://badge.fury.io/gh/burnash%2Fgspread.svg)](https://badge.fury.io/gh/burnash%2Fgspread) -![PyPi]( https://badge.fury.io/py/gspread.svg) -![downloads](https://img.shields.io/pypi/dm/gspread.svg) -![doc](https://readthedocs.org/projects/gspread/badge/?version=latest) +![main workflow](https://img.shields.io/github/actions/workflow/status/burnash/gspread/main.yaml?logo=github) +![github license](https://img.shields.io/pypi/l/gspread?logo=github) +![latest download](https://img.shields.io/github/downloads-pre/burnash/gspread/latest/total?logo=github) +![documentation](https://img.shields.io/readthedocs/gspread?logo=readthedocs) +![pypi download](https://img.shields.io/pypi/dm/gspread?logo=pypi) +![pypi version](https://img.shields.io/pypi/v/gspread?logo=pypi) +![python version](https://img.shields.io/pypi/pyversions/gspread?style=pypi) Simple interface for working with Google Sheets. diff --git a/gspread/client.py b/gspread/client.py index 0c53048e9..38318bf71 100644 --- a/gspread/client.py +++ b/gspread/client.py @@ -39,6 +39,13 @@ def __init__( ) -> None: self.http_client = http_client(auth) + def get_file_drive_metadata(self, id: str) -> Any: + """Get the metadata from the Drive API for a specific file + This method is mainly here to retrieve the create/update time + of a file (these metadata are only accessible from the Drive API). + """ + return self.http_client.get_file_drive_metadata(id) + def list_spreadsheet_files( self, title: Optional[str] = None, folder_id: Optional[str] = None ) -> List[Dict[str, Any]]: diff --git a/gspread/http_client.py b/gspread/http_client.py index f1e50f07a..59c437678 100644 --- a/gspread/http_client.py +++ b/gspread/http_client.py @@ -288,7 +288,7 @@ def fetch_sheet_metadata(self, id: str, params: Optional[ParamsType] = None) -> return r.json() - def _get_file_drive_metadata(self, id: str) -> Any: + def get_file_drive_metadata(self, id: str) -> Any: """Get the metadata from the Drive API for a specific file This method is mainly here to retrieve the create/update time of a file (these metadata are only accessible from the Drive API). diff --git a/gspread/spreadsheet.py b/gspread/spreadsheet.py index 70d6383e9..ded97abe6 100644 --- a/gspread/spreadsheet.py +++ b/gspread/spreadsheet.py @@ -6,6 +6,9 @@ """ +import warnings +from typing import Union + from .exceptions import WorksheetNotFound from .urls import DRIVE_FILES_API_V3_URL, SPREADSHEET_DRIVE_URL from .utils import ExportFormat, finditem @@ -22,6 +25,9 @@ def __init__(self, http_client, properties): metadata = self.fetch_sheet_metadata() self._properties.update(metadata["properties"]) + drive_metadata = self.client.get_file_drive_metadata(self._properties["id"]) + self._properties.update(drive_metadata) + @property def id(self): """Spreadsheet ID.""" @@ -40,21 +46,20 @@ def url(self): @property def creationTime(self): """Spreadsheet Creation time.""" - try: - return self._properties["createdTime"] - except KeyError: - metadata = self.client._get_file_drive_metadata(self.id) - self._properties.update(metadata) - return self._properties["createdTime"] + return self._properties["createdTime"] @property def lastUpdateTime(self): - """Spreadsheet last updated time.""" - try: - return self._properties["modifiedTime"] - except KeyError: - self.refresh_lastUpdateTime() - return self._properties["modifiedTime"] + """Spreadsheet last updated time. + Only updated on initialisation. + For actual last updated time, use get_lastUpdateTime().""" + warnings.warn( + """ + This is only updated on initialisation and is probably outdated by the time you use it. + For an up to date last updated time, use get_lastUpdateTime(). + """ + ) + return self._properties["modifiedTime"] @property def timezone(self): @@ -228,11 +233,11 @@ def get_worksheet(self, index): except (KeyError, IndexError): raise WorksheetNotFound("index {} not found".format(index)) - def get_worksheet_by_id(self, id): + def get_worksheet_by_id(self, id: Union[str, int]): """Returns a worksheet with specified `worksheet id`. :param id: The id of a worksheet. it can be seen in the url as the value of the parameter 'gid'. - :type id: int + :type id: str | int :returns: an instance of :class:`gspread.worksheet.Worksheet`. :raises: @@ -245,14 +250,19 @@ def get_worksheet_by_id(self, id): """ sheet_data = self.fetch_sheet_metadata() + try: + worksheet_id_int = int(id) + except ValueError as ex: + raise ValueError("id should be int") from ex + try: item = finditem( - lambda x: x["properties"]["sheetId"] == id, + lambda x: x["properties"]["sheetId"] == worksheet_id_int, sheet_data["sheets"], ) return Worksheet(self.id, self.client, item["properties"]) except (StopIteration, KeyError): - raise WorksheetNotFound("id {} not found".format(id)) + raise WorksheetNotFound("id {} not found".format(worksheet_id_int)) def worksheets(self, exclude_hidden: bool = False): """Returns a list of all :class:`worksheets ` @@ -389,12 +399,16 @@ def del_worksheet(self, worksheet): return self.client.batch_update(self.id, body) - def del_worksheet_by_id(self, worksheet_id: str): + def del_worksheet_by_id(self, worksheet_id: Union[str, int]): """ Deletes a Worksheet by id """ + try: + worksheet_id_int = int(worksheet_id) + except ValueError as ex: + raise ValueError("id should be int") from ex - body = {"requests": [{"deleteSheet": {"sheetId": worksheet_id}}]} + body = {"requests": [{"deleteSheet": {"sheetId": worksheet_id_int}}]} return self.client.batch_update(self.id, body) @@ -695,7 +709,16 @@ def list_protected_ranges(self, sheetid): return sheet.get("protectedRanges", []) - def refresh_lastUpdateTime(self): - """Refresh the lastUpdateTime property of the spreadsheet.""" - metadata = self.client._get_file_drive_metadata(self.id) + def refresh_lastUpdateTime(self) -> None: + """Updates the cached value of lastUpdateTime.""" + # remove this and the below upon deprecation of lastUpdateTime @property + self._properties["modifiedTime"] = self.get_lastUpdateTime() + + def get_lastUpdateTime(self) -> str: + """Get the lastUpdateTime metadata from the Drive API. + Also updates the cached value in the _properties dict. + """ + metadata = self.client.get_file_drive_metadata(self.id) + # remove next line and the above upon deprecation of lastUpdateTime @property self._properties["modifiedTime"] = metadata["modifiedTime"] + return metadata["modifiedTime"] diff --git a/gspread/utils.py b/gspread/utils.py index fb286a64d..b8f448da3 100644 --- a/gspread/utils.py +++ b/gspread/utils.py @@ -560,6 +560,29 @@ def rightpad(row: List[Any], max_len: int) -> List[Any]: def fill_gaps( L: List[List[Any]], rows: Optional[int] = None, cols: Optional[int] = None ) -> List[List[Any]]: + """Fill gaps in a list of lists. + e.g.,:: + + >>> L = [ + ... [1, 2, 3], + ... ] + >>> fill_gaps(L, 2, 4) + [ + [1, 2, 3, ""], + ["", "", "", ""] + ] + + :param L: List of lists to fill gaps in. + :param rows: Number of rows to fill. + :param cols: Number of columns to fill. + + :type L: list[list[T]] + :type rows: int + :type cols: int + + :return: List of lists with gaps filled. + :rtype: list[list[T]]: + """ try: max_cols = max(len(row) for row in L) if cols is None else cols max_rows = len(L) if rows is None else rows diff --git a/pyproject.toml b/pyproject.toml index d9373458d..2f1d5df45 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,8 @@ classifiers = [ "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", + "Programming Language :: Python :: 3.10", + "Programming Language :: Python :: 3.11", "License :: OSI Approved :: MIT License", "Operating System :: OS Independent", "Development Status :: 5 - Production/Stable", diff --git a/tests/cassettes/CellTest.test_a1_value.json b/tests/cassettes/CellTest.test_a1_value.json index 6b8a9bd3d..6d1027b5d 100644 --- a/tests/cassettes/CellTest.test_a1_value.json +++ b/tests/cassettes/CellTest.test_a1_value.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "94" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Transfer-Encoding": [ + "chunked" + ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ - "Thu, 08 Jun 2023 22:14:06 GMT" + "Thu, 20 Jul 2023 08:47:46 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Server": [ + "ESF" ], "content-length": [ "181" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw\",\n \"name\": \"Test CellTest test_a1_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\",\n \"name\": \"Test CellTest test_a1_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,9 +122,6 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -127,40 +130,43 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:06 GMT" + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "Date": [ + "Thu, 20 Jul 2023 08:47:47 GMT" + ], + "Server": [ + "ESF" ], "content-length": [ "3325" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,9 +198,86 @@ "message": "OK" }, "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], "Transfer-Encoding": [ "chunked" ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:47:47 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "191" + ] + }, + "body": { + "string": "{\n \"id\": \"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\",\n \"name\": \"Test CellTest test_a1_value\",\n \"createdTime\": \"2023-07-20T08:47:44.700Z\",\n \"modifiedTime\": \"2023-07-20T08:47:44.720Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], @@ -200,40 +286,43 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:06 GMT" + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "Date": [ + "Thu, 20 Jul 2023 08:47:47 GMT" + ], + "Server": [ + "ESF" ], "content-length": [ "3325" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw/values/%27Sheet1%27%21D4?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/values/%27Sheet1%27%21D4?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -262,9 +354,6 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -273,26 +362,29 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:06 GMT" + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "Date": [ + "Thu, 20 Jul 2023 08:47:48 GMT" + ], + "Server": [ + "ESF" ], "content-length": [ "55" @@ -306,7 +398,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"Dummy\"]]}", "headers": { "User-Agent": [ @@ -324,6 +416,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "23" ], @@ -341,9 +436,6 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -352,40 +444,43 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:07 GMT" + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "Date": [ + "Thu, 20 Jul 2023 08:47:48 GMT" + ], + "Server": [ + "ESF" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -403,6 +498,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -414,9 +512,6 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -425,26 +520,29 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:07 GMT" + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "Date": [ + "Thu, 20 Jul 2023 08:47:48 GMT" + ], + "Server": [ + "ESF" ], "content-length": [ "116" @@ -458,7 +556,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1lCVGsP0AcffIUvwl03Pjj7zawG1cdVSxH2Cqa0_6bGw?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1Sle_EDNRq8PsQGzmskqQWIGnUT4epR-d9A-9gaJsrrQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -476,6 +574,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -490,41 +591,673 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:07 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Content-Length": [ + "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:47:49 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", + "body": "{\"name\": \"Test CellTest test_a1_value\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "94" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:16 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "181" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\",\n \"name\": \"Test CellTest test_a1_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:16 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3325" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:17 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "191" + ] + }, + "body": { + "string": "{\n \"id\": \"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\",\n \"name\": \"Test CellTest test_a1_value\",\n \"createdTime\": \"2023-07-20T08:54:14.016Z\",\n \"modifiedTime\": \"2023-07-20T08:54:14.035Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:17 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3325" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\",\n \"properties\": {\n \"title\": \"Test CellTest test_a1_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/values/%27Sheet1%27%21D4?valueRenderOption=FORMATTED_VALUE", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:17 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "55" + ] + }, + "body": { + "string": "{\n \"range\": \"Sheet1!D4\",\n \"majorDimension\": \"ROWS\"\n}\n" + } + } + }, + { + "request": { + "method": "PUT", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "body": "{\"values\": [[\"Dummy\"]]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "23" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:18 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "165" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI/values/%27Sheet1%27", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:18 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "116" + ] + }, + "body": { + "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\",\n \"Dummy\"\n ]\n ]\n}\n" + } + } + }, + { + "request": { + "method": "DELETE", + "uri": "https://www.googleapis.com/drive/v3/files/1Vptx0DVg5lsmYXLHgqlPQXIRaF-C-f-HE8i308L48XI?supportsAllDrives=True", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 204, + "message": "No Content" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "text/html" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], + "Content-Length": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:18 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { diff --git a/tests/cassettes/CellTest.test_define_named_range.json b/tests/cassettes/CellTest.test_define_named_range.json index 6bbbb2aa4..a136c3301 100644 --- a/tests/cassettes/CellTest.test_define_named_range.json +++ b/tests/cassettes/CellTest.test_define_named_range.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "104" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Transfer-Encoding": [ + "chunked" + ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ - "Thu, 08 Jun 2023 22:14:10 GMT" + "Thu, 20 Jul 2023 08:47:51 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Server": [ + "ESF" ], "content-length": [ "191" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,9 +122,6 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -127,40 +130,43 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:10 GMT" + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "Date": [ + "Thu, 20 Jul 2023 08:47:51 GMT" + ], + "Server": [ + "ESF" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,9 +198,86 @@ "message": "OK" }, "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], "Transfer-Encoding": [ "chunked" ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:47:51 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "201" + ] + }, + "body": { + "string": "{\n \"id\": \"1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-07-20T08:47:49.640Z\",\n \"modifiedTime\": \"2023-07-20T08:47:50.525Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], @@ -200,40 +286,43 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:10 GMT" + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "Date": [ + "Thu, 20 Jul 2023 08:47:52 GMT" + ], + "Server": [ + "ESF" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI:batchUpdate", "body": "{\"requests\": [{\"addNamedRange\": {\"namedRange\": {\"name\": \"TestDefineNamedRange\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "190" ], @@ -268,9 +360,6 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -279,40 +368,43 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:11 GMT" + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "Date": [ + "Thu, 20 Jul 2023 08:47:52 GMT" + ], + "Server": [ + "ESF" ], "content-length": [ - "412" + "413" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"386178785\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"1027309467\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA?fields=namedRanges", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI?fields=namedRanges", "body": null, "headers": { "User-Agent": [ @@ -330,6 +422,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -341,9 +436,6 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -352,41 +444,44 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:11 GMT" + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "Date": [ + "Thu, 20 Jul 2023 08:47:52 GMT" + ], + "Server": [ + "ESF" ], "content-length": [ - "250" + "251" ] }, "body": { - "string": "{\n \"namedRanges\": [\n {\n \"namedRangeId\": \"386178785\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n ]\n}\n" + "string": "{\n \"namedRanges\": [\n {\n \"namedRangeId\": \"1027309467\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA:batchUpdate", - "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"386178785\"}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI:batchUpdate", + "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"1027309467\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -403,8 +498,11 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ - "67" + "68" ], "Content-Type": [ "application/json" @@ -420,9 +518,6 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -431,40 +526,43 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:11 GMT" + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "Date": [ + "Thu, 20 Jul 2023 08:47:52 GMT" + ], + "Server": [ + "ESF" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1h-RQLDEbT1qRkIQiq8rdJSiCqCo4VikeXm8F5w5IweA?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1WADX3MU1axnVuqJivovc7d-H4TbTdrIGoxApTWZ4iVI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -482,6 +580,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -496,41 +597,679 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:12 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Content-Length": [ + "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:47:53 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", + "body": "{\"name\": \"Test CellTest test_define_named_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:21 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "191" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:21 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3335" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:22 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "201" + ] + }, + "body": { + "string": "{\n \"id\": \"1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-07-20T08:54:19.159Z\",\n \"modifiedTime\": \"2023-07-20T08:54:19.175Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:22 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3335" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk:batchUpdate", + "body": "{\"requests\": [{\"addNamedRange\": {\"namedRange\": {\"name\": \"TestDefineNamedRange\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}}]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:22 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "413" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"1179381582\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk?fields=namedRanges", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:22 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "251" + ] + }, + "body": { + "string": "{\n \"namedRanges\": [\n {\n \"namedRangeId\": \"1179381582\",\n \"name\": \"TestDefineNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n ]\n}\n" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk:batchUpdate", + "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"1179381582\"}}]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "68" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:23 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "97" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk\",\n \"replies\": [\n {}\n ]\n}\n" + } + } + }, + { + "request": { + "method": "DELETE", + "uri": "https://www.googleapis.com/drive/v3/files/1sBAg7oDQBjCGRiV7oaoKUhOcUjW4OEjdK-bN4uMuHlk?supportsAllDrives=True", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 204, + "message": "No Content" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "text/html" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], + "Content-Length": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:23 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { diff --git a/tests/cassettes/CellTest.test_delete_named_range.json b/tests/cassettes/CellTest.test_delete_named_range.json index 7035f9905..bb7a39146 100644 --- a/tests/cassettes/CellTest.test_delete_named_range.json +++ b/tests/cassettes/CellTest.test_delete_named_range.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "104" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Transfer-Encoding": [ + "chunked" + ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ - "Thu, 08 Jun 2023 22:14:15 GMT" + "Thu, 20 Jul 2023 08:47:55 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Server": [ + "ESF" ], "content-length": [ "191" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k\",\n \"name\": \"Test CellTest test_delete_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"name\": \"Test CellTest test_delete_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,9 +122,6 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -127,40 +130,43 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:16 GMT" + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "Date": [ + "Thu, 20 Jul 2023 08:47:56 GMT" + ], + "Server": [ + "ESF" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,9 +198,86 @@ "message": "OK" }, "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], "Transfer-Encoding": [ "chunked" ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:47:56 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "201" + ] + }, + "body": { + "string": "{\n \"id\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"name\": \"Test CellTest test_delete_named_range\",\n \"createdTime\": \"2023-07-20T08:47:53.621Z\",\n \"modifiedTime\": \"2023-07-20T08:47:53.640Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], @@ -200,40 +286,43 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:16 GMT" + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "Date": [ + "Thu, 20 Jul 2023 08:47:56 GMT" + ], + "Server": [ + "ESF" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q:batchUpdate", "body": "{\"requests\": [{\"addNamedRange\": {\"namedRange\": {\"name\": \"TestDeleteNamedRange\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "190" ], @@ -268,9 +360,6 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -279,41 +368,44 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:16 GMT" + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "Date": [ + "Thu, 20 Jul 2023 08:47:56 GMT" + ], + "Server": [ + "ESF" ], "content-length": [ - "412" + "413" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"506474362\",\n \"name\": \"TestDeleteNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"1792097461\",\n \"name\": \"TestDeleteNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k:batchUpdate", - "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"506474362\"}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q:batchUpdate", + "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"1792097461\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -330,8 +422,11 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ - "67" + "68" ], "Content-Type": [ "application/json" @@ -347,9 +442,6 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -358,40 +450,43 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:16 GMT" + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "Date": [ + "Thu, 20 Jul 2023 08:47:57 GMT" + ], + "Server": [ + "ESF" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k?fields=namedRanges", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?fields=namedRanges", "body": null, "headers": { "User-Agent": [ @@ -409,6 +504,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -420,9 +518,6 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -431,26 +526,29 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:17 GMT" + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "Date": [ + "Thu, 20 Jul 2023 08:47:57 GMT" + ], + "Server": [ + "ESF" ], "content-length": [ "3" @@ -464,7 +562,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1Lqn9AqpgHImPiEP16VWDuUCk5_bh7HL_HhHCgxOMn6k?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/13QxVEIWjvrnLMkouaVOlHXMwxRfUE4COIYvatF0pO7Q?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -482,6 +580,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -496,41 +597,679 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:17 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Content-Length": [ + "0" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:47:57 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", + "body": "{\"name\": \"Test CellTest test_delete_named_range\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "104" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:25 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "191" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"name\": \"Test CellTest test_delete_named_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:26 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3335" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:26 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "201" + ] + }, + "body": { + "string": "{\n \"id\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"name\": \"Test CellTest test_delete_named_range\",\n \"createdTime\": \"2023-07-20T08:54:23.944Z\",\n \"modifiedTime\": \"2023-07-20T08:54:24.780Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:26 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3335" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"properties\": {\n \"title\": \"Test CellTest test_delete_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts:batchUpdate", + "body": "{\"requests\": [{\"addNamedRange\": {\"namedRange\": {\"name\": \"TestDeleteNamedRange\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}}]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "190" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:26 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "412" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"replies\": [\n {\n \"addNamedRange\": {\n \"namedRange\": {\n \"namedRangeId\": \"643866637\",\n \"name\": \"TestDeleteNamedRange\",\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n }\n }\n }\n ]\n}\n" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts:batchUpdate", + "body": "{\"requests\": [{\"deleteNamedRange\": {\"namedRangeId\": \"643866637\"}}]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "67" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:27 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "97" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts\",\n \"replies\": [\n {}\n ]\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?fields=namedRanges", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:27 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3" + ] + }, + "body": { + "string": "{}\n" + } + } + }, + { + "request": { + "method": "DELETE", + "uri": "https://www.googleapis.com/drive/v3/files/1tW62QMA6TFaYIgYAKE7_ZKfRk_-XkixUVL_pAzVi_ts?supportsAllDrives=True", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 204, + "message": "No Content" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "text/html" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], + "Content-Length": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:27 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { diff --git a/tests/cassettes/CellTest.test_equality.json b/tests/cassettes/CellTest.test_equality.json index 0a3d9709f..13d31400f 100644 --- a/tests/cassettes/CellTest.test_equality.json +++ b/tests/cassettes/CellTest.test_equality.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "94" ], @@ -39,55 +42,211 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:47:59 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "181" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"name\": \"Test CellTest test_equality\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:47:59 GMT" ], "Server": [ "ESF" ], + "content-length": [ + "3325" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Transfer-Encoding": [ + "chunked" + ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ - "Thu, 08 Jun 2023 22:14:21 GMT" + "Thu, 20 Jul 2023 08:48:00 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Server": [ + "ESF" ], "content-length": [ - "181" + "191" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k\",\n \"name\": \"Test CellTest test_equality\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"id\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"name\": \"Test CellTest test_equality\",\n \"createdTime\": \"2023-07-20T08:47:58.076Z\",\n \"modifiedTime\": \"2023-07-20T08:47:58.885Z\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +264,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,9 +278,88 @@ "message": "OK" }, "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], "Transfer-Encoding": [ "chunked" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:00 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "3325" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "PUT", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "body": "{\"values\": [[\"test_equality 1\"]]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "33" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], @@ -127,40 +368,833 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:00 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "165" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:00 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "110" + ] + }, + "body": { + "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:01 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "110" + ] + }, + "body": { + "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" + } + } + }, + { + "request": { + "method": "PUT", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", + "body": "{\"values\": [[\"test_equality 1\"]]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "33" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:01 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "165" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:01 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "110" + ] + }, + "body": { + "string": "{\n \"range\": \"Sheet1!A2\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" + } + } + }, + { + "request": { + "method": "PUT", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "body": "{\"values\": [[\"test_equality 1\"]]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "33" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:01 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "165" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:01 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "110" + ] + }, + "body": { + "string": "{\n \"range\": \"Sheet1!B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_equality 1\"\n ]\n ]\n}\n" + } + } + }, + { + "request": { + "method": "DELETE", + "uri": "https://www.googleapis.com/drive/v3/files/1lUCFNTXM5Qd4yS3QAazomIhyT0BYxQMltPTuQc6Kw8o?supportsAllDrives=True", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 204, + "message": "No Content" + }, + "headers": { + "Content-Type": [ + "text/html" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "0" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:02 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", + "body": "{\"name\": \"Test CellTest test_equality\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "94" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:30 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "181" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"name\": \"Test CellTest test_equality\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:31 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3325" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:21 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:31 GMT" ], - "Cache-Control": [ - "private" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ - "3325" + "191" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/edit\"\n}\n" + "string": "{\n \"id\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"name\": \"Test CellTest test_equality\",\n \"createdTime\": \"2023-07-20T08:54:28.355Z\",\n \"modifiedTime\": \"2023-07-20T08:54:28.372Z\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -178,6 +1212,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,8 +1226,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -200,40 +1240,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:21 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:31 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3325" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"properties\": {\n \"title\": \"Test CellTest test_equality\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/edit\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_equality 1\"]]}", "headers": { "User-Agent": [ @@ -251,6 +1288,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "33" ], @@ -268,8 +1308,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -279,40 +1322,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:21 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:32 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -330,6 +1370,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -341,8 +1384,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -352,26 +1398,23 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:22 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:32 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "110" @@ -385,7 +1428,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -403,6 +1446,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -414,8 +1460,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -425,26 +1474,23 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:22 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:32 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "110" @@ -458,7 +1504,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_equality 1\"]]}", "headers": { "User-Agent": [ @@ -476,6 +1522,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "33" ], @@ -493,8 +1542,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -504,40 +1556,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:22 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:32 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -555,6 +1604,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -566,8 +1618,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -577,26 +1632,23 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:22 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:33 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "110" @@ -610,7 +1662,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_equality 1\"]]}", "headers": { "User-Agent": [ @@ -628,6 +1680,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "33" ], @@ -645,8 +1700,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -656,40 +1714,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:22 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:33 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -707,6 +1762,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -718,8 +1776,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -729,26 +1790,23 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:23 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:33 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "110" @@ -762,7 +1820,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1f2Xz-DmK95enb66Q1f_KZf_n1MWRuYFJGHlq8ry4E2k?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/10ot2mreYevGZVIdYxK4ieNvk5nGm9rafAC88o9ukXLA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -780,6 +1838,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -794,41 +1855,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Content-Length": [ + "0" ], "Date": [ - "Thu, 08 Jun 2023 22:14:23 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Thu, 20 Jul 2023 08:54:34 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { diff --git a/tests/cassettes/CellTest.test_merge_cells.json b/tests/cassettes/CellTest.test_merge_cells.json index 16fb4c422..06d1e0910 100644 --- a/tests/cassettes/CellTest.test_merge_cells.json +++ b/tests/cassettes/CellTest.test_merge_cells.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "97" ], @@ -39,55 +42,211 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:04 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "184" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"name\": \"Test CellTest test_merge_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:05 GMT" ], "Server": [ "ESF" ], + "content-length": [ + "3328" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Transfer-Encoding": [ + "chunked" + ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Date": [ - "Thu, 08 Jun 2023 22:14:26 GMT" + "Thu, 20 Jul 2023 08:48:05 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Server": [ + "ESF" ], "content-length": [ - "184" + "194" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"name\": \"Test CellTest test_merge_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"id\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"name\": \"Test CellTest test_merge_cells\",\n \"createdTime\": \"2023-07-20T08:48:02.877Z\",\n \"modifiedTime\": \"2023-07-20T08:48:03.770Z\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +264,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,9 +278,88 @@ "message": "OK" }, "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], "Transfer-Encoding": [ "chunked" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:05 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "3328" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "PUT", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", + "body": "{\"values\": [[42, 43], [43, 44]]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "32" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], @@ -127,40 +368,839 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:05 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "168" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"updatedRange\": \"Sheet1!A1:B2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 4\n}\n" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8:batchUpdate", + "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ROWS\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "166" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:06 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "97" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"replies\": [\n {}\n ]\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:06 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "3638" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 1,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8:batchUpdate", + "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "165" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:06 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "97" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"replies\": [\n {}\n ]\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:07 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "3496" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8:batchUpdate", + "body": "{\"requests\": [{\"unmergeCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:07 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "97" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"replies\": [\n {}\n ]\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:07 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "3328" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "DELETE", + "uri": "https://www.googleapis.com/drive/v3/files/1BBSpc40Femt2x9Q2rLqVWb7OpLzY-_ufLjRetqE5-i8?supportsAllDrives=True", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 204, + "message": "No Content" + }, + "headers": { + "Content-Type": [ + "text/html" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "0" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:08 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", + "body": "{\"name\": \"Test CellTest test_merge_cells\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "97" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:35 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "184" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"name\": \"Test CellTest test_merge_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:36 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3328" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:26 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:36 GMT" ], - "Cache-Control": [ - "private" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ - "3328" + "194" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8/edit\"\n}\n" + "string": "{\n \"id\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"name\": \"Test CellTest test_merge_cells\",\n \"createdTime\": \"2023-07-20T08:54:34.403Z\",\n \"modifiedTime\": \"2023-07-20T08:54:34.926Z\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -178,6 +1218,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,8 +1232,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -200,40 +1246,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:26 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:36 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/edit\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", "body": "{\"values\": [[42, 43], [43, 44]]}", "headers": { "User-Agent": [ @@ -251,6 +1294,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "32" ], @@ -268,8 +1314,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -279,40 +1328,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:27 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:37 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"updatedRange\": \"Sheet1!A1:B2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 4\n}\n" + "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"updatedRange\": \"Sheet1!A1:B2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 4\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ROWS\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ @@ -330,6 +1376,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "166" ], @@ -347,8 +1396,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -358,40 +1410,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:27 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:37 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -409,6 +1458,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -420,8 +1472,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -431,40 +1486,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:27 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:37 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3638" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 1,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 1,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ @@ -482,6 +1534,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "165" ], @@ -499,8 +1554,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -510,40 +1568,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:27 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:37 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -561,6 +1616,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -572,8 +1630,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -583,40 +1644,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:27 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:38 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3496" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE:batchUpdate", "body": "{\"requests\": [{\"unmergeCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ @@ -634,6 +1692,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "141" ], @@ -651,8 +1712,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -662,40 +1726,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:28 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:38 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -713,6 +1774,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -724,8 +1788,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -735,40 +1802,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:28 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:38 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE\",\n \"properties\": {\n \"title\": \"Test CellTest test_merge_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1hvqdNzpo_GXB6Y9xALb8DRgcfjh1lI40XRQok7_lMD8?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1N2QeXbh8cskuQYnVZT51C0NZ25nRzF7rfg4CvYMSdlE?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -786,6 +1850,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -800,41 +1867,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Content-Length": [ + "0" ], "Date": [ - "Thu, 08 Jun 2023 22:14:28 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Thu, 20 Jul 2023 08:54:38 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { diff --git a/tests/cassettes/CellTest.test_numeric_value.json b/tests/cassettes/CellTest.test_numeric_value.json index 60fd63971..8fea34fe0 100644 --- a/tests/cassettes/CellTest.test_numeric_value.json +++ b/tests/cassettes/CellTest.test_numeric_value.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "99" ], @@ -39,55 +42,1003 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Transfer-Encoding": [ "chunked" ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:10 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "186" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"name\": \"Test CellTest test_numeric_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:11 GMT" ], "Server": [ "ESF" ], + "content-length": [ + "3330" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Transfer-Encoding": [ + "chunked" + ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:11 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "196" + ] + }, + "body": { + "string": "{\n \"id\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"name\": \"Test CellTest test_numeric_value\",\n \"createdTime\": \"2023-07-20T08:48:08.567Z\",\n \"modifiedTime\": \"2023-07-20T08:48:08.584Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:11 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "3330" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "PUT", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "body": "{\"values\": [[\"= 1 / 1024\"]]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "28" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:12 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "165" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:12 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "107" + ] + }, + "body": { + "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"0.0009765625\"\n ]\n ]\n}\n" + } + } + }, + { + "request": { + "method": "PUT", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "body": "{\"values\": [[\"2,000,000.01\"]]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "30" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:12 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "165" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:12 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "107" + ] + }, + "body": { + "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"2,000,000.01\"\n ]\n ]\n}\n" + } + } + }, + { + "request": { + "method": "PUT", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "body": "{\"values\": [[\"Non-numeric value\"]]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "35" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:13 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "165" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:13 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "112" + ] + }, + "body": { + "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"Non-numeric value\"\n ]\n ]\n}\n" + } + } + }, + { + "request": { + "method": "DELETE", + "uri": "https://www.googleapis.com/drive/v3/files/1nOrG_xsXGrtKIMf6a_h6G_LyP6TsTS5CT9Rcvgmv-us?supportsAllDrives=True", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 204, + "message": "No Content" + }, + "headers": { + "Content-Type": [ + "text/html" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "0" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:13 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", + "body": "{\"name\": \"Test CellTest test_numeric_value\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "99" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:41 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "186" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"name\": \"Test CellTest test_numeric_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], "Date": [ - "Thu, 08 Jun 2023 22:14:31 GMT" + "Thu, 20 Jul 2023 08:54:41 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ - "186" + "3330" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8\",\n \"name\": \"Test CellTest test_numeric_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -105,6 +1056,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +1070,55 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:31 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:41 GMT" ], - "Cache-Control": [ - "private" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ - "3330" + "196" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/edit\"\n}\n" + "string": "{\n \"id\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"name\": \"Test CellTest test_numeric_value\",\n \"createdTime\": \"2023-07-20T08:54:39.530Z\",\n \"modifiedTime\": \"2023-07-20T08:54:40.323Z\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -178,6 +1136,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,8 +1150,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -200,40 +1164,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:31 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:42 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3330" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"properties\": {\n \"title\": \"Test CellTest test_numeric_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/edit\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"= 1 / 1024\"]]}", "headers": { "User-Agent": [ @@ -251,6 +1212,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "28" ], @@ -268,8 +1232,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -279,40 +1246,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:32 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:42 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -330,6 +1294,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -341,8 +1308,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -352,26 +1322,23 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:32 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:42 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" @@ -385,7 +1352,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"2,000,000.01\"]]}", "headers": { "User-Agent": [ @@ -403,6 +1370,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "30" ], @@ -420,8 +1390,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -431,40 +1404,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:32 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:42 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -482,6 +1452,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -493,8 +1466,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -504,26 +1480,23 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:32 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:43 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" @@ -537,7 +1510,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"Non-numeric value\"]]}", "headers": { "User-Agent": [ @@ -555,6 +1528,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "35" ], @@ -572,8 +1548,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -583,40 +1562,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:33 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:43 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -634,6 +1610,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -645,8 +1624,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -656,26 +1638,23 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:33 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:43 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "112" @@ -689,7 +1668,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1Bkx_8CHZva3Q-jt9y7mx0RKUrEzf-nIjMOGFOvIw-G8?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1Y5QW_t9f496JTVru70ArhYT0b0xy_KBlNyMfwBC9SSQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -707,6 +1686,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -721,41 +1703,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Content-Length": [ + "0" ], "Date": [ - "Thu, 08 Jun 2023 22:14:33 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Thu, 20 Jul 2023 08:54:44 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { diff --git a/tests/cassettes/CellTest.test_properties.json b/tests/cassettes/CellTest.test_properties.json index 13b5f99b0..a3e4e3300 100644 --- a/tests/cassettes/CellTest.test_properties.json +++ b/tests/cassettes/CellTest.test_properties.json @@ -22,6 +22,565 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "96" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:15 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "183" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\",\n \"name\": \"Test CellTest test_properties\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:16 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "3327" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:16 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "193" + ] + }, + "body": { + "string": "{\n \"id\": \"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\",\n \"name\": \"Test CellTest test_properties\",\n \"createdTime\": \"2023-07-20T08:48:14.243Z\",\n \"modifiedTime\": \"2023-07-20T08:48:15.032Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:16 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "3327" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "PUT", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "body": "{\"values\": [[\"test_properties 1\"]]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "35" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:16 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "165" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Cache-Control": [ + "private" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:17 GMT" + ], + "Server": [ + "ESF" + ], + "content-length": [ + "112" + ] + }, + "body": { + "string": "{\n \"range\": \"Sheet1!A1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_properties 1\"\n ]\n ]\n}\n" + } + } + }, + { + "request": { + "method": "DELETE", + "uri": "https://www.googleapis.com/drive/v3/files/1fkVKz-EZPp1z2TI-TLKj06V3BmLl4iQExKt6D_RdQdw?supportsAllDrives=True", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 204, + "message": "No Content" + }, + "headers": { + "Content-Type": [ + "text/html" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Content-Length": [ + "0" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Date": [ + "Thu, 20 Jul 2023 08:48:17 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Server": [ + "ESF" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", + "body": "{\"name\": \"Test CellTest test_properties\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "96" ], @@ -39,11 +598,11 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Server": [ + "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -51,43 +610,43 @@ "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:36 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:47 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ "183" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk\",\n \"name\": \"Test CellTest test_properties\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\",\n \"name\": \"Test CellTest test_properties\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +664,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,8 +678,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -127,40 +692,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:37 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:47 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3327" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +740,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,9 +754,92 @@ "message": "OK" }, "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:47 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "193" + ] + }, + "body": { + "string": "{\n \"id\": \"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\",\n \"name\": \"Test CellTest test_properties\",\n \"createdTime\": \"2023-07-20T08:54:44.530Z\",\n \"modifiedTime\": \"2023-07-20T08:54:44.555Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], "Content-Type": [ "application/json; charset=UTF-8" ], @@ -200,40 +848,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:37 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:47 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3327" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\",\n \"properties\": {\n \"title\": \"Test CellTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE/edit\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_properties 1\"]]}", "headers": { "User-Agent": [ @@ -251,6 +896,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "35" ], @@ -268,8 +916,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -279,40 +930,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:37 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:48 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -330,6 +978,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -341,8 +992,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -352,26 +1006,23 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:37 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:48 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "112" @@ -385,7 +1036,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1mZ3os1ujsY6mDDkHyh7yoi_KeleYF6nDz2L5UYEzzVk?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1ep2_AnhXBX_hNgISlk9mDD-k2yVSqWKHqkuVUK_h9aE?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -403,6 +1054,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -417,41 +1071,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Content-Length": [ + "0" ], "Date": [ - "Thu, 08 Jun 2023 22:14:38 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Thu, 20 Jul 2023 08:54:48 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { diff --git a/tests/cassettes/ClientTest.test_access_non_existing_spreadsheet.json b/tests/cassettes/ClientTest.test_access_non_existing_spreadsheet.json index d0071eb86..91f15a71a 100644 --- a/tests/cassettes/ClientTest.test_access_non_existing_spreadsheet.json +++ b/tests/cassettes/ClientTest.test_access_non_existing_spreadsheet.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -33,37 +36,113 @@ "message": "Not Found" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:29 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "114" + ] + }, + "body": { + "string": "{\n \"error\": {\n \"code\": 404,\n \"message\": \"Requested entity was not found.\",\n \"status\": \"NOT_FOUND\"\n }\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/test?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 404, + "message": "Not Found" + }, + "headers": { "Server": [ "ESF" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:38 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:49 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "114" diff --git a/tests/cassettes/ClientTest.test_copy.json b/tests/cassettes/ClientTest.test_copy.json index 7f0e4780d..b496213e6 100644 --- a/tests/cassettes/ClientTest.test_copy.json +++ b/tests/cassettes/ClientTest.test_copy.json @@ -22,11 +22,886 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "75" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:31 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "162" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:32 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3306" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:32 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "172" + ] + }, + "body": { + "string": "{\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n}\n" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://www.googleapis.com/drive/v3/files/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/copy?supportsAllDrives=True", + "body": "{\"name\": null, \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:35 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "170" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:36 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:36 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/comments?fields=comments%2Fcontent%2Ccomments%2Fanchor%2CnextPageToken&includeDeleted=False&pageSize=100&pageToken=", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:36 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "21" + ] + }, + "body": { + "string": "{\n \"comments\": []\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:36 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3306" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:37 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", + "body": "{\"name\": \"Original\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "75" ], - "Content-Type": [ - "application/json" + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:52 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "162" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"name\": \"Original\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:53 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3306" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" ], "authorization": [ "" @@ -39,11 +914,11 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Server": [ + "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -51,44 +926,44 @@ "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:41 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:53 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ - "162" + "172" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"id\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:54:50.035Z\",\n \"modifiedTime\": \"2023-07-20T08:54:50.051Z\"\n}\n" } } }, { "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false", - "body": null, + "method": "POST", + "uri": "https://www.googleapis.com/drive/v3/files/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw/copy?supportsAllDrives=True", + "body": "{\"name\": null, \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -105,6 +980,15 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "69" + ], + "Content-Type": [ + "application/json" + ], "authorization": [ "" ] @@ -116,52 +1000,56 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:42 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:55 GMT" ], - "Cache-Control": [ - "private" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ - "3306" + "170" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4/edit\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"name\": \"Copy of Original\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { - "method": "POST", - "uri": "https://www.googleapis.com/drive/v3/files/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4/copy?supportsAllDrives=True", - "body": "{\"name\": null, \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?includeGridData=false", + "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -178,11 +1066,8 @@ "x-goog-api-client": [ "cred-type/sa" ], - "Content-Length": [ - "69" - ], - "Content-Type": [ - "application/json" + "x-identity-trust-boundary": [ + "0" ], "authorization": [ "" @@ -195,55 +1080,51 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Server": [ + "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:45 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:56 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ - "170" + "3314" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -261,6 +1142,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -272,51 +1156,55 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:45 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:56 GMT" ], - "Cache-Control": [ - "private" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ - "3314" + "180" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0/edit\"\n}\n" + "string": "{\n \"id\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:54:53.602Z\",\n \"modifiedTime\": \"2023-07-20T08:54:55.326Z\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4/comments?fields=comments%2Fcontent%2Ccomments%2Fanchor%2CnextPageToken&includeDeleted=False&pageSize=100&pageToken=", + "uri": "https://www.googleapis.com/drive/v3/files/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw/comments?fields=comments%2Fcontent%2Ccomments%2Fanchor%2CnextPageToken&includeDeleted=False&pageSize=100&pageToken=", "body": null, "headers": { "User-Agent": [ @@ -334,6 +1222,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -345,11 +1236,11 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Server": [ + "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -357,29 +1248,29 @@ "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:46 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:56 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ "21" @@ -393,7 +1284,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -411,6 +1302,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -422,8 +1316,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -433,40 +1330,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:46 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:56 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3306" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -484,6 +1378,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -495,8 +1392,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -506,33 +1406,30 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:46 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:54:57 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3314" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0/edit\"\n}\n" } } } diff --git a/tests/cassettes/ClientTest.test_create.json b/tests/cassettes/ClientTest.test_create.json index bf1bc9bd1..b1328c856 100644 --- a/tests/cassettes/ClientTest.test_create.json +++ b/tests/cassettes/ClientTest.test_create.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "83" ], @@ -39,55 +42,297 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:39 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "Vary": [ "Origin, X-Origin" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "170" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:40 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ "0" ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Pragma": [ "no-cache" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" ], "Date": [ - "Thu, 08 Jun 2023 22:14:50 GMT" + "Thu, 20 Jul 2023 08:51:40 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n}\n" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", + "body": "{\"name\": \"Test Spreadsheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "83" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:58 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "content-length": [ "170" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +350,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,8 +364,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -127,33 +378,110 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Transfer-Encoding": [ + "chunked" + ], "Date": [ - "Thu, 08 Jun 2023 22:14:50 GMT" + "Thu, 20 Jul 2023 08:54:59 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Cache-Control": [ - "private" + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:54:59 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ - "3314" + "180" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0/edit\"\n}\n" + "string": "{\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n}\n" } } } diff --git a/tests/cassettes/ClientTest.test_import_csv.json b/tests/cassettes/ClientTest.test_import_csv.json index a7828033d..61ff2f7e5 100644 --- a/tests/cassettes/ClientTest.test_import_csv.json +++ b/tests/cassettes/ClientTest.test_import_csv.json @@ -22,11 +22,892 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "88" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:43 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "175" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"name\": \"TestImportSpreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:43 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3319" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"properties\": {\n \"title\": \"TestImportSpreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:44 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "185" + ] + }, + "body": { + "string": "{\n \"id\": \"1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"name\": \"TestImportSpreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:40.779Z\",\n \"modifiedTime\": \"2023-07-20T08:51:40.794Z\"\n}\n" + } + } + }, + { + "request": { + "method": "PUT", + "uri": "https://www.googleapis.com/upload/drive/v2/files/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U?uploadType=media&convert=True&supportsAllDrives=True", + "body": "test_import_csv 1,test_import_csv 2,test_import_csv 3,test_import_csv 4\ntest_import_csv 5,test_import_csv 6,test_import_csv 7,test_import_csv 8\ntest_import_csv 9,test_import_csv 10,test_import_csv 11,test_import_csv 12\ntest_import_csv 13,test_import_csv 14,test_import_csv 15,test_import_csv 16", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "Content-Type": [ + "text/csv" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "294" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Access-Control-Allow-Credentials": [ + "true" + ], + "ETag": [ + "\"MTY4OTg0MzEwNDcyMg\"" + ], + "Content-Length": [ + "4304" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:45 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "X-GUploader-UploadID": [ + "ADPycdvF0oeIzdug_MZPUgvInTn1qWppZmy4LdoNDGdObm8Y3tKQNS5k5Wf-Re1djaKDvBk33iy8DTEU6xySCgEYWIRczw" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"userPermission\": {\n \"id\": \"me\",\n \"type\": \"user\",\n \"role\": \"owner\",\n \"kind\": \"drive#permission\",\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/permissions/me\",\n \"etag\": \"\\\"8KmyKi1XzEtZ3R_KN3zjIcXjt88\\\"\",\n \"pendingOwner\": false\n },\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"ownerNames\": [\n \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\"\n ],\n \"lastModifyingUserName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"editable\": true,\n \"writersCanShare\": true,\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\",\n \"exportLinks\": {\n \"application/x-vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&exportFormat=ods\",\n \"text/tab-separated-values\": \"https://docs.google.com/spreadsheets/export?id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&exportFormat=tsv\",\n \"application/pdf\": \"https://docs.google.com/spreadsheets/export?id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&exportFormat=pdf\",\n \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\": \"https://docs.google.com/spreadsheets/export?id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&exportFormat=xlsx\",\n \"text/csv\": \"https://docs.google.com/spreadsheets/export?id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&exportFormat=csv\",\n \"application/zip\": \"https://docs.google.com/spreadsheets/export?id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&exportFormat=zip\",\n \"application/vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&exportFormat=ods\"\n },\n \"parents\": [\n {\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/parents/0AGIJ7XFn4BojUk9PVA\",\n \"id\": \"0AGIJ7XFn4BojUk9PVA\",\n \"isRoot\": true,\n \"kind\": \"drive#parentReference\",\n \"parentLink\": \"https://www.googleapis.com/drive/v2/files/0AGIJ7XFn4BojUk9PVA\"\n }\n ],\n \"thumbnailLink\": \"https://docs.google.com/feeds/vt?gd=true&id=1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U&v=1&s=AMedNnoAAAAAZLkRwUal8NefOJo8lH-OyMYLE2sFQ1rI&sz=s220\",\n \"appDataContents\": false,\n \"iconLink\": \"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.spreadsheet\",\n \"shared\": false,\n \"lastModifyingUser\": {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n },\n \"owners\": [\n {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n }\n ],\n \"copyable\": true,\n \"etag\": \"\\\"MTY4OTg0MzEwNDcyMg\\\"\",\n \"alternateLink\": \"https://docs.google.com/spreadsheets/d/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/edit?usp=drivesdk\",\n \"embedLink\": \"https://docs.google.com/spreadsheets/d/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/htmlembed?ouid=101377741449911561961\",\n \"fileSize\": \"1024\",\n \"copyRequiresWriterPermission\": false,\n \"spaces\": [\n \"drive\"\n ],\n \"id\": \"1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"title\": \"TestImportSpreadsheet\",\n \"labels\": {\n \"viewed\": true,\n \"restricted\": false,\n \"starred\": false,\n \"hidden\": false,\n \"trashed\": false\n },\n \"explicitlyTrashed\": false,\n \"createdDate\": \"2023-07-20T08:51:40.779Z\",\n \"modifiedDate\": \"2023-07-20T08:51:44.722Z\",\n \"modifiedByMeDate\": \"2023-07-20T08:51:44.722Z\",\n \"lastViewedByMeDate\": \"2023-07-20T08:51:44.722Z\",\n \"markedViewedByMeDate\": \"1970-01-01T00:00:00.000Z\",\n \"quotaBytesUsed\": \"1024\",\n \"version\": \"5\",\n \"capabilities\": {\n \"canEdit\": true,\n \"canCopy\": true\n }\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:46 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3354" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"properties\": {\n \"title\": \"TestImportSpreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 571790447,\n \"title\": \"TestImportSpreadsheet\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:46 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "185" + ] + }, + "body": { + "string": "{\n \"id\": \"1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"name\": \"TestImportSpreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:40.779Z\",\n \"modifiedTime\": \"2023-07-20T08:51:44.722Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:46 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3354" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U\",\n \"properties\": {\n \"title\": \"TestImportSpreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 571790447,\n \"title\": \"TestImportSpreadsheet\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U/values/%27TestImportSpreadsheet%27", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:47 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "581" + ] + }, + "body": { + "string": "{\n \"range\": \"TestImportSpreadsheet!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_import_csv 1\",\n \"test_import_csv 2\",\n \"test_import_csv 3\",\n \"test_import_csv 4\"\n ],\n [\n \"test_import_csv 5\",\n \"test_import_csv 6\",\n \"test_import_csv 7\",\n \"test_import_csv 8\"\n ],\n [\n \"test_import_csv 9\",\n \"test_import_csv 10\",\n \"test_import_csv 11\",\n \"test_import_csv 12\"\n ],\n [\n \"test_import_csv 13\",\n \"test_import_csv 14\",\n \"test_import_csv 15\",\n \"test_import_csv 16\"\n ]\n ]\n}\n" + } + } + }, + { + "request": { + "method": "DELETE", + "uri": "https://www.googleapis.com/drive/v3/files/1w5T4Z0j2lI36co-3cNioVogUfsEoNmboJ3MBGIh2K5U?supportsAllDrives=True", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 204, + "message": "No Content" + }, + "headers": { + "Content-Length": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:47 GMT" + ], + "Content-Type": [ + "text/html" + ], + "Server": [ + "ESF" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ] + }, + "body": { + "string": "" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", + "body": "{\"name\": \"TestImportSpreadsheet\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "88" ], - "Content-Type": [ - "application/json" + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:01 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "175" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"name\": \"TestImportSpreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:02 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3319" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"properties\": {\n \"title\": \"TestImportSpreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" ], "authorization": [ "" @@ -39,11 +920,11 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Server": [ + "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -51,44 +932,44 @@ "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:53 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:55:02 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ - "175" + "185" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs\",\n \"name\": \"TestImportSpreadsheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"id\": \"1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"name\": \"TestImportSpreadsheet\",\n \"createdTime\": \"2023-07-20T08:55:00.046Z\",\n \"modifiedTime\": \"2023-07-20T08:55:00.731Z\"\n}\n" } } }, { "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs?includeGridData=false", - "body": null, + "method": "PUT", + "uri": "https://www.googleapis.com/upload/drive/v2/files/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis?uploadType=media&convert=True&supportsAllDrives=True", + "body": "test_import_csv 1,test_import_csv 2,test_import_csv 3,test_import_csv 4\ntest_import_csv 5,test_import_csv 6,test_import_csv 7,test_import_csv 8\ntest_import_csv 9,test_import_csv 10,test_import_csv 11,test_import_csv 12\ntest_import_csv 13,test_import_csv 14,test_import_csv 15,test_import_csv 16", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -102,9 +983,18 @@ "Connection": [ "keep-alive" ], + "Content-Type": [ + "text/csv" + ], "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "294" + ], "authorization": [ "" ] @@ -116,52 +1006,62 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], + "Access-Control-Allow-Credentials": [ + "true" + ], "X-Content-Type-Options": [ "nosniff" ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Pragma": [ + "no-cache" + ], + "Content-Length": [ + "4304" + ], "Date": [ - "Thu, 08 Jun 2023 22:14:53 GMT" + "Thu, 20 Jul 2023 08:55:03 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "ETag": [ + "\"MTY4OTg0MzMwMjg2Mg\"" ], - "Cache-Control": [ - "private" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "content-length": [ - "3319" + "X-GUploader-UploadID": [ + "ADPycdt7L1BrL5iOGTIEpl8FRGHaIX1hXh5HCtLVXcXZdD0LL4UGVazD2eo_1EnfrEw8TmyLpQU6sY_YPg0QjzLkkveIVQ" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs\",\n \"properties\": {\n \"title\": \"TestImportSpreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs/edit\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"userPermission\": {\n \"id\": \"me\",\n \"type\": \"user\",\n \"role\": \"owner\",\n \"kind\": \"drive#permission\",\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/permissions/me\",\n \"etag\": \"\\\"iBnpV0duZ3qaI-j1rR9gHYI_nNs\\\"\",\n \"pendingOwner\": false\n },\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"ownerNames\": [\n \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\"\n ],\n \"lastModifyingUserName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"editable\": true,\n \"writersCanShare\": true,\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\",\n \"exportLinks\": {\n \"application/x-vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&exportFormat=ods\",\n \"text/tab-separated-values\": \"https://docs.google.com/spreadsheets/export?id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&exportFormat=tsv\",\n \"application/pdf\": \"https://docs.google.com/spreadsheets/export?id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&exportFormat=pdf\",\n \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\": \"https://docs.google.com/spreadsheets/export?id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&exportFormat=xlsx\",\n \"text/csv\": \"https://docs.google.com/spreadsheets/export?id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&exportFormat=csv\",\n \"application/zip\": \"https://docs.google.com/spreadsheets/export?id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&exportFormat=zip\",\n \"application/vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&exportFormat=ods\"\n },\n \"parents\": [\n {\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/parents/0AGIJ7XFn4BojUk9PVA\",\n \"id\": \"0AGIJ7XFn4BojUk9PVA\",\n \"isRoot\": true,\n \"kind\": \"drive#parentReference\",\n \"parentLink\": \"https://www.googleapis.com/drive/v2/files/0AGIJ7XFn4BojUk9PVA\"\n }\n ],\n \"thumbnailLink\": \"https://docs.google.com/feeds/vt?gd=true&id=1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis&v=1&s=AMedNnoAAAAAZLkSh3TtHsAyUUIws5Q99uIoP41W9Tjk&sz=s220\",\n \"appDataContents\": false,\n \"iconLink\": \"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.spreadsheet\",\n \"shared\": false,\n \"lastModifyingUser\": {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n },\n \"owners\": [\n {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n }\n ],\n \"copyable\": true,\n \"etag\": \"\\\"MTY4OTg0MzMwMjg2Mg\\\"\",\n \"alternateLink\": \"https://docs.google.com/spreadsheets/d/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/edit?usp=drivesdk\",\n \"embedLink\": \"https://docs.google.com/spreadsheets/d/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/htmlembed?ouid=101377741449911561961\",\n \"fileSize\": \"1024\",\n \"copyRequiresWriterPermission\": false,\n \"spaces\": [\n \"drive\"\n ],\n \"id\": \"1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"title\": \"TestImportSpreadsheet\",\n \"labels\": {\n \"viewed\": true,\n \"restricted\": false,\n \"starred\": false,\n \"hidden\": false,\n \"trashed\": false\n },\n \"explicitlyTrashed\": false,\n \"createdDate\": \"2023-07-20T08:55:00.046Z\",\n \"modifiedDate\": \"2023-07-20T08:55:02.862Z\",\n \"modifiedByMeDate\": \"2023-07-20T08:55:02.862Z\",\n \"lastViewedByMeDate\": \"2023-07-20T08:55:02.862Z\",\n \"markedViewedByMeDate\": \"1970-01-01T00:00:00.000Z\",\n \"quotaBytesUsed\": \"1024\",\n \"version\": \"5\",\n \"capabilities\": {\n \"canEdit\": true,\n \"canCopy\": true\n }\n}\n" } } }, { "request": { - "method": "PUT", - "uri": "https://www.googleapis.com/upload/drive/v2/files/1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs?uploadType=media&convert=True&supportsAllDrives=True", - "body": "test_import_csv 1,test_import_csv 2,test_import_csv 3,test_import_csv 4\ntest_import_csv 5,test_import_csv 6,test_import_csv 7,test_import_csv 8\ntest_import_csv 9,test_import_csv 10,test_import_csv 11,test_import_csv 12\ntest_import_csv 13,test_import_csv 14,test_import_csv 15,test_import_csv 16", + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis?includeGridData=false", + "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -175,14 +1075,11 @@ "Connection": [ "keep-alive" ], - "Content-Type": [ - "text/csv" - ], "x-goog-api-client": [ "cred-type/sa" ], - "Content-Length": [ - "294" + "x-identity-trust-boundary": [ + "0" ], "authorization": [ "" @@ -195,32 +1092,22 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Server": [ + "ESF" ], - "Access-Control-Allow-Credentials": [ - "true" + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Content-Length": [ - "4304" - ], "Vary": [ - "Origin, X-Origin" - ], - "Server": [ - "ESF" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-GUploader-UploadID": [ - "ADPycdv_QI_R1lO3-JBm3JuO-VRM02RYaiAY94cJPM3WBup-gZ6YIw3-tUaJ2xnHuCm7xF-pEbdGGAOe3EYyZPJ8-i2QbQ" + "Origin", + "X-Origin", + "Referer" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" @@ -228,28 +1115,28 @@ "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:55 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:55:04 GMT" ], - "ETag": [ - "\"MTY4NjI2MjQ5NDM1Nw\"" + "X-Content-Type-Options": [ + "nosniff" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "content-length": [ + "3354" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"userPermission\": {\n \"id\": \"me\",\n \"type\": \"user\",\n \"role\": \"owner\",\n \"kind\": \"drive#permission\",\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs/permissions/me\",\n \"etag\": \"\\\"H_Ky2Is2HDZUX7MsuYQYsq0aOGM\\\"\",\n \"pendingOwner\": false\n },\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs\",\n \"ownerNames\": [\n \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\"\n ],\n \"lastModifyingUserName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"editable\": true,\n \"writersCanShare\": true,\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\",\n \"exportLinks\": {\n \"application/x-vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs&exportFormat=ods\",\n \"text/tab-separated-values\": \"https://docs.google.com/spreadsheets/export?id=1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs&exportFormat=tsv\",\n \"application/pdf\": \"https://docs.google.com/spreadsheets/export?id=1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs&exportFormat=pdf\",\n \"application/vnd.openxmlformats-officedocument.spreadsheetml.sheet\": \"https://docs.google.com/spreadsheets/export?id=1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs&exportFormat=xlsx\",\n \"text/csv\": \"https://docs.google.com/spreadsheets/export?id=1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs&exportFormat=csv\",\n \"application/zip\": \"https://docs.google.com/spreadsheets/export?id=1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs&exportFormat=zip\",\n \"application/vnd.oasis.opendocument.spreadsheet\": \"https://docs.google.com/spreadsheets/export?id=1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs&exportFormat=ods\"\n },\n \"parents\": [\n {\n \"selfLink\": \"https://www.googleapis.com/drive/v2/files/1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs/parents/0AGIJ7XFn4BojUk9PVA\",\n \"id\": \"0AGIJ7XFn4BojUk9PVA\",\n \"isRoot\": true,\n \"kind\": \"drive#parentReference\",\n \"parentLink\": \"https://www.googleapis.com/drive/v2/files/0AGIJ7XFn4BojUk9PVA\"\n }\n ],\n \"thumbnailLink\": \"https://docs.google.com/feeds/vt?gd=true&id=1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs&v=1&s=AMedNnoAAAAAZIJu_83K5e2eCSRwWcbRqKRPWKpJvsiF&sz=s220\",\n \"appDataContents\": false,\n \"iconLink\": \"https://drive-thirdparty.googleusercontent.com/16/type/application/vnd.google-apps.spreadsheet\",\n \"shared\": false,\n \"lastModifyingUser\": {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n },\n \"owners\": [\n {\n \"displayName\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"kind\": \"drive#user\",\n \"isAuthenticatedUser\": true,\n \"permissionId\": \"05027979280415927516\",\n \"emailAddress\": \"telegram-budgeter@telegram-budgeter.iam.gserviceaccount.com\",\n \"picture\": {\n \"url\": \"https://lh3.googleusercontent.com/a/default-user=s64\"\n }\n }\n ],\n \"copyable\": true,\n \"etag\": \"\\\"MTY4NjI2MjQ5NDM1Nw\\\"\",\n \"alternateLink\": \"https://docs.google.com/spreadsheets/d/1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs/edit?usp=drivesdk\",\n \"embedLink\": \"https://docs.google.com/spreadsheets/d/1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs/htmlembed?ouid=101377741449911561961\",\n \"fileSize\": \"1024\",\n \"copyRequiresWriterPermission\": false,\n \"spaces\": [\n \"drive\"\n ],\n \"id\": \"1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs\",\n \"title\": \"TestImportSpreadsheet\",\n \"labels\": {\n \"viewed\": true,\n \"restricted\": false,\n \"starred\": false,\n \"hidden\": false,\n \"trashed\": false\n },\n \"explicitlyTrashed\": false,\n \"createdDate\": \"2023-06-08T22:14:50.654Z\",\n \"modifiedDate\": \"2023-06-08T22:14:54.357Z\",\n \"modifiedByMeDate\": \"2023-06-08T22:14:54.357Z\",\n \"lastViewedByMeDate\": \"2023-06-08T22:14:54.357Z\",\n \"markedViewedByMeDate\": \"1970-01-01T00:00:00.000Z\",\n \"quotaBytesUsed\": \"1024\",\n \"version\": \"5\",\n \"capabilities\": {\n \"canEdit\": true,\n \"canCopy\": true\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"properties\": {\n \"title\": \"TestImportSpreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 836858112,\n \"title\": \"TestImportSpreadsheet\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -267,6 +1154,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -278,51 +1168,55 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:55 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:55:04 GMT" ], - "Cache-Control": [ - "private" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ - "3355" + "185" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs\",\n \"properties\": {\n \"title\": \"TestImportSpreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 1825677950,\n \"title\": \"TestImportSpreadsheet\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs/edit\"\n}\n" + "string": "{\n \"id\": \"1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"name\": \"TestImportSpreadsheet\",\n \"createdTime\": \"2023-07-20T08:55:00.046Z\",\n \"modifiedTime\": \"2023-07-20T08:55:02.862Z\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -340,6 +1234,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -351,8 +1248,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -362,40 +1262,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:55 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:55:04 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ - "3355" + "3354" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs\",\n \"properties\": {\n \"title\": \"TestImportSpreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 1825677950,\n \"title\": \"TestImportSpreadsheet\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis\",\n \"properties\": {\n \"title\": \"TestImportSpreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"America/Los_Angeles\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 836858112,\n \"title\": \"TestImportSpreadsheet\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs/values/%27TestImportSpreadsheet%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis/values/%27TestImportSpreadsheet%27", "body": null, "headers": { "User-Agent": [ @@ -413,6 +1310,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -424,8 +1324,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -435,26 +1338,23 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:56 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:55:04 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "581" @@ -468,7 +1368,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1nR7MxJl5LyaZPvIglIKHCa7cBlg2Ff_cGOzXa94kbVs?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1YeScSSY56NUZtqmyhA9M1sVpJ1j_s5uXmOZBzkYtEis?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -486,6 +1386,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -500,41 +1403,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Content-Length": [ + "0" ], "Date": [ - "Thu, 08 Jun 2023 22:14:56 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Thu, 20 Jul 2023 08:55:05 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ] }, "body": { diff --git a/tests/cassettes/ClientTest.test_no_found_exeption.json b/tests/cassettes/ClientTest.test_no_found_exeption.json index 8bb4d2da7..6d9026b6f 100644 --- a/tests/cassettes/ClientTest.test_no_found_exeption.json +++ b/tests/cassettes/ClientTest.test_no_found_exeption.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -33,41 +36,121 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Transfer-Encoding": [ - "chunked" + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:48 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "Vary": [ "Origin, X-Origin" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "46" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": []\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22+and+name+%3D+%22Please+don%27t+use+this+phrase+as+a+name+of+a+sheet.%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Server": [ "ESF" ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:57 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:55:06 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ "46" diff --git a/tests/cassettes/ClientTest.test_openall.json b/tests/cassettes/ClientTest.test_openall.json index bf52054d3..74576cad9 100644 --- a/tests/cassettes/ClientTest.test_openall.json +++ b/tests/cassettes/ClientTest.test_openall.json @@ -22,6 +22,9453 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:49 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "4964" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n },\n {\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n },\n {\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n },\n {\n \"id\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-07-15T16:58:37.251Z\",\n \"modifiedTime\": \"2023-07-15T16:58:38.603Z\"\n },\n {\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n },\n {\n \"id\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-06-28T15:23:07.699Z\",\n \"modifiedTime\": \"2023-06-28T15:23:09.622Z\"\n },\n {\n \"id\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-06-28T15:18:44.192Z\",\n \"modifiedTime\": \"2023-06-28T15:18:44.210Z\"\n },\n {\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n },\n {\n \"id\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T14:21:14.676Z\",\n \"modifiedTime\": \"2023-06-28T14:21:16.471Z\"\n },\n {\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n },\n {\n \"id\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:47:04.732Z\",\n \"modifiedTime\": \"2023-06-28T13:47:07.067Z\"\n },\n {\n \"id\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:40:28.137Z\",\n \"modifiedTime\": \"2023-06-28T13:40:30.356Z\"\n },\n {\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n },\n {\n \"id\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:33:36.874Z\",\n \"modifiedTime\": \"2023-06-28T13:33:38.883Z\"\n },\n {\n \"id\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:15:02.142Z\",\n \"modifiedTime\": \"2023-06-28T13:15:02.171Z\"\n },\n {\n \"id\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:14:27.722Z\",\n \"modifiedTime\": \"2023-06-28T13:14:28.653Z\"\n },\n {\n \"id\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:11:27.496Z\",\n \"modifiedTime\": \"2023-06-28T13:11:27.514Z\"\n },\n {\n \"id\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:10:20.745Z\",\n \"modifiedTime\": \"2023-06-28T13:10:20.761Z\"\n },\n {\n \"id\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:09:01.451Z\",\n \"modifiedTime\": \"2023-06-28T13:09:01.465Z\"\n },\n {\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n },\n {\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-06-08T22:14:42.294Z\",\n \"modifiedTime\": \"2023-06-08T22:14:44.589Z\"\n },\n {\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-06-08T22:14:39.098Z\",\n \"modifiedTime\": \"2023-06-08T22:14:40.257Z\"\n },\n {\n \"id\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-06-05T18:43:51.436Z\",\n \"modifiedTime\": \"2023-06-05T18:43:51.451Z\"\n }\n ]\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:49 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:49 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:49 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:50 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:50 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3306" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:50 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "172" + ] + }, + "body": { + "string": "{\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:51 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3340" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_updated_time\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:52 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "206" + ] + }, + "body": { + "string": "{\n \"id\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-07-15T16:58:37.251Z\",\n \"modifiedTime\": \"2023-07-15T16:58:38.603Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:52 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:53 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:54 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3331" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:54 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "197" + ] + }, + "body": { + "string": "{\n \"id\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-06-28T15:23:07.699Z\",\n \"modifiedTime\": \"2023-06-28T15:23:09.622Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:55 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3345" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:55 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "211" + ] + }, + "body": { + "string": "{\n \"id\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-06-28T15:18:44.192Z\",\n \"modifiedTime\": \"2023-06-28T15:18:44.210Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:56 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:56 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:57 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3332" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:57 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "198" + ] + }, + "body": { + "string": "{\n \"id\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T14:21:14.676Z\",\n \"modifiedTime\": \"2023-06-28T14:21:16.471Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:58 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:58 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:59 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3332" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:51:59 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "198" + ] + }, + "body": { + "string": "{\n \"id\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:47:04.732Z\",\n \"modifiedTime\": \"2023-06-28T13:47:07.067Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:00 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3332" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:00 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "198" + ] + }, + "body": { + "string": "{\n \"id\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:40:28.137Z\",\n \"modifiedTime\": \"2023-06-28T13:40:30.356Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:01 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:01 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:01 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3332" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:02 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "198" + ] + }, + "body": { + "string": "{\n \"id\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:33:36.874Z\",\n \"modifiedTime\": \"2023-06-28T13:33:38.883Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:03 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3324" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:03 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "190" + ] + }, + "body": { + "string": "{\n \"id\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:15:02.142Z\",\n \"modifiedTime\": \"2023-06-28T13:15:02.171Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:04 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3324" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:05 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "190" + ] + }, + "body": { + "string": "{\n \"id\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:14:27.722Z\",\n \"modifiedTime\": \"2023-06-28T13:14:28.653Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:05 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3324" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:06 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "190" + ] + }, + "body": { + "string": "{\n \"id\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:11:27.496Z\",\n \"modifiedTime\": \"2023-06-28T13:11:27.514Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:06 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3324" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:07 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "190" + ] + }, + "body": { + "string": "{\n \"id\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:10:20.745Z\",\n \"modifiedTime\": \"2023-06-28T13:10:20.761Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:07 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3324" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:08 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "190" + ] + }, + "body": { + "string": "{\n \"id\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:09:01.451Z\",\n \"modifiedTime\": \"2023-06-28T13:09:01.465Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:08 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:09 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:09 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:10 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-06-08T22:14:42.294Z\",\n \"modifiedTime\": \"2023-06-08T22:14:44.589Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:11 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3306" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:11 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "172" + ] + }, + "body": { + "string": "{\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-06-08T22:14:39.098Z\",\n \"modifiedTime\": \"2023-06-08T22:14:40.257Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:12 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3335" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:12 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "201" + ] + }, + "body": { + "string": "{\n \"id\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-06-05T18:43:51.436Z\",\n \"modifiedTime\": \"2023-06-05T18:43:51.451Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22+and+name+%3D+%22Test+Spreadsheet%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:12 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "1278" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n },\n {\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n },\n {\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n },\n {\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n },\n {\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n },\n {\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n }\n ]\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:13 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:13 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:13 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:13 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:13 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:14 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:14 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:14 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:14 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:15 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "private" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:15 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Pragma": [ + "no-cache" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Thu, 20 Jul 2023 08:52:15 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:06 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "5571" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n },\n {\n \"id\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:54:53.602Z\",\n \"modifiedTime\": \"2023-07-20T08:54:55.326Z\"\n },\n {\n \"id\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:54:50.035Z\",\n \"modifiedTime\": \"2023-07-20T08:54:50.051Z\"\n },\n {\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n },\n {\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n },\n {\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n },\n {\n \"id\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-07-15T16:58:37.251Z\",\n \"modifiedTime\": \"2023-07-15T16:58:38.603Z\"\n },\n {\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n },\n {\n \"id\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-06-28T15:23:07.699Z\",\n \"modifiedTime\": \"2023-06-28T15:23:09.622Z\"\n },\n {\n \"id\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-06-28T15:18:44.192Z\",\n \"modifiedTime\": \"2023-06-28T15:18:44.210Z\"\n },\n {\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n },\n {\n \"id\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T14:21:14.676Z\",\n \"modifiedTime\": \"2023-06-28T14:21:16.471Z\"\n },\n {\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n },\n {\n \"id\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:47:04.732Z\",\n \"modifiedTime\": \"2023-06-28T13:47:07.067Z\"\n },\n {\n \"id\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:40:28.137Z\",\n \"modifiedTime\": \"2023-06-28T13:40:30.356Z\"\n },\n {\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n },\n {\n \"id\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:33:36.874Z\",\n \"modifiedTime\": \"2023-06-28T13:33:38.883Z\"\n },\n {\n \"id\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:15:02.142Z\",\n \"modifiedTime\": \"2023-06-28T13:15:02.171Z\"\n },\n {\n \"id\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:14:27.722Z\",\n \"modifiedTime\": \"2023-06-28T13:14:28.653Z\"\n },\n {\n \"id\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:11:27.496Z\",\n \"modifiedTime\": \"2023-06-28T13:11:27.514Z\"\n },\n {\n \"id\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:10:20.745Z\",\n \"modifiedTime\": \"2023-06-28T13:10:20.761Z\"\n },\n {\n \"id\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:09:01.451Z\",\n \"modifiedTime\": \"2023-06-28T13:09:01.465Z\"\n },\n {\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n },\n {\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-06-08T22:14:42.294Z\",\n \"modifiedTime\": \"2023-06-08T22:14:44.589Z\"\n },\n {\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-06-08T22:14:39.098Z\",\n \"modifiedTime\": \"2023-06-08T22:14:40.257Z\"\n },\n {\n \"id\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-06-05T18:43:51.436Z\",\n \"modifiedTime\": \"2023-06-05T18:43:51.451Z\"\n }\n ]\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:07 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:07 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:07 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:07 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1w2dKffwXyu0KCYQD6AEiLCn6ZLdHhj7Io2Ze2jSUQk0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:54:53.602Z\",\n \"modifiedTime\": \"2023-07-20T08:54:55.326Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:08 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3306" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:08 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "172" + ] + }, + "body": { + "string": "{\n \"id\": \"1KUmduOU0sR9cV-GxT-m_ZUj2c-VEBix32FMTnbaN_Sw\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:54:50.035Z\",\n \"modifiedTime\": \"2023-07-20T08:54:50.051Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:08 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:08 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:08 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:09 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"14t7-raRlIvsNPtbjlQTWPH7lq8e2DS58yRx2Ji_wY2k\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-07-20T08:51:32.898Z\",\n \"modifiedTime\": \"2023-07-20T08:51:34.993Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:09 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3306" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:09 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "172" + ] + }, + "body": { + "string": "{\n \"id\": \"1YGsULsLM5zWTlUh5HrFG6oiaBN42tzYy4Gvq4mmX_mc\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-07-20T08:51:29.888Z\",\n \"modifiedTime\": \"2023-07-20T08:51:30.929Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:09 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3340" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_updated_time\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:10 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "206" + ] + }, + "body": { + "string": "{\n \"id\": \"1f-E4tz3roQP6bNiUyf4_S3-Pd6OmxD-rToY6zc0Agrw\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-07-15T16:58:37.251Z\",\n \"modifiedTime\": \"2023-07-15T16:58:38.603Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:10 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:10 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:10 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3331" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest test_copy\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:11 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "197" + ] + }, + "body": { + "string": "{\n \"id\": \"1qNevZW4y5jXKMGMrleVXKSzfyz76TP_Iq3A_hH49nlY\",\n \"name\": \"Copy of Test ClientTest test_copy\",\n \"createdTime\": \"2023-06-28T15:23:07.699Z\",\n \"modifiedTime\": \"2023-06-28T15:23:09.622Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:11 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3345" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"properties\": {\n \"title\": \"Test ClientTest test_access_private_spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:11 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "211" + ] + }, + "body": { + "string": "{\n \"id\": \"1UWRBInM3aNLakVfz8DP5akuC8Rf8WxVp7Vr9tP6xltQ\",\n \"name\": \"Test ClientTest test_access_private_spreadsheet\",\n \"createdTime\": \"2023-06-28T15:18:44.192Z\",\n \"modifiedTime\": \"2023-06-28T15:18:44.210Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:11 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:11 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:12 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3332" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:12 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "198" + ] + }, + "body": { + "string": "{\n \"id\": \"1V43sXbEd1460jXctxYdxLO4xvI66Ki-Wjg6faiTDtGg\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T14:21:14.676Z\",\n \"modifiedTime\": \"2023-06-28T14:21:16.471Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:12 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:12 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:13 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3332" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:13 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "198" + ] + }, + "body": { + "string": "{\n \"id\": \"1AvemJvHZCSt0HlNPyDDbkXxlJOFm2vlMZ87ttRHWSAA\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:47:04.732Z\",\n \"modifiedTime\": \"2023-06-28T13:47:07.067Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:13 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3332" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:13 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "198" + ] + }, + "body": { + "string": "{\n \"id\": \"1MlF8p35VQB1d14wAEDegJXcO3eJBkz0x7_9j43dyoHE\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:40:28.137Z\",\n \"modifiedTime\": \"2023-06-28T13:40:30.356Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:14 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:14 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:14 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3332" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"properties\": {\n \"title\": \"Copy of Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:14 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "198" + ] + }, + "body": { + "string": "{\n \"id\": \"13hH6cFpKtdmcBl6IWxss5VS0Espyrx8Hx1g2FYjF5ec\",\n \"name\": \"Copy of Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:33:36.874Z\",\n \"modifiedTime\": \"2023-06-28T13:33:38.883Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:15 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3324" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:15 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "190" + ] + }, + "body": { + "string": "{\n \"id\": \"1PskXxL5ILCDBJ0WbOiC_T9g69VnoNwRIy7apuZWgoFM\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:15:02.142Z\",\n \"modifiedTime\": \"2023-06-28T13:15:02.171Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:15 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3324" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:15 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "190" + ] + }, + "body": { + "string": "{\n \"id\": \"1TI7TigQoNKEyrb-wn7CjCHj8h_8p11Xv6mVmZiXwR34\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:14:27.722Z\",\n \"modifiedTime\": \"2023-06-28T13:14:28.653Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:15 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3324" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:16 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "190" + ] + }, + "body": { + "string": "{\n \"id\": \"1e71ziUyaRHDgYSiIaaRTtwmZVnvgs3YPLZ76EmgIcWg\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:11:27.496Z\",\n \"modifiedTime\": \"2023-06-28T13:11:27.514Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:16 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3324" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:16 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "190" + ] + }, + "body": { + "string": "{\n \"id\": \"1MWXifyvWeTAqtofY4Q83tAvq33I391h6vOuWgMsUyvc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:10:20.745Z\",\n \"modifiedTime\": \"2023-06-28T13:10:20.761Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:16 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3324" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"properties\": {\n \"title\": \"Test ClientTest ClientTest\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:17 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "190" + ] + }, + "body": { + "string": "{\n \"id\": \"1VdBIvkhEJ092fk-r3m1OfHgtuK-uDSgMcqAMUTKA1Jc\",\n \"name\": \"Test ClientTest ClientTest\",\n \"createdTime\": \"2023-06-28T13:09:01.451Z\",\n \"modifiedTime\": \"2023-06-28T13:09:01.465Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:17 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:17 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:17 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:18 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-06-08T22:14:42.294Z\",\n \"modifiedTime\": \"2023-06-08T22:14:44.589Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:18 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3306" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:18 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "172" + ] + }, + "body": { + "string": "{\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-06-08T22:14:39.098Z\",\n \"modifiedTime\": \"2023-06-08T22:14:40.257Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:18 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3335" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:19 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "201" + ] + }, + "body": { + "string": "{\n \"id\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-06-05T18:43:51.436Z\",\n \"modifiedTime\": \"2023-06-05T18:43:51.451Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22+and+name+%3D+%22Test+Spreadsheet%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:19 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "1483" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n },\n {\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n },\n {\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n },\n {\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n },\n {\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n },\n {\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n },\n {\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n }\n ]\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:19 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:19 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1ZNedOUejkcxiXVgmOWxQwuGiPLC3K2M-WM7Zh8GVhNE\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:54:57.510Z\",\n \"modifiedTime\": \"2023-07-20T08:54:58.119Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:20 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:20 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1TkLIW9ISk4WREop1uSSCwWhUorg2KbvhzXL9iSwijfI\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-07-20T08:51:37.399Z\",\n \"modifiedTime\": \"2023-07-20T08:51:37.420Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:20 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Pragma": [ + "no-cache" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:20 GMT" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "content-length": [ + "180" + ] + }, + "body": { + "string": "{\n \"id\": \"1hzdEm95J2ZrHd90bIacGLUHm-H0MAdSwAa_WIhwdltQ\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T15:23:15.406Z\",\n \"modifiedTime\": \"2023-06-28T15:23:15.421Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Date": [ + "Thu, 20 Jul 2023 08:55:20 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "3314" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -33,11 +9480,11 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Server": [ + "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -45,43 +9492,43 @@ "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:57 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:55:21 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ - "881" + "180" ] }, "body": { - "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n },\n {\n \"id\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"name\": \"Copy of Original\",\n \"createdTime\": \"2023-06-08T22:14:42.294Z\",\n \"modifiedTime\": \"2023-06-08T22:14:44.589Z\"\n },\n {\n \"id\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"name\": \"Original\",\n \"createdTime\": \"2023-06-08T22:14:39.098Z\",\n \"modifiedTime\": \"2023-06-08T22:14:40.257Z\"\n },\n {\n \"id\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"name\": \"Test CellTest test_define_named_range\",\n \"createdTime\": \"2023-06-05T18:43:51.436Z\",\n \"modifiedTime\": \"2023-06-05T18:43:51.451Z\"\n }\n ]\n}\n" + "string": "{\n \"id\": \"1aCqM40VcTkd7j5xDvkb8Hk9dUE7CeJq5OVcuAdunWr0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T14:21:18.187Z\",\n \"modifiedTime\": \"2023-06-28T14:21:18.207Z\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -99,6 +9546,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -110,8 +9560,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -121,40 +9574,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:58 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:55:21 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3314" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -172,6 +9622,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -183,51 +9636,55 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:58 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:55:21 GMT" ], - "Cache-Control": [ - "private" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ - "3314" + "180" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0\",\n \"properties\": {\n \"title\": \"Copy of Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10OtpnT26BSu7gQXQ9i40KnFz9v1I7Uw45a5tWi2ERC0/edit\"\n}\n" + "string": "{\n \"id\": \"1ktNfKWFKPFBd_Fwy9j48-fr6C3QlCWjPTo_9sMhGQYU\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:47:09.254Z\",\n \"modifiedTime\": \"2023-06-28T13:47:10.351Z\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -245,6 +9702,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -256,8 +9716,11 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -267,40 +9730,37 @@ "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:58 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:55:21 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ - "3306" + "3314" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4\",\n \"properties\": {\n \"title\": \"Original\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1WHyUBJiywPezW058EYSWxTUcFbRt4vYXdK9doKKcAQ4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -318,6 +9778,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -329,51 +9792,55 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:58 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:55:22 GMT" ], - "Cache-Control": [ - "private" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ - "3335" + "180" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q\",\n \"properties\": {\n \"title\": \"Test CellTest test_define_named_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/15zA0K92D9MeMll5h9tYu9bjH1OEzIakqsY0gLrrAF9Q/edit\"\n}\n" + "string": "{\n \"id\": \"1RWtIaZxrB69bLzANJjQ41riJMsNvmBYrfd3AcneNyrw\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-28T13:33:40.960Z\",\n \"modifiedTime\": \"2023-06-28T13:33:40.973Z\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files?q=mimeType%3D%22application%2Fvnd.google-apps.spreadsheet%22+and+name+%3D+%22Test+Spreadsheet%22&pageSize=1000&supportsAllDrives=True&includeItemsFromAllDrives=True&fields=kind%2CnextPageToken%2Cfiles%28id%2Cname%2CcreatedTime%2CmodifiedTime%29", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -391,6 +9858,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -402,55 +9872,51 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Server": [ + "ESF" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ - "Origin, X-Origin" + "Origin", + "X-Origin", + "Referer" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:59 GMT" + "Transfer-Encoding": [ + "chunked" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:55:22 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ - "253" + "3314" ] }, "body": { - "string": "{\n \"kind\": \"drive#fileList\",\n \"files\": [\n {\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -468,6 +9934,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -479,44 +9948,48 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "X-XSS-Protection": [ "0" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Transfer-Encoding": [ + "chunked" ], - "Date": [ - "Thu, 08 Jun 2023 22:14:59 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Thu, 20 Jul 2023 08:55:22 GMT" ], - "Cache-Control": [ - "private" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "content-length": [ - "3314" + "180" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"properties\": {\n \"title\": \"Test Spreadsheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0/edit\"\n}\n" + "string": "{\n \"id\": \"1K8Iq726KShj-AK-oy35ZyCj2lgUYP0j2O1umNraSaB0\",\n \"name\": \"Test Spreadsheet\",\n \"createdTime\": \"2023-06-08T22:14:46.788Z\",\n \"modifiedTime\": \"2023-06-08T22:14:46.805Z\"\n}\n" } } } diff --git a/tests/cassettes/SpreadsheetTest.test_add_del_worksheet.json b/tests/cassettes/SpreadsheetTest.test_add_del_worksheet.json index bded70b19..16287c244 100644 --- a/tests/cassettes/SpreadsheetTest.test_add_del_worksheet.json +++ b/tests/cassettes/SpreadsheetTest.test_add_del_worksheet.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "110" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Wed, 09 Aug 2023 19:33:56 GMT" + ], "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-XSS-Protection": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], - "Date": [ - "Thu, 08 Jun 2023 22:15:03 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Server": [ + "ESF" ], "content-length": [ "197" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"name\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"name\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,31 +122,14 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Date": [ - "Thu, 08 Jun 2023 22:15:03 GMT" + "Wed, 09 Aug 2023 19:33:57 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -148,19 +137,36 @@ "Cache-Control": [ "private" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "ESF" + ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,52 +198,56 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Wed, 09 Aug 2023 19:33:57 GMT" + ], "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Origin, X-Origin" ], - "Server": [ - "ESF" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "X-XSS-Protection": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], - "Date": [ - "Thu, 08 Jun 2023 22:15:03 GMT" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "Server": [ + "ESF" ], "content-length": [ - "3341" + "207" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA/edit\"\n}\n" + "string": "{\n \"id\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"name\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"createdTime\": \"2023-08-09T19:33:54.965Z\",\n \"modifiedTime\": \"2023-08-09T19:33:54.983Z\"\n}\n" } } }, { "request": { - "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA:batchUpdate", - "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 1\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false", + "body": null, "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -251,11 +264,8 @@ "x-goog-api-client": [ "cred-type/sa" ], - "Content-Length": [ - "157" - ], - "Content-Type": [ - "application/json" + "x-identity-trust-boundary": [ + "0" ], "authorization": [ "" @@ -268,31 +278,14 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Date": [ - "Thu, 08 Jun 2023 22:15:04 GMT" + "Wed, 09 Aug 2023 19:33:57 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -300,20 +293,37 @@ "Cache-Control": [ "private" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "ESF" + ], "content-length": [ - "393" + "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 69994548,\n \"title\": \"test_add_del_worksheet 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA:batchUpdate", - "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 2\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", + "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 1\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -330,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "157" ], @@ -347,31 +360,14 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Date": [ - "Thu, 08 Jun 2023 22:15:04 GMT" + "Wed, 09 Aug 2023 19:33:58 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -379,20 +375,37 @@ "Cache-Control": [ "private" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "ESF" + ], "content-length": [ - "393" + "395" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 16730616,\n \"title\": \"test_add_del_worksheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1877059582,\n \"title\": \"test_add_del_worksheet 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA?includeGridData=false", - "body": null, + "method": "POST", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", + "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 2\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -409,6 +422,15 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "157" + ], + "Content-Type": [ + "application/json" + ], "authorization": [ "" ] @@ -420,31 +442,14 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Server": [ - "ESF" - ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Date": [ - "Thu, 08 Jun 2023 22:15:04 GMT" + "Wed, 09 Aug 2023 19:33:58 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -452,20 +457,37 @@ "Cache-Control": [ "private" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "ESF" + ], "content-length": [ - "3853" + "394" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 69994548,\n \"title\": \"test_add_del_worksheet 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 16730616,\n \"title\": \"test_add_del_worksheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 580173816,\n \"title\": \"test_add_del_worksheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA:batchUpdate", - "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 69994548}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", + "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_add_del_worksheet 3\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 1, \"columnCount\": 1}}}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -482,8 +504,11 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ - "54" + "157" ], "Content-Type": [ "application/json" @@ -499,31 +524,90 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Wed, 09 Aug 2023 19:33:58 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "content-length": [ + "395" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1396229743,\n \"title\": \"test_add_del_worksheet 3\",\n \"index\": 3,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n }\n ]\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "Date": [ - "Thu, 08 Jun 2023 22:15:04 GMT" + "Wed, 09 Aug 2023 19:33:59 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -531,20 +615,37 @@ "Cache-Control": [ "private" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "ESF" + ], "content-length": [ - "97" + "4114" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1877059582,\n \"title\": \"test_add_del_worksheet 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 580173816,\n \"title\": \"test_add_del_worksheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1396229743,\n \"title\": \"test_add_del_worksheet 3\",\n \"index\": 3,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1,\n \"columnCount\": 1\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA:batchUpdate", - "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 16730616}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", + "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 1877059582}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -561,8 +662,11 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ - "54" + "56" ], "Content-Type": [ "application/json" @@ -578,31 +682,96 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Wed, 09 Aug 2023 19:33:59 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "content-length": [ + "97" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {}\n ]\n}\n" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", + "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 580173816}}]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Length": [ + "55" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" ], "Date": [ - "Thu, 08 Jun 2023 22:15:05 GMT" + "Wed, 09 Aug 2023 19:33:59 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -610,20 +779,37 @@ "Cache-Control": [ "private" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "ESF" + ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { - "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA?includeGridData=false", - "body": null, + "method": "POST", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI:batchUpdate", + "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 1396229743}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -640,6 +826,15 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "56" + ], + "Content-Type": [ + "application/json" + ], "authorization": [ "" ] @@ -651,31 +846,90 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], "Content-Type": [ "application/json; charset=UTF-8" ], + "X-XSS-Protection": [ + "0" + ], + "Date": [ + "Wed, 09 Aug 2023 19:33:59 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Transfer-Encoding": [ + "chunked" + ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "content-length": [ + "97" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"replies\": [\n {}\n ]\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "Date": [ - "Thu, 08 Jun 2023 22:15:05 GMT" + "Wed, 09 Aug 2023 19:34:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -683,19 +937,36 @@ "Cache-Control": [ "private" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Server": [ + "ESF" + ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_add_del_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1lTDOBYGOoI8N0avxVNCJ93NuMFC3PkzPaN78snqlsXA?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/18q2vbKBaujo2mlHN6mzGFyKkOI4k03FUxpKj2retQJI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -713,6 +984,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -727,41 +1001,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Type": [ "text/html" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Vary": [ - "Origin, X-Origin" + "Date": [ + "Wed, 09 Aug 2023 19:34:00 GMT" ], - "Server": [ - "ESF" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "X-XSS-Protection": [ - "0" + "X-Frame-Options": [ + "SAMEORIGIN" ], "X-Content-Type-Options": [ "nosniff" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Content-Length": [ + "0" ], - "Date": [ - "Thu, 08 Jun 2023 22:15:06 GMT" + "Pragma": [ + "no-cache" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Vary": [ + "Origin, X-Origin" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Server": [ + "ESF" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_get_updated_time.json b/tests/cassettes/SpreadsheetTest.test_creationTime_prop.json similarity index 65% rename from tests/cassettes/SpreadsheetTest.test_get_updated_time.json rename to tests/cassettes/SpreadsheetTest.test_creationTime_prop.json index 3c2e449a6..815f9db24 100644 --- a/tests/cassettes/SpreadsheetTest.test_get_updated_time.json +++ b/tests/cassettes/SpreadsheetTest.test_creationTime_prop.json @@ -5,7 +5,7 @@ "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Test SpreadsheetTest test_get_updated_time\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "body": "{\"name\": \"Test SpreadsheetTest test_creationTime_prop\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -22,8 +22,11 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ - "109" + "110" ], "Content-Type": [ "application/json" @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { + "Pragma": [ + "no-cache" + ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], + "X-XSS-Protection": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Date": [ + "Tue, 08 Aug 2023 12:38:58 GMT" + ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:08 GMT" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "content-length": [ - "196" + "197" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1TT0_0EiSAfDRl8HClRxJPFiuqA4KTsFCMOXfxfLmymE\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E\",\n \"name\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TT0_0EiSAfDRl8HClRxJPFiuqA4KTsFCMOXfxfLmymE?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,31 +122,25 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-XSS-Protection": [ + "0" ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" + "Date": [ + "Tue, 08 Aug 2023 12:38:59 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Transfer-Encoding": [ + "chunked" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Content-Type": [ + "application/json; charset=UTF-8" ], - "Date": [ - "Thu, 08 Jun 2023 22:15:09 GMT" + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -148,19 +148,25 @@ "Cache-Control": [ "private" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "content-length": [ - "3340" + "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1TT0_0EiSAfDRl8HClRxJPFiuqA4KTsFCMOXfxfLmymE\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_updated_time\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TT0_0EiSAfDRl8HClRxJPFiuqA4KTsFCMOXfxfLmymE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1TT0_0EiSAfDRl8HClRxJPFiuqA4KTsFCMOXfxfLmymE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://www.googleapis.com/drive/v3/files/1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,55 +198,55 @@ "message": "OK" }, "headers": { + "Pragma": [ + "no-cache" + ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], + "X-XSS-Protection": [ + "0" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Date": [ + "Tue, 08 Aug 2023 12:39:00 GMT" + ], "Transfer-Encoding": [ "chunked" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" - ], - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:09 GMT" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "content-length": [ - "206" + "207" ] }, "body": { - "string": "{\n \"id\": \"1TT0_0EiSAfDRl8HClRxJPFiuqA4KTsFCMOXfxfLmymE\",\n \"name\": \"Test SpreadsheetTest test_get_updated_time\",\n \"createdTime\": \"2023-06-08T22:15:06.270Z\",\n \"modifiedTime\": \"2023-06-08T22:15:07.602Z\"\n}\n" + "string": "{\n \"id\": \"1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E\",\n \"name\": \"Test SpreadsheetTest test_creationTime_prop\",\n \"createdTime\": \"2023-08-08T12:38:56.973Z\",\n \"modifiedTime\": \"2023-08-08T12:38:57.752Z\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1TT0_0EiSAfDRl8HClRxJPFiuqA4KTsFCMOXfxfLmymE?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1U6fMIS3rMPQGI64eYeM2uctpeH-CoHngX-y0JWvOW0E?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -255,6 +264,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -269,41 +281,41 @@ "message": "No Content" }, "headers": { + "Pragma": [ + "no-cache" + ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], "Vary": [ "Origin, X-Origin" ], + "Date": [ + "Tue, 08 Aug 2023 12:39:00 GMT" + ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Pragma": [ - "no-cache" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:10 GMT" - ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_get_lastUpdateTime.json b/tests/cassettes/SpreadsheetTest.test_get_lastUpdateTime.json new file mode 100644 index 000000000..06d344862 --- /dev/null +++ b/tests/cassettes/SpreadsheetTest.test_get_lastUpdateTime.json @@ -0,0 +1,569 @@ +{ + "version": 1, + "interactions": [ + { + "request": { + "method": "POST", + "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", + "body": "{\"name\": \"Test SpreadsheetTest test_get_lastUpdateTime\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "111" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Tue, 25 Jul 2023 15:38:46 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "content-length": [ + "198" + ] + }, + "body": { + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4\",\n \"name\": \"Test SpreadsheetTest test_get_lastUpdateTime\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Tue, 25 Jul 2023 15:38:46 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "content-length": [ + "3342" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_lastUpdateTime\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Tue, 25 Jul 2023 15:38:47 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "content-length": [ + "208" + ] + }, + "body": { + "string": "{\n \"id\": \"1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4\",\n \"name\": \"Test SpreadsheetTest test_get_lastUpdateTime\",\n \"createdTime\": \"2023-07-25T15:38:42.709Z\",\n \"modifiedTime\": \"2023-07-25T15:38:42.729Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Tue, 25 Jul 2023 15:38:47 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "content-length": [ + "208" + ] + }, + "body": { + "string": "{\n \"id\": \"1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4\",\n \"name\": \"Test SpreadsheetTest test_get_lastUpdateTime\",\n \"createdTime\": \"2023-07-25T15:38:42.709Z\",\n \"modifiedTime\": \"2023-07-25T15:38:42.729Z\"\n}\n" + } + } + }, + { + "request": { + "method": "POST", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4:batchUpdate", + "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"title\": \"\\ud83c\\udf8a Updated Title #123 \\ud83c\\udf89\"}, \"fields\": \"title\"}}]}", + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "141" + ], + "Content-Type": [ + "application/json" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Tue, 25 Jul 2023 15:38:48 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "content-length": [ + "97" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4\",\n \"replies\": [\n {}\n ]\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Date": [ + "Tue, 25 Jul 2023 15:38:48 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "content-length": [ + "192" + ] + }, + "body": { + "string": "{\n \"id\": \"1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4\",\n \"name\": \"\ud83c\udf8a Updated Title #123 \ud83c\udf89\",\n \"createdTime\": \"2023-07-25T15:38:42.709Z\",\n \"modifiedTime\": \"2023-07-25T15:38:47.647Z\"\n}\n" + } + } + }, + { + "request": { + "method": "DELETE", + "uri": "https://www.googleapis.com/drive/v3/files/1ab9-dYej5iCT63LmFOyX9Ozbtbzo61rxKrjzdi2AYo4?supportsAllDrives=True", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "Content-Length": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 204, + "message": "No Content" + }, + "headers": { + "Date": [ + "Tue, 25 Jul 2023 15:38:49 GMT" + ], + "Content-Type": [ + "text/html" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" + ], + "Content-Length": [ + "0" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Pragma": [ + "no-cache" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ] + }, + "body": { + "string": "" + } + } + } + ] +} diff --git a/tests/cassettes/SpreadsheetTest.test_get_worksheet.json b/tests/cassettes/SpreadsheetTest.test_get_worksheet.json index 0e6201768..334af32fa 100644 --- a/tests/cassettes/SpreadsheetTest.test_get_worksheet.json +++ b/tests/cassettes/SpreadsheetTest.test_get_worksheet.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "106" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:38:52 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Pragma": [ - "no-cache" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], - "Date": [ - "Thu, 08 Jun 2023 22:15:12 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "193" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:38:52 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:13 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,31 +198,97 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:38:53 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "X-Frame-Options": [ "SAMEORIGIN" ], + "content-length": [ + "203" + ] + }, + "body": { + "string": "{\n \"id\": \"1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet\",\n \"createdTime\": \"2023-07-25T15:38:50.176Z\",\n \"modifiedTime\": \"2023-07-25T15:38:51.006Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Date": [ - "Thu, 08 Jun 2023 22:15:13 GMT" + "Tue, 25 Jul 2023 15:38:53 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -221,19 +296,33 @@ "Cache-Control": [ "private" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1QSkTF_0QGJgfYeugfqfzqgQOOiz-I4l7MbY-qDCpj9c?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1PcpO3jtZlKNOmpeaqTVdQWuGqvxBW4n7KtRu73KhsC4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,41 +357,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Tue, 25 Jul 2023 15:38:54 GMT" ], "Content-Type": [ "text/html" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:14 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Frame-Options": [ + "SAMEORIGIN" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_get_worksheet_by_id.json b/tests/cassettes/SpreadsheetTest.test_get_worksheet_by_id.json index 272225ab0..d1f5cfa36 100644 --- a/tests/cassettes/SpreadsheetTest.test_get_worksheet_by_id.json +++ b/tests/cassettes/SpreadsheetTest.test_get_worksheet_by_id.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "112" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Wed, 09 Aug 2023 19:17:57 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "Transfer-Encoding": [ "chunked" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" - ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:17 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Pragma": [ + "no-cache" ], "content-length": [ "199" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,19 +122,31 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Wed, 09 Aug 2023 19:17:58 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "X-XSS-Protection": [ "0" @@ -136,31 +154,99 @@ "X-Content-Type-Options": [ "nosniff" ], + "content-length": [ + "3343" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:15:18 GMT" + "Wed, 09 Aug 2023 19:17:58 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin, X-Origin" + ], "Cache-Control": [ - "private" + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-XSS-Protection": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" ], "content-length": [ - "3343" + "209" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc/edit\"\n}\n" + "string": "{\n \"id\": \"1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I\",\n \"name\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"createdTime\": \"2023-08-09T19:17:55.684Z\",\n \"modifiedTime\": \"2023-08-09T19:17:55.702Z\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -178,6 +264,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,19 +278,31 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Wed, 09 Aug 2023 19:17:59 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Server": [ - "ESF" + "Cache-Control": [ + "private" ], "X-XSS-Protection": [ "0" @@ -209,31 +310,95 @@ "X-Content-Type-Options": [ "nosniff" ], + "content-length": [ + "3343" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:15:18 GMT" + "Wed, 09 Aug 2023 19:17:59 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "Transfer-Encoding": [ + "chunked" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], "Cache-Control": [ "private" ], + "X-XSS-Protection": [ + "0" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "content-length": [ "3343" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_get_worksheet_by_id\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1i_y_g5IO9Wuqt5F9z6DKtt8tn60zVkjjVKsaDS9aulc?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1jpzjRnRdwSfOpaEZl154V2bXuY28qze0YREG6qCJZ_I?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -251,6 +416,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,8 +433,11 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Wed, 09 Aug 2023 19:18:00 GMT" ], "Content-Type": [ "text/html" @@ -274,11 +445,20 @@ "Content-Length": [ "0" ], + "Server": [ + "ESF" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "Vary": [ "Origin, X-Origin" ], - "Server": [ - "ESF" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-XSS-Protection": [ "0" @@ -288,18 +468,6 @@ ], "Pragma": [ "no-cache" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:19 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_refresh_lastUpdateTime.json b/tests/cassettes/SpreadsheetTest.test_lastUpdateTime_prop.json similarity index 70% rename from tests/cassettes/SpreadsheetTest.test_refresh_lastUpdateTime.json rename to tests/cassettes/SpreadsheetTest.test_lastUpdateTime_prop.json index d74e68508..bacdfc78b 100644 --- a/tests/cassettes/SpreadsheetTest.test_refresh_lastUpdateTime.json +++ b/tests/cassettes/SpreadsheetTest.test_lastUpdateTime_prop.json @@ -5,7 +5,7 @@ "request": { "method": "POST", "uri": "https://www.googleapis.com/drive/v3/files?supportsAllDrives=True", - "body": "{\"name\": \"Test SpreadsheetTest test_refresh_lastUpdateTime\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", + "body": "{\"name\": \"Test SpreadsheetTest test_lastUpdateTime_prop\", \"mimeType\": \"application/vnd.google-apps.spreadsheet\"}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -22,8 +22,11 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ - "115" + "112" ], "Content-Type": [ "application/json" @@ -39,8 +42,20 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Tue, 25 Jul 2023 15:39:02 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" @@ -48,46 +63,34 @@ "X-Content-Type-Options": [ "nosniff" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Date": [ - "Wed, 21 Jun 2023 12:22:10 GMT" + "Vary": [ + "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], - "X-XSS-Protection": [ - "0" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "ESF" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "content-length": [ - "202" + "199" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM\",\n \"name\": \"Test SpreadsheetTest test_refresh_lastUpdateTime\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\",\n \"name\": \"Test SpreadsheetTest test_lastUpdateTime_prop\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Date": [ - "Wed, 21 Jun 2023 12:22:11 GMT" + "Tue, 25 Jul 2023 15:39:02 GMT" ], - "Transfer-Encoding": [ - "chunked" + "Content-Type": [ + "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Server": [ "ESF" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ - "3346" + "3343" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_refresh_lastUpdateTime\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_lastUpdateTime_prop\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://www.googleapis.com/drive/v3/files/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,8 +198,20 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Tue, 25 Jul 2023 15:39:03 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" @@ -198,46 +219,34 @@ "X-Content-Type-Options": [ "nosniff" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Date": [ - "Wed, 21 Jun 2023 12:22:11 GMT" + "Vary": [ + "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], - "X-XSS-Protection": [ - "0" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "ESF" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "content-length": [ - "212" + "209" ] }, "body": { - "string": "{\n \"id\": \"1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM\",\n \"name\": \"Test SpreadsheetTest test_refresh_lastUpdateTime\",\n \"createdTime\": \"2023-06-21T12:22:08.913Z\",\n \"modifiedTime\": \"2023-06-21T12:22:08.925Z\"\n}\n" + "string": "{\n \"id\": \"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\",\n \"name\": \"Test SpreadsheetTest test_lastUpdateTime_prop\",\n \"createdTime\": \"2023-07-25T15:38:59.768Z\",\n \"modifiedTime\": \"2023-07-25T15:39:00.952Z\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"title\": \"\\ud83c\\udf8a Updated Title #123 \\ud83c\\udf89\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ @@ -255,6 +264,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "141" ], @@ -272,51 +284,51 @@ "message": "OK" }, "headers": { - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Date": [ - "Wed, 21 Jun 2023 12:22:12 GMT" + "Tue, 25 Jul 2023 15:39:04 GMT" ], - "Transfer-Encoding": [ - "chunked" + "Content-Type": [ + "application/json; charset=UTF-8" ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], "Server": [ "ESF" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://www.googleapis.com/drive/v3/files/1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "uri": "https://www.googleapis.com/drive/v3/files/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -334,6 +346,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -345,8 +360,20 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Tue, 25 Jul 2023 15:39:04 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" @@ -354,46 +381,34 @@ "X-Content-Type-Options": [ "nosniff" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Pragma": [ + "no-cache" ], - "Date": [ - "Wed, 21 Jun 2023 12:22:12 GMT" + "Vary": [ + "Origin, X-Origin" ], "Transfer-Encoding": [ "chunked" ], - "X-XSS-Protection": [ - "0" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Pragma": [ - "no-cache" - ], - "Server": [ - "ESF" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"id\": \"1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM\",\n \"name\": \"\ud83c\udf8a Updated Title #123 \ud83c\udf89\",\n \"createdTime\": \"2023-06-21T12:22:08.913Z\",\n \"modifiedTime\": \"2023-06-21T12:22:11.818Z\"\n}\n" + "string": "{\n \"id\": \"1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY\",\n \"name\": \"\ud83c\udf8a Updated Title #123 \ud83c\udf89\",\n \"createdTime\": \"2023-07-25T15:38:59.768Z\",\n \"modifiedTime\": \"2023-07-25T15:39:03.767Z\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1NrDyOIM0oSj993mf-ErkG5Nc3DM7EojnHCinzNOcKMM?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1t7XL0RyoW8MOxx15O0pLm-DK4fj1xhZeunM9ThbcgvY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -411,6 +426,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -425,41 +443,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], "Date": [ - "Wed, 21 Jun 2023 12:22:12 GMT" + "Tue, 25 Jul 2023 15:39:05 GMT" + ], + "Content-Type": [ + "text/html" ], "X-XSS-Protection": [ "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Pragma": [ - "no-cache" - ], "Server": [ "ESF" ], "Content-Length": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], "Vary": [ "Origin, X-Origin" ], - "Content-Type": [ - "text/html" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_properties.json b/tests/cassettes/SpreadsheetTest.test_properties.json index b0bb7b2fe..4efda6cec 100644 --- a/tests/cassettes/SpreadsheetTest.test_properties.json +++ b/tests/cassettes/SpreadsheetTest.test_properties.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "103" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:08 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Pragma": [ - "no-cache" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], - "Date": [ - "Thu, 08 Jun 2023 22:15:21 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "190" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1oDrzuEu491Ydfe3wzKQ2mlmUah5l5stEy2IhWIE7B7E\",\n \"name\": \"Test SpreadsheetTest test_properties\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw\",\n \"name\": \"Test SpreadsheetTest test_properties\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oDrzuEu491Ydfe3wzKQ2mlmUah5l5stEy2IhWIE7B7E?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:09 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], + "content-length": [ + "3334" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Date": [ - "Thu, 08 Jun 2023 22:15:22 GMT" + "Tue, 25 Jul 2023 15:39:09 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ - "private" + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ - "3334" + "200" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1oDrzuEu491Ydfe3wzKQ2mlmUah5l5stEy2IhWIE7B7E\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_properties\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oDrzuEu491Ydfe3wzKQ2mlmUah5l5stEy2IhWIE7B7E/edit\"\n}\n" + "string": "{\n \"id\": \"1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw\",\n \"name\": \"Test SpreadsheetTest test_properties\",\n \"createdTime\": \"2023-07-25T15:39:05.858Z\",\n \"modifiedTime\": \"2023-07-25T15:39:06.869Z\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1oDrzuEu491Ydfe3wzKQ2mlmUah5l5stEy2IhWIE7B7E?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1eKokod-R-Gc6ta54IaknBzzTq0PiqQLNrX0nFCzg7xw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -178,6 +264,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -192,41 +281,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Tue, 25 Jul 2023 15:39:10 GMT" ], "Content-Type": [ "text/html" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:22 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Frame-Options": [ + "SAMEORIGIN" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_sheet1.json b/tests/cassettes/SpreadsheetTest.test_sheet1.json index 119725a80..ec836122f 100644 --- a/tests/cassettes/SpreadsheetTest.test_sheet1.json +++ b/tests/cassettes/SpreadsheetTest.test_sheet1.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "99" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:12 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Pragma": [ - "no-cache" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], - "Date": [ - "Thu, 08 Jun 2023 22:15:25 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "186" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c\",\n \"name\": \"Test SpreadsheetTest test_sheet1\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco\",\n \"name\": \"Test SpreadsheetTest test_sheet1\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:13 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:25 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "3330" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_sheet1\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_sheet1\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,31 +198,97 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:13 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "X-Frame-Options": [ "SAMEORIGIN" ], + "content-length": [ + "196" + ] + }, + "body": { + "string": "{\n \"id\": \"1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco\",\n \"name\": \"Test SpreadsheetTest test_sheet1\",\n \"createdTime\": \"2023-07-25T15:39:10.728Z\",\n \"modifiedTime\": \"2023-07-25T15:39:11.628Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Date": [ - "Thu, 08 Jun 2023 22:15:26 GMT" + "Tue, 25 Jul 2023 15:39:13 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -221,19 +296,33 @@ "Cache-Control": [ "private" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "content-length": [ "3330" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_sheet1\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_sheet1\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1SxClUsMgfHrYRZRvBPYIhxcoR9sy5-F7BOSQxYByp3c?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1slH5-Gv0HboK5bpoaGOB64wJgRISvfWAwVAWVNXVtco?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,41 +357,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Tue, 25 Jul 2023 15:39:14 GMT" ], "Content-Type": [ "text/html" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:27 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Frame-Options": [ + "SAMEORIGIN" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_timezone_and_locale.json b/tests/cassettes/SpreadsheetTest.test_timezone_and_locale.json index 3aced3d29..89bb4a7ba 100644 --- a/tests/cassettes/SpreadsheetTest.test_timezone_and_locale.json +++ b/tests/cassettes/SpreadsheetTest.test_timezone_and_locale.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "112" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:18 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Pragma": [ - "no-cache" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], - "Date": [ - "Thu, 08 Jun 2023 22:15:30 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "199" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg\",\n \"name\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"name\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:19 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], + "content-length": [ + "3343" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Date": [ - "Thu, 08 Jun 2023 22:15:30 GMT" + "Tue, 25 Jul 2023 15:39:19 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ - "private" + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ - "3343" + "209" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg/edit\"\n}\n" + "string": "{\n \"id\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"name\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"createdTime\": \"2023-07-25T15:39:15.028Z\",\n \"modifiedTime\": \"2023-07-25T15:39:15.047Z\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"timeZone\": \"Europe/Paris\"}, \"fields\": \"timeZone\"}}]}", "headers": { "User-Agent": [ @@ -178,6 +264,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "115" ], @@ -195,51 +284,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:19 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:31 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"locale\": \"fr_FR\"}, \"fields\": \"locale\"}}]}", "headers": { "User-Agent": [ @@ -257,6 +346,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "104" ], @@ -274,51 +366,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:20 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:31 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -336,6 +428,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -347,51 +442,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:20 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:31 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "3348" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"locale\": \"fr_FR\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Europe/Paris\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_timezone_and_locale\",\n \"locale\": \"fr_FR\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Europe/Paris\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1EB6J0lPnLdaqqEWrLgWT_8uLIFCFBPqbx5JU2PePysg?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1vwqpkfNt7J-d9frHRQo8oRnJS_goGp1OfzHdZIhtDh4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -409,6 +504,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -423,41 +521,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Tue, 25 Jul 2023 15:39:21 GMT" ], "Content-Type": [ "text/html" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:32 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Frame-Options": [ + "SAMEORIGIN" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_update_title.json b/tests/cassettes/SpreadsheetTest.test_update_title.json index 5addf452a..bc409dd0c 100644 --- a/tests/cassettes/SpreadsheetTest.test_update_title.json +++ b/tests/cassettes/SpreadsheetTest.test_update_title.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "105" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:24 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Pragma": [ - "no-cache" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], - "Date": [ - "Thu, 08 Jun 2023 22:15:35 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ\",\n \"name\": \"Test SpreadsheetTest test_update_title\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\",\n \"name\": \"Test SpreadsheetTest test_update_title\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:26 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], + "content-length": [ + "3336" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Date": [ - "Thu, 08 Jun 2023 22:15:35 GMT" + "Tue, 25 Jul 2023 15:39:27 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ - "private" + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ - "3336" + "202" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ/edit\"\n}\n" + "string": "{\n \"id\": \"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\",\n \"name\": \"Test SpreadsheetTest test_update_title\",\n \"createdTime\": \"2023-07-25T15:39:21.917Z\",\n \"modifiedTime\": \"2023-07-25T15:39:23.094Z\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0:batchUpdate", "body": "{\"requests\": [{\"updateSpreadsheetProperties\": {\"properties\": {\"title\": \"\\ud83c\\udf8a Updated Title #123 \\ud83c\\udf89\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ @@ -178,6 +264,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "141" ], @@ -195,51 +284,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:28 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:36 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -257,6 +346,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -268,51 +360,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:28 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:36 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "3326" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ\",\n \"properties\": {\n \"title\": \"\ud83c\udf8a Updated Title #123 \ud83c\udf89\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0\",\n \"properties\": {\n \"title\": \"\ud83c\udf8a Updated Title #123 \ud83c\udf89\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1vjAFAT2OMQqpdii7CIRjjchodURjtSC7HijvgzI07VQ?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1-ek65VEEn8kdxntoyvxN28IoPzrJixO6SU1RCASJly0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -330,6 +422,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -344,41 +439,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Tue, 25 Jul 2023 15:39:29 GMT" ], "Content-Type": [ "text/html" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:37 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Frame-Options": [ + "SAMEORIGIN" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_values_batch_get.json b/tests/cassettes/SpreadsheetTest.test_values_batch_get.json index cfb7727fe..a726a4e63 100644 --- a/tests/cassettes/SpreadsheetTest.test_values_batch_get.json +++ b/tests/cassettes/SpreadsheetTest.test_values_batch_get.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "109" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:31 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Pragma": [ - "no-cache" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], - "Date": [ - "Thu, 08 Jun 2023 22:15:39 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "196" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk\",\n \"name\": \"Test SpreadsheetTest test_values_batch_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"name\": \"Test SpreadsheetTest test_values_batch_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:32 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], + "content-length": [ + "3340" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_values_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Date": [ - "Thu, 08 Jun 2023 22:15:40 GMT" + "Tue, 25 Jul 2023 15:39:32 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ - "private" + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ - "3340" + "206" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_values_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk/edit\"\n}\n" + "string": "{\n \"id\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"name\": \"Test SpreadsheetTest test_values_batch_get\",\n \"createdTime\": \"2023-07-25T15:39:29.463Z\",\n \"modifiedTime\": \"2023-07-25T15:39:30.504Z\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"\\ud83c\\udf35 test_values_batch_get 1\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 10, \"columnCount\": 10}}}}]}", "headers": { "User-Agent": [ @@ -178,6 +264,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "171" ], @@ -195,51 +284,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:33 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:40 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "400" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 569607092,\n \"title\": \"\ud83c\udf35 test_values_batch_get 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 10,\n \"columnCount\": 10\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 901015854,\n \"title\": \"\ud83c\udf35 test_values_batch_get 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 10,\n \"columnCount\": 10\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk/values/%F0%9F%8C%B5%20test_values_batch_get%201%21A1?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g/values/%F0%9F%8C%B5%20test_values_batch_get%201%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"\\ud83c\\udf47\", \"\\ud83c\\udf49\", \"\\ud83c\\udf4b\"], [\"\\ud83c\\udf50\", \"\\ud83c\\udf4e\", \"\\ud83c\\udf53\"]]}", "headers": { "User-Agent": [ @@ -257,6 +346,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "112" ], @@ -274,51 +366,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:33 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:40 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk\",\n \"updatedRange\": \"'\ud83c\udf35 test_values_batch_get 1'!A1:C2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 3,\n \"updatedCells\": 6\n}\n" + "string": "{\n \"spreadsheetId\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"updatedRange\": \"'\ud83c\udf35 test_values_batch_get 1'!A1:C2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 3,\n \"updatedCells\": 6\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk/values:batchGet?ranges=%F0%9F%8C%B5+test_values_batch_get+1%21A%3AA&ranges=%F0%9F%8C%B5+test_values_batch_get+1%21B%3AB&ranges=%F0%9F%8C%B5+test_values_batch_get+1%21C%3AC", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g/values:batchGet?ranges=%F0%9F%8C%B5+test_values_batch_get+1%21A%3AA&ranges=%F0%9F%8C%B5+test_values_batch_get+1%21B%3AB&ranges=%F0%9F%8C%B5+test_values_batch_get+1%21C%3AC", "body": null, "headers": { "User-Agent": [ @@ -336,6 +428,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -347,52 +442,52 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:33 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:41 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "699" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk\",\n \"valueRanges\": [\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!A1:A10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf47\"\n ],\n [\n \"\ud83c\udf50\"\n ]\n ]\n },\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!B1:B10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf49\"\n ],\n [\n \"\ud83c\udf4e\"\n ]\n ]\n },\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!C1:C10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf4b\"\n ],\n [\n \"\ud83c\udf53\"\n ]\n ]\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"valueRanges\": [\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!A1:A10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf47\"\n ],\n [\n \"\ud83c\udf50\"\n ]\n ]\n },\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!B1:B10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf49\"\n ],\n [\n \"\ud83c\udf4e\"\n ]\n ]\n },\n {\n \"range\": \"'\ud83c\udf35 test_values_batch_get 1'!C1:C10\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"\ud83c\udf4b\"\n ],\n [\n \"\ud83c\udf53\"\n ]\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk:batchUpdate", - "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 569607092}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g:batchUpdate", + "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 901015854}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -409,6 +504,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "55" ], @@ -426,51 +524,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:34 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:41 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1Dy5DaVKjTG8gEr-0jRErt7cfOfp69Je62AR3AsEpWfk?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1yXHRaUTFlGV-Axis4vLHtoPvGUj3C_-awA_5sLK8k6g?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -488,6 +586,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -502,41 +603,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Tue, 25 Jul 2023 15:39:34 GMT" ], "Content-Type": [ "text/html" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:41 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Frame-Options": [ + "SAMEORIGIN" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_values_get.json b/tests/cassettes/SpreadsheetTest.test_values_get.json index 83439deef..20b38fd21 100644 --- a/tests/cassettes/SpreadsheetTest.test_values_get.json +++ b/tests/cassettes/SpreadsheetTest.test_values_get.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "103" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:37 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Pragma": [ - "no-cache" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], - "Date": [ - "Thu, 08 Jun 2023 22:15:45 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "190" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg\",\n \"name\": \"Test SpreadsheetTest test_values_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"name\": \"Test SpreadsheetTest test_values_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:38 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], + "content-length": [ + "3334" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_values_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Date": [ - "Thu, 08 Jun 2023 22:15:45 GMT" + "Tue, 25 Jul 2023 15:39:38 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ - "private" + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Pragma": [ + "no-cache" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ - "3334" + "200" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_values_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg/edit\"\n}\n" + "string": "{\n \"id\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"name\": \"Test SpreadsheetTest test_values_get\",\n \"createdTime\": \"2023-07-25T15:39:35.653Z\",\n \"modifiedTime\": \"2023-07-25T15:39:36.723Z\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"\\ud83c\\udf35 test_values_get 1\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 10, \"columnCount\": 10}}}}]}", "headers": { "User-Agent": [ @@ -178,6 +264,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "165" ], @@ -195,51 +284,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:39 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:45 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "394" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 129529548,\n \"title\": \"\ud83c\udf35 test_values_get 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 10,\n \"columnCount\": 10\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 463885193,\n \"title\": \"\ud83c\udf35 test_values_get 1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 10,\n \"columnCount\": 10\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg/values/%F0%9F%8C%B5%20test_values_get%201%21A1?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY/values/%F0%9F%8C%B5%20test_values_get%201%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"\\ud83c\\udf47\", \"\\ud83c\\udf49\", \"\\ud83c\\udf4b\"], [\"\\ud83c\\udf50\", \"\\ud83c\\udf4e\", \"\\ud83c\\udf53\"]]}", "headers": { "User-Agent": [ @@ -257,6 +346,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "112" ], @@ -274,51 +366,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:39 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:46 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "186" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg\",\n \"updatedRange\": \"'\ud83c\udf35 test_values_get 1'!A1:C2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 3,\n \"updatedCells\": 6\n}\n" + "string": "{\n \"spreadsheetId\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"updatedRange\": \"'\ud83c\udf35 test_values_get 1'!A1:C2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 3,\n \"updatedCells\": 6\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg/values/%F0%9F%8C%B5%20test_values_get%201", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY/values/%F0%9F%8C%B5%20test_values_get%201", "body": null, "headers": { "User-Agent": [ @@ -336,6 +428,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -347,37 +442,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:40 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:46 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "203" @@ -391,8 +486,8 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg:batchUpdate", - "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 129529548}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY:batchUpdate", + "body": "{\"requests\": [{\"deleteSheet\": {\"sheetId\": 463885193}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -409,6 +504,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "55" ], @@ -426,51 +524,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:40 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:46 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/13EyZqt2wfFM05lEEJ6ZMZG23b1CYGGxEiin3LAJgQRg?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1HVDGFSRVMTRJbo2n8Vh7TZt7EGFBLOdyNGk1Zb8H_SY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -488,6 +586,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -502,41 +603,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Tue, 25 Jul 2023 15:39:41 GMT" ], "Content-Type": [ "text/html" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:47 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Frame-Options": [ + "SAMEORIGIN" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_worksheet.json b/tests/cassettes/SpreadsheetTest.test_worksheet.json index 21b26648d..3bd5441c6 100644 --- a/tests/cassettes/SpreadsheetTest.test_worksheet.json +++ b/tests/cassettes/SpreadsheetTest.test_worksheet.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "102" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:43 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Pragma": [ - "no-cache" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], - "Date": [ - "Thu, 08 Jun 2023 22:15:50 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "189" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M\",\n \"name\": \"Test SpreadsheetTest test_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug\",\n \"name\": \"Test SpreadsheetTest test_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:44 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:51 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,31 +198,97 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:44 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "X-Frame-Options": [ "SAMEORIGIN" ], + "content-length": [ + "199" + ] + }, + "body": { + "string": "{\n \"id\": \"1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug\",\n \"name\": \"Test SpreadsheetTest test_worksheet\",\n \"createdTime\": \"2023-07-25T15:39:41.672Z\",\n \"modifiedTime\": \"2023-07-25T15:39:42.568Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Date": [ - "Thu, 08 Jun 2023 22:15:51 GMT" + "Tue, 25 Jul 2023 15:39:44 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -221,19 +296,33 @@ "Cache-Control": [ "private" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1sLS6ERErzKT4g7Nh2Uh_vYJBVkN2hoP0WCVsF_JAF-M?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1U7NkNVqR5We1wqv35ms70g-4Os5Btv2C-sWfQ1noMug?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,41 +357,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Tue, 25 Jul 2023 15:39:45 GMT" ], "Content-Type": [ "text/html" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:52 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Frame-Options": [ + "SAMEORIGIN" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_worksheet_iteration.json b/tests/cassettes/SpreadsheetTest.test_worksheet_iteration.json index 145b166a7..4ee18cd8d 100644 --- a/tests/cassettes/SpreadsheetTest.test_worksheet_iteration.json +++ b/tests/cassettes/SpreadsheetTest.test_worksheet_iteration.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "112" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:48 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Pragma": [ - "no-cache" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], - "Date": [ - "Thu, 08 Jun 2023 22:15:54 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "199" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0\",\n \"name\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk\",\n \"name\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:49 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:54 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "3343" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,55 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:49 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], - "Date": [ - "Thu, 08 Jun 2023 22:15:54 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ - "3343" + "209" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0/edit\"\n}\n" + "string": "{\n \"id\": \"1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk\",\n \"name\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"createdTime\": \"2023-07-25T15:39:46.079Z\",\n \"modifiedTime\": \"2023-07-25T15:39:47.295Z\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -251,6 +264,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -262,31 +278,93 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:49 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], + "content-length": [ + "3343" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Date": [ - "Thu, 08 Jun 2023 22:15:55 GMT" + "Tue, 25 Jul 2023 15:39:49 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -294,19 +372,33 @@ "Cache-Control": [ "private" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "content-length": [ "3343" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheet_iteration\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1DIkbkkjDvjYNLI5lUrs-DYJSdDBqQbnbOBMWG--NKH0?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1NfnP3_UrvKOEKTLjmHFz4bL6psgu5FjezHPHqFAm4qk?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -324,6 +416,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -338,41 +433,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Tue, 25 Jul 2023 15:39:50 GMT" ], "Content-Type": [ "text/html" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:55 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Frame-Options": [ + "SAMEORIGIN" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_worksheets.json b/tests/cassettes/SpreadsheetTest.test_worksheets.json index e5c82a7b7..79410558f 100644 --- a/tests/cassettes/SpreadsheetTest.test_worksheets.json +++ b/tests/cassettes/SpreadsheetTest.test_worksheets.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "103" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:54 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Pragma": [ - "no-cache" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], - "Date": [ - "Thu, 08 Jun 2023 22:15:57 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "190" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4\",\n \"name\": \"Test SpreadsheetTest test_worksheets\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"name\": \"Test SpreadsheetTest test_worksheets\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:55 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:58 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,31 +198,97 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:55 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "X-Frame-Options": [ "SAMEORIGIN" ], + "content-length": [ + "200" + ] + }, + "body": { + "string": "{\n \"id\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"name\": \"Test SpreadsheetTest test_worksheets\",\n \"createdTime\": \"2023-07-25T15:39:51.226Z\",\n \"modifiedTime\": \"2023-07-25T15:39:51.245Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Date": [ - "Thu, 08 Jun 2023 22:15:58 GMT" + "Tue, 25 Jul 2023 15:39:55 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" @@ -221,19 +296,33 @@ "Cache-Control": [ "private" ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"finances\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "145" ], @@ -268,51 +360,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:56 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:58 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "383" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1992618142,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1507121383,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -330,6 +422,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -341,51 +436,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:39:56 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:15:59 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "3580" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1992618142,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1507121383,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/178Sv-KcqivyVYRDzqajKl2jTTVFHJbOCAmdjrSxpFg4?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1bo96CiNSjZv1hODRAzCeVeQJQoxC79XlFQe-g4USLEo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -403,6 +498,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -417,41 +515,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Tue, 25 Jul 2023 15:39:57 GMT" ], "Content-Type": [ "text/html" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:16:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Frame-Options": [ + "SAMEORIGIN" ] }, "body": { diff --git a/tests/cassettes/SpreadsheetTest.test_worksheets_exclude_hidden.json b/tests/cassettes/SpreadsheetTest.test_worksheets_exclude_hidden.json index 5e1bac665..b5d079c0e 100644 --- a/tests/cassettes/SpreadsheetTest.test_worksheets_exclude_hidden.json +++ b/tests/cassettes/SpreadsheetTest.test_worksheets_exclude_hidden.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "118" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:40:01 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Pragma": [ - "no-cache" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "Pragma": [ + "no-cache" ], - "Date": [ - "Thu, 08 Jun 2023 22:16:02 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "205" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0\",\n \"name\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"name\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:40:01 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], + "content-length": [ + "3349" + ] + }, + "body": { + "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw/edit\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://www.googleapis.com/drive/v3/files/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Date": [ - "Thu, 08 Jun 2023 22:16:02 GMT" + "Tue, 25 Jul 2023 15:40:01 GMT" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "X-XSS-Protection": [ + "0" + ], + "Server": [ + "ESF" ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Cache-Control": [ - "private" + "no-cache, no-store, max-age=0, must-revalidate" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Pragma": [ + "no-cache" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ - "3349" + "215" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0/edit\"\n}\n" + "string": "{\n \"id\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"name\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"createdTime\": \"2023-07-25T15:39:57.622Z\",\n \"modifiedTime\": \"2023-07-25T15:39:57.639Z\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"finances\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ @@ -178,6 +264,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "145" ], @@ -195,51 +284,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:40:02 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:16:03 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "383" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1759274710,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1613166149,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"gacha\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ @@ -257,6 +346,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "142" ], @@ -274,52 +366,52 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:40:02 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:16:03 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "379" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 644428873,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 755875121,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0:batchUpdate", - "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 644428873, \"hidden\": true}, \"fields\": \"hidden\"}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw:batchUpdate", + "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 755875121, \"hidden\": true}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -336,6 +428,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "117" ], @@ -353,51 +448,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:40:03 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:16:03 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -415,6 +510,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -426,51 +524,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:40:03 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:16:03 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "3861" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1759274710,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 644428873,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1613166149,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 755875121,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -488,6 +586,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -499,51 +600,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Date": [ + "Tue, 25 Jul 2023 15:40:03 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "X-XSS-Protection": [ + "0" ], "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "private" ], "X-Content-Type-Options": [ "nosniff" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:16:03 GMT" + "Vary": [ + "Origin", + "X-Origin", + "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Transfer-Encoding": [ + "chunked" ], - "Cache-Control": [ - "private" + "X-Frame-Options": [ + "SAMEORIGIN" ], "content-length": [ "3861" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1759274710,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 644428873,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw\",\n \"properties\": {\n \"title\": \"Test SpreadsheetTest test_worksheets_exclude_hidden\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1613166149,\n \"title\": \"finances\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 755875121,\n \"title\": \"gacha\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/12cS9oSO3ce8np3VFKLfKMyDupzu7NdKL8qmiLLOAkT0?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/19SsaJoNCUcVKkbPg7p_tE0GbuR_Nzb-9i-UxNemn1jw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -561,6 +662,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -575,41 +679,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Date": [ + "Tue, 25 Jul 2023 15:40:04 GMT" ], "Content-Type": [ "text/html" ], - "Content-Length": [ + "X-XSS-Protection": [ "0" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], - "X-XSS-Protection": [ + "Content-Length": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], "X-Content-Type-Options": [ "nosniff" ], "Pragma": [ "no-cache" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 08 Jun 2023 22:16:04 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Frame-Options": [ + "SAMEORIGIN" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_acell.json b/tests/cassettes/WorksheetTest.test_acell.json index 96d6a1914..7dd03f88d 100644 --- a/tests/cassettes/WorksheetTest.test_acell.json +++ b/tests/cassettes/WorksheetTest.test_acell.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "96" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:07 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:40:46 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "183" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q\",\n \"name\": \"Test WorksheetTest test_acell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\",\n \"name\": \"Test WorksheetTest test_acell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:08 GMT" + "Tue, 25 Jul 2023 15:40:46 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3327" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:40:46 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "193" + ] + }, + "body": { + "string": "{\n \"id\": \"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\",\n \"name\": \"Test WorksheetTest test_acell\",\n \"createdTime\": \"2023-07-25T15:40:42.854Z\",\n \"modifiedTime\": \"2023-07-25T15:40:42.873Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:08 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:40:47 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3327" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:08 GMT" + "Tue, 25 Jul 2023 15:40:47 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,37 +433,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:08 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:40:47 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "55" @@ -382,7 +477,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1XIf-HG24bHgsOCk4baJrjFmiHZMZp_3EC_LhJW4jg5Q?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1CIKsfS4Dl5NH6zGSlOA3hbfnNElaKnk-64G03TcmAl8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -414,41 +512,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:09 GMT" + "Tue, 25 Jul 2023 15:40:48 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_append_row.json b/tests/cassettes/WorksheetTest.test_append_row.json index d93af8bf1..3d9d1b269 100644 --- a/tests/cassettes/WorksheetTest.test_append_row.json +++ b/tests/cassettes/WorksheetTest.test_append_row.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "101" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:12 GMT" + "Tue, 25 Jul 2023 15:40:52 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "188" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg\",\n \"name\": \"Test WorksheetTest test_append_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"name\": \"Test WorksheetTest test_append_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:12 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:40:52 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:40:53 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "198" + ] + }, + "body": { + "string": "{\n \"id\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"name\": \"Test WorksheetTest test_append_row\",\n \"createdTime\": \"2023-07-25T15:40:49.067Z\",\n \"modifiedTime\": \"2023-07-25T15:40:49.085Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:13 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:40:53 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:13 GMT" + "Tue, 25 Jul 2023 15:40:53 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row 1\", \"test_append_row 2\", \"test_append_row 3\", \"test_append_row 4\", \"test_append_row 5\", \"test_append_row 6\", \"test_append_row 7\", \"test_append_row 8\", \"test_append_row 9\", \"test_append_row 10\"]]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "225" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:13 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:40:54 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "266" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg\",\n \"updates\": {\n \"spreadsheetId\": \"1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg\",\n \"updatedRange\": \"Sheet1!A1:J1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"updates\": {\n \"spreadsheetId\": \"1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0\",\n \"updatedRange\": \"Sheet1!A1:J1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg/values/%27Sheet1%27%21A1%3A1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0/values/%27Sheet1%27%21A1%3A1", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:13 GMT" + "Tue, 25 Jul 2023 15:40:54 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "359" @@ -461,7 +559,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1ew33YoY9qvalPSc0gQ11HZfCzphw2GIOiCWpew2_vYg?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1qFopcWEGi_JqeOGvSs93SyFdsSI8J30NzrX92_HZBR0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -493,41 +594,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:14 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:40:55 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_append_row_with_empty_value.json b/tests/cassettes/WorksheetTest.test_append_row_with_empty_value.json index c7b153a77..4b1ec2995 100644 --- a/tests/cassettes/WorksheetTest.test_append_row_with_empty_value.json +++ b/tests/cassettes/WorksheetTest.test_append_row_with_empty_value.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "118" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:17 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:40:59 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "205" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:17 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:40:59 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3349" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:41:00 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "215" + ] + }, + "body": { + "string": "{\n \"id\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"createdTime\": \"2023-07-25T15:40:55.805Z\",\n \"modifiedTime\": \"2023-07-25T15:40:55.828Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:17 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:00 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3349" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:17 GMT" + "Tue, 25 Jul 2023 15:41:00 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value 1\", \"\", \"test_append_row_with_empty_value 3\"]]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "94" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:18 GMT" + "Tue, 25 Jul 2023 15:41:00 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "264" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"updates\": {\n \"spreadsheetId\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"updatedRange\": \"Sheet1!A1:C1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"updates\": {\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"updatedRange\": \"Sheet1!A1:C1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value 1\", \"\", \"test_append_row_with_empty_value 3\"]]}", "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "94" ], @@ -423,51 +521,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:18 GMT" + "Tue, 25 Jul 2023 15:41:01 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "293" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"tableRange\": \"Sheet1!C1\",\n \"updates\": {\n \"spreadsheetId\": \"1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk\",\n \"updatedRange\": \"Sheet1!C2:E2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"tableRange\": \"Sheet1!C1\",\n \"updates\": {\n \"spreadsheetId\": \"1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0\",\n \"updatedRange\": \"Sheet1!C2:E2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk/values/%27Sheet1%27%21A2%3A2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ @@ -485,6 +583,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -496,37 +597,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:18 GMT" + "Tue, 25 Jul 2023 15:41:01 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "206" @@ -540,7 +641,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1Fu9Hvh_pYG6lzr65myJudZpEcByFXZB1nKj5GFFASqk?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1cNWHu1-cVJM0FAmqJH3Pq9NNg29Sgp6jsysikvTkBO0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -572,41 +676,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:19 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:02 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_append_row_with_empty_value_and_table_range.json b/tests/cassettes/WorksheetTest.test_append_row_with_empty_value_and_table_range.json index 55e40c4ea..0c071303d 100644 --- a/tests/cassettes/WorksheetTest.test_append_row_with_empty_value_and_table_range.json +++ b/tests/cassettes/WorksheetTest.test_append_row_with_empty_value_and_table_range.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "134" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:22 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:05 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "221" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:22 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:06 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3365" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:41:06 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "231" + ] + }, + "body": { + "string": "{\n \"id\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"name\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"createdTime\": \"2023-07-25T15:41:02.705Z\",\n \"modifiedTime\": \"2023-07-25T15:41:02.727Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:23 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:06 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3365" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_append_row_with_empty_value_and_table_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:23 GMT" + "Tue, 25 Jul 2023 15:41:07 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value_and_table_range 1\", \"\", \"test_append_row_with_empty_value_and_table_range 3\"]]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "126" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:23 GMT" + "Tue, 25 Jul 2023 15:41:07 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "264" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"updates\": {\n \"spreadsheetId\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"updatedRange\": \"Sheet1!A1:C1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"updates\": {\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"updatedRange\": \"Sheet1!A1:C1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE/values/%27Sheet1%27%21A1:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27%21A1:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_append_row_with_empty_value_and_table_range 1\", \"\", \"test_append_row_with_empty_value_and_table_range 3\"]]}", "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "126" ], @@ -423,51 +521,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:23 GMT" + "Tue, 25 Jul 2023 15:41:07 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "293" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"tableRange\": \"Sheet1!A1\",\n \"updates\": {\n \"spreadsheetId\": \"1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE\",\n \"updatedRange\": \"Sheet1!A2:C2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"tableRange\": \"Sheet1!A1\",\n \"updates\": {\n \"spreadsheetId\": \"1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8\",\n \"updatedRange\": \"Sheet1!A2:C2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n }\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE/values/%27Sheet1%27%21A2%3A2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ @@ -485,6 +583,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -496,37 +597,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:23 GMT" + "Tue, 25 Jul 2023 15:41:07 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "218" @@ -540,7 +641,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1ohg-5zUJ6CMfWeLbR_uq8T-Rkjfd_p_dgr-CD6NobKE?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1vzh-MhnIrux030WxJoVdgHnY38_xq200mityr_IxuH8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -572,41 +676,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:24 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:08 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_auto_resize_columns.json b/tests/cassettes/WorksheetTest.test_auto_resize_columns.json index f74daba27..bd0a6f31e 100644 --- a/tests/cassettes/WorksheetTest.test_auto_resize_columns.json +++ b/tests/cassettes/WorksheetTest.test_auto_resize_columns.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "110" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:26 GMT" + "Tue, 25 Jul 2023 15:41:11 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "197" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ\",\n \"name\": \"Test WorksheetTest test_auto_resize_columns\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"name\": \"Test WorksheetTest test_auto_resize_columns\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:27 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:11 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_auto_resize_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_auto_resize_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:41:12 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "207" + ] + }, + "body": { + "string": "{\n \"id\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"name\": \"Test WorksheetTest test_auto_resize_columns\",\n \"createdTime\": \"2023-07-25T15:41:09.036Z\",\n \"modifiedTime\": \"2023-07-25T15:41:09.826Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:27 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:12 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_auto_resize_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_auto_resize_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:27 GMT" + "Tue, 25 Jul 2023 15:41:12 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA\"]]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "1042" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:27 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:12 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ?fields=sheets.data.columnMetadata", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?fields=sheets.data.columnMetadata", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:28 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:13 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "1679" @@ -461,7 +559,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo:batchUpdate", "body": "{\"requests\": [{\"autoResizeDimensions\": {\"dimensions\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 1}}}]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "128" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:28 GMT" + "Tue, 25 Jul 2023 15:41:13 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ?fields=sheets.data.columnMetadata", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?fields=sheets.data.columnMetadata", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,37 +673,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:28 GMT" + "Tue, 25 Jul 2023 15:41:13 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "1680" @@ -613,7 +717,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1RSBhxFd1aWrlRA-jNWaQ_HJ1rgQJ15oFPlW_8Kuv1cQ?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1SjWaDmq0wyIj9VEuWAR9601SPgZzZ8hiXtJOzZMM7Uo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -645,41 +752,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:29 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:14 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_basic_filters.json b/tests/cassettes/WorksheetTest.test_basic_filters.json index 3ba854cdb..a570ac95c 100644 --- a/tests/cassettes/WorksheetTest.test_basic_filters.json +++ b/tests/cassettes/WorksheetTest.test_basic_filters.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "104" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:32 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:17 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "191" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"name\": \"Test WorksheetTest test_basic_filters\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"name\": \"Test WorksheetTest test_basic_filters\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:32 GMT" + "Tue, 25 Jul 2023 15:41:18 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:41:18 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "201" + ] + }, + "body": { + "string": "{\n \"id\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"name\": \"Test WorksheetTest test_basic_filters\",\n \"createdTime\": \"2023-07-25T15:41:15.414Z\",\n \"modifiedTime\": \"2023-07-25T15:41:16.533Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:32 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:18 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:33 GMT" + "Tue, 25 Jul 2023 15:41:19 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 20, \"columnCount\": 20}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "192" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:33 GMT" + "Tue, 25 Jul 2023 15:41:19 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate", "body": "{\"requests\": [{\"setBasicFilter\": {\"filter\": {\"range\": {\"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "73" ], @@ -423,51 +521,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:33 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:19 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -485,6 +583,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:33 GMT" + "Tue, 25 Jul 2023 15:41:19 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3517" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 20,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 20\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 20,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 20\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate", "body": "{\"requests\": [{\"setBasicFilter\": {\"filter\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 3, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "155" ], @@ -575,51 +679,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:34 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:20 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -637,6 +741,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -648,51 +755,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:34 GMT" + "Tue, 25 Jul 2023 15:41:20 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3515" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate", "body": "{\"requests\": [{\"setBasicFilter\": {\"filter\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 3, \"sheetId\": 0}}}}]}", "headers": { "User-Agent": [ @@ -710,6 +817,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "155" ], @@ -727,51 +837,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:34 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:20 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -789,6 +899,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -800,51 +913,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:34 GMT" + "Tue, 25 Jul 2023 15:41:20 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3515" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n },\n \"basicFilter\": {\n \"range\": {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 1,\n \"endColumnIndex\": 3\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM:batchUpdate", "body": "{\"requests\": [{\"clearBasicFilter\": {\"sheetId\": 0}}]}", "headers": { "User-Agent": [ @@ -862,6 +975,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "52" ], @@ -879,51 +995,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:34 GMT" + "Tue, 25 Jul 2023 15:41:21 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -941,6 +1057,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -952,51 +1071,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:34 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:21 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_basic_filters\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 20,\n \"columnCount\": 20\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/12MEeXvgbp4e_ZZ1XywvHdUNkdKFvSOWkGRpe0tu0HIE?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1_41UgH_SGiG4KVXZq5HNFsZm2M7JHF0NZQ9-8QZFRlM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1014,6 +1133,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -1028,41 +1150,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:35 GMT" + "Tue, 25 Jul 2023 15:41:22 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_batch_clear.json b/tests/cassettes/WorksheetTest.test_batch_clear.json index ebc836549..aca7e7ee4 100644 --- a/tests/cassettes/WorksheetTest.test_batch_clear.json +++ b/tests/cassettes/WorksheetTest.test_batch_clear.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "102" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:38 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:26 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "189" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"name\": \"Test WorksheetTest test_batch_clear\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"name\": \"Test WorksheetTest test_batch_clear\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:38 GMT" + "Tue, 25 Jul 2023 15:41:26 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:41:27 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "199" + ] + }, + "body": { + "string": "{\n \"id\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"name\": \"Test WorksheetTest test_batch_clear\",\n \"createdTime\": \"2023-07-25T15:41:22.745Z\",\n \"modifiedTime\": \"2023-07-25T15:41:22.763Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:38 GMT" + "Tue, 25 Jul 2023 15:41:27 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:39 GMT" + "Tue, 25 Jul 2023 15:41:27 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,51 +433,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:39 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:28 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21A1%3AB1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1", "body": null, "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -411,37 +509,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:39 GMT" + "Tue, 25 Jul 2023 15:41:28 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -455,7 +553,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21C2%3AE2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2", "body": null, "headers": { "User-Agent": [ @@ -473,6 +571,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -484,37 +585,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:39 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:28 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -528,7 +629,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21A1%3AB1?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1?valueInputOption=RAW", "body": "{\"values\": [[\"12345\", \"ThisIsText\"]]}", "headers": { "User-Agent": [ @@ -546,6 +647,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "37" ], @@ -563,51 +667,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:39 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:28 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"updatedRange\": \"Sheet1!A1:B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" + "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"updatedRange\": \"Sheet1!A1:B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21C2%3AE2?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2?valueInputOption=RAW", "body": "{\"values\": [[\"5678\", \"Second\", \"Text\"]]}", "headers": { "User-Agent": [ @@ -625,6 +729,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "40" ], @@ -642,51 +749,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:40 GMT" + "Tue, 25 Jul 2023 15:41:29 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"updatedRange\": \"Sheet1!C2:E2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n}\n" + "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"updatedRange\": \"Sheet1!C2:E2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 3,\n \"updatedCells\": 3\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21A1%3AB1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1", "body": null, "headers": { "User-Agent": [ @@ -704,6 +811,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -715,37 +825,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:40 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:29 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "123" @@ -759,7 +869,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21C2%3AE2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2", "body": null, "headers": { "User-Agent": [ @@ -777,6 +887,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -788,37 +901,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:40 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:29 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "132" @@ -832,7 +945,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values:batchClear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values:batchClear", "body": "{\"ranges\": [\"'Sheet1'!A1:B1\", \"'Sheet1'!C2:E2\"]}", "headers": { "User-Agent": [ @@ -850,6 +963,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "48" ], @@ -867,51 +983,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:40 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:29 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "135" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs\",\n \"clearedRanges\": [\n \"Sheet1!A1:B1\",\n \"Sheet1!C2:E2\"\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4\",\n \"clearedRanges\": [\n \"Sheet1!A1:B1\",\n \"Sheet1!C2:E2\"\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21A1%3AB1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21A1%3AB1", "body": null, "headers": { "User-Agent": [ @@ -929,6 +1045,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -940,37 +1059,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:40 GMT" + "Tue, 25 Jul 2023 15:41:30 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -984,7 +1103,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs/values/%27Sheet1%27%21C2%3AE2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4/values/%27Sheet1%27%21C2%3AE2", "body": null, "headers": { "User-Agent": [ @@ -1002,6 +1121,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -1013,37 +1135,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:41 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:30 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -1057,7 +1179,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1zss-qlngULKqUWSv2Ee6wyu5fGDxDzPUnS9xZSj2rWs?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1hit0UxyZPEXhx5Tw0nEtzqm7B8ilCnC_19tZtsEkKu4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1075,6 +1197,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -1089,41 +1214,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:41 GMT" + "Tue, 25 Jul 2023 15:41:31 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_batch_get.json b/tests/cassettes/WorksheetTest.test_batch_get.json index 274241ad7..8fc420618 100644 --- a/tests/cassettes/WorksheetTest.test_batch_get.json +++ b/tests/cassettes/WorksheetTest.test_batch_get.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "100" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:45 GMT" + "Tue, 25 Jul 2023 15:41:33 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "187" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA\",\n \"name\": \"Test WorksheetTest test_batch_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"name\": \"Test WorksheetTest test_batch_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:45 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:34 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3331" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:41:34 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "197" + ] + }, + "body": { + "string": "{\n \"id\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"name\": \"Test WorksheetTest test_batch_get\",\n \"createdTime\": \"2023-07-25T15:41:31.465Z\",\n \"modifiedTime\": \"2023-07-25T15:41:32.518Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:45 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:34 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3331" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:46 GMT" + "Tue, 25 Jul 2023 15:41:35 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA/values/%27Sheet1%27%21A1?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/values/%27Sheet1%27%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"D4\"]]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "98" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:46 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:35 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA/values:batchGet?ranges=%27Sheet1%27%21A1%3AB1&ranges=%27Sheet1%27%21B4%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo/values:batchGet?ranges=%27Sheet1%27%21A1%3AB1&ranges=%27Sheet1%27%21B4%3AD4", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:46 GMT" + "Tue, 25 Jul 2023 15:41:35 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "413" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA\",\n \"valueRanges\": [\n {\n \"range\": \"Sheet1!A1:B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\"\n ]\n ]\n },\n {\n \"range\": \"Sheet1!B4:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"B4\",\n \"\",\n \"D4\"\n ]\n ]\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo\",\n \"valueRanges\": [\n {\n \"range\": \"Sheet1!A1:B1\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"A1\",\n \"B1\"\n ]\n ]\n },\n {\n \"range\": \"Sheet1!B4:D4\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"B4\",\n \"\",\n \"D4\"\n ]\n ]\n }\n ]\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1CEHJSN7LZA3cpNg96ZzknsQOqejxT3yK0WNSQ0PA9HA?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1aNvNhBanaHVP93PL4xmzA69TyNmTcfv7CUaCkGmwFMo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -493,41 +594,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:47 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:36 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_batch_update.json b/tests/cassettes/WorksheetTest.test_batch_update.json index 2a4661c24..e49602666 100644 --- a/tests/cassettes/WorksheetTest.test_batch_update.json +++ b/tests/cassettes/WorksheetTest.test_batch_update.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "103" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:49 GMT" + "Tue, 25 Jul 2023 15:41:40 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "190" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k\",\n \"name\": \"Test WorksheetTest test_batch_update\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"name\": \"Test WorksheetTest test_batch_update\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:50 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:41 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_update\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_update\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:41:41 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "200" + ] + }, + "body": { + "string": "{\n \"id\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"name\": \"Test WorksheetTest test_batch_update\",\n \"createdTime\": \"2023-07-25T15:41:37.158Z\",\n \"modifiedTime\": \"2023-07-25T15:41:37.181Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:50 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:41 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_update\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_batch_update\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:50 GMT" + "Tue, 25 Jul 2023 15:41:42 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k/values:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/values:batchUpdate", "body": "{\"valueInputOption\": \"RAW\", \"data\": [{\"range\": \"'Sheet1'!A1:D1\", \"values\": [[\"A1\", \"B1\", \"\", \"D1\"]]}, {\"range\": \"'Sheet1'!A4:D4\", \"values\": [[\"A4\", \"B4\", \"\", \"D4\"]]}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "167" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:50 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:42 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "591" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k\",\n \"totalUpdatedRows\": 2,\n \"totalUpdatedColumns\": 4,\n \"totalUpdatedCells\": 8,\n \"totalUpdatedSheets\": 1,\n \"responses\": [\n {\n \"spreadsheetId\": \"1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k\",\n \"updatedRange\": \"Sheet1!A1:D1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 4,\n \"updatedCells\": 4\n },\n {\n \"spreadsheetId\": \"1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k\",\n \"updatedRange\": \"Sheet1!A4:D4\",\n \"updatedRows\": 1,\n \"updatedColumns\": 4,\n \"updatedCells\": 4\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"totalUpdatedRows\": 2,\n \"totalUpdatedColumns\": 4,\n \"totalUpdatedCells\": 8,\n \"totalUpdatedSheets\": 1,\n \"responses\": [\n {\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"updatedRange\": \"Sheet1!A1:D1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 4,\n \"updatedCells\": 4\n },\n {\n \"spreadsheetId\": \"16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w\",\n \"updatedRange\": \"Sheet1!A4:D4\",\n \"updatedRows\": 1,\n \"updatedColumns\": 4,\n \"updatedCells\": 4\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k/values/%27Sheet1%27%21A1%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:51 GMT" + "Tue, 25 Jul 2023 15:41:42 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "208" @@ -461,7 +559,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1hOUHgh-r6XLJHzXK2BvPHiVUZs3xifqcoUnWE6SNk0k?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/16LuFWBK_SJz0B1rKNlcuRCJqj6_GbXsshAU9JPnHW3w?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -493,41 +594,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:51 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:43 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_cell.json b/tests/cassettes/WorksheetTest.test_cell.json index 20dcd722d..8716ea69e 100644 --- a/tests/cassettes/WorksheetTest.test_cell.json +++ b/tests/cassettes/WorksheetTest.test_cell.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "95" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:53 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:46 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "182" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww\",\n \"name\": \"Test WorksheetTest test_cell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\",\n \"name\": \"Test WorksheetTest test_cell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:54 GMT" + "Tue, 25 Jul 2023 15:41:46 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3326" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:41:47 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "192" + ] + }, + "body": { + "string": "{\n \"id\": \"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\",\n \"name\": \"Test WorksheetTest test_cell\",\n \"createdTime\": \"2023-07-25T15:41:43.827Z\",\n \"modifiedTime\": \"2023-07-25T15:41:45.109Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:54 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:47 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3326" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:54 GMT" + "Tue, 25 Jul 2023 15:41:47 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,37 +433,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:55 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:48 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "55" @@ -382,7 +477,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1dMEi05O7JFUC85M0YnI7KQqHQZemFCeMbLqauMfT5ww?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/17fA7JO8Eq98Vm1d1uc5PE_yvuH802DwB_jxNGpgf9tc?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -414,41 +512,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:55 GMT" + "Tue, 25 Jul 2023 15:41:48 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_clear.json b/tests/cassettes/WorksheetTest.test_clear.json index 10d91ad22..3ae418cfd 100644 --- a/tests/cassettes/WorksheetTest.test_clear.json +++ b/tests/cassettes/WorksheetTest.test_clear.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "96" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:59 GMT" + "Tue, 25 Jul 2023 15:41:51 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "183" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo\",\n \"name\": \"Test WorksheetTest test_clear\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"name\": \"Test WorksheetTest test_clear\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:59 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:52 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3327" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:41:52 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "193" + ] + }, + "body": { + "string": "{\n \"id\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"name\": \"Test WorksheetTest test_clear\",\n \"createdTime\": \"2023-07-25T15:41:49.215Z\",\n \"modifiedTime\": \"2023-07-25T15:41:50.205Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:59 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:52 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3327" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:16:59 GMT" + "Tue, 25 Jul 2023 15:41:52 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,37 +433,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:53 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -382,7 +477,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A1\", \"B1\", \"\", \"D1\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]]}", "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "131" ], @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:53 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" + "string": "{\n \"spreadsheetId\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -493,51 +594,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:00 GMT" + "Tue, 25 Jul 2023 15:41:53 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -555,6 +656,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -566,37 +670,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:00 GMT" + "Tue, 25 Jul 2023 15:41:53 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "61" @@ -610,7 +714,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1mbzAeZtmk5CKAhNx1m7OC3fsHs83wYswoBLk4KmnVIo?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1-cggo46qjMCKSmGDfOcz4G-JoY10rGkQD-MvnrnEdac?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -628,6 +732,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -642,41 +749,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:01 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:54 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_clear_tab_color.json b/tests/cassettes/WorksheetTest.test_clear_tab_color.json index 5197e78f2..24c2e4420 100644 --- a/tests/cassettes/WorksheetTest.test_clear_tab_color.json +++ b/tests/cassettes/WorksheetTest.test_clear_tab_color.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "106" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:04 GMT" + "Tue, 25 Jul 2023 15:41:57 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "193" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0\",\n \"name\": \"Test WorksheetTest test_clear_tab_color\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"name\": \"Test WorksheetTest test_clear_tab_color\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:04 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:58 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:41:58 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "203" + ] + }, + "body": { + "string": "{\n \"id\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"name\": \"Test WorksheetTest test_clear_tab_color\",\n \"createdTime\": \"2023-07-25T15:41:55.358Z\",\n \"modifiedTime\": \"2023-07-25T15:41:56.179Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:04 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:58 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_clear_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:05 GMT" + "Tue, 25 Jul 2023 15:41:59 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0?fields=sheets.properties.tabColorStyle", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,37 +433,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:05 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:59 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "57" @@ -382,7 +477,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"tabColorStyle\": {\"rgbColor\": {\"red\": 1, \"green\": 0, \"blue\": 0.5}}}, \"fields\": \"tabColorStyle\"}}]}", "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "168" ], @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:05 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:41:59 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"tabColorStyle\": {\"rgbColor\": null}}, \"fields\": \"tabColorStyle\"}}]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "137" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:05 GMT" + "Tue, 25 Jul 2023 15:41:59 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0?fields=sheets.properties.tabColorStyle", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,37 +673,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:06 GMT" + "Tue, 25 Jul 2023 15:42:00 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "57" @@ -613,7 +717,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1qukqnSmCbUy6mpFu_HvvyYyyacLlGk6gb9P_v8QoKh0?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1lsHcQzRDrKnbu36Bgsx60HRSC00RExUHYDnWylZ1Zes?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -645,41 +752,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:06 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:00 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_copy_cut_range.json b/tests/cassettes/WorksheetTest.test_copy_cut_range.json index 56dff26a4..0b97245c5 100644 --- a/tests/cassettes/WorksheetTest.test_copy_cut_range.json +++ b/tests/cassettes/WorksheetTest.test_copy_cut_range.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "105" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:10 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:03 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8\",\n \"name\": \"Test WorksheetTest test_copy_cut_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"name\": \"Test WorksheetTest test_copy_cut_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:10 GMT" + "Tue, 25 Jul 2023 15:42:04 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_copy_cut_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_copy_cut_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:42:04 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "202" + ] + }, + "body": { + "string": "{\n \"id\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"name\": \"Test WorksheetTest test_copy_cut_range\",\n \"createdTime\": \"2023-07-25T15:42:01.377Z\",\n \"modifiedTime\": \"2023-07-25T15:42:02.547Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:11 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:05 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_copy_cut_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_copy_cut_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:11 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:05 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8/values/%27Sheet1%27%21A1%3AA2?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21A1%3AA2?valueInputOption=RAW", "body": "{\"values\": [[\"A1\"], [\"A2\"]]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "28" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:11 GMT" + "Tue, 25 Jul 2023 15:42:05 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8\",\n \"updatedRange\": \"Sheet1!A1:A2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 1,\n \"updatedCells\": 2\n}\n" + "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"updatedRange\": \"Sheet1!A1:A2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 1,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A:batchUpdate", "body": "{\"requests\": [{\"copyPaste\": {\"source\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"destination\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 0}, \"pasteType\": \"PASTE_NORMAL\", \"pasteOrientation\": \"NORMAL\"}}]}", "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "311" ], @@ -423,51 +521,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:12 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:06 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8/values/%27Sheet1%27%21B1%3AB2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21B1%3AB2", "body": null, "headers": { "User-Agent": [ @@ -485,6 +583,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -496,37 +597,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:12 GMT" + "Tue, 25 Jul 2023 15:42:06 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "124" @@ -540,7 +641,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A:batchUpdate", "body": "{\"requests\": [{\"cutPaste\": {\"source\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"destination\": {\"sheetId\": 0, \"rowIndex\": 0, \"columnIndex\": 2}, \"pasteType\": \"PASTE_NORMAL\"}}]}", "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "231" ], @@ -575,51 +679,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:12 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:06 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8/values/%27Sheet1%27%21A1%3AA2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21A1%3AA2", "body": null, "headers": { "User-Agent": [ @@ -637,6 +741,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -648,37 +755,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:12 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:06 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -692,7 +799,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8/values/%27Sheet1%27%21C1%3AC2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A/values/%27Sheet1%27%21C1%3AC2", "body": null, "headers": { "User-Agent": [ @@ -710,6 +817,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -721,37 +831,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:12 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:07 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "124" @@ -765,7 +875,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/13XPIu03a7WgSeVcAehS-wpZvoDqhSiC6GwI8zavF-B8?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1HVQlPR_3LiayFoNAyfSLU56sueAOTsdvyMjZwEupw9A?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -783,6 +893,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -797,41 +910,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:13 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:07 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_delete_cols.json b/tests/cassettes/WorksheetTest.test_delete_cols.json index f8fa020b0..8d403461c 100644 --- a/tests/cassettes/WorksheetTest.test_delete_cols.json +++ b/tests/cassettes/WorksheetTest.test_delete_cols.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "102" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Vary": [ "Origin, X-Origin" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Transfer-Encoding": [ - "chunked" + "Server": [ + "ESF" ], "Pragma": [ "no-cache" ], + "X-XSS-Protection": [ + "0" + ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Date": [ - "Fri, 16 Jun 2023 00:04:25 GMT" + "Tue, 25 Jul 2023 15:42:11 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "189" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo\",\n \"name\": \"Test WorksheetTest test_delete_cols\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"name\": \"Test WorksheetTest test_delete_cols\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Date": [ - "Fri, 16 Jun 2023 00:04:26 GMT" + "Tue, 25 Jul 2023 15:42:11 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Tue, 25 Jul 2023 15:42:12 GMT" + ], "X-Content-Type-Options": [ "nosniff" ], + "content-length": [ + "199" + ] + }, + "body": { + "string": "{\n \"id\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"name\": \"Test WorksheetTest test_delete_cols\",\n \"createdTime\": \"2023-07-25T15:42:08.250Z\",\n \"modifiedTime\": \"2023-07-25T15:42:08.268Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Cache-Control": [ + "private" + ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Date": [ - "Fri, 16 Jun 2023 00:04:26 GMT" + "Tue, 25 Jul 2023 15:42:12 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Date": [ - "Fri, 16 Jun 2023 00:04:26 GMT" + "Tue, 25 Jul 2023 15:42:12 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,37 +433,37 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Date": [ - "Fri, 16 Jun 2023 00:04:26 GMT" + "Tue, 25 Jul 2023 15:42:12 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -382,7 +477,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_delete_cols 1\", \"test_delete_cols 2\", \"test_delete_cols 3\", \"test_delete_cols 4\"], [\"test_delete_cols 5\", \"test_delete_cols 6\", \"test_delete_cols 7\", \"test_delete_cols 8\"], [\"test_delete_cols 9\", \"test_delete_cols 10\", \"test_delete_cols 11\", \"test_delete_cols 12\"], [\"test_delete_cols 13\", \"test_delete_cols 14\", \"test_delete_cols 15\", \"test_delete_cols 16\"], [\"test_delete_cols 17\", \"test_delete_cols 18\", \"test_delete_cols 19\", \"test_delete_cols 20\"], [\"test_delete_cols 21\", \"test_delete_cols 22\", \"test_delete_cols 23\", \"test_delete_cols 24\"]]}", "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "567" ], @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Date": [ - "Fri, 16 Jun 2023 00:04:26 GMT" + "Tue, 25 Jul 2023 15:42:13 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" + "string": "{\n \"spreadsheetId\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -490,37 +591,37 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Date": [ - "Fri, 16 Jun 2023 00:04:27 GMT" + "Tue, 25 Jul 2023 15:42:13 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "265" @@ -534,7 +635,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/values/%27Sheet1%27%21D1%3AD?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21D1%3AD?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ @@ -552,6 +653,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -563,37 +667,37 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Date": [ - "Fri, 16 Jun 2023 00:04:27 GMT" + "Tue, 25 Jul 2023 15:42:13 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "266" @@ -607,7 +711,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM:batchUpdate", "body": "{\"requests\": [{\"deleteDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 1, \"endIndex\": 3}}}]}", "headers": { "User-Agent": [ @@ -625,6 +729,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "118" ], @@ -642,51 +749,51 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Date": [ - "Fri, 16 Jun 2023 00:04:27 GMT" + "Tue, 25 Jul 2023 15:42:13 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21A1%3AA?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ @@ -704,6 +811,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -715,37 +825,37 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Date": [ - "Fri, 16 Jun 2023 00:04:27 GMT" + "Tue, 25 Jul 2023 15:42:14 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "265" @@ -759,7 +869,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ @@ -777,6 +887,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -788,37 +901,37 @@ "message": "OK" }, "headers": { - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], "Date": [ - "Fri, 16 Jun 2023 00:04:27 GMT" + "Tue, 25 Jul 2023 15:42:14 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "266" @@ -832,7 +945,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1mazop98FvsmlRnhdapep3d0UgMkiADzWsRd4gSUHuWo?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1bgUJ2fP-8mhCT9pDg9CaRJY-zpYPKTZDG6mhXF62MSM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -850,6 +963,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -864,41 +980,41 @@ "message": "No Content" }, "headers": { - "Server": [ - "ESF" - ], - "X-XSS-Protection": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Content-Type": [ "text/html" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Server": [ + "ESF" ], "Pragma": [ "no-cache" ], + "X-XSS-Protection": [ + "0" + ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Date": [ - "Fri, 16 Jun 2023 00:04:28 GMT" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Content-Length": [ "0" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:42:15 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_delete_row.json b/tests/cassettes/WorksheetTest.test_delete_row.json index baa98f211..9339744db 100644 --- a/tests/cassettes/WorksheetTest.test_delete_row.json +++ b/tests/cassettes/WorksheetTest.test_delete_row.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "101" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:17 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:18 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "188" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"name\": \"Test WorksheetTest test_delete_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"name\": \"Test WorksheetTest test_delete_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:17 GMT" + "Tue, 25 Jul 2023 15:42:18 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:42:19 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "198" + ] + }, + "body": { + "string": "{\n \"id\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"name\": \"Test WorksheetTest test_delete_row\",\n \"createdTime\": \"2023-07-25T15:42:15.538Z\",\n \"modifiedTime\": \"2023-07-25T15:42:16.861Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:17 GMT" + "Tue, 25 Jul 2023 15:42:19 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_delete_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:17 GMT" + "Tue, 25 Jul 2023 15:42:19 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 1\", \"test_delete_row 2\", \"test_delete_row 3\", \"test_delete_row 4\", \"test_delete_row 5\", \"test_delete_row 6\", \"test_delete_row 7\", \"test_delete_row 8\", \"test_delete_row 9\", \"test_delete_row 10\"]]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "225" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:18 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:20 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "266" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"updates\": {\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"updatedRange\": \"Sheet1!A1:J1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updates\": {\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updatedRange\": \"Sheet1!A1:J1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 11\", \"test_delete_row 12\", \"test_delete_row 13\", \"test_delete_row 14\", \"test_delete_row 15\", \"test_delete_row 16\", \"test_delete_row 17\", \"test_delete_row 18\", \"test_delete_row 19\", \"test_delete_row 20\"]]}", "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "234" ], @@ -423,51 +521,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:18 GMT" + "Tue, 25 Jul 2023 15:42:20 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "298" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"tableRange\": \"Sheet1!A1:J1\",\n \"updates\": {\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"updatedRange\": \"Sheet1!A2:J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"tableRange\": \"Sheet1!A1:J1\",\n \"updates\": {\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updatedRange\": \"Sheet1!A2:J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 21\", \"test_delete_row 22\", \"test_delete_row 23\", \"test_delete_row 24\", \"test_delete_row 25\", \"test_delete_row 26\", \"test_delete_row 27\", \"test_delete_row 28\", \"test_delete_row 29\", \"test_delete_row 30\"]]}", "headers": { "User-Agent": [ @@ -485,6 +583,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "234" ], @@ -502,51 +603,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:18 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:20 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "298" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"tableRange\": \"Sheet1!A1:J2\",\n \"updates\": {\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"updatedRange\": \"Sheet1!A3:J3\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"tableRange\": \"Sheet1!A1:J2\",\n \"updates\": {\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updatedRange\": \"Sheet1!A3:J3\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 31\", \"test_delete_row 32\", \"test_delete_row 33\", \"test_delete_row 34\", \"test_delete_row 35\", \"test_delete_row 36\", \"test_delete_row 37\", \"test_delete_row 38\", \"test_delete_row 39\", \"test_delete_row 40\"]]}", "headers": { "User-Agent": [ @@ -564,6 +665,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "234" ], @@ -581,51 +685,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:18 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:21 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "298" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"tableRange\": \"Sheet1!A1:J3\",\n \"updates\": {\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"updatedRange\": \"Sheet1!A4:J4\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"tableRange\": \"Sheet1!A1:J3\",\n \"updates\": {\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updatedRange\": \"Sheet1!A4:J4\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27:append?valueInputOption=RAW&includeValuesInResponse=False", "body": "{\"values\": [[\"test_delete_row 41\", \"test_delete_row 42\", \"test_delete_row 43\", \"test_delete_row 44\", \"test_delete_row 45\", \"test_delete_row 46\", \"test_delete_row 47\", \"test_delete_row 48\", \"test_delete_row 49\", \"test_delete_row 50\"]]}", "headers": { "User-Agent": [ @@ -643,6 +747,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "234" ], @@ -660,51 +767,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:18 GMT" + "Tue, 25 Jul 2023 15:42:21 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "298" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"tableRange\": \"Sheet1!A1:J4\",\n \"updates\": {\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"updatedRange\": \"Sheet1!A5:J5\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"tableRange\": \"Sheet1!A1:J4\",\n \"updates\": {\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"updatedRange\": \"Sheet1!A5:J5\",\n \"updatedRows\": 1,\n \"updatedColumns\": 10,\n \"updatedCells\": 10\n }\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27%21A1%3A1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A1%3A1", "body": null, "headers": { "User-Agent": [ @@ -722,6 +829,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -733,37 +843,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:19 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:21 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "359" @@ -777,7 +887,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27%21A3%3A3", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A3%3A3", "body": null, "headers": { "User-Agent": [ @@ -795,6 +905,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -806,37 +919,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:19 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:22 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "368" @@ -850,7 +963,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE:batchUpdate", "body": "{\"requests\": [{\"deleteDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 1, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ @@ -868,6 +981,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "115" ], @@ -885,51 +1001,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:19 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:22 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27%21A1%3A1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A1%3A1", "body": null, "headers": { "User-Agent": [ @@ -947,6 +1063,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -958,37 +1077,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:19 GMT" + "Tue, 25 Jul 2023 15:42:22 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "359" @@ -1002,7 +1121,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4/values/%27Sheet1%27%21A2%3A2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ @@ -1020,6 +1139,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -1031,37 +1153,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:19 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:22 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "368" @@ -1075,7 +1197,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1axeNq-9brkqU-3Oguj3u5YF0Frv1l_xLEwC6U7l0cR4?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1c-HWYy2UzJky4NkI2VA6t5dZw-e5JOIfKYg-JK7jXsE?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1093,6 +1215,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -1107,41 +1232,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:20 GMT" + "Tue, 25 Jul 2023 15:42:23 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_find.json b/tests/cassettes/WorksheetTest.test_find.json index 833a257f8..f7eca46b3 100644 --- a/tests/cassettes/WorksheetTest.test_find.json +++ b/tests/cassettes/WorksheetTest.test_find.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "95" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:24 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:26 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "182" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"name\": \"Test WorksheetTest test_find\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"name\": \"Test WorksheetTest test_find\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:24 GMT" + "Tue, 25 Jul 2023 15:42:27 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3326" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_find\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_find\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:42:27 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "192" + ] + }, + "body": { + "string": "{\n \"id\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"name\": \"Test WorksheetTest test_find\",\n \"createdTime\": \"2023-07-25T15:42:24.315Z\",\n \"modifiedTime\": \"2023-07-25T15:42:25.389Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:24 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:27 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3326" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_find\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_find\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:25 GMT" + "Tue, 25 Jul 2023 15:42:28 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_find 1\"]]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "29" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:25 GMT" + "Tue, 25 Jul 2023 15:42:28 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"updatedRange\": \"Sheet1!J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"updatedRange\": \"Sheet1!J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_find 1\"]]}", "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "29" ], @@ -423,51 +521,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:25 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:28 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -485,6 +583,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -496,37 +597,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:25 GMT" + "Tue, 25 Jul 2023 15:42:29 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "231" @@ -540,7 +641,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_find 1o_Otest_find 2\"]]}", "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "43" ], @@ -575,51 +679,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:25 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:29 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -637,6 +741,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -648,37 +755,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:26 GMT" + "Tue, 25 Jul 2023 15:42:29 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "245" @@ -692,7 +799,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -710,6 +817,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -721,37 +831,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:26 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:29 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "245" @@ -765,7 +875,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21J2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"camelcase\"]]}", "headers": { "User-Agent": [ @@ -783,6 +893,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "27" ], @@ -800,51 +913,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:26 GMT" + "Tue, 25 Jul 2023 15:42:30 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"updatedRange\": \"Sheet1!J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"updatedRange\": \"Sheet1!J2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27%21K2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"CamelCase\"]]}", "headers": { "User-Agent": [ @@ -862,6 +975,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "27" ], @@ -879,51 +995,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:26 GMT" + "Tue, 25 Jul 2023 15:42:30 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A\",\n \"updatedRange\": \"Sheet1!K2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -941,6 +1057,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -952,37 +1071,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:26 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:30 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "227" @@ -996,7 +1115,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/17JtnaE6tGOHCQz8N2leiUw8M9mem24zWFyxvdz-Z0ng?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1OTHN1HmHhOJ2pfNKmADYflaXj4PtF27xUknxtODBZ0A?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1014,6 +1133,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -1028,41 +1150,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:27 GMT" + "Tue, 25 Jul 2023 15:42:31 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_findall.json b/tests/cassettes/WorksheetTest.test_findall.json index 8f64281e8..5491a1f71 100644 --- a/tests/cassettes/WorksheetTest.test_findall.json +++ b/tests/cassettes/WorksheetTest.test_findall.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "98" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:30 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:34 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "185" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA\",\n \"name\": \"Test WorksheetTest test_findall\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"name\": \"Test WorksheetTest test_findall\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:31 GMT" + "Tue, 25 Jul 2023 15:42:34 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3329" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_findall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_findall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:42:35 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "195" + ] + }, + "body": { + "string": "{\n \"id\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"name\": \"Test WorksheetTest test_findall\",\n \"createdTime\": \"2023-07-25T15:42:32.272Z\",\n \"modifiedTime\": \"2023-07-25T15:42:33.028Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:31 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:35 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3329" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_findall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_findall\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:31 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:35 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/values/%27Sheet1%27%21A1%3AA10", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,37 +433,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:31 GMT" + "Tue, 25 Jul 2023 15:42:35 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "59" @@ -382,7 +477,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", "body": "{\"values\": [[\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"], [\"test_findall 1\"]]}", "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "212" ], @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:31 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:36 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "171" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" + "string": "{\n \"spreadsheetId\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -490,37 +591,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:31 GMT" + "Tue, 25 Jul 2023 15:42:36 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "439" @@ -534,7 +635,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/values/%27Sheet1%27%21A1%3AA10", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ @@ -552,6 +653,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -563,37 +667,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:32 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:36 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "437" @@ -607,8 +711,8 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", - "body": "{\"values\": [[\"test_findall 1p_Ptest_findall 2\"], [\"test_findall 1p_Ptest_findall 2\"], [\"test_findall 1s_Stest_findall 2\"], [\"test_findall 1c_Ctest_findall 2\"], [\"test_findall 1u_Utest_findall 2\"], [\"test_findall 1a_Atest_findall 2\"], [\"test_findall 1m_Mtest_findall 2\"], [\"test_findall 1a_Atest_findall 2\"], [\"test_findall 1g_Gtest_findall 2\"], [\"test_findall 1v_Vtest_findall 2\"]]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", + "body": "{\"values\": [[\"test_findall 1c_Ctest_findall 2\"], [\"test_findall 1t_Ttest_findall 2\"], [\"test_findall 1a_Atest_findall 2\"], [\"test_findall 1i_Itest_findall 2\"], [\"test_findall 1r_Rtest_findall 2\"], [\"test_findall 1u_Utest_findall 2\"], [\"test_findall 1a_Atest_findall 2\"], [\"test_findall 1j_Jtest_findall 2\"], [\"test_findall 1p_Ptest_findall 2\"], [\"test_findall 1w_Wtest_findall 2\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -625,6 +729,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "382" ], @@ -642,51 +749,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:32 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:36 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "171" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" + "string": "{\n \"spreadsheetId\": \"1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -704,6 +811,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -715,51 +825,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:32 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:37 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "609" ] }, "body": { - "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_findall 1p_Ptest_findall 2\"\n ],\n [\n \"test_findall 1p_Ptest_findall 2\"\n ],\n [\n \"test_findall 1s_Stest_findall 2\"\n ],\n [\n \"test_findall 1c_Ctest_findall 2\"\n ],\n [\n \"test_findall 1u_Utest_findall 2\"\n ],\n [\n \"test_findall 1a_Atest_findall 2\"\n ],\n [\n \"test_findall 1m_Mtest_findall 2\"\n ],\n [\n \"test_findall 1a_Atest_findall 2\"\n ],\n [\n \"test_findall 1g_Gtest_findall 2\"\n ],\n [\n \"test_findall 1v_Vtest_findall 2\"\n ]\n ]\n}\n" + "string": "{\n \"range\": \"Sheet1!A1:Z1000\",\n \"majorDimension\": \"ROWS\",\n \"values\": [\n [\n \"test_findall 1c_Ctest_findall 2\"\n ],\n [\n \"test_findall 1t_Ttest_findall 2\"\n ],\n [\n \"test_findall 1a_Atest_findall 2\"\n ],\n [\n \"test_findall 1i_Itest_findall 2\"\n ],\n [\n \"test_findall 1r_Rtest_findall 2\"\n ],\n [\n \"test_findall 1u_Utest_findall 2\"\n ],\n [\n \"test_findall 1a_Atest_findall 2\"\n ],\n [\n \"test_findall 1j_Jtest_findall 2\"\n ],\n [\n \"test_findall 1p_Ptest_findall 2\"\n ],\n [\n \"test_findall 1w_Wtest_findall 2\"\n ]\n ]\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/16wgJjIhaEaXBxXZ9grq0tKZNIMCg_3joybym6RXBLLA?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1Frp2JY6oNQLxQ8oLnq9_zzKnA0r0XTNGe4dxuLnWHz8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -777,6 +887,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -791,41 +904,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:33 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:37 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_format.json b/tests/cassettes/WorksheetTest.test_format.json index e3b5120dd..3aa299d77 100644 --- a/tests/cassettes/WorksheetTest.test_format.json +++ b/tests/cassettes/WorksheetTest.test_format.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "97" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:35 GMT" + "Tue, 25 Jul 2023 15:42:40 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "184" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ\",\n \"name\": \"Test WorksheetTest test_format\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"name\": \"Test WorksheetTest test_format\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:36 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:41 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_format\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_format\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:42:41 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "194" + ] + }, + "body": { + "string": "{\n \"id\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"name\": \"Test WorksheetTest test_format\",\n \"createdTime\": \"2023-07-25T15:42:38.239Z\",\n \"modifiedTime\": \"2023-07-25T15:42:39.345Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:36 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:41 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_format\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_format\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:36 GMT" + "Tue, 25 Jul 2023 15:42:42 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c:batchUpdate", "body": "{\"requests\": [{\"repeatCell\": {\"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}, \"cell\": {\"userEnteredFormat\": {\"backgroundColor\": {\"green\": 1, \"blue\": 1}, \"horizontalAlignment\": \"CENTER\", \"textFormat\": {\"foregroundColor\": {\"red\": 1, \"green\": 1}, \"fontSize\": 12, \"bold\": true}}}, \"fields\": \"userEnteredFormat(backgroundColor,horizontalAlignment,textFormat)\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "417" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:36 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:42 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ?includeGridData=False&ranges=Sheet1%21A2&fields=sheets.data.rowData.values.userEnteredFormat", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?includeGridData=False&ranges=Sheet1%21A2&fields=sheets.data.rowData.values.userEnteredFormat", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:37 GMT" + "Tue, 25 Jul 2023 15:42:42 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "1140" @@ -461,7 +559,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1T81QW3poeRYJqoYvhoNyXlgzFBY1DMckFNPp8eiebkQ?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1awKn0h_79jd4MkbtqPDh-4Rb6UuVHl7oTmQMT69qS6c?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -493,41 +594,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:37 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:43 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_freeze.json b/tests/cassettes/WorksheetTest.test_freeze.json index 3d06a8302..1719b3fb7 100644 --- a/tests/cassettes/WorksheetTest.test_freeze.json +++ b/tests/cassettes/WorksheetTest.test_freeze.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "97" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:40 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:47 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "184" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"name\": \"Test WorksheetTest test_freeze\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"name\": \"Test WorksheetTest test_freeze\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:40 GMT" + "Tue, 25 Jul 2023 15:42:48 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:42:48 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "194" + ] + }, + "body": { + "string": "{\n \"id\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"name\": \"Test WorksheetTest test_freeze\",\n \"createdTime\": \"2023-07-25T15:42:44.454Z\",\n \"modifiedTime\": \"2023-07-25T15:42:44.470Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:40 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:48 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:40 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:49 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"frozenRowCount\": 2}}, \"fields\": \"gridProperties/frozenRowCount\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "157" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:41 GMT" + "Tue, 25 Jul 2023 15:42:49 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:41 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:49 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3359" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"frozenRowCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"frozenRowCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"frozenColumnCount\": 1}}, \"fields\": \"gridProperties/frozenColumnCount\"}}]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "163" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:41 GMT" + "Tue, 25 Jul 2023 15:42:49 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,51 +673,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:41 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:50 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3393" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"frozenRowCount\": 2,\n \"frozenColumnCount\": 1\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"frozenRowCount\": 2,\n \"frozenColumnCount\": 1\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"frozenRowCount\": 0, \"frozenColumnCount\": 0}}, \"fields\": \"gridProperties/frozenRowCount,gridProperties/frozenColumnCount\"}}]}", "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "214" ], @@ -648,51 +755,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:41 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:50 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -710,6 +817,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -721,51 +831,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:42 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:50 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_freeze\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/18ClfZFXW6_9pVkruzvJp5de2bGBF2mLrE2Z4TsbnZQ0?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1gqba42DPLjZnd3D-Or2VL2Hjff0-Fcn5md20vPlVxUI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -783,6 +893,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -797,41 +910,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:42 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:51 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_records.json b/tests/cassettes/WorksheetTest.test_get_all_records.json index a5b46264d..edd6aade4 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_records.json +++ b/tests/cassettes/WorksheetTest.test_get_all_records.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "106" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:45 GMT" + "Tue, 25 Jul 2023 15:42:54 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "193" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E\",\n \"name\": \"Test WorksheetTest test_get_all_records\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI\",\n \"name\": \"Test WorksheetTest test_get_all_records\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:45 GMT" + "Tue, 25 Jul 2023 15:42:55 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:42:55 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "203" + ] + }, + "body": { + "string": "{\n \"id\": \"13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI\",\n \"name\": \"Test WorksheetTest test_get_all_records\",\n \"createdTime\": \"2023-07-25T15:42:52.119Z\",\n \"modifiedTime\": \"2023-07-25T15:42:53.341Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:45 GMT" + "Tue, 25 Jul 2023 15:42:55 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:46 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:56 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "190" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:46 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:56 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/values/%27Sheet1%27%21A1%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:46 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:57 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -461,7 +559,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "95" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:46 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:57 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,37 +673,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:47 GMT" + "Tue, 25 Jul 2023 15:42:57 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "249" @@ -613,7 +717,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -642,37 +749,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:47 GMT" + "Tue, 25 Jul 2023 15:42:57 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "249" @@ -686,7 +793,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -704,6 +811,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -715,37 +825,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:47 GMT" + "Tue, 25 Jul 2023 15:42:58 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "249" @@ -759,7 +869,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -777,6 +887,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -788,37 +901,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:47 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:42:58 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "249" @@ -832,7 +945,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/16hfJWKOUm_CTe6K8vI0_oAT0W-P1I-5AO3f1Kt2Gl7E?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/13QO8VsT5niUWgl7ecexNAI0hRzGTrzdxXVsux6jAHlI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -850,6 +963,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -864,41 +980,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:48 GMT" + "Tue, 25 Jul 2023 15:42:59 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_records_different_header.json b/tests/cassettes/WorksheetTest.test_get_all_records_different_header.json index fbf2affd9..0b8ed7ab7 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_records_different_header.json +++ b/tests/cassettes/WorksheetTest.test_get_all_records_different_header.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "123" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:51 GMT" + "Tue, 25 Jul 2023 15:43:01 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "210" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY\",\n \"name\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU\",\n \"name\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:52 GMT" + "Tue, 25 Jul 2023 15:43:02 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3354" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:43:02 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "220" + ] + }, + "body": { + "string": "{\n \"id\": \"1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU\",\n \"name\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"createdTime\": \"2023-07-25T15:42:59.782Z\",\n \"modifiedTime\": \"2023-07-25T15:43:00.698Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:52 GMT" + "Tue, 25 Jul 2023 15:43:03 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3354" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_different_header\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:52 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:03 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 6, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "190" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:52 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:03 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:53 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:03 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -461,7 +559,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"\", \"\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A1\", \"B1\", \"\", \"D1\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "131" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:53 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:04 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" + "string": "{\n \"spreadsheetId\": \"1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,37 +673,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:53 GMT" + "Tue, 25 Jul 2023 15:43:04 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "265" @@ -613,7 +717,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -642,37 +749,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:53 GMT" + "Tue, 25 Jul 2023 15:43:04 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "265" @@ -686,7 +793,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -704,6 +811,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -715,37 +825,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:53 GMT" + "Tue, 25 Jul 2023 15:43:05 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "265" @@ -759,7 +869,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -777,6 +887,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -788,37 +901,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:54 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:05 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "265" @@ -832,7 +945,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/12Qi7VzoJT9gdQ4s26YYTCG0ehsL3YLTknefLOPycMmY?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1PnZOEs5_fdygDXK8rlFJKqUPIhQ_Zd-ZLietotPrlFU?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -850,6 +963,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -864,41 +980,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:54 GMT" + "Tue, 25 Jul 2023 15:43:06 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_records_duplicate_keys.json b/tests/cassettes/WorksheetTest.test_get_all_records_duplicate_keys.json index 80207066b..7b5b45c8a 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_records_duplicate_keys.json +++ b/tests/cassettes/WorksheetTest.test_get_all_records_duplicate_keys.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "121" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:57 GMT" + "Tue, 25 Jul 2023 15:43:09 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "208" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww\",\n \"name\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g\",\n \"name\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:57 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:09 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3352" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:43:10 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "218" + ] + }, + "body": { + "string": "{\n \"id\": \"1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g\",\n \"name\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"createdTime\": \"2023-07-25T15:43:06.666Z\",\n \"modifiedTime\": \"2023-07-25T15:43:07.856Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:58 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:10 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3352" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_duplicate_keys\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:58 GMT" + "Tue, 25 Jul 2023 15:43:10 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "190" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:58 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:10 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww/values/%27Sheet1%27%21A1%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:58 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:11 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -461,7 +559,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"A1\", \"\", \"D1\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "95" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:59 GMT" + "Tue, 25 Jul 2023 15:43:11 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,37 +673,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:59 GMT" + "Tue, 25 Jul 2023 15:43:11 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "249" @@ -613,7 +717,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1q_SkomYA3bjoO8wZe4zzubb9kVYwi2Jk5DUTZqtnDww?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1zuWJPXaKDX2c5aBkl1ickSLr3pjNgMo8xnyv3grqz4g?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -645,41 +752,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:17:59 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:12 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_records_expected_headers.json b/tests/cassettes/WorksheetTest.test_get_all_records_expected_headers.json index 0d521162f..095413302 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_records_expected_headers.json +++ b/tests/cassettes/WorksheetTest.test_get_all_records_expected_headers.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "123" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:03 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:15 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "210" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U\",\n \"name\": \"Test WorksheetTest test_get_all_records_expected_headers\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s\",\n \"name\": \"Test WorksheetTest test_get_all_records_expected_headers\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:03 GMT" + "Tue, 25 Jul 2023 15:43:16 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3354" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_expected_headers\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_expected_headers\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:43:16 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "220" + ] + }, + "body": { + "string": "{\n \"id\": \"1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s\",\n \"name\": \"Test WorksheetTest test_get_all_records_expected_headers\",\n \"createdTime\": \"2023-07-25T15:43:12.898Z\",\n \"modifiedTime\": \"2023-07-25T15:43:14.409Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:03 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:17 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3354" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_expected_headers\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_expected_headers\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:04 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:17 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "190" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:04 GMT" + "Tue, 25 Jul 2023 15:43:17 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/values/%27Sheet1%27%21A1%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:04 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:18 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -461,7 +559,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B2\", \"C3\", \"D4\"], [1, \"b2\", 1.45, \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", 0.4, \"\", 4]]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "97" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:04 GMT" + "Tue, 25 Jul 2023 15:43:18 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,37 +673,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:04 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:18 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "251" @@ -613,7 +717,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -642,37 +749,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:05 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:18 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "251" @@ -686,7 +793,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -704,6 +811,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -715,37 +825,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:05 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:19 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "251" @@ -759,7 +869,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1d64BbS80QFd2aLcyOBts2rhpPTF606lofqpxTh7tb-U?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1NzTqYPgDH2LpMefNLCPdF1SComJnObWdtmoMW0j0U4s?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -777,6 +887,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -791,41 +904,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:05 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:19 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_records_numericise_unformatted.json b/tests/cassettes/WorksheetTest.test_get_all_records_numericise_unformatted.json index bfbe42800..a14050688 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_records_numericise_unformatted.json +++ b/tests/cassettes/WorksheetTest.test_get_all_records_numericise_unformatted.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "129" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:08 GMT" + "Tue, 25 Jul 2023 15:43:23 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "216" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8\",\n \"name\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo\",\n \"name\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:08 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:24 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3360" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:43:24 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "226" + ] + }, + "body": { + "string": "{\n \"id\": \"1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo\",\n \"name\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"createdTime\": \"2023-07-25T15:43:20.144Z\",\n \"modifiedTime\": \"2023-07-25T15:43:20.165Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:08 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:24 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3360" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_numericise_unformatted\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:09 GMT" + "Tue, 25 Jul 2023 15:43:25 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "190" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:09 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:25 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8/values/%27Sheet1%27%21A1%3AD2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo/values/%27Sheet1%27%21A1%3AD2", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:09 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:25 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -461,7 +559,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"A\", \"\", \"C\", \"3_1_0\"], [\"=3/2\", 0.12, \"\", \"3_2_1\"]]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "66" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:09 GMT" + "Tue, 25 Jul 2023 15:43:26 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" + "string": "{\n \"spreadsheetId\": \"1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,37 +673,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:09 GMT" + "Tue, 25 Jul 2023 15:43:26 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "195" @@ -613,7 +717,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1MLc3_8iOJg_3Dcw1jAecKco7PbSRJZZ9Zst4Vpdd8d8?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1jBRzIu73RGUTrBhQgEk9d-WmmUGf6ITRiHaC5hfLoDo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -645,41 +752,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:10 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:27 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_records_value_render_options.json b/tests/cassettes/WorksheetTest.test_get_all_records_value_render_options.json index 5b9c494aa..fa67cf8d8 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_records_value_render_options.json +++ b/tests/cassettes/WorksheetTest.test_get_all_records_value_render_options.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "127" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:14 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:31 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "214" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ\",\n \"name\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ\",\n \"name\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:14 GMT" + "Tue, 25 Jul 2023 15:43:31 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3358" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:43:31 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "224" + ] + }, + "body": { + "string": "{\n \"id\": \"1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ\",\n \"name\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"createdTime\": \"2023-07-25T15:43:27.482Z\",\n \"modifiedTime\": \"2023-07-25T15:43:27.497Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:14 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:32 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3358" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_records_value_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:14 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:32 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "190" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:15 GMT" + "Tue, 25 Jul 2023 15:43:32 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/values/%27Sheet1%27%21A1%3AD2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/values/%27Sheet1%27%21A1%3AD2", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:15 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:33 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -461,7 +559,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"=4/2\", \"2020-01-01\", \"string\", 53], [\"=3/2\", 0.12, \"1999-01-02\", \"\"]]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "84" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:15 GMT" + "Tue, 25 Jul 2023 15:43:33 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" + "string": "{\n \"spreadsheetId\": \"1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,37 +673,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:15 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:33 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "206" @@ -613,7 +717,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -642,37 +749,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:15 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:33 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "184" @@ -686,7 +793,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ/values/%27Sheet1%27?valueRenderOption=FORMULA", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ/values/%27Sheet1%27?valueRenderOption=FORMULA", "body": null, "headers": { "User-Agent": [ @@ -704,6 +811,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -715,37 +825,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:16 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:34 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "192" @@ -759,7 +869,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1KnofGaW-kyo64tWRx8M3yIoKwstCLqJjY1Q0_Ij33FQ?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1xA_fhzrMWEdBUc8egDh5G4vqcRs-kdzbe2J8yXdY5nQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -777,6 +887,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -791,41 +904,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:16 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:34 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_values.json b/tests/cassettes/WorksheetTest.test_get_all_values.json index 7d5352860..65ed99364 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_values.json +++ b/tests/cassettes/WorksheetTest.test_get_all_values.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "105" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:19 GMT" + "Tue, 25 Jul 2023 15:43:38 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y\",\n \"name\": \"Test WorksheetTest test_get_all_values\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"name\": \"Test WorksheetTest test_get_all_values\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:19 GMT" + "Tue, 25 Jul 2023 15:43:39 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:43:39 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "202" + ] + }, + "body": { + "string": "{\n \"id\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"name\": \"Test WorksheetTest test_get_all_values\",\n \"createdTime\": \"2023-07-25T15:43:35.200Z\",\n \"modifiedTime\": \"2023-07-25T15:43:35.216Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:20 GMT" + "Tue, 25 Jul 2023 15:43:40 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:20 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:40 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "190" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:20 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:40 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/values/%27Sheet1%27%21A1%3AD1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A1%3AD1", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:20 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:40 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -461,7 +559,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/values/%27Sheet1%27%21A2%3AD2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A2%3AD2", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -490,37 +591,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:20 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:41 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -534,7 +635,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/values/%27Sheet1%27%21A3%3AD3", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A3%3AD3", "body": null, "headers": { "User-Agent": [ @@ -552,6 +653,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -563,37 +667,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:21 GMT" + "Tue, 25 Jul 2023 15:43:41 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -607,7 +711,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/values/%27Sheet1%27%21A4%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A4%3AD4", "body": null, "headers": { "User-Agent": [ @@ -625,6 +729,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -636,37 +743,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:21 GMT" + "Tue, 25 Jul 2023 15:43:41 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -680,7 +787,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"D4\"]]}", "headers": { "User-Agent": [ @@ -698,6 +805,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "98" ], @@ -715,51 +825,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:21 GMT" + "Tue, 25 Jul 2023 15:43:41 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -777,6 +887,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -788,37 +901,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:21 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:41 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "234" @@ -832,7 +945,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1bIQTFD7CRZJwOk-g4AAWMGbk4cNAPbz1l6Ktue4Q2_Y?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1CE41E_Ixiqessy_IQn0O9XfhLDmQKucskRB3evPVbKI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -850,6 +963,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -864,41 +980,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:22 GMT" + "Tue, 25 Jul 2023 15:43:42 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_values_date_time_render_options.json b/tests/cassettes/WorksheetTest.test_get_all_values_date_time_render_options.json index 2798bb5c6..104092d56 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_values_date_time_render_options.json +++ b/tests/cassettes/WorksheetTest.test_get_all_values_date_time_render_options.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "130" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Date": [ - "Thu, 08 Jun 2023 22:43:28 GMT" + "Vary": [ + "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Content-Type": [ + "application/json; charset=UTF-8" ], "Server": [ "ESF" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Vary": [ - "Origin, X-Origin" - ], "Pragma": [ "no-cache" ], "X-XSS-Protection": [ "0" ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Date": [ + "Tue, 25 Jul 2023 15:43:45 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "content-length": [ "217" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU\",\n \"name\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"name\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Thu, 08 Jun 2023 22:43:29 GMT" - ], - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "Transfer-Encoding": [ "chunked" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Server": [ - "ESF" + "Date": [ + "Tue, 25 Jul 2023 15:43:46 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3361" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Date": [ - "Thu, 08 Jun 2023 22:43:29 GMT" - ], "Cache-Control": [ - "private" + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:43:46 GMT" ], "X-Content-Type-Options": [ "nosniff" ], + "content-length": [ + "227" + ] + }, + "body": { + "string": "{\n \"id\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"name\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"createdTime\": \"2023-07-25T15:43:43.300Z\",\n \"modifiedTime\": \"2023-07-25T15:43:44.232Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "Transfer-Encoding": [ "chunked" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Server": [ - "ESF" + "Date": [ + "Tue, 25 Jul 2023 15:43:46 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3361" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_date_time_render_options\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Thu, 08 Jun 2023 22:43:29 GMT" - ], - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "Transfer-Encoding": [ "chunked" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Server": [ - "ESF" + "Date": [ + "Tue, 25 Jul 2023 15:43:47 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "190" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Thu, 08 Jun 2023 22:43:29 GMT" - ], - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "Transfer-Encoding": [ "chunked" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Server": [ - "ESF" + "Date": [ + "Tue, 25 Jul 2023 15:43:47 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/values/%27Sheet1%27%21A1%3AD2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27%21A1%3AD2", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Date": [ - "Thu, 08 Jun 2023 22:43:29 GMT" - ], - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "Transfer-Encoding": [ "chunked" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Server": [ - "ESF" + "Date": [ + "Tue, 25 Jul 2023 15:43:47 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -461,7 +559,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27%21A1%3AD2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"=4/2\", \"2020-01-01\", \"string\", 53], [\"=3/2\", 0.12, \"1999-01-02\", \"\"]]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "84" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Date": [ - "Thu, 08 Jun 2023 22:43:30 GMT" - ], - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "Transfer-Encoding": [ "chunked" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Server": [ - "ESF" + "Date": [ + "Tue, 25 Jul 2023 15:43:48 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" + "string": "{\n \"spreadsheetId\": \"1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI\",\n \"updatedRange\": \"Sheet1!A1:D2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 4,\n \"updatedCells\": 8\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,37 +673,37 @@ "message": "OK" }, "headers": { - "Date": [ - "Thu, 08 Jun 2023 22:43:30 GMT" - ], - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "Transfer-Encoding": [ "chunked" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Server": [ - "ESF" + "Date": [ + "Tue, 25 Jul 2023 15:43:48 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "184" @@ -613,7 +717,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=UNFORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING", "body": null, "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -642,37 +749,37 @@ "message": "OK" }, "headers": { - "Date": [ - "Thu, 08 Jun 2023 22:43:30 GMT" - ], - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "Transfer-Encoding": [ "chunked" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Server": [ - "ESF" + "Date": [ + "Tue, 25 Jul 2023 15:43:48 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "198" @@ -686,7 +793,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=SERIAL_NUMBER", "body": null, "headers": { "User-Agent": [ @@ -704,6 +811,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -715,37 +825,37 @@ "message": "OK" }, "headers": { - "Date": [ - "Thu, 08 Jun 2023 22:43:30 GMT" - ], - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "Transfer-Encoding": [ "chunked" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Server": [ - "ESF" + "Date": [ + "Tue, 25 Jul 2023 15:43:48 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "206" @@ -759,7 +869,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI/values/%27Sheet1%27?valueRenderOption=FORMATTED_VALUE&dateTimeRenderOption=FORMATTED_STRING", "body": null, "headers": { "User-Agent": [ @@ -777,6 +887,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -788,37 +901,37 @@ "message": "OK" }, "headers": { - "Date": [ - "Thu, 08 Jun 2023 22:43:30 GMT" - ], - "Cache-Control": [ - "private" - ], - "X-Content-Type-Options": [ - "nosniff" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" ], "X-XSS-Protection": [ "0" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "Transfer-Encoding": [ "chunked" ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Server": [ - "ESF" + "Date": [ + "Tue, 25 Jul 2023 15:43:48 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "206" @@ -832,7 +945,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1z-xWGC2OWvvYRsWsq7GFGqkmiX1I_Mlnq0Ah0NFzmJU?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1VYZV6IRnymjtcrTiKitjSdyIpBjiKTnzjBT-J87QLjI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -850,6 +963,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -864,23 +980,17 @@ "message": "No Content" }, "headers": { - "Date": [ - "Thu, 08 Jun 2023 22:43:31 GMT" - ], - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Length": [ - "0" + "Content-Type": [ + "text/html" ], - "Vary": [ - "Origin, X-Origin" + "Server": [ + "ESF" ], "Pragma": [ "no-cache" @@ -888,17 +998,23 @@ "X-XSS-Protection": [ "0" ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], - "Content-Type": [ - "text/html" + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Server": [ - "ESF" + "Date": [ + "Tue, 25 Jul 2023 15:43:49 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_all_values_title_is_a1_notation.json b/tests/cassettes/WorksheetTest.test_get_all_values_title_is_a1_notation.json index 2f42e5772..dbb593eb6 100644 --- a/tests/cassettes/WorksheetTest.test_get_all_values_title_is_a1_notation.json +++ b/tests/cassettes/WorksheetTest.test_get_all_values_title_is_a1_notation.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "126" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:31 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:52 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "213" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8\",\n \"name\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"name\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:32 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:53 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3357" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:43:53 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "223" + ] + }, + "body": { + "string": "{\n \"id\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"name\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"createdTime\": \"2023-07-25T15:43:50.075Z\",\n \"modifiedTime\": \"2023-07-25T15:43:51.247Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:32 GMT" + "Tue, 25 Jul 2023 15:43:53 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3357" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_all_values_title_is_a1_notation\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:32 GMT" + "Tue, 25 Jul 2023 15:43:54 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "190" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:32 GMT" + "Tue, 25 Jul 2023 15:43:54 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"title\": \"D3\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "107" ], @@ -423,51 +521,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:32 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:54 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/values/%27D3%27%21A1%3AD1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A1%3AD1", "body": null, "headers": { "User-Agent": [ @@ -485,6 +583,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -496,37 +597,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:33 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:55 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "56" @@ -540,7 +641,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/values/%27D3%27%21A2%3AD2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A2%3AD2", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,37 +673,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:33 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:55 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "56" @@ -613,7 +717,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/values/%27D3%27%21A3%3AD3", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A3%3AD3", "body": null, "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -642,37 +749,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:33 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:55 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "56" @@ -686,7 +793,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/values/%27D3%27%21A4%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A4%3AD4", "body": null, "headers": { "User-Agent": [ @@ -704,6 +811,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -715,37 +825,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:33 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:55 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "56" @@ -759,7 +869,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/values/%27D3%27%21A1%3AD4?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"d4\"]]}", "headers": { "User-Agent": [ @@ -777,6 +887,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "98" ], @@ -794,51 +907,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:33 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:56 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "167" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8\",\n \"updatedRange\": \"'D3'!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo\",\n \"updatedRange\": \"'D3'!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8/values/%27D3%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo/values/%27D3%27", "body": null, "headers": { "User-Agent": [ @@ -856,6 +969,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -867,37 +983,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:34 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:43:56 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "232" @@ -911,7 +1027,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1obs2pIeHy1g02fmgPAJPOZckE0SjDPVdW82Kw54vqf8?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1und1QJCH8MqJ261A0-QhKolfcsvS0isAKIf5UNgBJWo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -929,6 +1045,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -943,41 +1062,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:34 GMT" + "Tue, 25 Jul 2023 15:43:57 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_values_and_combine_merged_cells.json b/tests/cassettes/WorksheetTest.test_get_values_and_combine_merged_cells.json index e203e7888..21efe1828 100644 --- a/tests/cassettes/WorksheetTest.test_get_values_and_combine_merged_cells.json +++ b/tests/cassettes/WorksheetTest.test_get_values_and_combine_merged_cells.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "126" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], - "X-XSS-Protection": [ - "0" - ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" - ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], - "Date": [ - "Thu, 08 Jun 2023 18:55:14 GMT" + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Tue, 25 Jul 2023 15:44:00 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "213" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"name\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"name\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "X-Content-Type-Options": [ - "nosniff" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "Cache-Control": [ - "private" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Server": [ - "ESF" - ], - "Date": [ - "Thu, 08 Jun 2023 18:55:15 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Tue, 25 Jul 2023 15:44:01 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3357" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "X-Content-Type-Options": [ - "nosniff" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Cache-Control": [ - "private" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:44:01 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "223" + ] + }, + "body": { + "string": "{\n \"id\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"name\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"createdTime\": \"2023-07-25T15:43:57.614Z\",\n \"modifiedTime\": \"2023-07-25T15:43:57.634Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], - "Date": [ - "Thu, 08 Jun 2023 18:55:15 GMT" + "X-XSS-Protection": [ + "0" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Tue, 25 Jul 2023 15:44:02 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3357" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "X-Content-Type-Options": [ - "nosniff" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "Cache-Control": [ - "private" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Server": [ - "ESF" - ], - "Date": [ - "Thu, 08 Jun 2023 18:55:15 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Tue, 25 Jul 2023 15:44:02 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "190" ], @@ -344,52 +439,52 @@ "message": "OK" }, "headers": { - "X-Content-Type-Options": [ - "nosniff" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "Cache-Control": [ - "private" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Server": [ - "ESF" - ], - "Date": [ - "Thu, 08 Jun 2023 18:55:15 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Tue, 25 Jul 2023 15:44:02 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", - "body": "{\"values\": [[1, \"\", \"\", \"\"], [\"\", \"\", \"title\", \"\"], [\"\", \"\", 2, \"\"], [\"num\", \"val\", \"\", 0]]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", + "body": "{\"values\": [[\"1\", \"\", \"\", \"\"], [\"\", \"\", \"title\", \"\"], [\"\", \"\", \"2\", \"\"], [\"num\", \"val\", \"\", \"0\"]]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -406,8 +501,11 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ - "92" + "98" ], "Content-Type": [ "application/json" @@ -423,51 +521,51 @@ "message": "OK" }, "headers": { - "X-Content-Type-Options": [ - "nosniff" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "Cache-Control": [ - "private" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Server": [ - "ESF" - ], - "Date": [ - "Thu, 08 Jun 2023 18:55:15 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Tue, 25 Jul 2023 15:44:02 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 0, \"endRowIndex\": 2, \"startColumnIndex\": 0, \"endColumnIndex\": 2, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ @@ -485,6 +583,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "165" ], @@ -502,51 +603,51 @@ "message": "OK" }, "headers": { - "X-Content-Type-Options": [ - "nosniff" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "Cache-Control": [ - "private" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Server": [ - "ESF" - ], - "Date": [ - "Thu, 08 Jun 2023 18:55:16 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Tue, 25 Jul 2023 15:44:03 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 2, \"endColumnIndex\": 4, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ @@ -564,6 +665,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "165" ], @@ -581,51 +685,51 @@ "message": "OK" }, "headers": { - "X-Content-Type-Options": [ - "nosniff" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "Cache-Control": [ - "private" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Server": [ - "ESF" - ], - "Date": [ - "Thu, 08 Jun 2023 18:55:16 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Tue, 25 Jul 2023 15:44:03 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU:batchUpdate", "body": "{\"requests\": [{\"mergeCells\": {\"mergeType\": \"MERGE_ALL\", \"range\": {\"startRowIndex\": 2, \"endRowIndex\": 4, \"startColumnIndex\": 2, \"endColumnIndex\": 3, \"sheetId\": 0}}}]}", "headers": { "User-Agent": [ @@ -643,6 +747,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "165" ], @@ -660,51 +767,51 @@ "message": "OK" }, "headers": { - "X-Content-Type-Options": [ - "nosniff" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "Cache-Control": [ - "private" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Server": [ - "ESF" - ], - "Date": [ - "Thu, 08 Jun 2023 18:55:16 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Tue, 25 Jul 2023 15:44:03 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -722,6 +829,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -733,37 +843,37 @@ "message": "OK" }, "headers": { - "X-Content-Type-Options": [ - "nosniff" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "Cache-Control": [ - "private" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Server": [ - "ESF" - ], - "Date": [ - "Thu, 08 Jun 2023 18:55:16 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Tue, 25 Jul 2023 15:44:04 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "248" @@ -777,7 +887,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -795,6 +905,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -806,37 +919,37 @@ "message": "OK" }, "headers": { - "X-Content-Type-Options": [ - "nosniff" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "Cache-Control": [ - "private" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Server": [ - "ESF" - ], - "Date": [ - "Thu, 08 Jun 2023 18:55:16 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Tue, 25 Jul 2023 15:44:04 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "248" @@ -850,7 +963,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -868,6 +981,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -879,51 +995,51 @@ "message": "OK" }, "headers": { - "X-Content-Type-Options": [ - "nosniff" + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], "X-XSS-Protection": [ "0" ], - "Cache-Control": [ - "private" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Server": [ - "ESF" - ], - "Date": [ - "Thu, 08 Jun 2023 18:55:17 GMT" - ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Tue, 25 Jul 2023 15:44:04 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3805" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 4\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 4\n },\n {\n \"startRowIndex\": 2,\n \"endRowIndex\": 4,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 3\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_and_combine_merged_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 4,\n \"columnCount\": 4\n }\n },\n \"merges\": [\n {\n \"startRowIndex\": 0,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 0,\n \"endColumnIndex\": 2\n },\n {\n \"startRowIndex\": 1,\n \"endRowIndex\": 2,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 4\n },\n {\n \"startRowIndex\": 2,\n \"endRowIndex\": 4,\n \"startColumnIndex\": 2,\n \"endColumnIndex\": 3\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1txmu0gP2qQRNaGwtUo2rW5ikjBwfS7_kNKkmzbCJ-FA?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1qhl9CiR4B1Z29CNkqkjoYRHnI5kvk_r-LTufBqIucHU?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -941,6 +1057,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -955,41 +1074,41 @@ "message": "No Content" }, "headers": { - "Pragma": [ - "no-cache" - ], - "X-Content-Type-Options": [ - "nosniff" - ], - "Content-Type": [ - "text/html" - ], - "X-XSS-Protection": [ - "0" - ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], - "Date": [ - "Thu, 08 Jun 2023 18:55:17 GMT" + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], "Content-Length": [ "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Date": [ + "Tue, 25 Jul 2023 15:44:05 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_get_values_with_args_or_kwargs.json b/tests/cassettes/WorksheetTest.test_get_values_with_args_or_kwargs.json index 6d49684b0..443811f95 100644 --- a/tests/cassettes/WorksheetTest.test_get_values_with_args_or_kwargs.json +++ b/tests/cassettes/WorksheetTest.test_get_values_with_args_or_kwargs.json @@ -36,12 +36,6 @@ "message": "OK" }, "headers": { - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], @@ -51,23 +45,29 @@ "Server": [ "ESF" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], - "X-XSS-Protection": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Date": [ - "Sun, 18 Jun 2023 13:24:44 GMT" + "Sun, 13 Aug 2023 08:24:46 GMT" ], "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "Vary": [ "Origin, X-Origin" @@ -77,14 +77,14 @@ ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA\",\n \"name\": \"Test WorksheetTest test_get_values_with_args_or_kwargs\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\",\n \"name\": \"Test WorksheetTest test_get_values_with_args_or_kwargs\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -110,32 +110,35 @@ "message": "OK" }, "headers": { - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" - ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], - "X-XSS-Protection": [ - "0" + "Cache-Control": [ + "private" ], "Date": [ - "Sun, 18 Jun 2023 13:24:44 GMT" + "Sun, 13 Aug 2023 08:24:46 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-XSS-Protection": [ + "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "x-l2-request-path": [ + "l2-managed-6" ], "Vary": [ "Origin", @@ -147,14 +150,14 @@ ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_with_args_or_kwargs\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_with_args_or_kwargs\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -180,11 +183,8 @@ "message": "OK" }, "headers": { - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], "Content-Type": [ "application/json; charset=UTF-8" @@ -192,21 +192,98 @@ "Server": [ "ESF" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Date": [ + "Sun, 13 Aug 2023 08:24:47 GMT" + ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Date": [ - "Sun, 18 Jun 2023 13:24:44 GMT" + "Vary": [ + "Origin, X-Origin" ], - "X-Content-Type-Options": [ - "nosniff" + "content-length": [ + "218" + ] + }, + "body": { + "string": "{\n \"id\": \"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\",\n \"name\": \"Test WorksheetTest test_get_values_with_args_or_kwargs\",\n \"createdTime\": \"2023-08-13T08:24:44.018Z\",\n \"modifiedTime\": \"2023-08-13T08:24:44.038Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { + "Content-Type": [ + "application/json; charset=UTF-8" + ], + "Server": [ + "ESF" ], "X-Frame-Options": [ "SAMEORIGIN" ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Transfer-Encoding": [ + "chunked" + ], + "Cache-Control": [ + "private" + ], + "Date": [ + "Sun, 13 Aug 2023 08:24:47 GMT" + ], + "X-XSS-Protection": [ + "0" + ], "Vary": [ "Origin", "X-Origin", @@ -217,14 +294,14 @@ ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_with_args_or_kwargs\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_get_values_with_args_or_kwargs\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -253,32 +330,32 @@ "message": "OK" }, "headers": { - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" - ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], - "X-XSS-Protection": [ - "0" + "Cache-Control": [ + "private" ], "Date": [ - "Sun, 18 Jun 2023 13:24:45 GMT" + "Sun, 13 Aug 2023 08:24:47 GMT" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "Vary": [ "Origin", @@ -290,14 +367,14 @@ ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -329,32 +406,35 @@ "message": "OK" }, "headers": { - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" - ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], - "X-XSS-Protection": [ - "0" + "Cache-Control": [ + "private" ], "Date": [ - "Sun, 18 Jun 2023 13:24:45 GMT" + "Sun, 13 Aug 2023 08:24:47 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "X-XSS-Protection": [ + "0" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "x-l2-request-path": [ + "l2-managed-6" ], "Vary": [ "Origin", @@ -366,14 +446,14 @@ ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"1\", \"\", \"\", \"\"], [\"x\", \"y\", \"title\", \"\"], [\"\", \"\", \"2\", \"\"], [\"num\", \"val\", \"\", \"0\"]], \"majorDimension\": null}", "headers": { "User-Agent": [ @@ -405,32 +485,32 @@ "message": "OK" }, "headers": { - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" - ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], - "X-XSS-Protection": [ - "0" + "Cache-Control": [ + "private" ], "Date": [ - "Sun, 18 Jun 2023 13:24:45 GMT" - ], - "X-Content-Type-Options": [ - "nosniff" + "Sun, 13 Aug 2023 08:24:48 GMT" ], - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "Vary": [ "Origin", @@ -442,14 +522,14 @@ ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA/values/%27Sheet1%27%21A1%3AD4?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/values/%27Sheet1%27%21A1%3AD4?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -475,32 +555,32 @@ "message": "OK" }, "headers": { - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" - ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], - "X-XSS-Protection": [ - "0" + "Cache-Control": [ + "private" ], "Date": [ - "Sun, 18 Jun 2023 13:24:45 GMT" + "Sun, 13 Aug 2023 08:24:48 GMT" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "Vary": [ "Origin", @@ -519,7 +599,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA/values/%27Sheet1%27%21A1%3AD4?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU/values/%27Sheet1%27%21A1%3AD4?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -545,32 +625,32 @@ "message": "OK" }, "headers": { - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" - ], "Content-Type": [ "application/json; charset=UTF-8" ], "Server": [ "ESF" ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "Transfer-Encoding": [ "chunked" ], - "X-XSS-Protection": [ - "0" + "Cache-Control": [ + "private" ], "Date": [ - "Sun, 18 Jun 2023 13:24:45 GMT" + "Sun, 13 Aug 2023 08:24:48 GMT" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "Vary": [ "Origin", @@ -589,7 +669,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1ZtcOqk9jOY0Qid2XefYoyS-aZUsxGVsvmT8z9SibNYA?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1jtcli8G8AqnpmvrFpiQtVg1Uy7rCfSs57QO_Ilku5QU?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -618,12 +698,6 @@ "message": "No Content" }, "headers": { - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" - ], "Expires": [ "Mon, 01 Jan 1990 00:00:00 GMT" ], @@ -636,20 +710,26 @@ "Server": [ "ESF" ], - "X-XSS-Protection": [ - "0" + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Date": [ - "Sun, 18 Jun 2023 13:24:46 GMT" + "Sun, 13 Aug 2023 08:24:49 GMT" ], "Pragma": [ "no-cache" ], - "X-Content-Type-Options": [ - "nosniff" - ], - "X-Frame-Options": [ - "SAMEORIGIN" + "X-XSS-Protection": [ + "0" ], "Vary": [ "Origin, X-Origin" diff --git a/tests/cassettes/WorksheetTest.test_group_columns.json b/tests/cassettes/WorksheetTest.test_group_columns.json index 49d7f8f2e..2e7da86dc 100644 --- a/tests/cassettes/WorksheetTest.test_group_columns.json +++ b/tests/cassettes/WorksheetTest.test_group_columns.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "104" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:38 GMT" + "Tue, 25 Jul 2023 15:44:08 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "191" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"name\": \"Test WorksheetTest test_group_columns\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"name\": \"Test WorksheetTest test_group_columns\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:38 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:09 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:44:09 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "201" + ] + }, + "body": { + "string": "{\n \"id\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"name\": \"Test WorksheetTest test_group_columns\",\n \"createdTime\": \"2023-07-25T15:44:05.696Z\",\n \"modifiedTime\": \"2023-07-25T15:44:05.724Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:39 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:09 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3335" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:39 GMT" + "Tue, 25 Jul 2023 15:44:10 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o:batchUpdate", "body": "{\"requests\": [{\"addDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "120" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:39 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:10 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "360" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"replies\": [\n {\n \"addDimensionGroup\": {\n \"dimensionGroups\": [\n {\n \"range\": {\n \"dimension\": \"COLUMNS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"replies\": [\n {\n \"addDimensionGroup\": {\n \"dimensionGroups\": [\n {\n \"range\": {\n \"dimension\": \"COLUMNS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:39 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:10 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3577" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"columnGroupControlAfter\": true\n }\n },\n \"columnGroups\": [\n {\n \"range\": {\n \"dimension\": \"COLUMNS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"columnGroupControlAfter\": true\n }\n },\n \"columnGroups\": [\n {\n \"range\": {\n \"dimension\": \"COLUMNS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o:batchUpdate", "body": "{\"requests\": [{\"deleteDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "123" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:39 GMT" + "Tue, 25 Jul 2023 15:44:11 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "135" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"replies\": [\n {\n \"deleteDimensionGroup\": {}\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"replies\": [\n {\n \"deleteDimensionGroup\": {}\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,51 +673,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:40 GMT" + "Tue, 25 Jul 2023 15:44:11 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3378" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"columnGroupControlAfter\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_columns\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"columnGroupControlAfter\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1olhHftEjAl_7_Oc3kG8gNoFSy6BxKx-P9uXwHE_mtJs?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1kQJputz5hMuuBLR-ShDbqZCgWancWqrTKeVsTuiZ77o?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -645,41 +752,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:40 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:12 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_group_rows.json b/tests/cassettes/WorksheetTest.test_group_rows.json index 6bd7d5b30..a67ab25ae 100644 --- a/tests/cassettes/WorksheetTest.test_group_rows.json +++ b/tests/cassettes/WorksheetTest.test_group_rows.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "101" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:43 GMT" + "Tue, 25 Jul 2023 15:44:14 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "188" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"name\": \"Test WorksheetTest test_group_rows\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"name\": \"Test WorksheetTest test_group_rows\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:44 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:15 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:44:16 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "198" + ] + }, + "body": { + "string": "{\n \"id\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"name\": \"Test WorksheetTest test_group_rows\",\n \"createdTime\": \"2023-07-25T15:44:12.380Z\",\n \"modifiedTime\": \"2023-07-25T15:44:13.589Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:44 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:16 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:44 GMT" + "Tue, 25 Jul 2023 15:44:16 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g:batchUpdate", "body": "{\"requests\": [{\"addDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "117" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:44 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:17 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "357" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"replies\": [\n {\n \"addDimensionGroup\": {\n \"dimensionGroups\": [\n {\n \"range\": {\n \"dimension\": \"ROWS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"replies\": [\n {\n \"addDimensionGroup\": {\n \"dimensionGroups\": [\n {\n \"range\": {\n \"dimension\": \"ROWS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:44 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:17 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3565" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"rowGroupControlAfter\": true\n }\n },\n \"rowGroups\": [\n {\n \"range\": {\n \"dimension\": \"ROWS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"rowGroupControlAfter\": true\n }\n },\n \"rowGroups\": [\n {\n \"range\": {\n \"dimension\": \"ROWS\",\n \"startIndex\": 0,\n \"endIndex\": 2\n },\n \"depth\": 1\n }\n ]\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g:batchUpdate", "body": "{\"requests\": [{\"deleteDimensionGroup\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}}}]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "120" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:45 GMT" + "Tue, 25 Jul 2023 15:44:17 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "135" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"replies\": [\n {\n \"deleteDimensionGroup\": {}\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"replies\": [\n {\n \"deleteDimensionGroup\": {}\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,51 +673,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:45 GMT" + "Tue, 25 Jul 2023 15:44:17 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3372" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"rowGroupControlAfter\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_group_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"rowGroupControlAfter\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1upjj1NxU-ZtXUoeUSe2SnZsM41WFZ6HwGW6C6tjZANo?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/14aAXSd5lXzlAvS4_utqWb-w7uT1JN4QJmnnH2KXLT4g?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -645,41 +752,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:46 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:18 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_hide_columns_rows.json b/tests/cassettes/WorksheetTest.test_hide_columns_rows.json index 3a9151957..962fc58f8 100644 --- a/tests/cassettes/WorksheetTest.test_hide_columns_rows.json +++ b/tests/cassettes/WorksheetTest.test_hide_columns_rows.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "108" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:49 GMT" + "Tue, 25 Jul 2023 15:44:21 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "195" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"name\": \"Test WorksheetTest test_hide_columns_rows\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"name\": \"Test WorksheetTest test_hide_columns_rows\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:49 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:21 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3339" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_columns_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_columns_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:44:22 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "205" + ] + }, + "body": { + "string": "{\n \"id\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"name\": \"Test WorksheetTest test_hide_columns_rows\",\n \"createdTime\": \"2023-07-25T15:44:19.082Z\",\n \"modifiedTime\": \"2023-07-25T15:44:19.814Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:49 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:22 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3339" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_columns_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_columns_rows\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:50 GMT" + "Tue, 25 Jul 2023 15:44:22 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": true}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "192" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:50 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:22 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": false}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "193" ], @@ -423,51 +521,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:50 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:23 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": true}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ @@ -485,6 +583,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "189" ], @@ -502,51 +603,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:50 GMT" + "Tue, 25 Jul 2023 15:44:23 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4:batchUpdate", "body": "{\"requests\": [{\"updateDimensionProperties\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 2}, \"properties\": {\"hiddenByUser\": false}, \"fields\": \"hiddenByUser\"}}]}", "headers": { "User-Agent": [ @@ -564,6 +665,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "190" ], @@ -581,51 +685,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:50 GMT" + "Tue, 25 Jul 2023 15:44:23 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1YzlmfFYkIOm3IJgnw9055tVjGDT57l-qKJWdVXzVM8Y?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1j1-C4p8IiE3MdgKSd2C41RQIL4zzPH4Y05uNgD6bjL4?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -643,6 +747,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -657,41 +764,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:51 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:24 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_hide_gridlines.json b/tests/cassettes/WorksheetTest.test_hide_gridlines.json index 756021adc..33b5ff4fb 100644 --- a/tests/cassettes/WorksheetTest.test_hide_gridlines.json +++ b/tests/cassettes/WorksheetTest.test_hide_gridlines.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "105" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:54 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:27 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q\",\n \"name\": \"Test WorksheetTest test_hide_gridlines\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"name\": \"Test WorksheetTest test_hide_gridlines\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:55 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:27 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:44:28 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "202" + ] + }, + "body": { + "string": "{\n \"id\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"name\": \"Test WorksheetTest test_hide_gridlines\",\n \"createdTime\": \"2023-07-25T15:44:24.967Z\",\n \"modifiedTime\": \"2023-07-25T15:44:26.032Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:55 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:28 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:55 GMT" + "Tue, 25 Jul 2023 15:44:28 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,51 +433,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:55 GMT" + "Tue, 25 Jul 2023 15:44:28 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"hideGridlines\": true}}, \"fields\": \"gridProperties.hideGridlines\"}}]}", "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "158" ], @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:55 GMT" + "Tue, 25 Jul 2023 15:44:29 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -490,51 +591,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:56 GMT" + "Tue, 25 Jul 2023 15:44:29 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3369" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"hideGridlines\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26,\n \"hideGridlines\": true\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1JUkbQNnCfhPbBpXh8xj95DA2OqRDyGuYHL5BKsnDI6Q?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1oyOp6flj2ed9GAfUtRhWFKzYdQObCcCgyYcGHYACoE0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -552,6 +653,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -566,41 +670,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:56 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:30 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_hide_show_worksheet.json b/tests/cassettes/WorksheetTest.test_hide_show_worksheet.json index 4617ad3cc..74c40ad07 100644 --- a/tests/cassettes/WorksheetTest.test_hide_show_worksheet.json +++ b/tests/cassettes/WorksheetTest.test_hide_show_worksheet.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "110" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:59 GMT" + "Tue, 25 Jul 2023 15:44:34 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "197" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"name\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"name\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:18:59 GMT" + "Tue, 25 Jul 2023 15:44:34 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:44:34 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "207" + ] + }, + "body": { + "string": "{\n \"id\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"name\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"createdTime\": \"2023-07-25T15:44:30.988Z\",\n \"modifiedTime\": \"2023-07-25T15:44:31.010Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:00 GMT" + "Tue, 25 Jul 2023 15:44:35 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:00 GMT" + "Tue, 25 Jul 2023 15:44:35 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"hidden\": true}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "109" ], @@ -344,37 +439,37 @@ "message": "Bad Request" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:35 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "177" @@ -388,7 +483,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"you cannot see me\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 2, \"columnCount\": 2}}}}]}", "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "150" ], @@ -423,51 +521,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:36 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ - "387" + "388" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 993117170,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1513170215,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -485,6 +583,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -496,52 +597,52 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:01 GMT" + "Tue, 25 Jul 2023 15:44:36 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ - "3591" + "3592" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 993117170,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1513170215,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w:batchUpdate", - "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 993117170, \"hidden\": true}, \"fields\": \"hidden\"}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate", + "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 1513170215, \"hidden\": true}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -558,8 +659,11 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ - "117" + "118" ], "Content-Type": [ "application/json" @@ -575,51 +679,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:01 GMT" + "Tue, 25 Jul 2023 15:44:36 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -637,6 +741,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -648,52 +755,52 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:01 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:36 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ - "3615" + "3616" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 993117170,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1513170215,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n },\n \"hidden\": true\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w:batchUpdate", - "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 993117170, \"hidden\": false}, \"fields\": \"hidden\"}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA:batchUpdate", + "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 1513170215, \"hidden\": false}, \"fields\": \"hidden\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -710,8 +817,11 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ - "118" + "119" ], "Content-Type": [ "application/json" @@ -727,51 +837,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:01 GMT" + "Tue, 25 Jul 2023 15:44:37 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -789,6 +899,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -800,51 +913,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:01 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:37 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ - "3591" + "3592" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 993117170,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_hide_show_worksheet\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1513170215,\n \"title\": \"you cannot see me\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 2,\n \"columnCount\": 2\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1qm2b4PrexUiSxKuHi_5yzktMFfOZF_6Mz5Ddzl9EI8w?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1orn99tUtMCpLAObtrSNv8tY-B8UfeJwW7D6NUIx6RMA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -862,6 +975,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -876,41 +992,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:02 GMT" + "Tue, 25 Jul 2023 15:44:38 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_insert_cols.json b/tests/cassettes/WorksheetTest.test_insert_cols.json index d9af8a03e..a0f63fbf3 100644 --- a/tests/cassettes/WorksheetTest.test_insert_cols.json +++ b/tests/cassettes/WorksheetTest.test_insert_cols.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "102" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "X-Content-Type-Options": [ - "nosniff" + "Vary": [ + "Origin, X-Origin" + ], + "Content-Type": [ + "application/json; charset=UTF-8" ], "Server": [ "ESF" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "X-Frame-Options": [ - "SAMEORIGIN" - ], - "Date": [ - "Thu, 15 Jun 2023 23:48:40 GMT" + "Pragma": [ + "no-cache" ], "X-XSS-Protection": [ "0" ], - "Vary": [ - "Origin, X-Origin" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], "Transfer-Encoding": [ "chunked" ], - "Pragma": [ - "no-cache" + "X-Frame-Options": [ + "SAMEORIGIN" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "Date": [ + "Tue, 25 Jul 2023 15:44:41 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "189" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"name\": \"Test WorksheetTest test_insert_cols\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"name\": \"Test WorksheetTest test_insert_cols\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], "Cache-Control": [ "private" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" ], "Server": [ "ESF" ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 15 Jun 2023 23:48:40 GMT" - ], - "X-XSS-Protection": [ - "0" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Tue, 25 Jul 2023 15:44:42 GMT" ], - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -190,50 +199,130 @@ }, "headers": { "Cache-Control": [ - "private" + "no-cache, no-store, max-age=0, must-revalidate" ], - "X-Content-Type-Options": [ - "nosniff" + "Vary": [ + "Origin, X-Origin" + ], + "Content-Type": [ + "application/json; charset=UTF-8" ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 15 Jun 2023 23:48:40 GMT" + "Tue, 25 Jul 2023 15:44:42 GMT" ], - "X-XSS-Protection": [ + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "199" + ] + }, + "body": { + "string": "{\n \"id\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"name\": \"Test WorksheetTest test_insert_cols\",\n \"createdTime\": \"2023-07-25T15:44:38.933Z\",\n \"modifiedTime\": \"2023-07-25T15:44:38.946Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ "0" ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "private" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "X-XSS-Protection": [ + "0" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:44:42 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_cols\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], "Cache-Control": [ "private" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" ], "Server": [ "ESF" ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 15 Jun 2023 23:48:41 GMT" - ], - "X-XSS-Protection": [ - "0" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" + "Tue, 25 Jul 2023 15:44:42 GMT" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,37 +433,37 @@ "message": "OK" }, "headers": { + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], "Cache-Control": [ "private" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" ], "Server": [ "ESF" ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 15 Jun 2023 23:48:41 GMT" - ], - "X-XSS-Protection": [ - "0" + "Tue, 25 Jul 2023 15:44:43 GMT" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -382,7 +477,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_insert_cols 1\", \"test_insert_cols 2\", \"test_insert_cols 3\", \"test_insert_cols 4\"], [\"test_insert_cols 5\", \"test_insert_cols 6\", \"test_insert_cols 7\", \"test_insert_cols 8\"], [\"test_insert_cols 9\", \"test_insert_cols 10\", \"test_insert_cols 11\", \"test_insert_cols 12\"], [\"test_insert_cols 13\", \"test_insert_cols 14\", \"test_insert_cols 15\", \"test_insert_cols 16\"], [\"test_insert_cols 17\", \"test_insert_cols 18\", \"test_insert_cols 19\", \"test_insert_cols 20\"], [\"test_insert_cols 21\", \"test_insert_cols 22\", \"test_insert_cols 23\", \"test_insert_cols 24\"]]}", "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "567" ], @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], "Cache-Control": [ "private" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" ], "Server": [ "ESF" ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 15 Jun 2023 23:48:41 GMT" - ], - "X-XSS-Protection": [ - "0" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" + "Tue, 25 Jul 2023 15:44:43 GMT" ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" + "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA:batchUpdate", "body": "{\"requests\": [{\"insertDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"COLUMNS\", \"startIndex\": 1, \"endIndex\": 3}, \"inheritFromBefore\": false}}]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "146" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], "Cache-Control": [ "private" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" ], "Server": [ "ESF" ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 15 Jun 2023 23:48:41 GMT" - ], - "X-XSS-Protection": [ - "0" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" + "Tue, 25 Jul 2023 15:44:44 GMT" ], - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/values/%27Sheet1%27%21B1:append?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21B1:append?valueInputOption=RAW", "body": "{\"majorDimension\": \"COLUMNS\", \"values\": [[\"test_insert_cols 25\", \"test_insert_cols 26\", \"test_insert_cols 27\", \"test_insert_cols 28\"], [\"test_insert_cols 29\", \"test_insert_cols 30\", \"test_insert_cols 31\", \"test_insert_cols 32\"]]}", "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "229" ], @@ -575,51 +679,51 @@ "message": "OK" }, "headers": { + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], "Cache-Control": [ "private" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" ], "Server": [ "ESF" ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 15 Jun 2023 23:48:41 GMT" - ], - "X-XSS-Protection": [ - "0" + "Tue, 25 Jul 2023 15:44:44 GMT" ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "264" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"updates\": {\n \"spreadsheetId\": \"13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ\",\n \"updatedRange\": \"Sheet1!B1:C4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 2,\n \"updatedCells\": 8\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"updates\": {\n \"spreadsheetId\": \"14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA\",\n \"updatedRange\": \"Sheet1!B1:C4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 2,\n \"updatedCells\": 8\n }\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21B1%3AB?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ @@ -637,6 +741,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -648,37 +755,37 @@ "message": "OK" }, "headers": { + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], "Cache-Control": [ "private" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" ], "Server": [ "ESF" ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 15 Jun 2023 23:48:42 GMT" + "Tue, 25 Jul 2023 15:44:44 GMT" ], - "X-XSS-Protection": [ - "0" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "210" @@ -692,7 +799,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ/values/%27Sheet1%27%21C1%3AC?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA/values/%27Sheet1%27%21C1%3AC?valueRenderOption=FORMATTED_VALUE&majorDimension=COLUMNS", "body": null, "headers": { "User-Agent": [ @@ -710,6 +817,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -721,37 +831,37 @@ "message": "OK" }, "headers": { + "Vary": [ + "Origin", + "X-Origin", + "Referer" + ], "Cache-Control": [ "private" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "application/json; charset=UTF-8" ], "Server": [ "ESF" ], + "X-XSS-Protection": [ + "0" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "Transfer-Encoding": [ + "chunked" + ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 15 Jun 2023 23:48:42 GMT" + "Tue, 25 Jul 2023 15:44:45 GMT" ], - "X-XSS-Protection": [ - "0" - ], - "Vary": [ - "Origin", - "X-Origin", - "Referer" - ], - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "210" @@ -765,7 +875,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/13DLvkJ93TbqF66eNF-uJm4RgUVC8SYrpRqPfEZTF0jQ?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/14ArdW5h8Jj5unQea2IKY27VkT-408d1VDCgbvmF_zXA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -783,6 +893,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -797,41 +910,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], "Cache-Control": [ "no-cache, no-store, max-age=0, must-revalidate" ], - "Content-Length": [ - "0" + "Vary": [ + "Origin, X-Origin" ], - "X-Content-Type-Options": [ - "nosniff" + "Content-Type": [ + "text/html" ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], "Alt-Svc": [ "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" ], + "Content-Length": [ + "0" + ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 15 Jun 2023 23:48:42 GMT" + "Tue, 25 Jul 2023 15:44:45 GMT" ], - "X-XSS-Protection": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], - "Pragma": [ - "no-cache" - ], - "Content-Type": [ - "text/html" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_insert_row.json b/tests/cassettes/WorksheetTest.test_insert_row.json index bb7020b06..494cce37e 100644 --- a/tests/cassettes/WorksheetTest.test_insert_row.json +++ b/tests/cassettes/WorksheetTest.test_insert_row.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "101" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:06 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:47 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "188" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"name\": \"Test WorksheetTest test_insert_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"name\": \"Test WorksheetTest test_insert_row\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:06 GMT" + "Tue, 25 Jul 2023 15:44:48 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:44:48 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "198" + ] + }, + "body": { + "string": "{\n \"id\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"name\": \"Test WorksheetTest test_insert_row\",\n \"createdTime\": \"2023-07-25T15:44:46.181Z\",\n \"modifiedTime\": \"2023-07-25T15:44:46.850Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:06 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:49 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3332" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_insert_row\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:07 GMT" + "Tue, 25 Jul 2023 15:44:49 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,37 +433,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:07 GMT" + "Tue, 25 Jul 2023 15:44:49 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -382,7 +477,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_insert_row 1\", \"test_insert_row 2\", \"test_insert_row 3\", \"test_insert_row 4\"], [\"test_insert_row 5\", \"test_insert_row 6\", \"test_insert_row 7\", \"test_insert_row 8\"], [\"test_insert_row 9\", \"test_insert_row 10\", \"test_insert_row 11\", \"test_insert_row 12\"], [\"test_insert_row 13\", \"test_insert_row 14\", \"test_insert_row 15\", \"test_insert_row 16\"], [\"test_insert_row 17\", \"test_insert_row 18\", \"test_insert_row 19\", \"test_insert_row 20\"], [\"test_insert_row 21\", \"test_insert_row 22\", \"test_insert_row 23\", \"test_insert_row 24\"]]}", "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "543" ], @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:07 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:50 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" + "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY:batchUpdate", "body": "{\"requests\": [{\"insertDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 1, \"endIndex\": 2}, \"inheritFromBefore\": false}}]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "143" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:07 GMT" + "Tue, 25 Jul 2023 15:44:50 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27%21A2:append?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A2:append?valueInputOption=RAW", "body": "{\"majorDimension\": \"ROWS\", \"values\": [[\"test_insert_row 25\", \"test_insert_row 26\", \"test_insert_row 27\", \"test_insert_row 28\", \"test_insert_row 29\", \"test_insert_row 30\", \"test_insert_row 31\", \"test_insert_row 32\"]]}", "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "216" ], @@ -575,51 +679,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:08 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:50 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "264" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"updates\": {\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"updatedRange\": \"Sheet1!A2:H2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 8,\n \"updatedCells\": 8\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updates\": {\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updatedRange\": \"Sheet1!A2:H2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 8,\n \"updatedCells\": 8\n }\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27%21A2%3A2", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A2%3A2", "body": null, "headers": { "User-Agent": [ @@ -637,6 +741,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -648,37 +755,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:08 GMT" + "Tue, 25 Jul 2023 15:44:50 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "312" @@ -692,7 +799,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27%21B2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21B2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"=1+1\"]]}", "headers": { "User-Agent": [ @@ -710,6 +817,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "22" ], @@ -727,51 +837,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:08 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:51 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"updatedRange\": \"Sheet1!B2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updatedRange\": \"Sheet1!B2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY:batchUpdate", "body": "{\"requests\": [{\"insertDimension\": {\"range\": {\"sheetId\": 0, \"dimension\": \"ROWS\", \"startIndex\": 0, \"endIndex\": 1}, \"inheritFromBefore\": false}}]}", "headers": { "User-Agent": [ @@ -789,6 +899,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "143" ], @@ -806,51 +919,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:08 GMT" + "Tue, 25 Jul 2023 15:44:51 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27%21A1:append?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21A1:append?valueInputOption=RAW", "body": "{\"majorDimension\": \"ROWS\", \"values\": [[\"test_insert_row 33\", \"test_insert_row 34\", \"test_insert_row 35\", \"test_insert_row 36\", \"test_insert_row 37\", \"test_insert_row 38\", \"test_insert_row 39\", \"test_insert_row 40\"]]}", "headers": { "User-Agent": [ @@ -868,6 +981,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "216" ], @@ -885,51 +1001,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:08 GMT" + "Tue, 25 Jul 2023 15:44:51 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "264" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"updates\": {\n \"spreadsheetId\": \"14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g\",\n \"updatedRange\": \"Sheet1!A1:H1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 8,\n \"updatedCells\": 8\n }\n}\n" + "string": "{\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updates\": {\n \"spreadsheetId\": \"1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY\",\n \"updatedRange\": \"Sheet1!A1:H1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 8,\n \"updatedCells\": 8\n }\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g/values/%27Sheet1%27%21B3?valueRenderOption=FORMULA", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY/values/%27Sheet1%27%21B3?valueRenderOption=FORMULA", "body": null, "headers": { "User-Agent": [ @@ -947,6 +1063,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -958,37 +1077,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:09 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:52 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "99" @@ -1002,7 +1121,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/14ddIVkOBwA-yrNeAQ4f2Z9RLKTp3NA3B95jYSnEq2-g?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1s-Om8IywJKLVPyzAVt1VoNpxCQi8RnixLIx16hTC1nY?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1020,6 +1139,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -1034,41 +1156,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:09 GMT" + "Tue, 25 Jul 2023 15:44:52 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_range.json b/tests/cassettes/WorksheetTest.test_range.json index 2a04049e4..4cc393c0b 100644 --- a/tests/cassettes/WorksheetTest.test_range.json +++ b/tests/cassettes/WorksheetTest.test_range.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "96" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:13 GMT" + "Tue, 25 Jul 2023 15:44:55 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "183" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8\",\n \"name\": \"Test WorksheetTest test_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\",\n \"name\": \"Test WorksheetTest test_range\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:13 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:56 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3327" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:44:56 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "193" + ] + }, + "body": { + "string": "{\n \"id\": \"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\",\n \"name\": \"Test WorksheetTest test_range\",\n \"createdTime\": \"2023-07-25T15:44:52.938Z\",\n \"modifiedTime\": \"2023-07-25T15:44:52.954Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:13 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:56 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3327" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:13 GMT" + "Tue, 25 Jul 2023 15:44:56 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8/values/%27Sheet1%27%21A1%3AA5", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/values/%27Sheet1%27%21A1%3AA5", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,37 +433,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:14 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:57 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -382,7 +477,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8/values/%27Sheet1%27%21A1%3AA5", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo/values/%27Sheet1%27%21A1%3AA5", "body": null, "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -411,37 +509,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:14 GMT" + "Tue, 25 Jul 2023 15:44:57 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -455,7 +553,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1j3tup-LT6aOqE9G05wb4dFILMd6DYbdK5zAAsiwFZV8?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1osRVLcv5VolVEOXtIis7bQ3kSxWbgklHfIxT8SBgYoo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -473,6 +571,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -487,41 +588,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:15 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:44:58 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_range_get_all_values.json b/tests/cassettes/WorksheetTest.test_range_get_all_values.json index 5da58d551..b1caf0c0d 100644 --- a/tests/cassettes/WorksheetTest.test_range_get_all_values.json +++ b/tests/cassettes/WorksheetTest.test_range_get_all_values.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "111" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:17 GMT" + "Tue, 25 Jul 2023 15:45:01 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "198" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w\",\n \"name\": \"Test WorksheetTest test_range_get_all_values\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"name\": \"Test WorksheetTest test_range_get_all_values\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:17 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:02 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3342" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:45:02 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "208" + ] + }, + "body": { + "string": "{\n \"id\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"name\": \"Test WorksheetTest test_range_get_all_values\",\n \"createdTime\": \"2023-07-25T15:44:58.736Z\",\n \"modifiedTime\": \"2023-07-25T15:44:58.754Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:17 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:03 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3342" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_get_all_values\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:18 GMT" + "Tue, 25 Jul 2023 15:45:03 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 4, \"columnCount\": 4}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "190" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:18 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:04 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27%21A1%3AD4?valueInputOption=RAW", "body": "{\"values\": [[\"\", \"Hi\", \"Mom\", \"\"], [\"My\", \"Name\", \"is\", \"bon\"], [\"\", \"\", \"\", \"\"], [\"1\", \"2\", \"3\", \"4\"]]}", "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "104" ], @@ -423,51 +521,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:18 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:04 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -485,6 +583,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -496,37 +597,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:18 GMT" + "Tue, 25 Jul 2023 15:45:05 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "250" @@ -540,7 +641,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w/values/%27Sheet1%27%21A1%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,37 +673,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:18 GMT" + "Tue, 25 Jul 2023 15:45:05 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "250" @@ -613,7 +717,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/10Am3-KhUI7Klb4JdipIa6xdyi6tflQmCEHnbJJYqR0w?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1b9PWR5NQiHNiqkGlwjsbeA2thyCHAtR-S37hZe-AxN8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -645,41 +752,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:19 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:06 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_range_reversed.json b/tests/cassettes/WorksheetTest.test_range_reversed.json index 3e864991a..40b836deb 100644 --- a/tests/cassettes/WorksheetTest.test_range_reversed.json +++ b/tests/cassettes/WorksheetTest.test_range_reversed.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "105" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:22 GMT" + "Tue, 25 Jul 2023 15:45:09 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM\",\n \"name\": \"Test WorksheetTest test_range_reversed\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\",\n \"name\": \"Test WorksheetTest test_range_reversed\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:22 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:10 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_reversed\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_reversed\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:45:10 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "202" + ] + }, + "body": { + "string": "{\n \"id\": \"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\",\n \"name\": \"Test WorksheetTest test_range_reversed\",\n \"createdTime\": \"2023-07-25T15:45:07.019Z\",\n \"modifiedTime\": \"2023-07-25T15:45:07.042Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:22 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:11 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_reversed\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_reversed\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:23 GMT" + "Tue, 25 Jul 2023 15:45:11 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM/values/%27Sheet1%27%21A1%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,37 +433,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:23 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:11 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -382,7 +477,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM/values/%27Sheet1%27%21D4%3AA1", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM/values/%27Sheet1%27%21D4%3AA1", "body": null, "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -411,37 +509,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:23 GMT" + "Tue, 25 Jul 2023 15:45:12 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -455,7 +553,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1RWshAHQwYiCnHzH1TZyPsVjdq_nv9oGichNu1nDsFeM?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1g1r-dQRh0JQDsTMdwCk20RjPpbOiV1ZQJvV9FuTgfoM?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -473,6 +571,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -487,41 +588,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:24 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:12 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_range_unbounded.json b/tests/cassettes/WorksheetTest.test_range_unbounded.json index 755bffc57..75dcc8b97 100644 --- a/tests/cassettes/WorksheetTest.test_range_unbounded.json +++ b/tests/cassettes/WorksheetTest.test_range_unbounded.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "106" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:27 GMT" + "Tue, 25 Jul 2023 15:45:15 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "193" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog\",\n \"name\": \"Test WorksheetTest test_range_unbounded\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\",\n \"name\": \"Test WorksheetTest test_range_unbounded\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:28 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:15 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_unbounded\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_unbounded\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:45:15 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "203" + ] + }, + "body": { + "string": "{\n \"id\": \"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\",\n \"name\": \"Test WorksheetTest test_range_unbounded\",\n \"createdTime\": \"2023-07-25T15:45:12.881Z\",\n \"modifiedTime\": \"2023-07-25T15:45:12.896Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:28 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:16 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_unbounded\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_range_unbounded\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:28 GMT" + "Tue, 25 Jul 2023 15:45:16 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog/values/%27Sheet1%27%21A1%3AC", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/values/%27Sheet1%27%21A1%3AC", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,37 +433,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:28 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:17 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "61" @@ -382,7 +477,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog/values/%27Sheet1%27%21A1%3AC1000", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0/values/%27Sheet1%27%21A1%3AC1000", "body": null, "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -411,37 +509,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:29 GMT" + "Tue, 25 Jul 2023 15:45:17 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "61" @@ -455,7 +553,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1FkncYYZXBHaTTbwL4w9TYnJTGw7KDphuyPH8LDUUAog?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1utXb66NX5-nPjoDafEQ49QouUDV5fgemKw66i0BvRn0?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -473,6 +571,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -487,41 +588,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:29 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:18 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_reorder_worksheets.json b/tests/cassettes/WorksheetTest.test_reorder_worksheets.json index 366f20a4c..3bd842be8 100644 --- a/tests/cassettes/WorksheetTest.test_reorder_worksheets.json +++ b/tests/cassettes/WorksheetTest.test_reorder_worksheets.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "109" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:33 GMT" + "Tue, 25 Jul 2023 15:45:20 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "196" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"name\": \"Test WorksheetTest test_reorder_worksheets\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"name\": \"Test WorksheetTest test_reorder_worksheets\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:33 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:21 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3340" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:45:21 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "206" + ] + }, + "body": { + "string": "{\n \"id\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"name\": \"Test WorksheetTest test_reorder_worksheets\",\n \"createdTime\": \"2023-07-25T15:45:18.649Z\",\n \"modifiedTime\": \"2023-07-25T15:45:19.476Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:33 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:21 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3340" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:34 GMT" + "Tue, 25 Jul 2023 15:45:22 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,51 +433,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:34 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:22 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3340" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -411,51 +509,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:34 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:22 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3340" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"index\": 0}, \"fields\": \"index\"}}]}", "headers": { "User-Agent": [ @@ -473,6 +571,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "104" ], @@ -490,51 +591,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:34 GMT" + "Tue, 25 Jul 2023 15:45:22 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -552,6 +653,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -563,51 +667,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:35 GMT" + "Tue, 25 Jul 2023 15:45:23 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3340" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_reorder_worksheets\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1tfJwaBDmQ06jGXBtQtM6Dc6Y2CGx10bpyshZd5ZZelo?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1nadkWb_WOzq2CP2E1x2-mr-BubnugMYrxsp7fUkU4bI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -625,6 +729,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -639,41 +746,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:35 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:23 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_resize.json b/tests/cassettes/WorksheetTest.test_resize.json index 7c2dac550..ce79f3d2f 100644 --- a/tests/cassettes/WorksheetTest.test_resize.json +++ b/tests/cassettes/WorksheetTest.test_resize.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "97" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:39 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:26 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "184" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"name\": \"Test WorksheetTest test_resize\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"name\": \"Test WorksheetTest test_resize\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:39 GMT" + "Tue, 25 Jul 2023 15:45:26 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:45:27 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "194" + ] + }, + "body": { + "string": "{\n \"id\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"name\": \"Test WorksheetTest test_resize\",\n \"createdTime\": \"2023-07-25T15:45:23.965Z\",\n \"modifiedTime\": \"2023-07-25T15:45:23.985Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:39 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:27 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:39 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:28 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 1010}}, \"fields\": \"gridProperties/rowCount\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "148" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:40 GMT" + "Tue, 25 Jul 2023 15:45:29 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:40 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:29 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1010,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1010,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"columnCount\": 36}}, \"fields\": \"gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "152" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:40 GMT" + "Tue, 25 Jul 2023 15:45:30 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,51 +673,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:40 GMT" + "Tue, 25 Jul 2023 15:45:30 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1010,\n \"columnCount\": 36\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1010,\n \"columnCount\": 36\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 1000, \"columnCount\": 26}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "194" ], @@ -648,51 +755,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:41 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:30 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -710,6 +817,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -721,51 +831,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:41 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:30 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3328" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_resize\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1jgrnfalfemTQ2TOdUccvJ979jfJXmw0xhN6afVF10d0?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1zZd5BsyheqLZLClTJlh-wr8ZXYMlg-TZquuJXw3hE7Q?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -783,6 +893,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -797,41 +910,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:42 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:31 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_show_gridlines.json b/tests/cassettes/WorksheetTest.test_show_gridlines.json index f32f94b8d..e4627d936 100644 --- a/tests/cassettes/WorksheetTest.test_show_gridlines.json +++ b/tests/cassettes/WorksheetTest.test_show_gridlines.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "105" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:45 GMT" + "Tue, 25 Jul 2023 15:45:33 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"name\": \"Test WorksheetTest test_show_gridlines\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"name\": \"Test WorksheetTest test_show_gridlines\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:45 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:34 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:45:34 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "202" + ] + }, + "body": { + "string": "{\n \"id\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"name\": \"Test WorksheetTest test_show_gridlines\",\n \"createdTime\": \"2023-07-25T15:45:32.039Z\",\n \"modifiedTime\": \"2023-07-25T15:45:32.749Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:45 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:34 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:46 GMT" + "Tue, 25 Jul 2023 15:45:35 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,51 +433,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:46 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:35 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"hideGridlines\": true}}, \"fields\": \"gridProperties.hideGridlines\"}}]}", "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "158" ], @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:46 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:36 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"hideGridlines\": false}}, \"fields\": \"gridProperties.hideGridlines\"}}]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "159" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:46 GMT" + "Tue, 25 Jul 2023 15:45:36 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,51 +673,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:46 GMT" + "Tue, 25 Jul 2023 15:45:36 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_show_gridlines\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1lIf_r2EVq9WYrNySYvey_m7tOnM6D_3DuEl6jtla8Is?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/14NVLkBPX5RIxjvpk9gVqGJaXoGtRCI72BrmQH4CJ_08?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -645,41 +752,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:47 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:37 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_sort.json b/tests/cassettes/WorksheetTest.test_sort.json index f46a7e3b6..b022c6ae4 100644 --- a/tests/cassettes/WorksheetTest.test_sort.json +++ b/tests/cassettes/WorksheetTest.test_sort.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "95" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:50 GMT" + "Tue, 25 Jul 2023 15:45:39 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "182" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"name\": \"Test WorksheetTest test_sort\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"name\": \"Test WorksheetTest test_sort\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:51 GMT" + "Tue, 25 Jul 2023 15:45:39 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3326" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_sort\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_sort\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:45:40 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "192" + ] + }, + "body": { + "string": "{\n \"id\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"name\": \"Test WorksheetTest test_sort\",\n \"createdTime\": \"2023-07-25T15:45:37.677Z\",\n \"modifiedTime\": \"2023-07-25T15:45:38.519Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:51 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:40 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3326" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_sort\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_sort\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:51 GMT" + "Tue, 25 Jul 2023 15:45:40 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"gridProperties\": {\"rowCount\": 6, \"columnCount\": 3}}, \"fields\": \"gridProperties/rowCount,gridProperties/columnCount\"}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "190" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:51 GMT" + "Tue, 25 Jul 2023 15:45:41 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27%21A1%3AC6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27%21A1%3AC6", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:52 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:41 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -461,7 +559,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27%21A1%3AC6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27%21A1%3AC6?valueInputOption=RAW", "body": "{\"values\": [[\"Apple\", \"2012\", \"4\"], [\"Banana\", \"2013\", \"3\"], [\"Canada\", \"2007\", \"1\"], [\"Dinosaur\", \"2013\", \"6\"], [\"Elephant\", \"2019\", \"2\"], [\"Fox\", \"2077\", \"5\"]]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "162" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:52 GMT" + "Tue, 25 Jul 2023 15:45:41 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"updatedRange\": \"Sheet1!A1:C6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 3,\n \"updatedCells\": 18\n}\n" + "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"updatedRange\": \"Sheet1!A1:C6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 3,\n \"updatedCells\": 18\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 2, \"sortOrder\": \"ASCENDING\"}]}}]}", "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "202" ], @@ -575,51 +679,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:52 GMT" + "Tue, 25 Jul 2023 15:45:42 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -637,6 +741,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -648,37 +755,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:52 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:42 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "394" @@ -692,7 +799,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 0, \"sortOrder\": \"DESCENDING\"}]}}]}", "headers": { "User-Agent": [ @@ -710,6 +817,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "203" ], @@ -723,55 +833,55 @@ }, "response": { "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:52 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:42 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -789,6 +899,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -800,37 +913,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:53 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:43 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "394" @@ -844,7 +957,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 1, \"sortOrder\": \"ASCENDING\"}, {\"dimensionIndex\": 2, \"sortOrder\": \"ASCENDING\"}]}}]}", "headers": { "User-Agent": [ @@ -862,6 +975,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "251" ], @@ -879,51 +995,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:53 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:43 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -941,6 +1057,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -952,37 +1071,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:53 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:43 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "394" @@ -996,7 +1115,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 0, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 2, \"sortOrder\": \"ASCENDING\"}]}}]}", "headers": { "User-Agent": [ @@ -1014,6 +1133,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "202" ], @@ -1031,51 +1153,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:53 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:44 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -1093,6 +1215,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -1104,37 +1229,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:53 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:44 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "394" @@ -1148,7 +1273,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo:batchUpdate", "body": "{\"requests\": [{\"sortRange\": {\"range\": {\"sheetId\": 0, \"startRowIndex\": 1, \"endRowIndex\": 6, \"startColumnIndex\": 0, \"endColumnIndex\": 3}, \"sortSpecs\": [{\"dimensionIndex\": 2, \"sortOrder\": \"DESCENDING\"}]}}]}", "headers": { "User-Agent": [ @@ -1166,6 +1291,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "203" ], @@ -1183,51 +1311,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:54 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:44 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ/values/%27Sheet1%27", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo/values/%27Sheet1%27", "body": null, "headers": { "User-Agent": [ @@ -1245,6 +1373,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -1256,37 +1387,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:54 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:44 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "394" @@ -1300,7 +1431,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1R3nggNqQGng15yqqWkR1p7CuD6ZltEG0dKtsNkNjGNQ?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/12Rih4NCvQAreMbZmLsd1VHG-fclk6tAcvHpXer10UJo?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1318,6 +1449,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -1332,41 +1466,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:54 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:45 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_acell.json b/tests/cassettes/WorksheetTest.test_update_acell.json index af7650a99..0855cf938 100644 --- a/tests/cassettes/WorksheetTest.test_update_acell.json +++ b/tests/cassettes/WorksheetTest.test_update_acell.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "103" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:58 GMT" + "Tue, 25 Jul 2023 15:45:48 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "190" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c\",\n \"name\": \"Test WorksheetTest test_update_acell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"name\": \"Test WorksheetTest test_update_acell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:58 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:48 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:45:49 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "200" + ] + }, + "body": { + "string": "{\n \"id\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"name\": \"Test WorksheetTest test_update_acell\",\n \"createdTime\": \"2023-07-25T15:45:45.745Z\",\n \"modifiedTime\": \"2023-07-25T15:45:45.759Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:58 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:49 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_acell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:58 GMT" + "Tue, 25 Jul 2023 15:45:49 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/values/%27Sheet1%27%21A2?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_update_acell 1\"]]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "37" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:58 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:50 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU\",\n \"updatedRange\": \"Sheet1!A2\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:59 GMT" + "Tue, 25 Jul 2023 15:45:50 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "114" @@ -461,7 +559,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1vlzj-xCpTsDpnlJklq2T_5fG4gruhp6XU1MLQ9TsX-c?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1IjpBMR2VHK6q24mmwKLc97xypdMfpKDpKnhgtjXywvU?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -493,41 +594,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:19:59 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:51 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_and_get.json b/tests/cassettes/WorksheetTest.test_update_and_get.json index 55db21bbe..9c2cae0e3 100644 --- a/tests/cassettes/WorksheetTest.test_update_and_get.json +++ b/tests/cassettes/WorksheetTest.test_update_and_get.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "105" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:02 GMT" + "Tue, 25 Jul 2023 15:45:53 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "192" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU\",\n \"name\": \"Test WorksheetTest test_update_and_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"name\": \"Test WorksheetTest test_update_and_get\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:03 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:53 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_and_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_and_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:45:53 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "202" + ] + }, + "body": { + "string": "{\n \"id\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"name\": \"Test WorksheetTest test_update_and_get\",\n \"createdTime\": \"2023-07-25T15:45:51.494Z\",\n \"modifiedTime\": \"2023-07-25T15:45:52.276Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:03 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:54 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3336" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_and_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_and_get\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:03 GMT" + "Tue, 25 Jul 2023 15:45:54 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU/values/%27Sheet1%27%21A1?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/values/%27Sheet1%27%21A1?valueInputOption=RAW", "body": "{\"values\": [[\"A1\", \"B1\", \"\", \"D1\"], [\"\", \"b2\", \"\", \"\"], [\"\", \"\", \"\", \"\"], [\"A4\", \"B4\", \"\", \"D4\"]]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "98" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:03 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:55 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" + "string": "{\n \"spreadsheetId\": \"10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk\",\n \"updatedRange\": \"Sheet1!A1:D4\",\n \"updatedRows\": 4,\n \"updatedColumns\": 4,\n \"updatedCells\": 16\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU/values/%27Sheet1%27%21A1%3AD4", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk/values/%27Sheet1%27%21A1%3AD4", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:04 GMT" + "Tue, 25 Jul 2023 15:45:55 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "234" @@ -461,7 +559,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1mOXw7sMsXPDbHdkk3LOyx0bs8Aaaq9pbCtH2yZo35PU?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/10qtWosgYMxoAa2zKbwTeOh0R98cj8xk9I4dvaXSsRWk?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -493,41 +594,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "text/html" ], - "Content-Length": [ - "0" - ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:04 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:55 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_cell.json b/tests/cassettes/WorksheetTest.test_update_cell.json index abe36a003..9483d8d0e 100644 --- a/tests/cassettes/WorksheetTest.test_update_cell.json +++ b/tests/cassettes/WorksheetTest.test_update_cell.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "102" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:07 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:45:58 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "189" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"name\": \"Test WorksheetTest test_update_cell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"name\": \"Test WorksheetTest test_update_cell\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:07 GMT" + "Tue, 25 Jul 2023 15:45:58 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:45:59 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "199" + ] + }, + "body": { + "string": "{\n \"id\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"name\": \"Test WorksheetTest test_update_cell\",\n \"createdTime\": \"2023-07-25T15:45:56.128Z\",\n \"modifiedTime\": \"2023-07-25T15:45:56.169Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:07 GMT" + "Tue, 25 Jul 2023 15:45:59 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3333" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:08 GMT" + "Tue, 25 Jul 2023 15:45:59 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_update_cell 1\"]]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "36" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:08 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:00 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:08 GMT" + "Tue, 25 Jul 2023 15:46:00 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "113" @@ -461,7 +559,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[42]]}", "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "18" ], @@ -496,51 +597,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:08 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:00 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -569,37 +673,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:08 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:00 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" @@ -613,7 +717,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"0042\"]]}", "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "22" ], @@ -648,51 +755,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:08 GMT" + "Tue, 25 Jul 2023 15:46:01 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -710,6 +817,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -721,37 +831,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:09 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:01 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" @@ -765,7 +875,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[42.01]]}", "headers": { "User-Agent": [ @@ -783,6 +893,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "21" ], @@ -800,51 +913,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:09 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:01 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -862,6 +975,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -873,37 +989,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:09 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:01 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "100" @@ -917,7 +1033,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"\\u0410\\u0440\\u0442\\u0443\\u0440\"]]}", "headers": { "User-Agent": [ @@ -935,6 +1051,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "48" ], @@ -952,51 +1071,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:09 GMT" + "Tue, 25 Jul 2023 15:46:02 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -1014,6 +1133,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -1025,37 +1147,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:09 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:02 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "105" @@ -1069,7 +1191,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1ljtdXgFqfAFaNdaUlfGMR4Vcn8Rw6tnYF6n2wMu1LgQ?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1O0vKkGrBm78UvFSooWHCG9Ie3NfZr8WgkaC0rvCw4AI?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1087,6 +1209,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -1101,41 +1226,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:10 GMT" + "Tue, 25 Jul 2023 15:46:02 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_cell_multiline.json b/tests/cassettes/WorksheetTest.test_update_cell_multiline.json index d52868685..46967bc57 100644 --- a/tests/cassettes/WorksheetTest.test_update_cell_multiline.json +++ b/tests/cassettes/WorksheetTest.test_update_cell_multiline.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "112" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:12 GMT" + "Tue, 25 Jul 2023 15:46:05 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "199" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY\",\n \"name\": \"Test WorksheetTest test_update_cell_multiline\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"name\": \"Test WorksheetTest test_update_cell_multiline\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:13 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:05 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3343" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_multiline\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_multiline\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:46:05 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "209" + ] + }, + "body": { + "string": "{\n \"id\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"name\": \"Test WorksheetTest test_update_cell_multiline\",\n \"createdTime\": \"2023-07-25T15:46:03.548Z\",\n \"modifiedTime\": \"2023-07-25T15:46:04.169Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:13 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:06 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3343" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_multiline\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_multiline\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:13 GMT" + "Tue, 25 Jul 2023 15:46:06 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/values/%27Sheet1%27%21B1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"test_update_cell_multiline 1\\ntest_update_cell_multiline 1\"]]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "76" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:14 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:06 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c\",\n \"updatedRange\": \"Sheet1!B1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:14 GMT" + "Tue, 25 Jul 2023 15:46:06 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "153" @@ -461,7 +559,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1q87Upncy3Mxbk0KgCodetqTZDOe0iqfqXvKg-uX1tqY?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1K4iKausKxFLlXmoTXBf8myyjhvIRqB2YOzq6Te9ia3c?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -493,41 +594,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:14 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:07 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_cell_objects.json b/tests/cassettes/WorksheetTest.test_update_cell_objects.json index 3820aacd0..1fc63aeb8 100644 --- a/tests/cassettes/WorksheetTest.test_update_cell_objects.json +++ b/tests/cassettes/WorksheetTest.test_update_cell_objects.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "110" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:17 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:10 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "197" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY\",\n \"name\": \"Test WorksheetTest test_update_cell_objects\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"name\": \"Test WorksheetTest test_update_cell_objects\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:18 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:11 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_objects\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_objects\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:46:11 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "207" + ] + }, + "body": { + "string": "{\n \"id\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"name\": \"Test WorksheetTest test_update_cell_objects\",\n \"createdTime\": \"2023-07-25T15:46:07.703Z\",\n \"modifiedTime\": \"2023-07-25T15:46:07.720Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:18 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:11 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_objects\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_objects\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:18 GMT" + "Tue, 25 Jul 2023 15:46:12 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27%21A1%3AB2?valueInputOption=RAW", "body": "{\"values\": [[null, \"cell row 1, col 2\"], [\"cell row 2 col 1\", null]]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "69" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:18 GMT" + "Tue, 25 Jul 2023 15:46:12 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY\",\n \"updatedRange\": \"Sheet1!A1:B2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" + "string": "{\n \"spreadsheetId\": \"1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ\",\n \"updatedRange\": \"Sheet1!A1:B2\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27%21B1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:19 GMT" + "Tue, 25 Jul 2023 15:46:12 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "112" @@ -461,7 +559,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ/values/%27Sheet1%27%21A2?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -490,37 +591,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:19 GMT" + "Tue, 25 Jul 2023 15:46:12 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "111" @@ -534,7 +635,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1vLZefJc1fPM3xK5UqRV5fpVVdBFuLP_fZ4gtLuYEWGY?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1XoZjVxwvqAD_6G9Fh656U-253GrNsuGrZAZdmx1KnvQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -552,6 +653,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -566,41 +670,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:20 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:13 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_cell_unicode.json b/tests/cassettes/WorksheetTest.test_update_cell_unicode.json index df9704e79..1577c8e90 100644 --- a/tests/cassettes/WorksheetTest.test_update_cell_unicode.json +++ b/tests/cassettes/WorksheetTest.test_update_cell_unicode.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "110" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:23 GMT" + "Tue, 25 Jul 2023 15:46:16 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "197" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM\",\n \"name\": \"Test WorksheetTest test_update_cell_unicode\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"name\": \"Test WorksheetTest test_update_cell_unicode\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:23 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:17 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:46:17 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "207" + ] + }, + "body": { + "string": "{\n \"id\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"name\": \"Test WorksheetTest test_update_cell_unicode\",\n \"createdTime\": \"2023-07-25T15:46:14.114Z\",\n \"modifiedTime\": \"2023-07-25T15:46:14.129Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:24 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:17 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3341" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cell_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:24 GMT" + "Tue, 25 Jul 2023 15:46:18 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/values/%27Sheet1%27%21A1?valueInputOption=USER_ENTERED", "body": "{\"values\": [[\"I\\u00f1t\\u00ebrn\\u00e2ti\\u00f4n\\u00e0liz\\u00e6ti\\u00f8n\"]]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "73" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:24 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:19 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -417,37 +515,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:24 GMT" + "Tue, 25 Jul 2023 15:46:19 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "122" @@ -461,7 +559,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1pnqQrNwYzKT3C0BCJrt0h8GfhY0AfLSPeXZzbp91wSM?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1LZ7o3GlIynfZv7mjWr0IzV-YKgpLNyWqtd4CY5P1hBA?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -493,41 +594,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:25 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:19 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_cells.json b/tests/cassettes/WorksheetTest.test_update_cells.json index caab8e7d9..945d72d5c 100644 --- a/tests/cassettes/WorksheetTest.test_update_cells.json +++ b/tests/cassettes/WorksheetTest.test_update_cells.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "103" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:28 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:22 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "190" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk\",\n \"name\": \"Test WorksheetTest test_update_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"name\": \"Test WorksheetTest test_update_cells\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:29 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:22 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:46:22 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "200" + ] + }, + "body": { + "string": "{\n \"id\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"name\": \"Test WorksheetTest test_update_cells\",\n \"createdTime\": \"2023-07-25T15:46:20.182Z\",\n \"modifiedTime\": \"2023-07-25T15:46:21.154Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:29 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:23 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:29 GMT" + "Tue, 25 Jul 2023 15:46:23 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk/values/%27Sheet1%27%21A1%3AA10", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,37 +433,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:29 GMT" + "Tue, 25 Jul 2023 15:46:23 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "59" @@ -382,7 +477,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27%21A1%3AA10?valueInputOption=RAW", "body": "{\"values\": [[\"test_update_cells 1\\ntest_update_cells 1\"], [\"test_update_cells 2\"], [\"test_update_cells 3\"], [\"test_update_cells 4\"], [\"test_update_cells 5\"], [\"test_update_cells 6\"], [\"test_update_cells 7\"], [\"test_update_cells 8\"], [\"test_update_cells 9\"], [\"test_update_cells 10\"]]}", "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "284" ], @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:30 GMT" + "Tue, 25 Jul 2023 15:46:24 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "171" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" + "string": "{\n \"spreadsheetId\": \"1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU\",\n \"updatedRange\": \"Sheet1!A1:A10\",\n \"updatedRows\": 10,\n \"updatedColumns\": 1,\n \"updatedCells\": 10\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk/values/%27Sheet1%27%21A1%3AA10", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU/values/%27Sheet1%27%21A1%3AA10", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -490,37 +591,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:30 GMT" + "Tue, 25 Jul 2023 15:46:24 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "509" @@ -534,7 +635,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1LqOoOQjFXPKaK2F3jdb7JuRSQ3Pu-D5Ug8EczPe55uk?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1ETPl9i1QckHxWEzw-l-txjt52huw3yD9u5-KRTJj2kU?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -552,6 +653,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -566,41 +670,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:30 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:25 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_cells_noncontiguous.json b/tests/cassettes/WorksheetTest.test_update_cells_noncontiguous.json index 93b3d14c0..609134a52 100644 --- a/tests/cassettes/WorksheetTest.test_update_cells_noncontiguous.json +++ b/tests/cassettes/WorksheetTest.test_update_cells_noncontiguous.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "117" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:33 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:27 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "204" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho\",\n \"name\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"name\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:33 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:28 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3348" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:46:28 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "214" + ] + }, + "body": { + "string": "{\n \"id\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"name\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"createdTime\": \"2023-07-25T15:46:25.720Z\",\n \"modifiedTime\": \"2023-07-25T15:46:26.691Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:34 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:28 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3348" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_noncontiguous\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:34 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:29 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,37 +433,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:34 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:29 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "58" @@ -382,7 +477,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_update_cells_noncontiguous 1\", \"test_update_cells_noncontiguous 2\", \"test_update_cells_noncontiguous 3\", \"test_update_cells_noncontiguous 4\"], [\"test_update_cells_noncontiguous 5\", \"test_update_cells_noncontiguous 6\", \"test_update_cells_noncontiguous 7\", \"test_update_cells_noncontiguous 8\"], [\"test_update_cells_noncontiguous 9\", \"test_update_cells_noncontiguous 10\", \"test_update_cells_noncontiguous 11\", \"test_update_cells_noncontiguous 12\"], [\"test_update_cells_noncontiguous 13\", \"test_update_cells_noncontiguous 14\", \"test_update_cells_noncontiguous 15\", \"test_update_cells_noncontiguous 16\"], [\"test_update_cells_noncontiguous 17\", \"test_update_cells_noncontiguous 18\", \"test_update_cells_noncontiguous 19\", \"test_update_cells_noncontiguous 20\"], [\"test_update_cells_noncontiguous 21\", \"test_update_cells_noncontiguous 22\", \"test_update_cells_noncontiguous 23\", \"test_update_cells_noncontiguous 24\"]]}", "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "927" ], @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:34 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:29 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "169" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" + "string": "{\n \"spreadsheetId\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 6,\n \"updatedColumns\": 4,\n \"updatedCells\": 24\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -490,37 +591,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:34 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:29 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "1195" @@ -534,7 +635,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6?valueInputOption=RAW", "body": "{\"values\": [[\"test_update_cells_noncontiguous 25 top_left\", null, null, null], [null, null, null, null], [null, null, null, null], [null, null, null, null], [null, null, null, null], [null, null, null, \"test_update_cells_noncontiguous 26 bottom_right\"]]}", "headers": { "User-Agent": [ @@ -552,6 +653,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "254" ], @@ -569,51 +673,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:35 GMT" + "Tue, 25 Jul 2023 15:46:30 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "168" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" + "string": "{\n \"spreadsheetId\": \"1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8\",\n \"updatedRange\": \"Sheet1!A1:D6\",\n \"updatedRows\": 2,\n \"updatedColumns\": 2,\n \"updatedCells\": 2\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho/values/%27Sheet1%27%21A1%3AD6", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8/values/%27Sheet1%27%21A1%3AD6", "body": null, "headers": { "User-Agent": [ @@ -631,6 +735,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -642,37 +749,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:35 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:30 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "1218" @@ -686,7 +793,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1N7FFikbOzSd1IaxPLncDwpp36sJIlepZgY4bozj6_ho?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1UldWjrYrJmrRFfkS8ifdyB5FoROqWUfCa7udelG-c_8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -704,6 +811,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -718,41 +828,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:36 GMT" + "Tue, 25 Jul 2023 15:46:31 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_cells_unicode.json b/tests/cassettes/WorksheetTest.test_update_cells_unicode.json index 886f8ebde..e6eee01e5 100644 --- a/tests/cassettes/WorksheetTest.test_update_cells_unicode.json +++ b/tests/cassettes/WorksheetTest.test_update_cells_unicode.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "111" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:38 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:33 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "198" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4\",\n \"name\": \"Test WorksheetTest test_update_cells_unicode\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"name\": \"Test WorksheetTest test_update_cells_unicode\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:39 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:34 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3342" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:46:34 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "208" + ] + }, + "body": { + "string": "{\n \"id\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"name\": \"Test WorksheetTest test_update_cells_unicode\",\n \"createdTime\": \"2023-07-25T15:46:31.432Z\",\n \"modifiedTime\": \"2023-07-25T15:46:32.462Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:39 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:34 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3342" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_cells_unicode\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:39 GMT" + "Tue, 25 Jul 2023 15:46:34 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,37 +433,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:39 GMT" + "Tue, 25 Jul 2023 15:46:35 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "55" @@ -382,7 +477,7 @@ { "request": { "method": "PUT", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4/values/%27Sheet1%27%21A1%3AA1?valueInputOption=RAW", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27%21A1%3AA1?valueInputOption=RAW", "body": "{\"values\": [[\"I\\u00f1t\\u00ebrn\\u00e2ti\\u00f4n\\u00e0liz\\u00e6ti\\u00f8n\"]]}", "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "73" ], @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:40 GMT" + "Tue, 25 Jul 2023 15:46:35 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "165" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" + "string": "{\n \"spreadsheetId\": \"1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw\",\n \"updatedRange\": \"Sheet1!A1\",\n \"updatedRows\": 1,\n \"updatedColumns\": 1,\n \"updatedCells\": 1\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw/values/%27Sheet1%27%21A1?valueRenderOption=FORMATTED_VALUE", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -490,37 +591,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:40 GMT" + "Tue, 25 Jul 2023 15:46:35 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "122" @@ -534,7 +635,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1Kva_EFqD37c9B8MpD-Ww31mtllgX47VEZbF9xgq-rG4?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1afA_DaAzhWfH4uJBJf-xW1NoEBJGTwiqv0gEqzcvMvw?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -552,6 +653,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -566,41 +670,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:41 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:36 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_tab_color.json b/tests/cassettes/WorksheetTest.test_update_tab_color.json index 2adc99957..1ea2adec5 100644 --- a/tests/cassettes/WorksheetTest.test_update_tab_color.json +++ b/tests/cassettes/WorksheetTest.test_update_tab_color.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "107" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:43 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:38 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "194" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y\",\n \"name\": \"Test WorksheetTest test_update_tab_color\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"name\": \"Test WorksheetTest test_update_tab_color\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:44 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:39 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3338" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" + ], + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:46:39 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "204" + ] + }, + "body": { + "string": "{\n \"id\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"name\": \"Test WorksheetTest test_update_tab_color\",\n \"createdTime\": \"2023-07-25T15:46:36.621Z\",\n \"modifiedTime\": \"2023-07-25T15:46:37.474Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:44 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:39 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3338" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_tab_color\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:44 GMT" + "Tue, 25 Jul 2023 15:46:39 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y?fields=sheets.properties.tabColorStyle", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,37 +433,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:45 GMT" + "Tue, 25 Jul 2023 15:46:40 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "57" @@ -382,7 +477,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"tabColorStyle\": {\"rgbColor\": {\"red\": 1, \"green\": 0, \"blue\": 0.5}}}, \"fields\": \"tabColorStyle\"}}]}", "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "168" ], @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:45 GMT" + "Tue, 25 Jul 2023 15:46:40 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y?fields=sheets.properties.tabColorStyle", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?fields=sheets.properties.tabColorStyle", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -490,37 +591,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:45 GMT" + "Tue, 25 Jul 2023 15:46:40 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "190" @@ -534,7 +635,7 @@ { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1YCBgNwCizAu740H2JSGD6vC70k9Zu7OuVcp7oG2ad6Y?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1TWoZhXtsJieNWLc2QJJ953D8r6Ukog2gPGUWX6iEIKQ?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -552,6 +653,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -566,41 +670,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:46 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:41 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_update_title.json b/tests/cassettes/WorksheetTest.test_update_title.json index 1406b6a90..3da30c243 100644 --- a/tests/cassettes/WorksheetTest.test_update_title.json +++ b/tests/cassettes/WorksheetTest.test_update_title.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "103" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:48 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:43 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "190" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY\",\n \"name\": \"Test WorksheetTest test_update_title\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"name\": \"Test WorksheetTest test_update_title\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:49 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:44 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:46:44 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "200" + ] + }, + "body": { + "string": "{\n \"id\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"name\": \"Test WorksheetTest test_update_title\",\n \"createdTime\": \"2023-07-25T15:46:41.794Z\",\n \"modifiedTime\": \"2023-07-25T15:46:42.740Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:49 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:44 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:49 GMT" + "Tue, 25 Jul 2023 15:46:45 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,51 +433,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:49 GMT" + "Tue, 25 Jul 2023 15:46:45 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3334" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c:batchUpdate", "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 0, \"title\": \"I'm a new title\"}, \"fields\": \"title\"}}]}", "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "120" ], @@ -417,51 +515,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:50 GMT" + "Tue, 25 Jul 2023 15:46:45 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -479,6 +577,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -490,51 +591,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:50 GMT" + "Tue, 25 Jul 2023 15:46:45 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3343" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"I'm a new title\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_update_title\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"I'm a new title\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1vonQwyqIYjeT2hr89wfyqGk84Th0qFu9WbBxd-7digY?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1D-huCbWbhJczzPfxlVr9Zbl6YuC1RbkUXacd2EzNd6c?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -552,6 +653,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -566,41 +670,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:51 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:46 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_worksheet_notes.json b/tests/cassettes/WorksheetTest.test_worksheet_notes.json index 8819022db..fc804cd93 100644 --- a/tests/cassettes/WorksheetTest.test_worksheet_notes.json +++ b/tests/cassettes/WorksheetTest.test_worksheet_notes.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "106" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Vary": [ + "Origin, X-Origin" ], - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:53 GMT" + "Tue, 25 Jul 2023 15:46:49 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "193" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"name\": \"Test WorksheetTest test_worksheet_notes\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"name\": \"Test WorksheetTest test_worksheet_notes\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:53 GMT" + "Tue, 25 Jul 2023 15:46:49 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:46:50 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "203" + ] + }, + "body": { + "string": "{\n \"id\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"name\": \"Test WorksheetTest test_worksheet_notes\",\n \"createdTime\": \"2023-07-25T15:46:47.267Z\",\n \"modifiedTime\": \"2023-07-25T15:46:48.488Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:53 GMT" + "Tue, 25 Jul 2023 15:46:50 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:54 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:50 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -338,51 +433,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:54 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:50 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3337" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_notes\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -400,6 +495,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -411,37 +509,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:54 GMT" + "Tue, 25 Jul 2023 15:46:50 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "69" @@ -455,7 +553,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"slim shaddy\"}]}]}}]}", "headers": { "User-Agent": [ @@ -473,6 +571,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "207" ], @@ -490,51 +591,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:54 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:51 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -552,6 +653,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -563,37 +667,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:54 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:51 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "259" @@ -607,7 +711,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"the real slim shaddy\"}]}]}}]}", "headers": { "User-Agent": [ @@ -625,6 +729,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "216" ], @@ -642,51 +749,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:54 GMT" + "Tue, 25 Jul 2023 15:46:51 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -704,6 +811,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -715,37 +825,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:55 GMT" + "Tue, 25 Jul 2023 15:46:51 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "268" @@ -759,7 +869,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"\"}]}]}}]}", "headers": { "User-Agent": [ @@ -777,6 +887,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "196" ], @@ -794,51 +907,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:55 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:52 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -856,6 +969,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -863,41 +979,41 @@ }, "response": { "status": { - "code": 200, - "message": "OK" - }, - "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:55 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:52 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "69" @@ -911,7 +1027,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"read my note\"}]}]}}, {\"updateCells\": {\"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"Or don't\"}]}]}}]}", "headers": { "User-Agent": [ @@ -929,6 +1045,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "398" ], @@ -946,51 +1065,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:55 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:52 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "105" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"replies\": [\n {},\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"replies\": [\n {},\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -1008,6 +1127,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -1019,37 +1141,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:55 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:52 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "260" @@ -1063,7 +1185,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21B2&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21B2&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -1081,6 +1203,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -1092,37 +1217,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:56 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:52 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "256" @@ -1136,7 +1261,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"remember to clean bedroom\"}]}]}}, {\"updateCells\": {\"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"do homeworks\"}]}]}}]}", "headers": { "User-Agent": [ @@ -1154,6 +1279,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "415" ], @@ -1171,51 +1299,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:56 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:53 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "105" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"replies\": [\n {},\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"replies\": [\n {},\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21A1&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -1233,6 +1361,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -1244,37 +1375,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:56 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:53 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "273" @@ -1288,7 +1419,7 @@ { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?ranges=%27Sheet1%27%21B2&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?ranges=%27Sheet1%27%21B2&fields=sheets%2Fdata%2FrowData%2Fvalues%2Fnote", "body": null, "headers": { "User-Agent": [ @@ -1306,6 +1437,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -1317,37 +1451,37 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:56 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:53 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "260" @@ -1361,7 +1495,7 @@ { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8:batchUpdate", "body": "{\"requests\": [{\"updateCells\": {\"range\": {\"startRowIndex\": 0, \"endRowIndex\": 1, \"startColumnIndex\": 0, \"endColumnIndex\": 1, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"\"}]}]}}, {\"updateCells\": {\"range\": {\"startRowIndex\": 1, \"endRowIndex\": 2, \"startColumnIndex\": 1, \"endColumnIndex\": 2, \"sheetId\": 0}, \"fields\": \"note\", \"rows\": [{\"values\": [{\"note\": \"\"}]}]}}]}", "headers": { "User-Agent": [ @@ -1379,6 +1513,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "378" ], @@ -1396,51 +1533,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:56 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:53 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "105" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI\",\n \"replies\": [\n {},\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8\",\n \"replies\": [\n {},\n {}\n ]\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1Bg83FbaDsbquq5OZ_mpjIuTKnNwndwEqTn0dUiNA4NI?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/18Ull2muNRPgPfFzgGlna1bhw1CrwnmgkmUuEzPSBcn8?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -1458,6 +1595,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -1472,41 +1612,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:57 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:54 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/cassettes/WorksheetTest.test_worksheet_update_index.json b/tests/cassettes/WorksheetTest.test_worksheet_update_index.json index 9d3c94299..94811212c 100644 --- a/tests/cassettes/WorksheetTest.test_worksheet_update_index.json +++ b/tests/cassettes/WorksheetTest.test_worksheet_update_index.json @@ -22,6 +22,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "113" ], @@ -39,55 +42,55 @@ "message": "OK" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], - "Transfer-Encoding": [ - "chunked" + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], - "Vary": [ - "Origin, X-Origin" - ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "Pragma": [ - "no-cache" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:20:59 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:57 GMT" ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "200" ] }, "body": { - "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"name\": \"Test WorksheetTest test_worksheet_update_index\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" + "string": "{\n \"kind\": \"drive#file\",\n \"id\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"name\": \"Test WorksheetTest test_worksheet_update_index\",\n \"mimeType\": \"application/vnd.google-apps.spreadsheet\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -105,6 +108,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -116,51 +122,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:21:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:57 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3344" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/edit\"\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw?includeGridData=false", + "uri": "https://www.googleapis.com/drive/v3/files/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?supportsAllDrives=True&includeItemsFromAllDrives=True&fields=id%2Cname%2CcreatedTime%2CmodifiedTime", "body": null, "headers": { "User-Agent": [ @@ -178,6 +184,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -189,51 +198,131 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" + ], + "Vary": [ + "Origin, X-Origin" ], "Content-Type": [ "application/json; charset=UTF-8" ], + "Server": [ + "ESF" + ], + "Pragma": [ + "no-cache" + ], + "X-XSS-Protection": [ + "0" + ], + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" + ], + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" + ], + "X-Frame-Options": [ + "SAMEORIGIN" + ], + "Date": [ + "Tue, 25 Jul 2023 15:46:57 GMT" + ], + "X-Content-Type-Options": [ + "nosniff" + ], + "content-length": [ + "210" + ] + }, + "body": { + "string": "{\n \"id\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"name\": \"Test WorksheetTest test_worksheet_update_index\",\n \"createdTime\": \"2023-07-25T15:46:54.885Z\",\n \"modifiedTime\": \"2023-07-25T15:46:54.905Z\"\n}\n" + } + } + }, + { + "request": { + "method": "GET", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false", + "body": null, + "headers": { + "User-Agent": [ + "python-requests/2.31.0" + ], + "Accept-Encoding": [ + "gzip, deflate" + ], + "Accept": [ + "*/*" + ], + "Connection": [ + "keep-alive" + ], + "x-goog-api-client": [ + "cred-type/sa" + ], + "x-identity-trust-boundary": [ + "0" + ], + "authorization": [ + "" + ] + } + }, + "response": { + "status": { + "code": 200, + "message": "OK" + }, + "headers": { "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:21:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:58 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "3344" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw/values/%27Sheet1%27:clear", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/values/%27Sheet1%27:clear", "body": null, "headers": { "User-Agent": [ @@ -251,6 +340,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -265,51 +357,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:21:00 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:58 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "107" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"clearedRange\": \"Sheet1!A1:Z1000\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_sheet\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ @@ -327,6 +419,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "147" ], @@ -344,51 +439,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:21:01 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:58 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ - "385" + "384" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 1563411409,\n \"title\": \"test_sheet\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 155988897,\n \"title\": \"test_sheet\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw:batchUpdate", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E:batchUpdate", "body": "{\"requests\": [{\"addSheet\": {\"properties\": {\"title\": \"test_sheet 2\", \"sheetType\": \"GRID\", \"gridProperties\": {\"rowCount\": 100, \"columnCount\": 100}}}}]}", "headers": { "User-Agent": [ @@ -406,6 +501,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "149" ], @@ -423,51 +521,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:21:01 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:58 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "386" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 168293780,\n \"title\": \"test_sheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"replies\": [\n {\n \"addSheet\": {\n \"properties\": {\n \"sheetId\": 905329856,\n \"title\": \"test_sheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n }\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -485,6 +583,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -496,52 +597,52 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:21:01 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:59 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ - "3841" + "3840" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1563411409,\n \"title\": \"test_sheet\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 168293780,\n \"title\": \"test_sheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 155988897,\n \"title\": \"test_sheet\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 905329856,\n \"title\": \"test_sheet 2\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/edit\"\n}\n" } } }, { "request": { "method": "POST", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw:batchUpdate", - "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 168293780, \"index\": 0}, \"fields\": \"index\"}}]}", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E:batchUpdate", + "body": "{\"requests\": [{\"updateSheetProperties\": {\"properties\": {\"sheetId\": 905329856, \"index\": 0}, \"fields\": \"index\"}}]}", "headers": { "User-Agent": [ "python-requests/2.31.0" @@ -558,6 +659,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "112" ], @@ -575,51 +679,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:21:01 GMT" + "Tue, 25 Jul 2023 15:46:59 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ "97" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"replies\": [\n {}\n ]\n}\n" + "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"replies\": [\n {}\n ]\n}\n" } } }, { "request": { "method": "GET", - "uri": "https://sheets.googleapis.com/v4/spreadsheets/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw?includeGridData=false", + "uri": "https://sheets.googleapis.com/v4/spreadsheets/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?includeGridData=false", "body": null, "headers": { "User-Agent": [ @@ -637,6 +741,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "authorization": [ "" ] @@ -648,51 +755,51 @@ "message": "OK" }, "headers": { - "Transfer-Encoding": [ - "chunked" - ], - "Content-Type": [ - "application/json; charset=UTF-8" - ], "Vary": [ "Origin", "X-Origin", "Referer" ], + "Cache-Control": [ + "private" + ], + "Content-Type": [ + "application/json; charset=UTF-8" + ], "Server": [ "ESF" ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Transfer-Encoding": [ + "chunked" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:21:01 GMT" - ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + "Tue, 25 Jul 2023 15:46:59 GMT" ], - "Cache-Control": [ - "private" + "X-Content-Type-Options": [ + "nosniff" ], "content-length": [ - "3841" + "3840" ] }, "body": { - "string": "{\n \"spreadsheetId\": \"1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 168293780,\n \"title\": \"test_sheet 2\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 1563411409,\n \"title\": \"test_sheet\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw/edit\"\n}\n" + "string": "{\n \"spreadsheetId\": \"1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E\",\n \"properties\": {\n \"title\": \"Test WorksheetTest test_worksheet_update_index\",\n \"locale\": \"en_US\",\n \"autoRecalc\": \"ON_CHANGE\",\n \"timeZone\": \"Etc/GMT\",\n \"defaultFormat\": {\n \"backgroundColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n },\n \"padding\": {\n \"top\": 2,\n \"right\": 3,\n \"bottom\": 2,\n \"left\": 3\n },\n \"verticalAlignment\": \"BOTTOM\",\n \"wrapStrategy\": \"OVERFLOW_CELL\",\n \"textFormat\": {\n \"foregroundColor\": {},\n \"fontFamily\": \"arial,sans,sans-serif\",\n \"fontSize\": 10,\n \"bold\": false,\n \"italic\": false,\n \"strikethrough\": false,\n \"underline\": false,\n \"foregroundColorStyle\": {\n \"rgbColor\": {}\n }\n },\n \"backgroundColorStyle\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n \"spreadsheetTheme\": {\n \"primaryFontFamily\": \"Arial\",\n \"themeColors\": [\n {\n \"colorType\": \"TEXT\",\n \"color\": {\n \"rgbColor\": {}\n }\n },\n {\n \"colorType\": \"BACKGROUND\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 1,\n \"blue\": 1\n }\n }\n },\n {\n \"colorType\": \"ACCENT1\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.25882354,\n \"green\": 0.52156866,\n \"blue\": 0.95686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT2\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.91764706,\n \"green\": 0.2627451,\n \"blue\": 0.20784314\n }\n }\n },\n {\n \"colorType\": \"ACCENT3\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.9843137,\n \"green\": 0.7372549,\n \"blue\": 0.015686275\n }\n }\n },\n {\n \"colorType\": \"ACCENT4\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.20392157,\n \"green\": 0.65882355,\n \"blue\": 0.3254902\n }\n }\n },\n {\n \"colorType\": \"ACCENT5\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 1,\n \"green\": 0.42745098,\n \"blue\": 0.003921569\n }\n }\n },\n {\n \"colorType\": \"ACCENT6\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.27450982,\n \"green\": 0.7411765,\n \"blue\": 0.7764706\n }\n }\n },\n {\n \"colorType\": \"LINK\",\n \"color\": {\n \"rgbColor\": {\n \"red\": 0.06666667,\n \"green\": 0.33333334,\n \"blue\": 0.8\n }\n }\n }\n ]\n }\n },\n \"sheets\": [\n {\n \"properties\": {\n \"sheetId\": 905329856,\n \"title\": \"test_sheet 2\",\n \"index\": 0,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 0,\n \"title\": \"Sheet1\",\n \"index\": 1,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 1000,\n \"columnCount\": 26\n }\n }\n },\n {\n \"properties\": {\n \"sheetId\": 155988897,\n \"title\": \"test_sheet\",\n \"index\": 2,\n \"sheetType\": \"GRID\",\n \"gridProperties\": {\n \"rowCount\": 100,\n \"columnCount\": 100\n }\n }\n }\n ],\n \"spreadsheetUrl\": \"https://docs.google.com/spreadsheets/d/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E/edit\"\n}\n" } } }, { "request": { "method": "DELETE", - "uri": "https://www.googleapis.com/drive/v3/files/1POwxDXP7m27I0bawPmAnH7vKM4ITBnb5dIxtzV4DWxw?supportsAllDrives=True", + "uri": "https://www.googleapis.com/drive/v3/files/1fhudDNou5hhsGqfr0TM-mntLXzzD73G1x83vstdwX6E?supportsAllDrives=True", "body": null, "headers": { "User-Agent": [ @@ -710,6 +817,9 @@ "x-goog-api-client": [ "cred-type/sa" ], + "x-identity-trust-boundary": [ + "0" + ], "Content-Length": [ "0" ], @@ -724,41 +834,41 @@ "message": "No Content" }, "headers": { - "Expires": [ - "Mon, 01 Jan 1990 00:00:00 GMT" - ], - "Content-Type": [ - "text/html" - ], - "Content-Length": [ - "0" + "Cache-Control": [ + "no-cache, no-store, max-age=0, must-revalidate" ], "Vary": [ "Origin, X-Origin" ], + "Content-Type": [ + "text/html" + ], "Server": [ "ESF" ], + "Pragma": [ + "no-cache" + ], "X-XSS-Protection": [ "0" ], - "X-Content-Type-Options": [ - "nosniff" + "Expires": [ + "Mon, 01 Jan 1990 00:00:00 GMT" ], - "Pragma": [ - "no-cache" + "Alt-Svc": [ + "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" + ], + "Content-Length": [ + "0" ], "X-Frame-Options": [ "SAMEORIGIN" ], "Date": [ - "Thu, 08 Jun 2023 22:21:02 GMT" + "Tue, 25 Jul 2023 15:47:00 GMT" ], - "Alt-Svc": [ - "h3=\":443\"; ma=2592000,h3-29=\":443\"; ma=2592000" - ], - "Cache-Control": [ - "no-cache, no-store, max-age=0, must-revalidate" + "X-Content-Type-Options": [ + "nosniff" ] }, "body": { diff --git a/tests/spreadsheet_test.py b/tests/spreadsheet_test.py index 5bf98cf63..0dadf3700 100644 --- a/tests/spreadsheet_test.py +++ b/tests/spreadsheet_test.py @@ -38,8 +38,10 @@ def test_get_worksheet(self): @pytest.mark.vcr() def test_get_worksheet_by_id(self): - sheet1 = self.spreadsheet.get_worksheet_by_id(0) - self.assertTrue(isinstance(sheet1, gspread.Worksheet)) + sheet1_by_int = self.spreadsheet.get_worksheet_by_id(0) + sheet1_by_str = self.spreadsheet.get_worksheet_by_id("0") + self.assertTrue(isinstance(sheet1_by_int, gspread.Worksheet)) + self.assertTrue(isinstance(sheet1_by_str, gspread.Worksheet)) @pytest.mark.vcr() def test_worksheet(self): @@ -103,6 +105,7 @@ def test_add_del_worksheet(self): sg = self._sequence_generator() worksheet1_name = next(sg) worksheet2_name = next(sg) + worksheet3_name = next(sg) worksheet_list = self.spreadsheet.worksheets() self.assertEqual(len(worksheet_list), 1) @@ -111,14 +114,16 @@ def test_add_del_worksheet(self): # Add worksheet1 = self.spreadsheet.add_worksheet(worksheet1_name, 1, 1) worksheet2 = self.spreadsheet.add_worksheet(worksheet2_name, 1, 1) + worksheet3 = self.spreadsheet.add_worksheet(worksheet3_name, 1, 1) # Re-read, check again worksheet_list = self.spreadsheet.worksheets() - self.assertEqual(len(worksheet_list), 3) + self.assertEqual(len(worksheet_list), 4) # Delete self.spreadsheet.del_worksheet(worksheet1) - self.spreadsheet.del_worksheet(worksheet2) + self.spreadsheet.del_worksheet_by_id(int(worksheet2.id)) + self.spreadsheet.del_worksheet_by_id(str(worksheet3.id)) worksheet_list = self.spreadsheet.worksheets() self.assertEqual(len(worksheet_list), 1) @@ -191,26 +196,19 @@ def test_update_title(self): self.assertEqual(new_title, properties["title"]) @pytest.mark.vcr() - def test_get_updated_time(self): - metadata_before = self.spreadsheet._properties - self.assertNotIn("modifiedTime", metadata_before) - - lastUpdateTime = self.spreadsheet.lastUpdateTime - metadata_after = self.spreadsheet._properties - - self.assertIsNotNone(lastUpdateTime) - self.assertIn("modifiedTime", metadata_after) - self.assertEqual(lastUpdateTime, metadata_after["modifiedTime"]) - - @pytest.mark.vcr() - def test_refresh_lastUpdateTime(self): - lastUpdateTime_before = self.spreadsheet.lastUpdateTime + def test_get_lastUpdateTime(self): + """Test get_lastUpdateTime method works""" + lastUpdateTime_before = self.spreadsheet.get_lastUpdateTime() time.sleep(0.01) self.spreadsheet.update_title("🎊 Updated Title #123 🎉") - self.spreadsheet.refresh_lastUpdateTime() - - lastUpdateTime_after = self.spreadsheet.lastUpdateTime + lastUpdateTime_after = self.spreadsheet.get_lastUpdateTime() self.assertNotEqual(lastUpdateTime_before, lastUpdateTime_after) + + @pytest.mark.vcr() + def test_creationTime_prop(self): + """test lastUpdateTime property behaviour""" + creationTime = self.spreadsheet.creationTime + self.assertIsNotNone(creationTime) diff --git a/tests/utils_test.py b/tests/utils_test.py index 0d193185d..727ed8f40 100644 --- a/tests/utils_test.py +++ b/tests/utils_test.py @@ -259,3 +259,18 @@ def test_combine_merge_values(self): actual_combine = utils.combined_merge_values(sheet_metadata, sheet_data) self.assertEqual(actual_combine, expected_combine) + + def test_fill_gaps(self): + """test fill_gaps function""" + matrix = [ + [1, 2, 3, 4], + [5, 6, 7, 8], + ] + expected = [ + [1, 2, 3, 4, "", ""], + [5, 6, 7, 8, "", ""], + ["", "", "", "", "", ""], + ] + actual = utils.fill_gaps(matrix, 3, 6) + + self.assertEqual(actual, expected)