diff --git a/adminSDK/directory/quickstart.gs b/adminSDK/directory/quickstart.gs index 2de7d0a09..18d2b744c 100644 --- a/adminSDK/directory/quickstart.gs +++ b/adminSDK/directory/quickstart.gs @@ -15,7 +15,7 @@ */ // [START admin_sdk_directory_quickstart] /** - * Lists users in a G Suite domain. + * Lists users in a Google Workspace domain. * @see https://developers.google.com/admin-sdk/directory/reference/rest/v1/users/list */ function listUsers() { diff --git a/adminSDK/reports/quickstart.gs b/adminSDK/reports/quickstart.gs index b6e50675c..5b5778886 100644 --- a/adminSDK/reports/quickstart.gs +++ b/adminSDK/reports/quickstart.gs @@ -15,7 +15,7 @@ */ // [START admin_sdk_reports_quickstart] /** - * List login events for a G Suite domain. + * List login events for a Google Workspace domain. * @see https://developers.google.com/admin-sdk/reports/reference/rest/v1/activities/list */ function listLogins() { diff --git a/advanced/adminSDK.gs b/advanced/adminSDK.gs index 8da9526e0..c0aed633d 100644 --- a/advanced/adminSDK.gs +++ b/advanced/adminSDK.gs @@ -325,7 +325,7 @@ function generateLoginActivityReport() { console.log('No results returned.'); return; } - const spreadsheet = SpreadsheetApp.create('G Suite Login Report'); + const spreadsheet = SpreadsheetApp.create('Google Workspace Login Report'); const sheet = spreadsheet.getActiveSheet(); // Append the headers. @@ -392,7 +392,7 @@ function generateUserUsageReport() { console.log('No results returned.'); return; } - const spreadsheet = SpreadsheetApp.create('G Suite User Usage Report'); + const spreadsheet = SpreadsheetApp.create('Google Workspace User Usage Report'); const sheet = spreadsheet.getActiveSheet(); // Append the headers. diff --git a/advanced/drive.gs b/advanced/drive.gs index 0a476fc3b..6dcce2256 100644 --- a/advanced/drive.gs +++ b/advanced/drive.gs @@ -95,8 +95,9 @@ function addCustomProperty(fileId) { // [START drive_list_revisions] /** * Lists the revisions of a given file. Note that some properties of revisions - * are only available for certain file types. For example, G Suite application - * files do not consume space in Google Drive and thus list a file size of 0. + * are only available for certain file types. For example, Google Workspace + * application files do not consume space in Google Drive and thus list a file + * size of 0. * @param {string} fileId The ID of the file to list revisions for. */ function listRevisions(fileId) { diff --git a/package.json b/package.json index d1b961580..e8a586000 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "private": true, "author": "Grant Timmerman", "keywords": [ - "G Suite", + "Google Workspace", "Apps Script", "Calendar", "Drive", diff --git a/picker/README.md b/picker/README.md index edba6c4cd..d8dfd7b26 100644 --- a/picker/README.md +++ b/picker/README.md @@ -5,7 +5,7 @@ allows the user to select a file from their Drive. It does so by loading [Google Picker](https://developers.google.com/picker/), a standard G Suite client-side API for this purpose. More information is available in the Apps Script guide -[Dialogs and Sidebars in G Suite Documents](https://developers.google.com/apps-script/guides/dialogs#file-open_dialogs). +[Dialogs and Sidebars in Google Workspace Documents](https://developers.google.com/apps-script/guides/dialogs#file-open_dialogs). Note that this sample expects to be [bound](https://developers.google.com/apps-script/guides/bound) diff --git a/sheets/README.md b/sheets/README.md index ae73b98d8..fe9863abf 100644 --- a/sheets/README.md +++ b/sheets/README.md @@ -24,4 +24,4 @@ This tutorial shows you how to use the Spreadsheets service to create Tournament ## [Removing Duplicates](https://developers.google.com/apps-script/articles/removing_duplicates) -This tutorial shows how to avoid duplicates when you want to automate the process of copying data in G Suite and specifically how to remove duplicate rows in spreadsheet data. +This tutorial shows how to avoid duplicates when you want to automate the process of copying data in Google Workspace and specifically how to remove duplicate rows in spreadsheet data.