Skip to content

Instantly share code, notes, and snippets.

@minimum2scp
Last active May 10, 2017 05:45
Show Gist options
  • Save minimum2scp/19c1ff67046ab2760bca29c0f6e88bd2 to your computer and use it in GitHub Desktop.
Save minimum2scp/19c1ff67046ab2760bca29c0f6e88bd2 to your computer and use it in GitHub Desktop.
Google discovery API (https://developers.google.com/discovery/v1/reference/) を使って OAuth2 の scope のリストを一覧
#! /usr/bin/env ruby
require 'bundler/inline'
gemfile do
source "https://rubygems.org"
gem "google-api-client", "~> 0.11.2", require: 'google/apis/discovery_v1'
gem "text-table", "~> 1.2.4"
gem "pry", "~> 0.10.4"
gem "parallel", "~> 1.10.0"
gem "thor", "~> 0.19.4"
end
class MyCLI < Thor
default_task :list
class_option :log_level, aliases: %w[l], default: 'info', type: :string
class_option :format, aliases: %w[f], default: 'table', type: :string
desc "list", ""
def list
case options[:format]
when 'table'
puts Text::Table.new(
head: %w[scope api version desc],
rows: oauth2_scopes.map{|api, scope, desc| [scope, api.name, api.version, desc] }
)
when 'json'
puts JSON.pretty_generate(
oauth2_scopes.group_by{|api, scope, desc| scope}.map{|scope, members|
{ scope: scope, apis: members.map{|api, scope, desc| { api: {name: api.name, version: api.version}, desc: desc } } }
}
)
end
end
no_commands do
def logger
@logger ||= Logger.new($stderr).tap{|o| o.level = options[:log_level].to_sym }
end
def discovery_service
@discovery_service ||= Google::Apis::DiscoveryV1::DiscoveryService.new
end
def apis
@apis ||= discovery_service.list_apis.items
end
def rest_apis
@rest_apis ||= ->{
Parallel.map(apis, in_threads: 8){ |api|
logger.debug "parallel start : get_rest_api(#{api.name.dump}, #{api.version.dump})"
ret = discovery_service.get_rest_api(api.name, api.version)
logger.debug "parallel done : get_rest_api(#{api.name.dump}, #{api.version.dump})"
ret
}.sort_by{|api| [api.name, api.version] }
}[]
end
def oauth2_scopes
@oauth2_scopes ||= ->{
ret = []
rest_apis.select{|api| api.auth }.each do |api|
api.auth.oauth2.scopes.each do |scope, scope_value|
ret << [api, scope, scope_value.description]
end
end
ret.sort_by{ |api, scope, desc| [scope, api.name, api.version] }
}[]
end
end
end
MyCLI.start
file 'scopes.txt' do
sh './google-oauth2-scopes.rb > scopes.txt'
end
file 'scopes.json' do
sh './google-oauth2-scopes.rb -f json > scopes.json'
end
[
{
"scope": "https://mail.google.com/",
"apis": [
{
"api": {
"name": "gmail",
"version": "v1"
},
"desc": "Read, send, delete, and manage your email"
},
{
"api": {
"name": "script",
"version": "v1"
},
"desc": "Read, send, delete, and manage your email"
}
]
},
{
"scope": "https://www.google.com/calendar/feeds",
"apis": [
{
"api": {
"name": "script",
"version": "v1"
},
"desc": "Manage your calendars"
}
]
},
{
"scope": "https://www.google.com/m8/feeds",
"apis": [
{
"api": {
"name": "script",
"version": "v1"
},
"desc": "Manage your contacts"
}
]
},
{
"scope": "https://www.googleapis.com/auth/activity",
"apis": [
{
"api": {
"name": "appsactivity",
"version": "v1"
},
"desc": "View the activity history of your Google apps"
}
]
},
{
"scope": "https://www.googleapis.com/auth/adexchange.buyer",
"apis": [
{
"api": {
"name": "adexchangebuyer",
"version": "v1.2"
},
"desc": "Manage your Ad Exchange buyer account configuration"
},
{
"api": {
"name": "adexchangebuyer",
"version": "v1.3"
},
"desc": "Manage your Ad Exchange buyer account configuration"
},
{
"api": {
"name": "adexchangebuyer",
"version": "v1.4"
},
"desc": "Manage your Ad Exchange buyer account configuration"
},
{
"api": {
"name": "adexchangebuyer2",
"version": "v2beta1"
},
"desc": "Manage your Ad Exchange buyer account configuration"
}
]
},
{
"scope": "https://www.googleapis.com/auth/adexchange.seller",
"apis": [
{
"api": {
"name": "adexchangeseller",
"version": "v1"
},
"desc": "View and manage your Ad Exchange data"
},
{
"api": {
"name": "adexchangeseller",
"version": "v1.1"
},
"desc": "View and manage your Ad Exchange data"
},
{
"api": {
"name": "adexchangeseller",
"version": "v2.0"
},
"desc": "View and manage your Ad Exchange data"
}
]
},
{
"scope": "https://www.googleapis.com/auth/adexchange.seller.readonly",
"apis": [
{
"api": {
"name": "adexchangeseller",
"version": "v1"
},
"desc": "View your Ad Exchange data"
},
{
"api": {
"name": "adexchangeseller",
"version": "v1.1"
},
"desc": "View your Ad Exchange data"
},
{
"api": {
"name": "adexchangeseller",
"version": "v2.0"
},
"desc": "View your Ad Exchange data"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.datatransfer",
"apis": [
{
"api": {
"name": "admin",
"version": "datatransfer_v1"
},
"desc": "View and manage data transfers between users in your organization"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.datatransfer.readonly",
"apis": [
{
"api": {
"name": "admin",
"version": "datatransfer_v1"
},
"desc": "View data transfers between users in your organization"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.customer",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View and manage customer related information"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.customer.readonly",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View customer related information"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.device.chromeos",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View and manage your Chrome OS devices' metadata"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.device.chromeos.readonly",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View your Chrome OS devices' metadata"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.device.mobile",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View and manage your mobile devices' metadata"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.device.mobile.action",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "Manage your mobile devices by performing administrative tasks"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.device.mobile.readonly",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View your mobile devices' metadata"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.domain",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View and manage the provisioning of domains for your customers"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.domain.readonly",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View domains related to your customers"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.group",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View and manage the provisioning of groups on your domain"
},
{
"api": {
"name": "script",
"version": "v1"
},
"desc": "View and manage the provisioning of groups on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.group.member",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View and manage group subscriptions on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.group.member.readonly",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View group subscriptions on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.group.readonly",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View groups on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.notifications",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View and manage notifications received on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.orgunit",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View and manage organization units on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.orgunit.readonly",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View organization units on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.resource.calendar",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View and manage the provisioning of calendar resources on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.resource.calendar.readonly",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View calendar resources on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.rolemanagement",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "Manage delegated admin roles for your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.rolemanagement.readonly",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View delegated admin roles for your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.user",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View and manage the provisioning of users on your domain"
},
{
"api": {
"name": "script",
"version": "v1"
},
"desc": "View and manage the provisioning of users on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.user.alias",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View and manage user aliases on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.user.alias.readonly",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View user aliases on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.user.readonly",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View users on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.user.security",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "Manage data access permissions for users on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.userschema",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View and manage the provisioning of user schemas on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.directory.userschema.readonly",
"apis": [
{
"api": {
"name": "admin",
"version": "directory_v1"
},
"desc": "View user schemas on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.reports.audit.readonly",
"apis": [
{
"api": {
"name": "admin",
"version": "reports_v1"
},
"desc": "View audit reports for your G Suite domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/admin.reports.usage.readonly",
"apis": [
{
"api": {
"name": "admin",
"version": "reports_v1"
},
"desc": "View usage reports for your G Suite domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/adsense",
"apis": [
{
"api": {
"name": "adsense",
"version": "v1.3"
},
"desc": "View and manage your AdSense data"
},
{
"api": {
"name": "adsense",
"version": "v1.4"
},
"desc": "View and manage your AdSense data"
}
]
},
{
"scope": "https://www.googleapis.com/auth/adsense.readonly",
"apis": [
{
"api": {
"name": "adsense",
"version": "v1.3"
},
"desc": "View your AdSense data"
},
{
"api": {
"name": "adsense",
"version": "v1.4"
},
"desc": "View your AdSense data"
}
]
},
{
"scope": "https://www.googleapis.com/auth/adsensehost",
"apis": [
{
"api": {
"name": "adsensehost",
"version": "v4.1"
},
"desc": "View and manage your AdSense host data and associated accounts"
}
]
},
{
"scope": "https://www.googleapis.com/auth/analytics",
"apis": [
{
"api": {
"name": "analytics",
"version": "v2.4"
},
"desc": "View and manage your Google Analytics data"
},
{
"api": {
"name": "analytics",
"version": "v3"
},
"desc": "View and manage your Google Analytics data"
},
{
"api": {
"name": "analyticsreporting",
"version": "v4"
},
"desc": "View and manage your Google Analytics data"
}
]
},
{
"scope": "https://www.googleapis.com/auth/analytics.edit",
"apis": [
{
"api": {
"name": "analytics",
"version": "v3"
},
"desc": "Edit Google Analytics management entities"
}
]
},
{
"scope": "https://www.googleapis.com/auth/analytics.manage.users",
"apis": [
{
"api": {
"name": "analytics",
"version": "v3"
},
"desc": "Manage Google Analytics Account users by email address"
}
]
},
{
"scope": "https://www.googleapis.com/auth/analytics.manage.users.readonly",
"apis": [
{
"api": {
"name": "analytics",
"version": "v3"
},
"desc": "View Google Analytics user permissions"
}
]
},
{
"scope": "https://www.googleapis.com/auth/analytics.provision",
"apis": [
{
"api": {
"name": "analytics",
"version": "v3"
},
"desc": "Create a new Google Analytics account along with its default property and view"
}
]
},
{
"scope": "https://www.googleapis.com/auth/analytics.readonly",
"apis": [
{
"api": {
"name": "analytics",
"version": "v2.4"
},
"desc": "View your Google Analytics data"
},
{
"api": {
"name": "analytics",
"version": "v3"
},
"desc": "View your Google Analytics data"
},
{
"api": {
"name": "analyticsreporting",
"version": "v4"
},
"desc": "View your Google Analytics data"
}
]
},
{
"scope": "https://www.googleapis.com/auth/androidenterprise",
"apis": [
{
"api": {
"name": "androidenterprise",
"version": "v1"
},
"desc": "Manage corporate Android devices"
}
]
},
{
"scope": "https://www.googleapis.com/auth/androidpublisher",
"apis": [
{
"api": {
"name": "androidpublisher",
"version": "v1"
},
"desc": "View and manage your Google Play Developer account"
},
{
"api": {
"name": "androidpublisher",
"version": "v1.1"
},
"desc": "View and manage your Google Play Developer account"
},
{
"api": {
"name": "androidpublisher",
"version": "v2"
},
"desc": "View and manage your Google Play Developer account"
},
{
"api": {
"name": "gamesConfiguration",
"version": "v1configuration"
},
"desc": "View and manage your Google Play Developer account"
}
]
},
{
"scope": "https://www.googleapis.com/auth/appengine.admin",
"apis": [
{
"api": {
"name": "appengine",
"version": "v1"
},
"desc": "View and manage your applications deployed on Google App Engine"
},
{
"api": {
"name": "appengine",
"version": "v1alpha"
},
"desc": "View and manage your applications deployed on Google App Engine"
},
{
"api": {
"name": "appengine",
"version": "v1beta"
},
"desc": "View and manage your applications deployed on Google App Engine"
},
{
"api": {
"name": "appengine",
"version": "v1beta4"
},
"desc": "View and manage your applications deployed on Google App Engine"
},
{
"api": {
"name": "appengine",
"version": "v1beta5"
},
"desc": "View and manage your applications deployed on Google App Engine"
}
]
},
{
"scope": "https://www.googleapis.com/auth/apps.groups.migration",
"apis": [
{
"api": {
"name": "groupsmigration",
"version": "v1"
},
"desc": "Manage messages in groups on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/apps.groups.settings",
"apis": [
{
"api": {
"name": "groupssettings",
"version": "v1"
},
"desc": "View and manage the settings of a G Suite group"
}
]
},
{
"scope": "https://www.googleapis.com/auth/apps.licensing",
"apis": [
{
"api": {
"name": "licensing",
"version": "v1"
},
"desc": "View and manage G Suite licenses for your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/apps.order",
"apis": [
{
"api": {
"name": "reseller",
"version": "v1"
},
"desc": "Manage users on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/apps.order.readonly",
"apis": [
{
"api": {
"name": "reseller",
"version": "v1"
},
"desc": "Manage users on your domain"
}
]
},
{
"scope": "https://www.googleapis.com/auth/appstate",
"apis": [
{
"api": {
"name": "appstate",
"version": "v1"
},
"desc": "View and manage your data for this application"
}
]
},
{
"scope": "https://www.googleapis.com/auth/bigquery",
"apis": [
{
"api": {
"name": "bigquery",
"version": "v2"
},
"desc": "View and manage your data in Google BigQuery"
},
{
"api": {
"name": "bigquerydatatransfer",
"version": "v1"
},
"desc": "View and manage your data in Google BigQuery"
},
{
"api": {
"name": "genomics",
"version": "v1"
},
"desc": "View and manage your data in Google BigQuery"
}
]
},
{
"scope": "https://www.googleapis.com/auth/bigquery.insertdata",
"apis": [
{
"api": {
"name": "bigquery",
"version": "v2"
},
"desc": "Insert data into Google BigQuery"
}
]
},
{
"scope": "https://www.googleapis.com/auth/blogger",
"apis": [
{
"api": {
"name": "blogger",
"version": "v2"
},
"desc": "Manage your Blogger account"
},
{
"api": {
"name": "blogger",
"version": "v3"
},
"desc": "Manage your Blogger account"
}
]
},
{
"scope": "https://www.googleapis.com/auth/blogger.readonly",
"apis": [
{
"api": {
"name": "blogger",
"version": "v3"
},
"desc": "View your Blogger account"
}
]
},
{
"scope": "https://www.googleapis.com/auth/books",
"apis": [
{
"api": {
"name": "books",
"version": "v1"
},
"desc": "Manage your books"
}
]
},
{
"scope": "https://www.googleapis.com/auth/calendar",
"apis": [
{
"api": {
"name": "calendar",
"version": "v3"
},
"desc": "Manage your calendars"
}
]
},
{
"scope": "https://www.googleapis.com/auth/calendar.readonly",
"apis": [
{
"api": {
"name": "calendar",
"version": "v3"
},
"desc": "View your calendars"
}
]
},
{
"scope": "https://www.googleapis.com/auth/classroom.courses",
"apis": [
{
"api": {
"name": "classroom",
"version": "v1"
},
"desc": "Manage your Google Classroom classes"
}
]
},
{
"scope": "https://www.googleapis.com/auth/classroom.courses.readonly",
"apis": [
{
"api": {
"name": "classroom",
"version": "v1"
},
"desc": "View your Google Classroom classes"
}
]
},
{
"scope": "https://www.googleapis.com/auth/classroom.coursework.me",
"apis": [
{
"api": {
"name": "classroom",
"version": "v1"
},
"desc": "Manage your course work and view your grades in Google Classroom"
}
]
},
{
"scope": "https://www.googleapis.com/auth/classroom.coursework.me.readonly",
"apis": [
{
"api": {
"name": "classroom",
"version": "v1"
},
"desc": "View your course work and grades in Google Classroom"
}
]
},
{
"scope": "https://www.googleapis.com/auth/classroom.coursework.students",
"apis": [
{
"api": {
"name": "classroom",
"version": "v1"
},
"desc": "Manage course work and grades for students in the Google Classroom classes you teach and view the course work and grades for classes you administer"
}
]
},
{
"scope": "https://www.googleapis.com/auth/classroom.coursework.students.readonly",
"apis": [
{
"api": {
"name": "classroom",
"version": "v1"
},
"desc": "View course work and grades for students in the Google Classroom classes you teach or administer"
}
]
},
{
"scope": "https://www.googleapis.com/auth/classroom.profile.emails",
"apis": [
{
"api": {
"name": "classroom",
"version": "v1"
},
"desc": "View the email addresses of people in your classes"
}
]
},
{
"scope": "https://www.googleapis.com/auth/classroom.profile.photos",
"apis": [
{
"api": {
"name": "classroom",
"version": "v1"
},
"desc": "View the profile photos of people in your classes"
}
]
},
{
"scope": "https://www.googleapis.com/auth/classroom.rosters",
"apis": [
{
"api": {
"name": "classroom",
"version": "v1"
},
"desc": "Manage your Google Classroom class rosters"
}
]
},
{
"scope": "https://www.googleapis.com/auth/classroom.rosters.readonly",
"apis": [
{
"api": {
"name": "classroom",
"version": "v1"
},
"desc": "View your Google Classroom class rosters"
}
]
},
{
"scope": "https://www.googleapis.com/auth/classroom.student-submissions.me.readonly",
"apis": [
{
"api": {
"name": "classroom",
"version": "v1"
},
"desc": "View your course work and grades in Google Classroom"
}
]
},
{
"scope": "https://www.googleapis.com/auth/classroom.student-submissions.students.readonly",
"apis": [
{
"api": {
"name": "classroom",
"version": "v1"
},
"desc": "View course work and grades for students in the Google Classroom classes you teach or administer"
}
]
},
{
"scope": "https://www.googleapis.com/auth/cloud-platform",
"apis": [
{
"api": {
"name": "appengine",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "appengine",
"version": "v1alpha"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "appengine",
"version": "v1beta"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "appengine",
"version": "v1beta4"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "appengine",
"version": "v1beta5"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "bigquery",
"version": "v2"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "cloudbilling",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "cloudbuild",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "clouddebugger",
"version": "v2"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "clouderrorreporting",
"version": "v1beta1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "cloudfunctions",
"version": "v1beta2"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "cloudkms",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "cloudmonitoring",
"version": "v2beta2"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "cloudresourcemanager",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "cloudresourcemanager",
"version": "v1beta1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "cloudtrace",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "clouduseraccounts",
"version": "alpha"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "clouduseraccounts",
"version": "beta"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "clouduseraccounts",
"version": "vm_alpha"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "clouduseraccounts",
"version": "vm_beta"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "compute",
"version": "alpha"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "compute",
"version": "beta"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "compute",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "container",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "dataflow",
"version": "v1b3"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "dataproc",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "dataproc",
"version": "v1alpha1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "dataproc",
"version": "v1beta1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "datastore",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "datastore",
"version": "v1beta3"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "deploymentmanager",
"version": "alpha"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "deploymentmanager",
"version": "v2"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "deploymentmanager",
"version": "v2beta"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "dlp",
"version": "v2beta1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "dns",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "dns",
"version": "v2beta1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "firebaserules",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "genomics",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "genomics",
"version": "v1alpha2"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "iam",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "identitytoolkit",
"version": "v3"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "language",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "language",
"version": "v1beta1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "language",
"version": "v1beta2"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "logging",
"version": "v2"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "logging",
"version": "v2beta1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "ml",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "ml",
"version": "v1beta1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "monitoring",
"version": "v3"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "prediction",
"version": "v1.6"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "pubsub",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "pubsub",
"version": "v1beta1a"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "pubsub",
"version": "v1beta2"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "replicapool",
"version": "v1beta1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "replicapool",
"version": "v1beta2"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "replicapoolupdater",
"version": "v1beta1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "resourceviews",
"version": "v1beta1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "resourceviews",
"version": "v1beta2"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "runtimeconfig",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "runtimeconfig",
"version": "v1beta1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "servicecontrol",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "servicemanagement",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "serviceuser",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "sourcerepo",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "spanner",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "speech",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "speech",
"version": "v1beta1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "sqladmin",
"version": "v1beta3"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "sqladmin",
"version": "v1beta4"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "storage",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "storagetransfer",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "toolresults",
"version": "v1beta3"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "tracing",
"version": "v2"
},
"desc": "View and manage your data across Google Cloud Platform services"
},
{
"api": {
"name": "vision",
"version": "v1"
},
"desc": "View and manage your data across Google Cloud Platform services"
}
]
},
{
"scope": "https://www.googleapis.com/auth/cloud-platform.read-only",
"apis": [
{
"api": {
"name": "appengine",
"version": "v1"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "appengine",
"version": "v1alpha"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "appengine",
"version": "v1beta"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "appengine",
"version": "v1beta4"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "appengine",
"version": "v1beta5"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "bigquery",
"version": "v2"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "cloudresourcemanager",
"version": "v1"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "cloudresourcemanager",
"version": "v1beta1"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "clouduseraccounts",
"version": "alpha"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "clouduseraccounts",
"version": "beta"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "clouduseraccounts",
"version": "vm_alpha"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "clouduseraccounts",
"version": "vm_beta"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "deploymentmanager",
"version": "alpha"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "deploymentmanager",
"version": "v2"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "deploymentmanager",
"version": "v2beta"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "dns",
"version": "v1"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "dns",
"version": "v2beta1"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "logging",
"version": "v2"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "logging",
"version": "v2beta1"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "replicapool",
"version": "v1beta1"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "replicapool",
"version": "v1beta2"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "replicapoolupdater",
"version": "v1beta1"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "resourceviews",
"version": "v1beta1"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "resourceviews",
"version": "v1beta2"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "servicemanagement",
"version": "v1"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "serviceuser",
"version": "v1"
},
"desc": "View your data across Google Cloud Platform services"
},
{
"api": {
"name": "storage",
"version": "v1"
},
"desc": "View your data across Google Cloud Platform services"
}
]
},
{
"scope": "https://www.googleapis.com/auth/cloud.useraccounts",
"apis": [
{
"api": {
"name": "clouduseraccounts",
"version": "alpha"
},
"desc": "Manage your Google Cloud User Accounts"
},
{
"api": {
"name": "clouduseraccounts",
"version": "beta"
},
"desc": "Manage your Google Cloud User Accounts"
},
{
"api": {
"name": "clouduseraccounts",
"version": "vm_alpha"
},
"desc": "Manage your Google Cloud User Accounts"
},
{
"api": {
"name": "clouduseraccounts",
"version": "vm_beta"
},
"desc": "Manage your Google Cloud User Accounts"
}
]
},
{
"scope": "https://www.googleapis.com/auth/cloud.useraccounts.readonly",
"apis": [
{
"api": {
"name": "clouduseraccounts",
"version": "alpha"
},
"desc": "View your Google Cloud User Accounts"
},
{
"api": {
"name": "clouduseraccounts",
"version": "beta"
},
"desc": "View your Google Cloud User Accounts"
},
{
"api": {
"name": "clouduseraccounts",
"version": "vm_alpha"
},
"desc": "View your Google Cloud User Accounts"
},
{
"api": {
"name": "clouduseraccounts",
"version": "vm_beta"
},
"desc": "View your Google Cloud User Accounts"
}
]
},
{
"scope": "https://www.googleapis.com/auth/cloud_debugger",
"apis": [
{
"api": {
"name": "clouddebugger",
"version": "v2"
},
"desc": "Manage cloud debugger"
}
]
},
{
"scope": "https://www.googleapis.com/auth/cloudruntimeconfig",
"apis": [
{
"api": {
"name": "runtimeconfig",
"version": "v1"
},
"desc": "Manage your Google Cloud Platform services' runtime configuration"
},
{
"api": {
"name": "runtimeconfig",
"version": "v1beta1"
},
"desc": "Manage your Google Cloud Platform services' runtime configuration"
}
]
},
{
"scope": "https://www.googleapis.com/auth/compute",
"apis": [
{
"api": {
"name": "compute",
"version": "alpha"
},
"desc": "View and manage your Google Compute Engine resources"
},
{
"api": {
"name": "compute",
"version": "beta"
},
"desc": "View and manage your Google Compute Engine resources"
},
{
"api": {
"name": "compute",
"version": "v1"
},
"desc": "View and manage your Google Compute Engine resources"
},
{
"api": {
"name": "dataflow",
"version": "v1b3"
},
"desc": "View and manage your Google Compute Engine resources"
},
{
"api": {
"name": "genomics",
"version": "v1alpha2"
},
"desc": "View and manage your Google Compute Engine resources"
},
{
"api": {
"name": "replicapool",
"version": "v1beta2"
},
"desc": "View and manage your Google Compute Engine resources"
},
{
"api": {
"name": "resourceviews",
"version": "v1beta1"
},
"desc": "View and manage your Google Compute Engine resources"
},
{
"api": {
"name": "resourceviews",
"version": "v1beta2"
},
"desc": "View and manage your Google Compute Engine resources"
}
]
},
{
"scope": "https://www.googleapis.com/auth/compute.readonly",
"apis": [
{
"api": {
"name": "compute",
"version": "alpha"
},
"desc": "View your Google Compute Engine resources"
},
{
"api": {
"name": "compute",
"version": "beta"
},
"desc": "View your Google Compute Engine resources"
},
{
"api": {
"name": "compute",
"version": "v1"
},
"desc": "View your Google Compute Engine resources"
},
{
"api": {
"name": "replicapool",
"version": "v1beta2"
},
"desc": "View your Google Compute Engine resources"
},
{
"api": {
"name": "resourceviews",
"version": "v1beta1"
},
"desc": "View your Google Compute Engine resources"
},
{
"api": {
"name": "resourceviews",
"version": "v1beta2"
},
"desc": "View your Google Compute Engine resources"
}
]
},
{
"scope": "https://www.googleapis.com/auth/consumersurveys",
"apis": [
{
"api": {
"name": "consumersurveys",
"version": "v2"
},
"desc": "View and edit your surveys and results"
}
]
},
{
"scope": "https://www.googleapis.com/auth/consumersurveys.readonly",
"apis": [
{
"api": {
"name": "consumersurveys",
"version": "v2"
},
"desc": "View the results for your surveys"
}
]
},
{
"scope": "https://www.googleapis.com/auth/contacts",
"apis": [
{
"api": {
"name": "people",
"version": "v1"
},
"desc": "Manage your contacts"
}
]
},
{
"scope": "https://www.googleapis.com/auth/contacts.readonly",
"apis": [
{
"api": {
"name": "people",
"version": "v1"
},
"desc": "View your contacts"
}
]
},
{
"scope": "https://www.googleapis.com/auth/content",
"apis": [
{
"api": {
"name": "content",
"version": "v2"
},
"desc": "Manage your product listings and accounts for Google Shopping"
},
{
"api": {
"name": "content",
"version": "v2sandbox"
},
"desc": "Manage your product listings and accounts for Google Shopping"
}
]
},
{
"scope": "https://www.googleapis.com/auth/datastore",
"apis": [
{
"api": {
"name": "datastore",
"version": "v1"
},
"desc": "View and manage your Google Cloud Datastore data"
},
{
"api": {
"name": "datastore",
"version": "v1beta3"
},
"desc": "View and manage your Google Cloud Datastore data"
}
]
},
{
"scope": "https://www.googleapis.com/auth/ddmconversions",
"apis": [
{
"api": {
"name": "dfareporting",
"version": "v2.6"
},
"desc": "Manage DoubleClick Digital Marketing conversions"
},
{
"api": {
"name": "dfareporting",
"version": "v2.7"
},
"desc": "Manage DoubleClick Digital Marketing conversions"
},
{
"api": {
"name": "dfareporting",
"version": "v2.8"
},
"desc": "Manage DoubleClick Digital Marketing conversions"
}
]
},
{
"scope": "https://www.googleapis.com/auth/devstorage.full_control",
"apis": [
{
"api": {
"name": "bigquery",
"version": "v2"
},
"desc": "Manage your data and permissions in Google Cloud Storage"
},
{
"api": {
"name": "compute",
"version": "alpha"
},
"desc": "Manage your data and permissions in Google Cloud Storage"
},
{
"api": {
"name": "compute",
"version": "beta"
},
"desc": "Manage your data and permissions in Google Cloud Storage"
},
{
"api": {
"name": "compute",
"version": "v1"
},
"desc": "Manage your data and permissions in Google Cloud Storage"
},
{
"api": {
"name": "prediction",
"version": "v1.2"
},
"desc": "Manage your data and permissions in Google Cloud Storage"
},
{
"api": {
"name": "prediction",
"version": "v1.3"
},
"desc": "Manage your data and permissions in Google Cloud Storage"
},
{
"api": {
"name": "prediction",
"version": "v1.4"
},
"desc": "Manage your data and permissions in Google Cloud Storage"
},
{
"api": {
"name": "prediction",
"version": "v1.5"
},
"desc": "Manage your data and permissions in Google Cloud Storage"
},
{
"api": {
"name": "prediction",
"version": "v1.6"
},
"desc": "Manage your data and permissions in Google Cloud Storage"
},
{
"api": {
"name": "storage",
"version": "v1"
},
"desc": "Manage your data and permissions in Google Cloud Storage"
},
{
"api": {
"name": "storage",
"version": "v1beta1"
},
"desc": "Manage your data and permissions in Google Cloud Storage"
},
{
"api": {
"name": "storage",
"version": "v1beta2"
},
"desc": "Manage your data and permissions in Google Cloud Storage"
}
]
},
{
"scope": "https://www.googleapis.com/auth/devstorage.read_only",
"apis": [
{
"api": {
"name": "bigquery",
"version": "v2"
},
"desc": "View your data in Google Cloud Storage"
},
{
"api": {
"name": "compute",
"version": "alpha"
},
"desc": "View your data in Google Cloud Storage"
},
{
"api": {
"name": "compute",
"version": "beta"
},
"desc": "View your data in Google Cloud Storage"
},
{
"api": {
"name": "compute",
"version": "v1"
},
"desc": "View your data in Google Cloud Storage"
},
{
"api": {
"name": "prediction",
"version": "v1.2"
},
"desc": "View your data in Google Cloud Storage"
},
{
"api": {
"name": "prediction",
"version": "v1.3"
},
"desc": "View your data in Google Cloud Storage"
},
{
"api": {
"name": "prediction",
"version": "v1.4"
},
"desc": "View your data in Google Cloud Storage"
},
{
"api": {
"name": "prediction",
"version": "v1.5"
},
"desc": "View your data in Google Cloud Storage"
},
{
"api": {
"name": "prediction",
"version": "v1.6"
},
"desc": "View your data in Google Cloud Storage"
},
{
"api": {
"name": "storage",
"version": "v1"
},
"desc": "View your data in Google Cloud Storage"
},
{
"api": {
"name": "storage",
"version": "v1beta1"
},
"desc": "View your data in Google Cloud Storage"
},
{
"api": {
"name": "storage",
"version": "v1beta2"
},
"desc": "View your data in Google Cloud Storage"
}
]
},
{
"scope": "https://www.googleapis.com/auth/devstorage.read_write",
"apis": [
{
"api": {
"name": "bigquery",
"version": "v2"
},
"desc": "Manage your data in Google Cloud Storage"
},
{
"api": {
"name": "compute",
"version": "alpha"
},
"desc": "Manage your data in Google Cloud Storage"
},
{
"api": {
"name": "compute",
"version": "beta"
},
"desc": "Manage your data in Google Cloud Storage"
},
{
"api": {
"name": "compute",
"version": "v1"
},
"desc": "Manage your data in Google Cloud Storage"
},
{
"api": {
"name": "genomics",
"version": "v1"
},
"desc": "Manage your data in Google Cloud Storage"
},
{
"api": {
"name": "prediction",
"version": "v1.2"
},
"desc": "Manage your data in Google Cloud Storage"
},
{
"api": {
"name": "prediction",
"version": "v1.3"
},
"desc": "Manage your data in Google Cloud Storage"
},
{
"api": {
"name": "prediction",
"version": "v1.4"
},
"desc": "Manage your data in Google Cloud Storage"
},
{
"api": {
"name": "prediction",
"version": "v1.5"
},
"desc": "Manage your data in Google Cloud Storage"
},
{
"api": {
"name": "prediction",
"version": "v1.6"
},
"desc": "Manage your data in Google Cloud Storage"
},
{
"api": {
"name": "storage",
"version": "v1"
},
"desc": "Manage your data in Google Cloud Storage"
},
{
"api": {
"name": "storage",
"version": "v1beta1"
},
"desc": "Manage your data in Google Cloud Storage"
},
{
"api": {
"name": "storage",
"version": "v1beta2"
},
"desc": "Manage your data in Google Cloud Storage"
}
]
},
{
"scope": "https://www.googleapis.com/auth/dfareporting",
"apis": [
{
"api": {
"name": "dfareporting",
"version": "v2.6"
},
"desc": "View and manage DoubleClick for Advertisers reports"
},
{
"api": {
"name": "dfareporting",
"version": "v2.7"
},
"desc": "View and manage DoubleClick for Advertisers reports"
},
{
"api": {
"name": "dfareporting",
"version": "v2.8"
},
"desc": "View and manage DoubleClick for Advertisers reports"
}
]
},
{
"scope": "https://www.googleapis.com/auth/dfatrafficking",
"apis": [
{
"api": {
"name": "dfareporting",
"version": "v2.6"
},
"desc": "View and manage your DoubleClick Campaign Manager's (DCM) display ad campaigns"
},
{
"api": {
"name": "dfareporting",
"version": "v2.7"
},
"desc": "View and manage your DoubleClick Campaign Manager's (DCM) display ad campaigns"
},
{
"api": {
"name": "dfareporting",
"version": "v2.8"
},
"desc": "View and manage your DoubleClick Campaign Manager's (DCM) display ad campaigns"
}
]
},
{
"scope": "https://www.googleapis.com/auth/doubleclickbidmanager",
"apis": [
{
"api": {
"name": "doubleclickbidmanager",
"version": "v1"
},
"desc": "View and manage your reports in DoubleClick Bid Manager"
}
]
},
{
"scope": "https://www.googleapis.com/auth/doubleclicksearch",
"apis": [
{
"api": {
"name": "doubleclicksearch",
"version": "v2"
},
"desc": "View and manage your advertising data in DoubleClick Search"
}
]
},
{
"scope": "https://www.googleapis.com/auth/drive",
"apis": [
{
"api": {
"name": "appsactivity",
"version": "v1"
},
"desc": "View and manage the files in your Google Drive"
},
{
"api": {
"name": "drive",
"version": "v2"
},
"desc": "View and manage the files in your Google Drive"
},
{
"api": {
"name": "drive",
"version": "v3"
},
"desc": "View and manage the files in your Google Drive"
},
{
"api": {
"name": "script",
"version": "v1"
},
"desc": "View and manage the files in your Google Drive"
},
{
"api": {
"name": "sheets",
"version": "v4"
},
"desc": "View and manage the files in your Google Drive"
},
{
"api": {
"name": "slides",
"version": "v1"
},
"desc": "View and manage the files in your Google Drive"
}
]
},
{
"scope": "https://www.googleapis.com/auth/drive.appdata",
"apis": [
{
"api": {
"name": "drive",
"version": "v2"
},
"desc": "View and manage its own configuration data in your Google Drive"
},
{
"api": {
"name": "drive",
"version": "v3"
},
"desc": "View and manage its own configuration data in your Google Drive"
},
{
"api": {
"name": "games",
"version": "v1"
},
"desc": "View and manage its own configuration data in your Google Drive"
}
]
},
{
"scope": "https://www.googleapis.com/auth/drive.apps.readonly",
"apis": [
{
"api": {
"name": "drive",
"version": "v2"
},
"desc": "View your Google Drive apps"
}
]
},
{
"scope": "https://www.googleapis.com/auth/drive.file",
"apis": [
{
"api": {
"name": "drive",
"version": "v2"
},
"desc": "View and manage Google Drive files and folders that you have opened or created with this app"
},
{
"api": {
"name": "drive",
"version": "v3"
},
"desc": "View and manage Google Drive files and folders that you have opened or created with this app"
},
{
"api": {
"name": "sheets",
"version": "v4"
},
"desc": "View and manage Google Drive files and folders that you have opened or created with this app"
}
]
},
{
"scope": "https://www.googleapis.com/auth/drive.metadata",
"apis": [
{
"api": {
"name": "appsactivity",
"version": "v1"
},
"desc": "View and manage metadata of files in your Google Drive"
},
{
"api": {
"name": "drive",
"version": "v2"
},
"desc": "View and manage metadata of files in your Google Drive"
},
{
"api": {
"name": "drive",
"version": "v3"
},
"desc": "View and manage metadata of files in your Google Drive"
}
]
},
{
"scope": "https://www.googleapis.com/auth/drive.metadata.readonly",
"apis": [
{
"api": {
"name": "appsactivity",
"version": "v1"
},
"desc": "View metadata for files in your Google Drive"
},
{
"api": {
"name": "drive",
"version": "v2"
},
"desc": "View metadata for files in your Google Drive"
},
{
"api": {
"name": "drive",
"version": "v3"
},
"desc": "View metadata for files in your Google Drive"
}
]
},
{
"scope": "https://www.googleapis.com/auth/drive.photos.readonly",
"apis": [
{
"api": {
"name": "drive",
"version": "v2"
},
"desc": "View the photos, videos and albums in your Google Photos"
},
{
"api": {
"name": "drive",
"version": "v3"
},
"desc": "View the photos, videos and albums in your Google Photos"
}
]
},
{
"scope": "https://www.googleapis.com/auth/drive.readonly",
"apis": [
{
"api": {
"name": "appsactivity",
"version": "v1"
},
"desc": "View the files in your Google Drive"
},
{
"api": {
"name": "drive",
"version": "v2"
},
"desc": "View the files in your Google Drive"
},
{
"api": {
"name": "drive",
"version": "v3"
},
"desc": "View the files in your Google Drive"
},
{
"api": {
"name": "sheets",
"version": "v4"
},
"desc": "View the files in your Google Drive"
},
{
"api": {
"name": "slides",
"version": "v1"
},
"desc": "View the files in your Google Drive"
}
]
},
{
"scope": "https://www.googleapis.com/auth/drive.scripts",
"apis": [
{
"api": {
"name": "drive",
"version": "v2"
},
"desc": "Modify your Google Apps Script scripts' behavior"
},
{
"api": {
"name": "drive",
"version": "v3"
},
"desc": "Modify your Google Apps Script scripts' behavior"
}
]
},
{
"scope": "https://www.googleapis.com/auth/firebase",
"apis": [
{
"api": {
"name": "firebasedynamiclinks",
"version": "v1"
},
"desc": "View and administer all your Firebase data and settings"
},
{
"api": {
"name": "firebaserules",
"version": "v1"
},
"desc": "View and administer all your Firebase data and settings"
},
{
"api": {
"name": "identitytoolkit",
"version": "v3"
},
"desc": "View and administer all your Firebase data and settings"
}
]
},
{
"scope": "https://www.googleapis.com/auth/firebase.readonly",
"apis": [
{
"api": {
"name": "firebaserules",
"version": "v1"
},
"desc": "View all your Firebase data and settings"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.activity.read",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View your activity information in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.activity.write",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View and store your activity information in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.blood_glucose.read",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View blood glucose data in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.blood_glucose.write",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View and store blood glucose data in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.blood_pressure.read",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View blood pressure data in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.blood_pressure.write",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View and store blood pressure data in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.body.read",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View body sensor information in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.body.write",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View and store body sensor data in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.body_temperature.read",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View body temperature data in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.body_temperature.write",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View and store body temperature data in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.location.read",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View your stored location data in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.location.write",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View and store your location data in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.nutrition.read",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View nutrition information in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.nutrition.write",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View and store nutrition information in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.oxygen_saturation.read",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View oxygen saturation data in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.oxygen_saturation.write",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View and store oxygen saturation data in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.reproductive_health.read",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View reproductive health data in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fitness.reproductive_health.write",
"apis": [
{
"api": {
"name": "fitness",
"version": "v1"
},
"desc": "View and store reproductive health data in Google Fit"
}
]
},
{
"scope": "https://www.googleapis.com/auth/forms",
"apis": [
{
"api": {
"name": "script",
"version": "v1"
},
"desc": "View and manage your forms in Google Drive"
}
]
},
{
"scope": "https://www.googleapis.com/auth/forms.currentonly",
"apis": [
{
"api": {
"name": "script",
"version": "v1"
},
"desc": "View and manage forms that this application has been installed in"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fusiontables",
"apis": [
{
"api": {
"name": "fusiontables",
"version": "v1"
},
"desc": "Manage your Fusion Tables"
},
{
"api": {
"name": "fusiontables",
"version": "v2"
},
"desc": "Manage your Fusion Tables"
}
]
},
{
"scope": "https://www.googleapis.com/auth/fusiontables.readonly",
"apis": [
{
"api": {
"name": "fusiontables",
"version": "v1"
},
"desc": "View your Fusion Tables"
},
{
"api": {
"name": "fusiontables",
"version": "v2"
},
"desc": "View your Fusion Tables"
}
]
},
{
"scope": "https://www.googleapis.com/auth/games",
"apis": [
{
"api": {
"name": "games",
"version": "v1"
},
"desc": "Share your Google+ profile information and view and manage your game activity"
},
{
"api": {
"name": "gamesManagement",
"version": "v1management"
},
"desc": "Share your Google+ profile information and view and manage your game activity"
}
]
},
{
"scope": "https://www.googleapis.com/auth/genomics",
"apis": [
{
"api": {
"name": "genomics",
"version": "v1"
},
"desc": "View and manage Genomics data"
},
{
"api": {
"name": "genomics",
"version": "v1alpha2"
},
"desc": "View and manage Genomics data"
}
]
},
{
"scope": "https://www.googleapis.com/auth/genomics.readonly",
"apis": [
{
"api": {
"name": "genomics",
"version": "v1"
},
"desc": "View Genomics data"
}
]
},
{
"scope": "https://www.googleapis.com/auth/glass.location",
"apis": [
{
"api": {
"name": "mirror",
"version": "v1"
},
"desc": "View your location"
}
]
},
{
"scope": "https://www.googleapis.com/auth/glass.timeline",
"apis": [
{
"api": {
"name": "mirror",
"version": "v1"
},
"desc": "View and manage your Glass timeline"
}
]
},
{
"scope": "https://www.googleapis.com/auth/gmail.compose",
"apis": [
{
"api": {
"name": "gmail",
"version": "v1"
},
"desc": "Manage drafts and send emails"
}
]
},
{
"scope": "https://www.googleapis.com/auth/gmail.insert",
"apis": [
{
"api": {
"name": "gmail",
"version": "v1"
},
"desc": "Insert mail into your mailbox"
}
]
},
{
"scope": "https://www.googleapis.com/auth/gmail.labels",
"apis": [
{
"api": {
"name": "gmail",
"version": "v1"
},
"desc": "Manage mailbox labels"
}
]
},
{
"scope": "https://www.googleapis.com/auth/gmail.metadata",
"apis": [
{
"api": {
"name": "gmail",
"version": "v1"
},
"desc": "View your email message metadata such as labels and headers, but not the email body"
}
]
},
{
"scope": "https://www.googleapis.com/auth/gmail.modify",
"apis": [
{
"api": {
"name": "gmail",
"version": "v1"
},
"desc": "View and modify but not delete your email"
}
]
},
{
"scope": "https://www.googleapis.com/auth/gmail.readonly",
"apis": [
{
"api": {
"name": "gmail",
"version": "v1"
},
"desc": "View your emails messages and settings"
}
]
},
{
"scope": "https://www.googleapis.com/auth/gmail.send",
"apis": [
{
"api": {
"name": "gmail",
"version": "v1"
},
"desc": "Send email on your behalf"
}
]
},
{
"scope": "https://www.googleapis.com/auth/gmail.settings.basic",
"apis": [
{
"api": {
"name": "gmail",
"version": "v1"
},
"desc": "Manage your basic mail settings"
}
]
},
{
"scope": "https://www.googleapis.com/auth/gmail.settings.sharing",
"apis": [
{
"api": {
"name": "gmail",
"version": "v1"
},
"desc": "Manage your sensitive mail settings, including who can manage your mail"
}
]
},
{
"scope": "https://www.googleapis.com/auth/groups",
"apis": [
{
"api": {
"name": "script",
"version": "v1"
},
"desc": "View and manage your Google Groups"
}
]
},
{
"scope": "https://www.googleapis.com/auth/logging.admin",
"apis": [
{
"api": {
"name": "logging",
"version": "v2"
},
"desc": "Administrate log data for your projects"
},
{
"api": {
"name": "logging",
"version": "v2beta1"
},
"desc": "Administrate log data for your projects"
}
]
},
{
"scope": "https://www.googleapis.com/auth/logging.read",
"apis": [
{
"api": {
"name": "logging",
"version": "v2"
},
"desc": "View log data for your projects"
},
{
"api": {
"name": "logging",
"version": "v2beta1"
},
"desc": "View log data for your projects"
}
]
},
{
"scope": "https://www.googleapis.com/auth/logging.write",
"apis": [
{
"api": {
"name": "logging",
"version": "v2"
},
"desc": "Submit log data for your projects"
},
{
"api": {
"name": "logging",
"version": "v2beta1"
},
"desc": "Submit log data for your projects"
}
]
},
{
"scope": "https://www.googleapis.com/auth/manufacturercenter",
"apis": [
{
"api": {
"name": "manufacturers",
"version": "v1"
},
"desc": "Manage your product listings for Google Manufacturer Center"
}
]
},
{
"scope": "https://www.googleapis.com/auth/monitoring",
"apis": [
{
"api": {
"name": "cloudmonitoring",
"version": "v2beta2"
},
"desc": "View and write monitoring data for all of your Google and third-party Cloud and API projects"
},
{
"api": {
"name": "monitoring",
"version": "v3"
},
"desc": "View and write monitoring data for all of your Google and third-party Cloud and API projects"
}
]
},
{
"scope": "https://www.googleapis.com/auth/monitoring.read",
"apis": [
{
"api": {
"name": "monitoring",
"version": "v3"
},
"desc": "View monitoring data for all of your Google Cloud and third-party projects"
}
]
},
{
"scope": "https://www.googleapis.com/auth/monitoring.write",
"apis": [
{
"api": {
"name": "monitoring",
"version": "v3"
},
"desc": "Publish metric data to your Google Cloud projects"
}
]
},
{
"scope": "https://www.googleapis.com/auth/ndev.clouddns.readonly",
"apis": [
{
"api": {
"name": "dns",
"version": "v1"
},
"desc": "View your DNS records hosted by Google Cloud DNS"
},
{
"api": {
"name": "dns",
"version": "v2beta1"
},
"desc": "View your DNS records hosted by Google Cloud DNS"
}
]
},
{
"scope": "https://www.googleapis.com/auth/ndev.clouddns.readwrite",
"apis": [
{
"api": {
"name": "dns",
"version": "v1"
},
"desc": "View and manage your DNS records hosted by Google Cloud DNS"
},
{
"api": {
"name": "dns",
"version": "v2beta1"
},
"desc": "View and manage your DNS records hosted by Google Cloud DNS"
}
]
},
{
"scope": "https://www.googleapis.com/auth/ndev.cloudman",
"apis": [
{
"api": {
"name": "deploymentmanager",
"version": "alpha"
},
"desc": "View and manage your Google Cloud Platform management resources and deployment status information"
},
{
"api": {
"name": "deploymentmanager",
"version": "v2"
},
"desc": "View and manage your Google Cloud Platform management resources and deployment status information"
},
{
"api": {
"name": "deploymentmanager",
"version": "v2beta"
},
"desc": "View and manage your Google Cloud Platform management resources and deployment status information"
},
{
"api": {
"name": "replicapool",
"version": "v1beta1"
},
"desc": "View and manage your Google Cloud Platform management resources and deployment status information"
},
{
"api": {
"name": "resourceviews",
"version": "v1beta1"
},
"desc": "View and manage your Google Cloud Platform management resources and deployment status information"
},
{
"api": {
"name": "resourceviews",
"version": "v1beta2"
},
"desc": "View and manage your Google Cloud Platform management resources and deployment status information"
}
]
},
{
"scope": "https://www.googleapis.com/auth/ndev.cloudman.readonly",
"apis": [
{
"api": {
"name": "deploymentmanager",
"version": "alpha"
},
"desc": "View your Google Cloud Platform management resources and deployment status information"
},
{
"api": {
"name": "deploymentmanager",
"version": "v2"
},
"desc": "View your Google Cloud Platform management resources and deployment status information"
},
{
"api": {
"name": "deploymentmanager",
"version": "v2beta"
},
"desc": "View your Google Cloud Platform management resources and deployment status information"
},
{
"api": {
"name": "replicapool",
"version": "v1beta1"
},
"desc": "View your Google Cloud Platform management resources and deployment status information"
},
{
"api": {
"name": "resourceviews",
"version": "v1beta1"
},
"desc": "View your Google Cloud Platform management resources and deployment status information"
},
{
"api": {
"name": "resourceviews",
"version": "v1beta2"
},
"desc": "View your Google Cloud Platform management resources and deployment status information"
}
]
},
{
"scope": "https://www.googleapis.com/auth/playmovies_partner.readonly",
"apis": [
{
"api": {
"name": "playmoviespartner",
"version": "v1"
},
"desc": "View the digital assets you publish on Google Play Movies and TV"
}
]
},
{
"scope": "https://www.googleapis.com/auth/plus.circles.read",
"apis": [
{
"api": {
"name": "plusDomains",
"version": "v1"
},
"desc": "View your circles and the people and pages in them"
}
]
},
{
"scope": "https://www.googleapis.com/auth/plus.circles.write",
"apis": [
{
"api": {
"name": "plusDomains",
"version": "v1"
},
"desc": "Manage your circles and add people and pages. People and pages you add to your circles will be notified. Others may see this information publicly. People you add to circles can use Hangouts with you."
}
]
},
{
"scope": "https://www.googleapis.com/auth/plus.login",
"apis": [
{
"api": {
"name": "games",
"version": "v1"
},
"desc": "Know the list of people in your circles, your age range, and language"
},
{
"api": {
"name": "gamesManagement",
"version": "v1management"
},
"desc": "Know the list of people in your circles, your age range, and language"
},
{
"api": {
"name": "oauth2",
"version": "v1"
},
"desc": "Know the list of people in your circles, your age range, and language"
},
{
"api": {
"name": "oauth2",
"version": "v2"
},
"desc": "Know the list of people in your circles, your age range, and language"
},
{
"api": {
"name": "people",
"version": "v1"
},
"desc": "Know the list of people in your circles, your age range, and language"
},
{
"api": {
"name": "plus",
"version": "v1"
},
"desc": "Know the list of people in your circles, your age range, and language"
},
{
"api": {
"name": "plusDomains",
"version": "v1"
},
"desc": "Know the list of people in your circles, your age range, and language"
}
]
},
{
"scope": "https://www.googleapis.com/auth/plus.me",
"apis": [
{
"api": {
"name": "oauth2",
"version": "v1"
},
"desc": "Know who you are on Google"
},
{
"api": {
"name": "oauth2",
"version": "v2"
},
"desc": "Know who you are on Google"
},
{
"api": {
"name": "plus",
"version": "v1"
},
"desc": "Know who you are on Google"
},
{
"api": {
"name": "plusDomains",
"version": "v1"
},
"desc": "Know who you are on Google"
}
]
},
{
"scope": "https://www.googleapis.com/auth/plus.media.upload",
"apis": [
{
"api": {
"name": "plusDomains",
"version": "v1"
},
"desc": "Send your photos and videos to Google+"
}
]
},
{
"scope": "https://www.googleapis.com/auth/plus.profiles.read",
"apis": [
{
"api": {
"name": "plusDomains",
"version": "v1"
},
"desc": "View your own Google+ profile and profiles visible to you"
}
]
},
{
"scope": "https://www.googleapis.com/auth/plus.stream.read",
"apis": [
{
"api": {
"name": "plusDomains",
"version": "v1"
},
"desc": "View your Google+ posts, comments, and stream"
}
]
},
{
"scope": "https://www.googleapis.com/auth/plus.stream.write",
"apis": [
{
"api": {
"name": "plusDomains",
"version": "v1"
},
"desc": "Manage your Google+ posts, comments, and stream"
}
]
},
{
"scope": "https://www.googleapis.com/auth/prediction",
"apis": [
{
"api": {
"name": "prediction",
"version": "v1.2"
},
"desc": "Manage your data in the Google Prediction API"
},
{
"api": {
"name": "prediction",
"version": "v1.3"
},
"desc": "Manage your data in the Google Prediction API"
},
{
"api": {
"name": "prediction",
"version": "v1.4"
},
"desc": "Manage your data in the Google Prediction API"
},
{
"api": {
"name": "prediction",
"version": "v1.5"
},
"desc": "Manage your data in the Google Prediction API"
},
{
"api": {
"name": "prediction",
"version": "v1.6"
},
"desc": "Manage your data in the Google Prediction API"
}
]
},
{
"scope": "https://www.googleapis.com/auth/presentations",
"apis": [
{
"api": {
"name": "slides",
"version": "v1"
},
"desc": "View and manage your Google Slides presentations"
}
]
},
{
"scope": "https://www.googleapis.com/auth/presentations.readonly",
"apis": [
{
"api": {
"name": "slides",
"version": "v1"
},
"desc": "View your Google Slides presentations"
}
]
},
{
"scope": "https://www.googleapis.com/auth/pubsub",
"apis": [
{
"api": {
"name": "pubsub",
"version": "v1"
},
"desc": "View and manage Pub/Sub topics and subscriptions"
},
{
"api": {
"name": "pubsub",
"version": "v1beta1a"
},
"desc": "View and manage Pub/Sub topics and subscriptions"
},
{
"api": {
"name": "pubsub",
"version": "v1beta2"
},
"desc": "View and manage Pub/Sub topics and subscriptions"
}
]
},
{
"scope": "https://www.googleapis.com/auth/replicapool",
"apis": [
{
"api": {
"name": "replicapool",
"version": "v1beta1"
},
"desc": "View and manage replica pools"
},
{
"api": {
"name": "replicapoolupdater",
"version": "v1beta1"
},
"desc": "View and manage replica pools"
}
]
},
{
"scope": "https://www.googleapis.com/auth/replicapool.readonly",
"apis": [
{
"api": {
"name": "replicapool",
"version": "v1beta1"
},
"desc": "View replica pools"
},
{
"api": {
"name": "replicapoolupdater",
"version": "v1beta1"
},
"desc": "View replica pools"
}
]
},
{
"scope": "https://www.googleapis.com/auth/service.management",
"apis": [
{
"api": {
"name": "servicemanagement",
"version": "v1"
},
"desc": "Manage your Google API service configuration"
},
{
"api": {
"name": "serviceuser",
"version": "v1"
},
"desc": "Manage your Google API service configuration"
}
]
},
{
"scope": "https://www.googleapis.com/auth/service.management.readonly",
"apis": [
{
"api": {
"name": "servicemanagement",
"version": "v1"
},
"desc": "View your Google API service configuration"
}
]
},
{
"scope": "https://www.googleapis.com/auth/servicecontrol",
"apis": [
{
"api": {
"name": "servicecontrol",
"version": "v1"
},
"desc": "Manage your Google Service Control data"
}
]
},
{
"scope": "https://www.googleapis.com/auth/siteverification",
"apis": [
{
"api": {
"name": "siteVerification",
"version": "v1"
},
"desc": "Manage the list of sites and domains you control"
}
]
},
{
"scope": "https://www.googleapis.com/auth/siteverification.verify_only",
"apis": [
{
"api": {
"name": "siteVerification",
"version": "v1"
},
"desc": "Manage your new site verifications with Google"
}
]
},
{
"scope": "https://www.googleapis.com/auth/spreadsheets",
"apis": [
{
"api": {
"name": "script",
"version": "v1"
},
"desc": "View and manage your spreadsheets in Google Drive"
},
{
"api": {
"name": "sheets",
"version": "v4"
},
"desc": "View and manage your spreadsheets in Google Drive"
},
{
"api": {
"name": "slides",
"version": "v1"
},
"desc": "View and manage your spreadsheets in Google Drive"
}
]
},
{
"scope": "https://www.googleapis.com/auth/spreadsheets.readonly",
"apis": [
{
"api": {
"name": "sheets",
"version": "v4"
},
"desc": "View your Google Spreadsheets"
},
{
"api": {
"name": "slides",
"version": "v1"
},
"desc": "View your Google Spreadsheets"
}
]
},
{
"scope": "https://www.googleapis.com/auth/sqlservice.admin",
"apis": [
{
"api": {
"name": "sqladmin",
"version": "v1beta3"
},
"desc": "Manage your Google SQL Service instances"
},
{
"api": {
"name": "sqladmin",
"version": "v1beta4"
},
"desc": "Manage your Google SQL Service instances"
}
]
},
{
"scope": "https://www.googleapis.com/auth/surveys",
"apis": [
{
"api": {
"name": "surveys",
"version": "v2"
},
"desc": "View and manage your surveys and results"
}
]
},
{
"scope": "https://www.googleapis.com/auth/surveys.readonly",
"apis": [
{
"api": {
"name": "surveys",
"version": "v2"
},
"desc": "View your surveys and survey results"
}
]
},
{
"scope": "https://www.googleapis.com/auth/tagmanager.delete.containers",
"apis": [
{
"api": {
"name": "tagmanager",
"version": "v1"
},
"desc": "Delete your Google Tag Manager containers"
},
{
"api": {
"name": "tagmanager",
"version": "v2"
},
"desc": "Delete your Google Tag Manager containers"
}
]
},
{
"scope": "https://www.googleapis.com/auth/tagmanager.edit.containers",
"apis": [
{
"api": {
"name": "tagmanager",
"version": "v1"
},
"desc": "Manage your Google Tag Manager container and its subcomponents, excluding versioning and publishing"
},
{
"api": {
"name": "tagmanager",
"version": "v2"
},
"desc": "Manage your Google Tag Manager container and its subcomponents, excluding versioning and publishing"
}
]
},
{
"scope": "https://www.googleapis.com/auth/tagmanager.edit.containerversions",
"apis": [
{
"api": {
"name": "tagmanager",
"version": "v1"
},
"desc": "Manage your Google Tag Manager container versions"
},
{
"api": {
"name": "tagmanager",
"version": "v2"
},
"desc": "Manage your Google Tag Manager container versions"
}
]
},
{
"scope": "https://www.googleapis.com/auth/tagmanager.manage.accounts",
"apis": [
{
"api": {
"name": "tagmanager",
"version": "v1"
},
"desc": "View and manage your Google Tag Manager accounts"
},
{
"api": {
"name": "tagmanager",
"version": "v2"
},
"desc": "View and manage your Google Tag Manager accounts"
}
]
},
{
"scope": "https://www.googleapis.com/auth/tagmanager.manage.users",
"apis": [
{
"api": {
"name": "tagmanager",
"version": "v1"
},
"desc": "Manage user permissions of your Google Tag Manager account and container"
},
{
"api": {
"name": "tagmanager",
"version": "v2"
},
"desc": "Manage user permissions of your Google Tag Manager account and container"
}
]
},
{
"scope": "https://www.googleapis.com/auth/tagmanager.publish",
"apis": [
{
"api": {
"name": "tagmanager",
"version": "v1"
},
"desc": "Publish your Google Tag Manager container versions"
},
{
"api": {
"name": "tagmanager",
"version": "v2"
},
"desc": "Publish your Google Tag Manager container versions"
}
]
},
{
"scope": "https://www.googleapis.com/auth/tagmanager.readonly",
"apis": [
{
"api": {
"name": "tagmanager",
"version": "v1"
},
"desc": "View your Google Tag Manager container and its subcomponents"
},
{
"api": {
"name": "tagmanager",
"version": "v2"
},
"desc": "View your Google Tag Manager container and its subcomponents"
}
]
},
{
"scope": "https://www.googleapis.com/auth/taskqueue",
"apis": [
{
"api": {
"name": "taskqueue",
"version": "v1beta1"
},
"desc": "Manage your Tasks and Taskqueues"
},
{
"api": {
"name": "taskqueue",
"version": "v1beta2"
},
"desc": "Manage your Tasks and Taskqueues"
}
]
},
{
"scope": "https://www.googleapis.com/auth/taskqueue.consumer",
"apis": [
{
"api": {
"name": "taskqueue",
"version": "v1beta1"
},
"desc": "Consume Tasks from your Taskqueues"
},
{
"api": {
"name": "taskqueue",
"version": "v1beta2"
},
"desc": "Consume Tasks from your Taskqueues"
}
]
},
{
"scope": "https://www.googleapis.com/auth/tasks",
"apis": [
{
"api": {
"name": "tasks",
"version": "v1"
},
"desc": "Manage your tasks"
}
]
},
{
"scope": "https://www.googleapis.com/auth/tasks.readonly",
"apis": [
{
"api": {
"name": "tasks",
"version": "v1"
},
"desc": "View your tasks"
}
]
},
{
"scope": "https://www.googleapis.com/auth/trace.append",
"apis": [
{
"api": {
"name": "cloudtrace",
"version": "v1"
},
"desc": "Write Trace data for a project or application"
},
{
"api": {
"name": "tracing",
"version": "v2"
},
"desc": "Write Trace data for a project or application"
}
]
},
{
"scope": "https://www.googleapis.com/auth/trace.readonly",
"apis": [
{
"api": {
"name": "cloudtrace",
"version": "v1"
},
"desc": "Read Trace data for a project or application"
},
{
"api": {
"name": "tracing",
"version": "v2"
},
"desc": "Read Trace data for a project or application"
}
]
},
{
"scope": "https://www.googleapis.com/auth/urlshortener",
"apis": [
{
"api": {
"name": "urlshortener",
"version": "v1"
},
"desc": "Manage your goo.gl short URLs"
}
]
},
{
"scope": "https://www.googleapis.com/auth/user.addresses.read",
"apis": [
{
"api": {
"name": "people",
"version": "v1"
},
"desc": "View your street addresses"
}
]
},
{
"scope": "https://www.googleapis.com/auth/user.birthday.read",
"apis": [
{
"api": {
"name": "people",
"version": "v1"
},
"desc": "View your complete date of birth"
}
]
},
{
"scope": "https://www.googleapis.com/auth/user.emails.read",
"apis": [
{
"api": {
"name": "people",
"version": "v1"
},
"desc": "View your email addresses"
}
]
},
{
"scope": "https://www.googleapis.com/auth/user.phonenumbers.read",
"apis": [
{
"api": {
"name": "people",
"version": "v1"
},
"desc": "View your phone numbers"
}
]
},
{
"scope": "https://www.googleapis.com/auth/userinfo.email",
"apis": [
{
"api": {
"name": "consumersurveys",
"version": "v2"
},
"desc": "View your email address"
},
{
"api": {
"name": "dataflow",
"version": "v1b3"
},
"desc": "View your email address"
},
{
"api": {
"name": "oauth2",
"version": "v1"
},
"desc": "View your email address"
},
{
"api": {
"name": "oauth2",
"version": "v2"
},
"desc": "View your email address"
},
{
"api": {
"name": "people",
"version": "v1"
},
"desc": "View your email address"
},
{
"api": {
"name": "plus",
"version": "v1"
},
"desc": "View your email address"
},
{
"api": {
"name": "plusDomains",
"version": "v1"
},
"desc": "View your email address"
},
{
"api": {
"name": "script",
"version": "v1"
},
"desc": "View your email address"
},
{
"api": {
"name": "surveys",
"version": "v2"
},
"desc": "View your email address"
}
]
},
{
"scope": "https://www.googleapis.com/auth/userinfo.profile",
"apis": [
{
"api": {
"name": "oauth2",
"version": "v1"
},
"desc": "View your basic profile info"
},
{
"api": {
"name": "oauth2",
"version": "v2"
},
"desc": "View your basic profile info"
},
{
"api": {
"name": "people",
"version": "v1"
},
"desc": "View your basic profile info"
},
{
"api": {
"name": "plus",
"version": "v1"
},
"desc": "View your basic profile info"
},
{
"api": {
"name": "plusDomains",
"version": "v1"
},
"desc": "View your basic profile info"
}
]
},
{
"scope": "https://www.googleapis.com/auth/userlocation.beacon.registry",
"apis": [
{
"api": {
"name": "proximitybeacon",
"version": "v1beta1"
},
"desc": "View and modify your beacons"
}
]
},
{
"scope": "https://www.googleapis.com/auth/webmasters",
"apis": [
{
"api": {
"name": "webmasters",
"version": "v3"
},
"desc": "View and manage Search Console data for your verified sites"
}
]
},
{
"scope": "https://www.googleapis.com/auth/webmasters.readonly",
"apis": [
{
"api": {
"name": "webmasters",
"version": "v3"
},
"desc": "View Search Console data for your verified sites"
}
]
},
{
"scope": "https://www.googleapis.com/auth/youtube",
"apis": [
{
"api": {
"name": "youtube",
"version": "v3"
},
"desc": "Manage your YouTube account"
},
{
"api": {
"name": "youtubeAnalytics",
"version": "v1"
},
"desc": "Manage your YouTube account"
},
{
"api": {
"name": "youtubeAnalytics",
"version": "v1beta1"
},
"desc": "Manage your YouTube account"
}
]
},
{
"scope": "https://www.googleapis.com/auth/youtube.force-ssl",
"apis": [
{
"api": {
"name": "youtube",
"version": "v3"
},
"desc": "Manage your YouTube account"
}
]
},
{
"scope": "https://www.googleapis.com/auth/youtube.readonly",
"apis": [
{
"api": {
"name": "youtube",
"version": "v3"
},
"desc": "View your YouTube account"
},
{
"api": {
"name": "youtubeAnalytics",
"version": "v1"
},
"desc": "View your YouTube account"
},
{
"api": {
"name": "youtubeAnalytics",
"version": "v1beta1"
},
"desc": "View your YouTube account"
}
]
},
{
"scope": "https://www.googleapis.com/auth/youtube.upload",
"apis": [
{
"api": {
"name": "youtube",
"version": "v3"
},
"desc": "Manage your YouTube videos"
}
]
},
{
"scope": "https://www.googleapis.com/auth/youtubepartner",
"apis": [
{
"api": {
"name": "youtube",
"version": "v3"
},
"desc": "View and manage your assets and associated content on YouTube"
},
{
"api": {
"name": "youtubeAnalytics",
"version": "v1"
},
"desc": "View and manage your assets and associated content on YouTube"
},
{
"api": {
"name": "youtubeAnalytics",
"version": "v1beta1"
},
"desc": "View and manage your assets and associated content on YouTube"
}
]
},
{
"scope": "https://www.googleapis.com/auth/youtubepartner-channel-audit",
"apis": [
{
"api": {
"name": "youtube",
"version": "v3"
},
"desc": "View private information of your YouTube channel relevant during the audit process with a YouTube partner"
}
]
},
{
"scope": "https://www.googleapis.com/auth/yt-analytics-monetary.readonly",
"apis": [
{
"api": {
"name": "youtubeAnalytics",
"version": "v1"
},
"desc": "View monetary and non-monetary YouTube Analytics reports for your YouTube content"
},
{
"api": {
"name": "youtubeAnalytics",
"version": "v1beta1"
},
"desc": "View monetary and non-monetary YouTube Analytics reports for your YouTube content"
},
{
"api": {
"name": "youtubereporting",
"version": "v1"
},
"desc": "View monetary and non-monetary YouTube Analytics reports for your YouTube content"
}
]
},
{
"scope": "https://www.googleapis.com/auth/yt-analytics.readonly",
"apis": [
{
"api": {
"name": "youtubeAnalytics",
"version": "v1"
},
"desc": "View YouTube Analytics reports for your YouTube content"
},
{
"api": {
"name": "youtubeAnalytics",
"version": "v1beta1"
},
"desc": "View YouTube Analytics reports for your YouTube content"
},
{
"api": {
"name": "youtubereporting",
"version": "v1"
},
"desc": "View YouTube Analytics reports for your YouTube content"
}
]
}
]
+---------------------------------------------------------------------------------+-----------------------+-----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| scope | api | version | desc |
+---------------------------------------------------------------------------------+-----------------------+-----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
| https://mail.google.com/ | gmail | v1 | Read, send, delete, and manage your email |
| https://mail.google.com/ | script | v1 | Read, send, delete, and manage your email |
| https://www.google.com/calendar/feeds | script | v1 | Manage your calendars |
| https://www.google.com/m8/feeds | script | v1 | Manage your contacts |
| https://www.googleapis.com/auth/activity | appsactivity | v1 | View the activity history of your Google apps |
| https://www.googleapis.com/auth/adexchange.buyer | adexchangebuyer | v1.2 | Manage your Ad Exchange buyer account configuration |
| https://www.googleapis.com/auth/adexchange.buyer | adexchangebuyer | v1.3 | Manage your Ad Exchange buyer account configuration |
| https://www.googleapis.com/auth/adexchange.buyer | adexchangebuyer | v1.4 | Manage your Ad Exchange buyer account configuration |
| https://www.googleapis.com/auth/adexchange.buyer | adexchangebuyer2 | v2beta1 | Manage your Ad Exchange buyer account configuration |
| https://www.googleapis.com/auth/adexchange.seller | adexchangeseller | v1 | View and manage your Ad Exchange data |
| https://www.googleapis.com/auth/adexchange.seller | adexchangeseller | v1.1 | View and manage your Ad Exchange data |
| https://www.googleapis.com/auth/adexchange.seller | adexchangeseller | v2.0 | View and manage your Ad Exchange data |
| https://www.googleapis.com/auth/adexchange.seller.readonly | adexchangeseller | v1 | View your Ad Exchange data |
| https://www.googleapis.com/auth/adexchange.seller.readonly | adexchangeseller | v1.1 | View your Ad Exchange data |
| https://www.googleapis.com/auth/adexchange.seller.readonly | adexchangeseller | v2.0 | View your Ad Exchange data |
| https://www.googleapis.com/auth/admin.datatransfer | admin | datatransfer_v1 | View and manage data transfers between users in your organization |
| https://www.googleapis.com/auth/admin.datatransfer.readonly | admin | datatransfer_v1 | View data transfers between users in your organization |
| https://www.googleapis.com/auth/admin.directory.customer | admin | directory_v1 | View and manage customer related information |
| https://www.googleapis.com/auth/admin.directory.customer.readonly | admin | directory_v1 | View customer related information |
| https://www.googleapis.com/auth/admin.directory.device.chromeos | admin | directory_v1 | View and manage your Chrome OS devices' metadata |
| https://www.googleapis.com/auth/admin.directory.device.chromeos.readonly | admin | directory_v1 | View your Chrome OS devices' metadata |
| https://www.googleapis.com/auth/admin.directory.device.mobile | admin | directory_v1 | View and manage your mobile devices' metadata |
| https://www.googleapis.com/auth/admin.directory.device.mobile.action | admin | directory_v1 | Manage your mobile devices by performing administrative tasks |
| https://www.googleapis.com/auth/admin.directory.device.mobile.readonly | admin | directory_v1 | View your mobile devices' metadata |
| https://www.googleapis.com/auth/admin.directory.domain | admin | directory_v1 | View and manage the provisioning of domains for your customers |
| https://www.googleapis.com/auth/admin.directory.domain.readonly | admin | directory_v1 | View domains related to your customers |
| https://www.googleapis.com/auth/admin.directory.group | admin | directory_v1 | View and manage the provisioning of groups on your domain |
| https://www.googleapis.com/auth/admin.directory.group | script | v1 | View and manage the provisioning of groups on your domain |
| https://www.googleapis.com/auth/admin.directory.group.member | admin | directory_v1 | View and manage group subscriptions on your domain |
| https://www.googleapis.com/auth/admin.directory.group.member.readonly | admin | directory_v1 | View group subscriptions on your domain |
| https://www.googleapis.com/auth/admin.directory.group.readonly | admin | directory_v1 | View groups on your domain |
| https://www.googleapis.com/auth/admin.directory.notifications | admin | directory_v1 | View and manage notifications received on your domain |
| https://www.googleapis.com/auth/admin.directory.orgunit | admin | directory_v1 | View and manage organization units on your domain |
| https://www.googleapis.com/auth/admin.directory.orgunit.readonly | admin | directory_v1 | View organization units on your domain |
| https://www.googleapis.com/auth/admin.directory.resource.calendar | admin | directory_v1 | View and manage the provisioning of calendar resources on your domain |
| https://www.googleapis.com/auth/admin.directory.resource.calendar.readonly | admin | directory_v1 | View calendar resources on your domain |
| https://www.googleapis.com/auth/admin.directory.rolemanagement | admin | directory_v1 | Manage delegated admin roles for your domain |
| https://www.googleapis.com/auth/admin.directory.rolemanagement.readonly | admin | directory_v1 | View delegated admin roles for your domain |
| https://www.googleapis.com/auth/admin.directory.user | admin | directory_v1 | View and manage the provisioning of users on your domain |
| https://www.googleapis.com/auth/admin.directory.user | script | v1 | View and manage the provisioning of users on your domain |
| https://www.googleapis.com/auth/admin.directory.user.alias | admin | directory_v1 | View and manage user aliases on your domain |
| https://www.googleapis.com/auth/admin.directory.user.alias.readonly | admin | directory_v1 | View user aliases on your domain |
| https://www.googleapis.com/auth/admin.directory.user.readonly | admin | directory_v1 | View users on your domain |
| https://www.googleapis.com/auth/admin.directory.user.security | admin | directory_v1 | Manage data access permissions for users on your domain |
| https://www.googleapis.com/auth/admin.directory.userschema | admin | directory_v1 | View and manage the provisioning of user schemas on your domain |
| https://www.googleapis.com/auth/admin.directory.userschema.readonly | admin | directory_v1 | View user schemas on your domain |
| https://www.googleapis.com/auth/admin.reports.audit.readonly | admin | reports_v1 | View audit reports for your G Suite domain |
| https://www.googleapis.com/auth/admin.reports.usage.readonly | admin | reports_v1 | View usage reports for your G Suite domain |
| https://www.googleapis.com/auth/adsense | adsense | v1.3 | View and manage your AdSense data |
| https://www.googleapis.com/auth/adsense | adsense | v1.4 | View and manage your AdSense data |
| https://www.googleapis.com/auth/adsense.readonly | adsense | v1.3 | View your AdSense data |
| https://www.googleapis.com/auth/adsense.readonly | adsense | v1.4 | View your AdSense data |
| https://www.googleapis.com/auth/adsensehost | adsensehost | v4.1 | View and manage your AdSense host data and associated accounts |
| https://www.googleapis.com/auth/analytics | analytics | v2.4 | View and manage your Google Analytics data |
| https://www.googleapis.com/auth/analytics | analytics | v3 | View and manage your Google Analytics data |
| https://www.googleapis.com/auth/analytics | analyticsreporting | v4 | View and manage your Google Analytics data |
| https://www.googleapis.com/auth/analytics.edit | analytics | v3 | Edit Google Analytics management entities |
| https://www.googleapis.com/auth/analytics.manage.users | analytics | v3 | Manage Google Analytics Account users by email address |
| https://www.googleapis.com/auth/analytics.manage.users.readonly | analytics | v3 | View Google Analytics user permissions |
| https://www.googleapis.com/auth/analytics.provision | analytics | v3 | Create a new Google Analytics account along with its default property and view |
| https://www.googleapis.com/auth/analytics.readonly | analytics | v2.4 | View your Google Analytics data |
| https://www.googleapis.com/auth/analytics.readonly | analytics | v3 | View your Google Analytics data |
| https://www.googleapis.com/auth/analytics.readonly | analyticsreporting | v4 | View your Google Analytics data |
| https://www.googleapis.com/auth/androidenterprise | androidenterprise | v1 | Manage corporate Android devices |
| https://www.googleapis.com/auth/androidpublisher | androidpublisher | v1 | View and manage your Google Play Developer account |
| https://www.googleapis.com/auth/androidpublisher | androidpublisher | v1.1 | View and manage your Google Play Developer account |
| https://www.googleapis.com/auth/androidpublisher | androidpublisher | v2 | View and manage your Google Play Developer account |
| https://www.googleapis.com/auth/androidpublisher | gamesConfiguration | v1configuration | View and manage your Google Play Developer account |
| https://www.googleapis.com/auth/appengine.admin | appengine | v1 | View and manage your applications deployed on Google App Engine |
| https://www.googleapis.com/auth/appengine.admin | appengine | v1alpha | View and manage your applications deployed on Google App Engine |
| https://www.googleapis.com/auth/appengine.admin | appengine | v1beta | View and manage your applications deployed on Google App Engine |
| https://www.googleapis.com/auth/appengine.admin | appengine | v1beta4 | View and manage your applications deployed on Google App Engine |
| https://www.googleapis.com/auth/appengine.admin | appengine | v1beta5 | View and manage your applications deployed on Google App Engine |
| https://www.googleapis.com/auth/apps.groups.migration | groupsmigration | v1 | Manage messages in groups on your domain |
| https://www.googleapis.com/auth/apps.groups.settings | groupssettings | v1 | View and manage the settings of a G Suite group |
| https://www.googleapis.com/auth/apps.licensing | licensing | v1 | View and manage G Suite licenses for your domain |
| https://www.googleapis.com/auth/apps.order | reseller | v1 | Manage users on your domain |
| https://www.googleapis.com/auth/apps.order.readonly | reseller | v1 | Manage users on your domain |
| https://www.googleapis.com/auth/appstate | appstate | v1 | View and manage your data for this application |
| https://www.googleapis.com/auth/bigquery | bigquery | v2 | View and manage your data in Google BigQuery |
| https://www.googleapis.com/auth/bigquery | bigquerydatatransfer | v1 | View and manage your data in Google BigQuery |
| https://www.googleapis.com/auth/bigquery | genomics | v1 | View and manage your data in Google BigQuery |
| https://www.googleapis.com/auth/bigquery.insertdata | bigquery | v2 | Insert data into Google BigQuery |
| https://www.googleapis.com/auth/blogger | blogger | v2 | Manage your Blogger account |
| https://www.googleapis.com/auth/blogger | blogger | v3 | Manage your Blogger account |
| https://www.googleapis.com/auth/blogger.readonly | blogger | v3 | View your Blogger account |
| https://www.googleapis.com/auth/books | books | v1 | Manage your books |
| https://www.googleapis.com/auth/calendar | calendar | v3 | Manage your calendars |
| https://www.googleapis.com/auth/calendar.readonly | calendar | v3 | View your calendars |
| https://www.googleapis.com/auth/classroom.courses | classroom | v1 | Manage your Google Classroom classes |
| https://www.googleapis.com/auth/classroom.courses.readonly | classroom | v1 | View your Google Classroom classes |
| https://www.googleapis.com/auth/classroom.coursework.me | classroom | v1 | Manage your course work and view your grades in Google Classroom |
| https://www.googleapis.com/auth/classroom.coursework.me.readonly | classroom | v1 | View your course work and grades in Google Classroom |
| https://www.googleapis.com/auth/classroom.coursework.students | classroom | v1 | Manage course work and grades for students in the Google Classroom classes you teach and view the course work and grades for classes you administer |
| https://www.googleapis.com/auth/classroom.coursework.students.readonly | classroom | v1 | View course work and grades for students in the Google Classroom classes you teach or administer |
| https://www.googleapis.com/auth/classroom.profile.emails | classroom | v1 | View the email addresses of people in your classes |
| https://www.googleapis.com/auth/classroom.profile.photos | classroom | v1 | View the profile photos of people in your classes |
| https://www.googleapis.com/auth/classroom.rosters | classroom | v1 | Manage your Google Classroom class rosters |
| https://www.googleapis.com/auth/classroom.rosters.readonly | classroom | v1 | View your Google Classroom class rosters |
| https://www.googleapis.com/auth/classroom.student-submissions.me.readonly | classroom | v1 | View your course work and grades in Google Classroom |
| https://www.googleapis.com/auth/classroom.student-submissions.students.readonly | classroom | v1 | View course work and grades for students in the Google Classroom classes you teach or administer |
| https://www.googleapis.com/auth/cloud-platform | appengine | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | appengine | v1alpha | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | appengine | v1beta | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | appengine | v1beta4 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | appengine | v1beta5 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | bigquery | v2 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | cloudbilling | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | cloudbuild | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | clouddebugger | v2 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | clouderrorreporting | v1beta1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | cloudfunctions | v1beta2 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | cloudkms | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | cloudmonitoring | v2beta2 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | cloudresourcemanager | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | cloudresourcemanager | v1beta1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | cloudtrace | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | clouduseraccounts | alpha | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | clouduseraccounts | beta | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | clouduseraccounts | vm_alpha | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | clouduseraccounts | vm_beta | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | compute | alpha | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | compute | beta | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | compute | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | container | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | dataflow | v1b3 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | dataproc | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | dataproc | v1alpha1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | dataproc | v1beta1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | datastore | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | datastore | v1beta3 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | deploymentmanager | alpha | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | deploymentmanager | v2 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | deploymentmanager | v2beta | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | dlp | v2beta1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | dns | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | dns | v2beta1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | firebaserules | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | genomics | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | genomics | v1alpha2 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | iam | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | identitytoolkit | v3 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | language | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | language | v1beta1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | language | v1beta2 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | logging | v2 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | logging | v2beta1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | ml | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | ml | v1beta1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | monitoring | v3 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | prediction | v1.6 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | pubsub | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | pubsub | v1beta1a | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | pubsub | v1beta2 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | replicapool | v1beta1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | replicapool | v1beta2 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | replicapoolupdater | v1beta1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | resourceviews | v1beta1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | resourceviews | v1beta2 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | runtimeconfig | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | runtimeconfig | v1beta1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | servicecontrol | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | servicemanagement | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | serviceuser | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | sourcerepo | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | spanner | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | speech | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | speech | v1beta1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | sqladmin | v1beta3 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | sqladmin | v1beta4 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | storage | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | storagetransfer | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | toolresults | v1beta3 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | tracing | v2 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform | vision | v1 | View and manage your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | appengine | v1 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | appengine | v1alpha | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | appengine | v1beta | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | appengine | v1beta4 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | appengine | v1beta5 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | bigquery | v2 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | cloudresourcemanager | v1 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | cloudresourcemanager | v1beta1 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | clouduseraccounts | alpha | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | clouduseraccounts | beta | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | clouduseraccounts | vm_alpha | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | clouduseraccounts | vm_beta | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | deploymentmanager | alpha | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | deploymentmanager | v2 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | deploymentmanager | v2beta | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | dns | v1 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | dns | v2beta1 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | logging | v2 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | logging | v2beta1 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | replicapool | v1beta1 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | replicapool | v1beta2 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | replicapoolupdater | v1beta1 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | resourceviews | v1beta1 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | resourceviews | v1beta2 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | servicemanagement | v1 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | serviceuser | v1 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud-platform.read-only | storage | v1 | View your data across Google Cloud Platform services |
| https://www.googleapis.com/auth/cloud.useraccounts | clouduseraccounts | alpha | Manage your Google Cloud User Accounts |
| https://www.googleapis.com/auth/cloud.useraccounts | clouduseraccounts | beta | Manage your Google Cloud User Accounts |
| https://www.googleapis.com/auth/cloud.useraccounts | clouduseraccounts | vm_alpha | Manage your Google Cloud User Accounts |
| https://www.googleapis.com/auth/cloud.useraccounts | clouduseraccounts | vm_beta | Manage your Google Cloud User Accounts |
| https://www.googleapis.com/auth/cloud.useraccounts.readonly | clouduseraccounts | alpha | View your Google Cloud User Accounts |
| https://www.googleapis.com/auth/cloud.useraccounts.readonly | clouduseraccounts | beta | View your Google Cloud User Accounts |
| https://www.googleapis.com/auth/cloud.useraccounts.readonly | clouduseraccounts | vm_alpha | View your Google Cloud User Accounts |
| https://www.googleapis.com/auth/cloud.useraccounts.readonly | clouduseraccounts | vm_beta | View your Google Cloud User Accounts |
| https://www.googleapis.com/auth/cloud_debugger | clouddebugger | v2 | Manage cloud debugger |
| https://www.googleapis.com/auth/cloudruntimeconfig | runtimeconfig | v1 | Manage your Google Cloud Platform services' runtime configuration |
| https://www.googleapis.com/auth/cloudruntimeconfig | runtimeconfig | v1beta1 | Manage your Google Cloud Platform services' runtime configuration |
| https://www.googleapis.com/auth/compute | compute | alpha | View and manage your Google Compute Engine resources |
| https://www.googleapis.com/auth/compute | compute | beta | View and manage your Google Compute Engine resources |
| https://www.googleapis.com/auth/compute | compute | v1 | View and manage your Google Compute Engine resources |
| https://www.googleapis.com/auth/compute | dataflow | v1b3 | View and manage your Google Compute Engine resources |
| https://www.googleapis.com/auth/compute | genomics | v1alpha2 | View and manage your Google Compute Engine resources |
| https://www.googleapis.com/auth/compute | replicapool | v1beta2 | View and manage your Google Compute Engine resources |
| https://www.googleapis.com/auth/compute | resourceviews | v1beta1 | View and manage your Google Compute Engine resources |
| https://www.googleapis.com/auth/compute | resourceviews | v1beta2 | View and manage your Google Compute Engine resources |
| https://www.googleapis.com/auth/compute.readonly | compute | alpha | View your Google Compute Engine resources |
| https://www.googleapis.com/auth/compute.readonly | compute | beta | View your Google Compute Engine resources |
| https://www.googleapis.com/auth/compute.readonly | compute | v1 | View your Google Compute Engine resources |
| https://www.googleapis.com/auth/compute.readonly | replicapool | v1beta2 | View your Google Compute Engine resources |
| https://www.googleapis.com/auth/compute.readonly | resourceviews | v1beta1 | View your Google Compute Engine resources |
| https://www.googleapis.com/auth/compute.readonly | resourceviews | v1beta2 | View your Google Compute Engine resources |
| https://www.googleapis.com/auth/consumersurveys | consumersurveys | v2 | View and edit your surveys and results |
| https://www.googleapis.com/auth/consumersurveys.readonly | consumersurveys | v2 | View the results for your surveys |
| https://www.googleapis.com/auth/contacts | people | v1 | Manage your contacts |
| https://www.googleapis.com/auth/contacts.readonly | people | v1 | View your contacts |
| https://www.googleapis.com/auth/content | content | v2 | Manage your product listings and accounts for Google Shopping |
| https://www.googleapis.com/auth/content | content | v2sandbox | Manage your product listings and accounts for Google Shopping |
| https://www.googleapis.com/auth/datastore | datastore | v1 | View and manage your Google Cloud Datastore data |
| https://www.googleapis.com/auth/datastore | datastore | v1beta3 | View and manage your Google Cloud Datastore data |
| https://www.googleapis.com/auth/ddmconversions | dfareporting | v2.6 | Manage DoubleClick Digital Marketing conversions |
| https://www.googleapis.com/auth/ddmconversions | dfareporting | v2.7 | Manage DoubleClick Digital Marketing conversions |
| https://www.googleapis.com/auth/ddmconversions | dfareporting | v2.8 | Manage DoubleClick Digital Marketing conversions |
| https://www.googleapis.com/auth/devstorage.full_control | bigquery | v2 | Manage your data and permissions in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.full_control | compute | alpha | Manage your data and permissions in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.full_control | compute | beta | Manage your data and permissions in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.full_control | compute | v1 | Manage your data and permissions in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.full_control | prediction | v1.2 | Manage your data and permissions in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.full_control | prediction | v1.3 | Manage your data and permissions in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.full_control | prediction | v1.4 | Manage your data and permissions in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.full_control | prediction | v1.5 | Manage your data and permissions in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.full_control | prediction | v1.6 | Manage your data and permissions in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.full_control | storage | v1 | Manage your data and permissions in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.full_control | storage | v1beta1 | Manage your data and permissions in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.full_control | storage | v1beta2 | Manage your data and permissions in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_only | bigquery | v2 | View your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_only | compute | alpha | View your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_only | compute | beta | View your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_only | compute | v1 | View your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_only | prediction | v1.2 | View your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_only | prediction | v1.3 | View your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_only | prediction | v1.4 | View your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_only | prediction | v1.5 | View your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_only | prediction | v1.6 | View your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_only | storage | v1 | View your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_only | storage | v1beta1 | View your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_only | storage | v1beta2 | View your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_write | bigquery | v2 | Manage your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_write | compute | alpha | Manage your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_write | compute | beta | Manage your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_write | compute | v1 | Manage your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_write | genomics | v1 | Manage your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_write | prediction | v1.2 | Manage your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_write | prediction | v1.3 | Manage your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_write | prediction | v1.4 | Manage your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_write | prediction | v1.5 | Manage your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_write | prediction | v1.6 | Manage your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_write | storage | v1 | Manage your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_write | storage | v1beta1 | Manage your data in Google Cloud Storage |
| https://www.googleapis.com/auth/devstorage.read_write | storage | v1beta2 | Manage your data in Google Cloud Storage |
| https://www.googleapis.com/auth/dfareporting | dfareporting | v2.6 | View and manage DoubleClick for Advertisers reports |
| https://www.googleapis.com/auth/dfareporting | dfareporting | v2.7 | View and manage DoubleClick for Advertisers reports |
| https://www.googleapis.com/auth/dfareporting | dfareporting | v2.8 | View and manage DoubleClick for Advertisers reports |
| https://www.googleapis.com/auth/dfatrafficking | dfareporting | v2.6 | View and manage your DoubleClick Campaign Manager's (DCM) display ad campaigns |
| https://www.googleapis.com/auth/dfatrafficking | dfareporting | v2.7 | View and manage your DoubleClick Campaign Manager's (DCM) display ad campaigns |
| https://www.googleapis.com/auth/dfatrafficking | dfareporting | v2.8 | View and manage your DoubleClick Campaign Manager's (DCM) display ad campaigns |
| https://www.googleapis.com/auth/doubleclickbidmanager | doubleclickbidmanager | v1 | View and manage your reports in DoubleClick Bid Manager |
| https://www.googleapis.com/auth/doubleclicksearch | doubleclicksearch | v2 | View and manage your advertising data in DoubleClick Search |
| https://www.googleapis.com/auth/drive | appsactivity | v1 | View and manage the files in your Google Drive |
| https://www.googleapis.com/auth/drive | drive | v2 | View and manage the files in your Google Drive |
| https://www.googleapis.com/auth/drive | drive | v3 | View and manage the files in your Google Drive |
| https://www.googleapis.com/auth/drive | script | v1 | View and manage the files in your Google Drive |
| https://www.googleapis.com/auth/drive | sheets | v4 | View and manage the files in your Google Drive |
| https://www.googleapis.com/auth/drive | slides | v1 | View and manage the files in your Google Drive |
| https://www.googleapis.com/auth/drive.appdata | drive | v2 | View and manage its own configuration data in your Google Drive |
| https://www.googleapis.com/auth/drive.appdata | drive | v3 | View and manage its own configuration data in your Google Drive |
| https://www.googleapis.com/auth/drive.appdata | games | v1 | View and manage its own configuration data in your Google Drive |
| https://www.googleapis.com/auth/drive.apps.readonly | drive | v2 | View your Google Drive apps |
| https://www.googleapis.com/auth/drive.file | drive | v2 | View and manage Google Drive files and folders that you have opened or created with this app |
| https://www.googleapis.com/auth/drive.file | drive | v3 | View and manage Google Drive files and folders that you have opened or created with this app |
| https://www.googleapis.com/auth/drive.file | sheets | v4 | View and manage Google Drive files and folders that you have opened or created with this app |
| https://www.googleapis.com/auth/drive.metadata | appsactivity | v1 | View and manage metadata of files in your Google Drive |
| https://www.googleapis.com/auth/drive.metadata | drive | v2 | View and manage metadata of files in your Google Drive |
| https://www.googleapis.com/auth/drive.metadata | drive | v3 | View and manage metadata of files in your Google Drive |
| https://www.googleapis.com/auth/drive.metadata.readonly | appsactivity | v1 | View metadata for files in your Google Drive |
| https://www.googleapis.com/auth/drive.metadata.readonly | drive | v2 | View metadata for files in your Google Drive |
| https://www.googleapis.com/auth/drive.metadata.readonly | drive | v3 | View metadata for files in your Google Drive |
| https://www.googleapis.com/auth/drive.photos.readonly | drive | v2 | View the photos, videos and albums in your Google Photos |
| https://www.googleapis.com/auth/drive.photos.readonly | drive | v3 | View the photos, videos and albums in your Google Photos |
| https://www.googleapis.com/auth/drive.readonly | appsactivity | v1 | View the files in your Google Drive |
| https://www.googleapis.com/auth/drive.readonly | drive | v2 | View the files in your Google Drive |
| https://www.googleapis.com/auth/drive.readonly | drive | v3 | View the files in your Google Drive |
| https://www.googleapis.com/auth/drive.readonly | sheets | v4 | View the files in your Google Drive |
| https://www.googleapis.com/auth/drive.readonly | slides | v1 | View the files in your Google Drive |
| https://www.googleapis.com/auth/drive.scripts | drive | v2 | Modify your Google Apps Script scripts' behavior |
| https://www.googleapis.com/auth/drive.scripts | drive | v3 | Modify your Google Apps Script scripts' behavior |
| https://www.googleapis.com/auth/firebase | firebasedynamiclinks | v1 | View and administer all your Firebase data and settings |
| https://www.googleapis.com/auth/firebase | firebaserules | v1 | View and administer all your Firebase data and settings |
| https://www.googleapis.com/auth/firebase | identitytoolkit | v3 | View and administer all your Firebase data and settings |
| https://www.googleapis.com/auth/firebase.readonly | firebaserules | v1 | View all your Firebase data and settings |
| https://www.googleapis.com/auth/fitness.activity.read | fitness | v1 | View your activity information in Google Fit |
| https://www.googleapis.com/auth/fitness.activity.write | fitness | v1 | View and store your activity information in Google Fit |
| https://www.googleapis.com/auth/fitness.blood_glucose.read | fitness | v1 | View blood glucose data in Google Fit |
| https://www.googleapis.com/auth/fitness.blood_glucose.write | fitness | v1 | View and store blood glucose data in Google Fit |
| https://www.googleapis.com/auth/fitness.blood_pressure.read | fitness | v1 | View blood pressure data in Google Fit |
| https://www.googleapis.com/auth/fitness.blood_pressure.write | fitness | v1 | View and store blood pressure data in Google Fit |
| https://www.googleapis.com/auth/fitness.body.read | fitness | v1 | View body sensor information in Google Fit |
| https://www.googleapis.com/auth/fitness.body.write | fitness | v1 | View and store body sensor data in Google Fit |
| https://www.googleapis.com/auth/fitness.body_temperature.read | fitness | v1 | View body temperature data in Google Fit |
| https://www.googleapis.com/auth/fitness.body_temperature.write | fitness | v1 | View and store body temperature data in Google Fit |
| https://www.googleapis.com/auth/fitness.location.read | fitness | v1 | View your stored location data in Google Fit |
| https://www.googleapis.com/auth/fitness.location.write | fitness | v1 | View and store your location data in Google Fit |
| https://www.googleapis.com/auth/fitness.nutrition.read | fitness | v1 | View nutrition information in Google Fit |
| https://www.googleapis.com/auth/fitness.nutrition.write | fitness | v1 | View and store nutrition information in Google Fit |
| https://www.googleapis.com/auth/fitness.oxygen_saturation.read | fitness | v1 | View oxygen saturation data in Google Fit |
| https://www.googleapis.com/auth/fitness.oxygen_saturation.write | fitness | v1 | View and store oxygen saturation data in Google Fit |
| https://www.googleapis.com/auth/fitness.reproductive_health.read | fitness | v1 | View reproductive health data in Google Fit |
| https://www.googleapis.com/auth/fitness.reproductive_health.write | fitness | v1 | View and store reproductive health data in Google Fit |
| https://www.googleapis.com/auth/forms | script | v1 | View and manage your forms in Google Drive |
| https://www.googleapis.com/auth/forms.currentonly | script | v1 | View and manage forms that this application has been installed in |
| https://www.googleapis.com/auth/fusiontables | fusiontables | v1 | Manage your Fusion Tables |
| https://www.googleapis.com/auth/fusiontables | fusiontables | v2 | Manage your Fusion Tables |
| https://www.googleapis.com/auth/fusiontables.readonly | fusiontables | v1 | View your Fusion Tables |
| https://www.googleapis.com/auth/fusiontables.readonly | fusiontables | v2 | View your Fusion Tables |
| https://www.googleapis.com/auth/games | games | v1 | Share your Google+ profile information and view and manage your game activity |
| https://www.googleapis.com/auth/games | gamesManagement | v1management | Share your Google+ profile information and view and manage your game activity |
| https://www.googleapis.com/auth/genomics | genomics | v1 | View and manage Genomics data |
| https://www.googleapis.com/auth/genomics | genomics | v1alpha2 | View and manage Genomics data |
| https://www.googleapis.com/auth/genomics.readonly | genomics | v1 | View Genomics data |
| https://www.googleapis.com/auth/glass.location | mirror | v1 | View your location |
| https://www.googleapis.com/auth/glass.timeline | mirror | v1 | View and manage your Glass timeline |
| https://www.googleapis.com/auth/gmail.compose | gmail | v1 | Manage drafts and send emails |
| https://www.googleapis.com/auth/gmail.insert | gmail | v1 | Insert mail into your mailbox |
| https://www.googleapis.com/auth/gmail.labels | gmail | v1 | Manage mailbox labels |
| https://www.googleapis.com/auth/gmail.metadata | gmail | v1 | View your email message metadata such as labels and headers, but not the email body |
| https://www.googleapis.com/auth/gmail.modify | gmail | v1 | View and modify but not delete your email |
| https://www.googleapis.com/auth/gmail.readonly | gmail | v1 | View your emails messages and settings |
| https://www.googleapis.com/auth/gmail.send | gmail | v1 | Send email on your behalf |
| https://www.googleapis.com/auth/gmail.settings.basic | gmail | v1 | Manage your basic mail settings |
| https://www.googleapis.com/auth/gmail.settings.sharing | gmail | v1 | Manage your sensitive mail settings, including who can manage your mail |
| https://www.googleapis.com/auth/groups | script | v1 | View and manage your Google Groups |
| https://www.googleapis.com/auth/logging.admin | logging | v2 | Administrate log data for your projects |
| https://www.googleapis.com/auth/logging.admin | logging | v2beta1 | Administrate log data for your projects |
| https://www.googleapis.com/auth/logging.read | logging | v2 | View log data for your projects |
| https://www.googleapis.com/auth/logging.read | logging | v2beta1 | View log data for your projects |
| https://www.googleapis.com/auth/logging.write | logging | v2 | Submit log data for your projects |
| https://www.googleapis.com/auth/logging.write | logging | v2beta1 | Submit log data for your projects |
| https://www.googleapis.com/auth/manufacturercenter | manufacturers | v1 | Manage your product listings for Google Manufacturer Center |
| https://www.googleapis.com/auth/monitoring | cloudmonitoring | v2beta2 | View and write monitoring data for all of your Google and third-party Cloud and API projects |
| https://www.googleapis.com/auth/monitoring | monitoring | v3 | View and write monitoring data for all of your Google and third-party Cloud and API projects |
| https://www.googleapis.com/auth/monitoring.read | monitoring | v3 | View monitoring data for all of your Google Cloud and third-party projects |
| https://www.googleapis.com/auth/monitoring.write | monitoring | v3 | Publish metric data to your Google Cloud projects |
| https://www.googleapis.com/auth/ndev.clouddns.readonly | dns | v1 | View your DNS records hosted by Google Cloud DNS |
| https://www.googleapis.com/auth/ndev.clouddns.readonly | dns | v2beta1 | View your DNS records hosted by Google Cloud DNS |
| https://www.googleapis.com/auth/ndev.clouddns.readwrite | dns | v1 | View and manage your DNS records hosted by Google Cloud DNS |
| https://www.googleapis.com/auth/ndev.clouddns.readwrite | dns | v2beta1 | View and manage your DNS records hosted by Google Cloud DNS |
| https://www.googleapis.com/auth/ndev.cloudman | deploymentmanager | alpha | View and manage your Google Cloud Platform management resources and deployment status information |
| https://www.googleapis.com/auth/ndev.cloudman | deploymentmanager | v2 | View and manage your Google Cloud Platform management resources and deployment status information |
| https://www.googleapis.com/auth/ndev.cloudman | deploymentmanager | v2beta | View and manage your Google Cloud Platform management resources and deployment status information |
| https://www.googleapis.com/auth/ndev.cloudman | replicapool | v1beta1 | View and manage your Google Cloud Platform management resources and deployment status information |
| https://www.googleapis.com/auth/ndev.cloudman | resourceviews | v1beta1 | View and manage your Google Cloud Platform management resources and deployment status information |
| https://www.googleapis.com/auth/ndev.cloudman | resourceviews | v1beta2 | View and manage your Google Cloud Platform management resources and deployment status information |
| https://www.googleapis.com/auth/ndev.cloudman.readonly | deploymentmanager | alpha | View your Google Cloud Platform management resources and deployment status information |
| https://www.googleapis.com/auth/ndev.cloudman.readonly | deploymentmanager | v2 | View your Google Cloud Platform management resources and deployment status information |
| https://www.googleapis.com/auth/ndev.cloudman.readonly | deploymentmanager | v2beta | View your Google Cloud Platform management resources and deployment status information |
| https://www.googleapis.com/auth/ndev.cloudman.readonly | replicapool | v1beta1 | View your Google Cloud Platform management resources and deployment status information |
| https://www.googleapis.com/auth/ndev.cloudman.readonly | resourceviews | v1beta1 | View your Google Cloud Platform management resources and deployment status information |
| https://www.googleapis.com/auth/ndev.cloudman.readonly | resourceviews | v1beta2 | View your Google Cloud Platform management resources and deployment status information |
| https://www.googleapis.com/auth/playmovies_partner.readonly | playmoviespartner | v1 | View the digital assets you publish on Google Play Movies and TV |
| https://www.googleapis.com/auth/plus.circles.read | plusDomains | v1 | View your circles and the people and pages in them |
| https://www.googleapis.com/auth/plus.circles.write | plusDomains | v1 | Manage your circles and add people and pages. People and pages you add to your circles will be notified. Others may see this information publicly. People you add to circles can use Hangouts with you. |
| https://www.googleapis.com/auth/plus.login | games | v1 | Know the list of people in your circles, your age range, and language |
| https://www.googleapis.com/auth/plus.login | gamesManagement | v1management | Know the list of people in your circles, your age range, and language |
| https://www.googleapis.com/auth/plus.login | oauth2 | v1 | Know the list of people in your circles, your age range, and language |
| https://www.googleapis.com/auth/plus.login | oauth2 | v2 | Know the list of people in your circles, your age range, and language |
| https://www.googleapis.com/auth/plus.login | people | v1 | Know the list of people in your circles, your age range, and language |
| https://www.googleapis.com/auth/plus.login | plus | v1 | Know the list of people in your circles, your age range, and language |
| https://www.googleapis.com/auth/plus.login | plusDomains | v1 | Know the list of people in your circles, your age range, and language |
| https://www.googleapis.com/auth/plus.me | oauth2 | v1 | Know who you are on Google |
| https://www.googleapis.com/auth/plus.me | oauth2 | v2 | Know who you are on Google |
| https://www.googleapis.com/auth/plus.me | plus | v1 | Know who you are on Google |
| https://www.googleapis.com/auth/plus.me | plusDomains | v1 | Know who you are on Google |
| https://www.googleapis.com/auth/plus.media.upload | plusDomains | v1 | Send your photos and videos to Google+ |
| https://www.googleapis.com/auth/plus.profiles.read | plusDomains | v1 | View your own Google+ profile and profiles visible to you |
| https://www.googleapis.com/auth/plus.stream.read | plusDomains | v1 | View your Google+ posts, comments, and stream |
| https://www.googleapis.com/auth/plus.stream.write | plusDomains | v1 | Manage your Google+ posts, comments, and stream |
| https://www.googleapis.com/auth/prediction | prediction | v1.2 | Manage your data in the Google Prediction API |
| https://www.googleapis.com/auth/prediction | prediction | v1.3 | Manage your data in the Google Prediction API |
| https://www.googleapis.com/auth/prediction | prediction | v1.4 | Manage your data in the Google Prediction API |
| https://www.googleapis.com/auth/prediction | prediction | v1.5 | Manage your data in the Google Prediction API |
| https://www.googleapis.com/auth/prediction | prediction | v1.6 | Manage your data in the Google Prediction API |
| https://www.googleapis.com/auth/presentations | slides | v1 | View and manage your Google Slides presentations |
| https://www.googleapis.com/auth/presentations.readonly | slides | v1 | View your Google Slides presentations |
| https://www.googleapis.com/auth/pubsub | pubsub | v1 | View and manage Pub/Sub topics and subscriptions |
| https://www.googleapis.com/auth/pubsub | pubsub | v1beta1a | View and manage Pub/Sub topics and subscriptions |
| https://www.googleapis.com/auth/pubsub | pubsub | v1beta2 | View and manage Pub/Sub topics and subscriptions |
| https://www.googleapis.com/auth/replicapool | replicapool | v1beta1 | View and manage replica pools |
| https://www.googleapis.com/auth/replicapool | replicapoolupdater | v1beta1 | View and manage replica pools |
| https://www.googleapis.com/auth/replicapool.readonly | replicapool | v1beta1 | View replica pools |
| https://www.googleapis.com/auth/replicapool.readonly | replicapoolupdater | v1beta1 | View replica pools |
| https://www.googleapis.com/auth/service.management | servicemanagement | v1 | Manage your Google API service configuration |
| https://www.googleapis.com/auth/service.management | serviceuser | v1 | Manage your Google API service configuration |
| https://www.googleapis.com/auth/service.management.readonly | servicemanagement | v1 | View your Google API service configuration |
| https://www.googleapis.com/auth/servicecontrol | servicecontrol | v1 | Manage your Google Service Control data |
| https://www.googleapis.com/auth/siteverification | siteVerification | v1 | Manage the list of sites and domains you control |
| https://www.googleapis.com/auth/siteverification.verify_only | siteVerification | v1 | Manage your new site verifications with Google |
| https://www.googleapis.com/auth/spreadsheets | script | v1 | View and manage your spreadsheets in Google Drive |
| https://www.googleapis.com/auth/spreadsheets | sheets | v4 | View and manage your spreadsheets in Google Drive |
| https://www.googleapis.com/auth/spreadsheets | slides | v1 | View and manage your spreadsheets in Google Drive |
| https://www.googleapis.com/auth/spreadsheets.readonly | sheets | v4 | View your Google Spreadsheets |
| https://www.googleapis.com/auth/spreadsheets.readonly | slides | v1 | View your Google Spreadsheets |
| https://www.googleapis.com/auth/sqlservice.admin | sqladmin | v1beta3 | Manage your Google SQL Service instances |
| https://www.googleapis.com/auth/sqlservice.admin | sqladmin | v1beta4 | Manage your Google SQL Service instances |
| https://www.googleapis.com/auth/surveys | surveys | v2 | View and manage your surveys and results |
| https://www.googleapis.com/auth/surveys.readonly | surveys | v2 | View your surveys and survey results |
| https://www.googleapis.com/auth/tagmanager.delete.containers | tagmanager | v1 | Delete your Google Tag Manager containers |
| https://www.googleapis.com/auth/tagmanager.delete.containers | tagmanager | v2 | Delete your Google Tag Manager containers |
| https://www.googleapis.com/auth/tagmanager.edit.containers | tagmanager | v1 | Manage your Google Tag Manager container and its subcomponents, excluding versioning and publishing |
| https://www.googleapis.com/auth/tagmanager.edit.containers | tagmanager | v2 | Manage your Google Tag Manager container and its subcomponents, excluding versioning and publishing |
| https://www.googleapis.com/auth/tagmanager.edit.containerversions | tagmanager | v1 | Manage your Google Tag Manager container versions |
| https://www.googleapis.com/auth/tagmanager.edit.containerversions | tagmanager | v2 | Manage your Google Tag Manager container versions |
| https://www.googleapis.com/auth/tagmanager.manage.accounts | tagmanager | v1 | View and manage your Google Tag Manager accounts |
| https://www.googleapis.com/auth/tagmanager.manage.accounts | tagmanager | v2 | View and manage your Google Tag Manager accounts |
| https://www.googleapis.com/auth/tagmanager.manage.users | tagmanager | v1 | Manage user permissions of your Google Tag Manager account and container |
| https://www.googleapis.com/auth/tagmanager.manage.users | tagmanager | v2 | Manage user permissions of your Google Tag Manager account and container |
| https://www.googleapis.com/auth/tagmanager.publish | tagmanager | v1 | Publish your Google Tag Manager container versions |
| https://www.googleapis.com/auth/tagmanager.publish | tagmanager | v2 | Publish your Google Tag Manager container versions |
| https://www.googleapis.com/auth/tagmanager.readonly | tagmanager | v1 | View your Google Tag Manager container and its subcomponents |
| https://www.googleapis.com/auth/tagmanager.readonly | tagmanager | v2 | View your Google Tag Manager container and its subcomponents |
| https://www.googleapis.com/auth/taskqueue | taskqueue | v1beta1 | Manage your Tasks and Taskqueues |
| https://www.googleapis.com/auth/taskqueue | taskqueue | v1beta2 | Manage your Tasks and Taskqueues |
| https://www.googleapis.com/auth/taskqueue.consumer | taskqueue | v1beta1 | Consume Tasks from your Taskqueues |
| https://www.googleapis.com/auth/taskqueue.consumer | taskqueue | v1beta2 | Consume Tasks from your Taskqueues |
| https://www.googleapis.com/auth/tasks | tasks | v1 | Manage your tasks |
| https://www.googleapis.com/auth/tasks.readonly | tasks | v1 | View your tasks |
| https://www.googleapis.com/auth/trace.append | cloudtrace | v1 | Write Trace data for a project or application |
| https://www.googleapis.com/auth/trace.append | tracing | v2 | Write Trace data for a project or application |
| https://www.googleapis.com/auth/trace.readonly | cloudtrace | v1 | Read Trace data for a project or application |
| https://www.googleapis.com/auth/trace.readonly | tracing | v2 | Read Trace data for a project or application |
| https://www.googleapis.com/auth/urlshortener | urlshortener | v1 | Manage your goo.gl short URLs |
| https://www.googleapis.com/auth/user.addresses.read | people | v1 | View your street addresses |
| https://www.googleapis.com/auth/user.birthday.read | people | v1 | View your complete date of birth |
| https://www.googleapis.com/auth/user.emails.read | people | v1 | View your email addresses |
| https://www.googleapis.com/auth/user.phonenumbers.read | people | v1 | View your phone numbers |
| https://www.googleapis.com/auth/userinfo.email | consumersurveys | v2 | View your email address |
| https://www.googleapis.com/auth/userinfo.email | dataflow | v1b3 | View your email address |
| https://www.googleapis.com/auth/userinfo.email | oauth2 | v1 | View your email address |
| https://www.googleapis.com/auth/userinfo.email | oauth2 | v2 | View your email address |
| https://www.googleapis.com/auth/userinfo.email | people | v1 | View your email address |
| https://www.googleapis.com/auth/userinfo.email | plus | v1 | View your email address |
| https://www.googleapis.com/auth/userinfo.email | plusDomains | v1 | View your email address |
| https://www.googleapis.com/auth/userinfo.email | script | v1 | View your email address |
| https://www.googleapis.com/auth/userinfo.email | surveys | v2 | View your email address |
| https://www.googleapis.com/auth/userinfo.profile | oauth2 | v1 | View your basic profile info |
| https://www.googleapis.com/auth/userinfo.profile | oauth2 | v2 | View your basic profile info |
| https://www.googleapis.com/auth/userinfo.profile | people | v1 | View your basic profile info |
| https://www.googleapis.com/auth/userinfo.profile | plus | v1 | View your basic profile info |
| https://www.googleapis.com/auth/userinfo.profile | plusDomains | v1 | View your basic profile info |
| https://www.googleapis.com/auth/userlocation.beacon.registry | proximitybeacon | v1beta1 | View and modify your beacons |
| https://www.googleapis.com/auth/webmasters | webmasters | v3 | View and manage Search Console data for your verified sites |
| https://www.googleapis.com/auth/webmasters.readonly | webmasters | v3 | View Search Console data for your verified sites |
| https://www.googleapis.com/auth/youtube | youtube | v3 | Manage your YouTube account |
| https://www.googleapis.com/auth/youtube | youtubeAnalytics | v1 | Manage your YouTube account |
| https://www.googleapis.com/auth/youtube | youtubeAnalytics | v1beta1 | Manage your YouTube account |
| https://www.googleapis.com/auth/youtube.force-ssl | youtube | v3 | Manage your YouTube account |
| https://www.googleapis.com/auth/youtube.readonly | youtube | v3 | View your YouTube account |
| https://www.googleapis.com/auth/youtube.readonly | youtubeAnalytics | v1 | View your YouTube account |
| https://www.googleapis.com/auth/youtube.readonly | youtubeAnalytics | v1beta1 | View your YouTube account |
| https://www.googleapis.com/auth/youtube.upload | youtube | v3 | Manage your YouTube videos |
| https://www.googleapis.com/auth/youtubepartner | youtube | v3 | View and manage your assets and associated content on YouTube |
| https://www.googleapis.com/auth/youtubepartner | youtubeAnalytics | v1 | View and manage your assets and associated content on YouTube |
| https://www.googleapis.com/auth/youtubepartner | youtubeAnalytics | v1beta1 | View and manage your assets and associated content on YouTube |
| https://www.googleapis.com/auth/youtubepartner-channel-audit | youtube | v3 | View private information of your YouTube channel relevant during the audit process with a YouTube partner |
| https://www.googleapis.com/auth/yt-analytics-monetary.readonly | youtubeAnalytics | v1 | View monetary and non-monetary YouTube Analytics reports for your YouTube content |
| https://www.googleapis.com/auth/yt-analytics-monetary.readonly | youtubeAnalytics | v1beta1 | View monetary and non-monetary YouTube Analytics reports for your YouTube content |
| https://www.googleapis.com/auth/yt-analytics-monetary.readonly | youtubereporting | v1 | View monetary and non-monetary YouTube Analytics reports for your YouTube content |
| https://www.googleapis.com/auth/yt-analytics.readonly | youtubeAnalytics | v1 | View YouTube Analytics reports for your YouTube content |
| https://www.googleapis.com/auth/yt-analytics.readonly | youtubeAnalytics | v1beta1 | View YouTube Analytics reports for your YouTube content |
| https://www.googleapis.com/auth/yt-analytics.readonly | youtubereporting | v1 | View YouTube Analytics reports for your YouTube content |
+---------------------------------------------------------------------------------+-----------------------+-----------------+---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------+
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment