File tree 7 files changed +11
-9
lines changed
7 files changed +11
-9
lines changed Original file line number Diff line number Diff line change 15
15
*/
16
16
// [START admin_sdk_directory_quickstart]
17
17
/**
18
- * Lists users in a G Suite domain.
18
+ * Lists users in a Google Workspace domain.
19
19
* @see https://developers.google.com/admin-sdk/directory/reference/rest/v1/users/list
20
20
*/
21
21
function listUsers ( ) {
Original file line number Diff line number Diff line change 15
15
*/
16
16
// [START admin_sdk_reports_quickstart]
17
17
/**
18
- * List login events for a G Suite domain.
18
+ * List login events for a Google Workspace domain.
19
19
* @see https://developers.google.com/admin-sdk/reports/reference/rest/v1/activities/list
20
20
*/
21
21
function listLogins ( ) {
Original file line number Diff line number Diff line change @@ -325,7 +325,7 @@ function generateLoginActivityReport() {
325
325
Logger . log ( 'No results returned.' ) ;
326
326
return ;
327
327
}
328
- const spreadsheet = SpreadsheetApp . create ( 'G Suite Login Report' ) ;
328
+ const spreadsheet = SpreadsheetApp . create ( 'Google Workspace Login Report' ) ;
329
329
const sheet = spreadsheet . getActiveSheet ( ) ;
330
330
331
331
// Append the headers.
@@ -392,7 +392,8 @@ function generateUserUsageReport() {
392
392
Logger . log ( 'No results returned.' ) ;
393
393
return ;
394
394
}
395
- const spreadsheet = SpreadsheetApp . create ( 'G Suite User Usage Report' ) ;
395
+ const spreadsheet
396
+ = SpreadsheetApp . create ( 'Google Workspace User Usage Report' ) ;
396
397
const sheet = spreadsheet . getActiveSheet ( ) ;
397
398
398
399
// Append the headers.
Original file line number Diff line number Diff line change @@ -95,8 +95,9 @@ function addCustomProperty(fileId) {
95
95
// [START drive_list_revisions]
96
96
/**
97
97
* 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.
100
101
* @param {string } fileId The ID of the file to list revisions for.
101
102
*/
102
103
function listRevisions ( fileId ) {
Original file line number Diff line number Diff line change 6
6
"private" : true ,
7
7
"author" : " Grant Timmerman" ,
8
8
"keywords" : [
9
- " G Suite " ,
9
+ " Google Workspace " ,
10
10
" Apps Script" ,
11
11
" Calendar" ,
12
12
" Drive" ,
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ allows the user to select a file from their Drive. It does so by loading
5
5
[ Google Picker] ( https://developers.google.com/picker/ ) , a standard G Suite
6
6
client-side API for this purpose. More information is available in the Apps
7
7
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 ) .
9
9
10
10
Note that this sample expects to be
11
11
[ bound] ( https://developers.google.com/apps-script/guides/bound )
Original file line number Diff line number Diff line change @@ -24,4 +24,4 @@ This tutorial shows you how to use the Spreadsheets service to create Tournament
24
24
25
25
## [ Removing Duplicates] ( https://developers.google.com/apps-script/articles/removing_duplicates )
26
26
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.
You can’t perform that action at this time.
0 commit comments