Skip to content

Commit

Permalink
chore: Google workspace rebranding from g suite (#367)
Browse files Browse the repository at this point in the history
* Google workspace rebranding from g suite

* fix: Google workspace rebranding from g suite

* Remove trailing space

Co-authored-by: Vinay Vyas <[email protected]>
  • Loading branch information
alexfcc and vinay-google authored Dec 14, 2022
1 parent a959dc2 commit fbec318
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 9 deletions.
2 changes: 1 addition & 1 deletion adminSDK/directory/quickstart.gs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion adminSDK/reports/quickstart.gs
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
4 changes: 2 additions & 2 deletions advanced/adminSDK.gs
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down Expand Up @@ -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.
Expand Down
5 changes: 3 additions & 2 deletions advanced/drive.gs
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"private": true,
"author": "Grant Timmerman",
"keywords": [
"G Suite",
"Google Workspace",
"Apps Script",
"Calendar",
"Drive",
Expand Down
2 changes: 1 addition & 1 deletion picker/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
2 changes: 1 addition & 1 deletion sheets/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

0 comments on commit fbec318

Please sign in to comment.