Skip to content

Commit 0ef44b7

Browse files
committed
Google workspace rebranding from g suite
1 parent 87570fe commit 0ef44b7

File tree

7 files changed

+11
-9
lines changed

7 files changed

+11
-9
lines changed

adminSDK/directory/quickstart.gs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
// [START admin_sdk_directory_quickstart]
1717
/**
18-
* Lists users in a G Suite domain.
18+
* Lists users in a Google Workspace domain.
1919
* @see https://developers.google.com/admin-sdk/directory/reference/rest/v1/users/list
2020
*/
2121
function listUsers() {

adminSDK/reports/quickstart.gs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
*/
1616
// [START admin_sdk_reports_quickstart]
1717
/**
18-
* List login events for a G Suite domain.
18+
* List login events for a Google Workspace domain.
1919
* @see https://developers.google.com/admin-sdk/reports/reference/rest/v1/activities/list
2020
*/
2121
function listLogins() {

advanced/adminSDK.gs

+3-2
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ function generateLoginActivityReport() {
325325
Logger.log('No results returned.');
326326
return;
327327
}
328-
const spreadsheet = SpreadsheetApp.create('G Suite Login Report');
328+
const spreadsheet = SpreadsheetApp.create('Google Workspace Login Report');
329329
const sheet = spreadsheet.getActiveSheet();
330330

331331
// Append the headers.
@@ -392,7 +392,8 @@ function generateUserUsageReport() {
392392
Logger.log('No results returned.');
393393
return;
394394
}
395-
const spreadsheet = SpreadsheetApp.create('G Suite User Usage Report');
395+
const spreadsheet
396+
= SpreadsheetApp.create('Google Workspace User Usage Report');
396397
const sheet = spreadsheet.getActiveSheet();
397398

398399
// Append the headers.

advanced/drive.gs

+3-2
Original file line numberDiff line numberDiff line change
@@ -95,8 +95,9 @@ function addCustomProperty(fileId) {
9595
// [START drive_list_revisions]
9696
/**
9797
* Lists the revisions of a given file. Note that some properties of revisions
98-
* are only available for certain file types. For example, G Suite application
99-
* files do not consume space in Google Drive and thus list a file size of 0.
98+
* are only available for certain file types. For example, Google Workspace
99+
* application files do not consume space in Google Drive and thus list a file
100+
* size of 0.
100101
* @param {string} fileId The ID of the file to list revisions for.
101102
*/
102103
function listRevisions(fileId) {

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"private": true,
77
"author": "Grant Timmerman",
88
"keywords": [
9-
"G Suite",
9+
"Google Workspace",
1010
"Apps Script",
1111
"Calendar",
1212
"Drive",

picker/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ allows the user to select a file from their Drive. It does so by loading
55
[Google Picker](https://developers.google.com/picker/), a standard G Suite
66
client-side API for this purpose. More information is available in the Apps
77
Script guide
8-
[Dialogs and Sidebars in G Suite Documents](https://developers.google.com/apps-script/guides/dialogs#file-open_dialogs).
8+
[Dialogs and Sidebars in Google Workspace Documents](https://developers.google.com/apps-script/guides/dialogs#file-open_dialogs).
99

1010
Note that this sample expects to be
1111
[bound](https://developers.google.com/apps-script/guides/bound)

sheets/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ This tutorial shows you how to use the Spreadsheets service to create Tournament
2424

2525
## [Removing Duplicates](https://developers.google.com/apps-script/articles/removing_duplicates)
2626

27-
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.
27+
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.

0 commit comments

Comments
 (0)